content stringlengths 5 1.04M | avg_line_length float64 1.75 12.9k | max_line_length int64 2 244k | alphanum_fraction float64 0 0.98 | licenses list | repository_name stringlengths 7 92 | path stringlengths 3 249 | size int64 5 1.04M | lang stringclasses 2
values |
|---|---|---|---|---|---|---|---|---|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Routing;
namespace TestApplication
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
}
}
} | 29 | 70 | 0.706897 | [
"BSD-3-Clause"
] | Manishkr117/DesignPattern | UnitTesting/SpecFlow.Plus.Examples-master/SeleniumGridWebTest/TestApplication/Global.asax.cs | 698 | C# |
using System;
using UnityEngine;
[Serializable]
/// <summary>
/// Options for prefracturing a mesh
/// </summary>
public class PrefractureOptions
{
[Tooltip("For prefractured objects, if this property is enabled, the all fragments will unfreeze if a single fragment is interacted with.")]
public bool unfreezeAll;
[Tooltip("Saves the fragment meshes to disk. Required if the fragments will be used in a prefab.")]
public bool saveFragmentsToDisk;
[Tooltip("Path to save the fragments to if saveToDisk is enabled. Relative to the project directory.")]
public string saveLocation;
public PrefractureOptions()
{
this.unfreezeAll = true;
this.saveFragmentsToDisk = false;
this.saveLocation = "";
}
} | 30.52 | 144 | 0.707733 | [
"MIT"
] | arthaszs/L | Runtime/Scripts/Options/PrefractureOptions.cs | 763 | C# |
using System;
using Umbraco.Cms.Core.Composing;
using Umbraco.Cms.Core.Models.PublishedContent;
namespace Umbraco.Cms.Core.PropertyEditors
{
/// <summary>
/// Provides published content properties conversion service.
/// </summary>
/// <remarks>This is not a simple "value converter" because it really works only for properties.</remarks>
public interface IPropertyValueConverter : IDiscoverable
{
/// <summary>
/// Gets a value indicating whether the converter supports a property type.
/// </summary>
/// <param name="propertyType">The property type.</param>
/// <returns>A value indicating whether the converter supports a property type.</returns>
bool IsConverter(IPublishedPropertyType propertyType);
/// <summary>
/// Determines whether a value is an actual value, or not a value.
/// </summary>
/// <remarks>
/// <para>Called for Source, Inter and Object levels, until one does not return null.</para>
/// <para>Can return true (is a value), false (is not a value), or null to indicate that it
/// cannot be determined at the specified level. For instance, if source is a string that
/// could contain JSON, the decision could be made on the intermediate value. Or, if it is
/// a picker, it could be made on the object value (the actual picked object).</para>
/// </remarks>
bool? IsValue(object? value, PropertyValueLevel level);
/// <summary>
/// Gets the type of values returned by the converter.
/// </summary>
/// <param name="propertyType">The property type.</param>
/// <returns>The CLR type of values returned by the converter.</returns>
/// <remarks>Some of the CLR types may be generated, therefore this method cannot directly return
/// a Type object (which may not exist yet). In which case it needs to return a ModelType instance.</remarks>
Type GetPropertyValueType(IPublishedPropertyType propertyType);
/// <summary>
/// Gets the property cache level.
/// </summary>
/// <param name="propertyType">The property type.</param>
/// <returns>The property cache level.</returns>
PropertyCacheLevel GetPropertyCacheLevel(IPublishedPropertyType propertyType);
/// <summary>
/// Converts a property source value to an intermediate value.
/// </summary>
/// <param name="owner">The property set owning the property.</param>
/// <param name="propertyType">The property type.</param>
/// <param name="source">The source value.</param>
/// <param name="preview">A value indicating whether conversion should take place in preview mode.</param>
/// <returns>The result of the conversion.</returns>
/// <remarks>
/// <para>The converter should know how to convert a <c>null</c> source value, meaning that no
/// value has been assigned to the property. The intermediate value can be <c>null</c>.</para>
/// <para>With the XML cache, source values come from the XML cache and therefore are strings.</para>
/// <para>With objects caches, source values would come from the database and therefore be either
/// ints, DateTimes, decimals, or strings.</para>
/// <para>The converter should be prepared to handle both situations.</para>
/// <para>When source values are strings, the converter must handle empty strings, whitespace
/// strings, and xml-whitespace strings appropriately, ie it should know whether to preserve
/// white spaces.</para>
/// </remarks>
object? ConvertSourceToIntermediate(IPublishedElement owner, IPublishedPropertyType propertyType, object? source, bool preview);
/// <summary>
/// Converts a property intermediate value to an Object value.
/// </summary>
/// <param name="owner">The property set owning the property.</param>
/// <param name="propertyType">The property type.</param>
/// <param name="referenceCacheLevel">The reference cache level.</param>
/// <param name="inter">The intermediate value.</param>
/// <param name="preview">A value indicating whether conversion should take place in preview mode.</param>
/// <returns>The result of the conversion.</returns>
/// <remarks>
/// <para>The converter should know how to convert a <c>null</c> intermediate value, or any intermediate value
/// indicating that no value has been assigned to the property. It is up to the converter to determine
/// what to return in that case: either <c>null</c>, or the default value...</para>
/// <para>The <paramref name="referenceCacheLevel"/> is passed to the converter so that it can be, in turn,
/// passed to eg a PublishedFragment constructor. It is used by the fragment and the properties to manage
/// the cache levels of property values. It is not meant to be used by the converter.</para>
/// </remarks>
object? ConvertIntermediateToObject(IPublishedElement owner, IPublishedPropertyType propertyType, PropertyCacheLevel referenceCacheLevel, object? inter, bool preview);
/// <summary>
/// Converts a property intermediate value to an XPath value.
/// </summary>
/// <param name="owner">The property set owning the property.</param>
/// <param name="propertyType">The property type.</param>
/// <param name="referenceCacheLevel">The reference cache level.</param>
/// <param name="inter">The intermediate value.</param>
/// <param name="preview">A value indicating whether conversion should take place in preview mode.</param>
/// <returns>The result of the conversion.</returns>
/// <remarks>
/// <para>The converter should know how to convert a <c>null</c> intermediate value, or any intermediate value
/// indicating that no value has been assigned to the property. It is up to the converter to determine
/// what to return in that case: either <c>null</c>, or the default value...</para>
/// <para>If successful, the result should be either <c>null</c>, a string, or an <c>XPathNavigator</c>
/// instance. Whether an xml-whitespace string should be returned as <c>null</c> or literally, is
/// up to the converter.</para>
/// <para>The converter may want to return an XML fragment that represent a part of the content tree,
/// but should pay attention not to create infinite loops that would kill XPath and XSLT.</para>
/// <para>The <paramref name="referenceCacheLevel"/> is passed to the converter so that it can be, in turn,
/// passed to eg a PublishedFragment constructor. It is used by the fragment and the properties to manage
/// the cache levels of property values. It is not meant to be used by the converter.</para>
/// </remarks>
object? ConvertIntermediateToXPath(IPublishedElement owner, IPublishedPropertyType propertyType, PropertyCacheLevel referenceCacheLevel, object? inter, bool preview);
}
}
| 63.920354 | 175 | 0.665651 | [
"MIT"
] | Lantzify/Umbraco-CMS | src/Umbraco.Core/PropertyEditors/IPropertyValueConverter.cs | 7,225 | C# |
// Copyright (c) MOSA Project. Licensed under the New BSD License.
namespace Mosa.Compiler.Framework.RegisterAllocator.RedBlackTree
{
public sealed partial class IntervalTree<T>
{
private enum Direction
{
LEFT,
RIGHT,
NONE
}
}
}
| 16.6 | 67 | 0.718876 | [
"BSD-3-Clause"
] | Arakis/MOSA-Project | Source/Mosa.Compiler.Framework/RegisterAllocator/RedBlackTree/IntervalTree.Direction.cs | 251 | C# |
// <auto-generated>
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
// </auto-generated>
namespace Gov.Lclb.Cllb.Interfaces
{
using Microsoft.Rest;
using Models;
using Newtonsoft.Json;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
/// <summary>
/// Useradoxiospecialeventnote operations.
/// </summary>
public partial class Useradoxiospecialeventnote : IServiceOperations<DynamicsClient>, IUseradoxiospecialeventnote
{
/// <summary>
/// Initializes a new instance of the Useradoxiospecialeventnote class.
/// </summary>
/// <param name='client'>
/// Reference to the service client.
/// </param>
/// <exception cref="System.ArgumentNullException">
/// Thrown when a required parameter is null
/// </exception>
public Useradoxiospecialeventnote(DynamicsClient client)
{
if (client == null)
{
throw new System.ArgumentNullException("client");
}
Client = client;
}
/// <summary>
/// Gets a reference to the DynamicsClient
/// </summary>
public DynamicsClient Client { get; private set; }
/// <summary>
/// Get user_adoxio_specialeventnote from systemusers
/// </summary>
/// <param name='ownerid'>
/// key: ownerid of systemuser
/// </param>
/// <param name='top'>
/// </param>
/// <param name='skip'>
/// </param>
/// <param name='search'>
/// </param>
/// <param name='filter'>
/// </param>
/// <param name='count'>
/// </param>
/// <param name='orderby'>
/// Order items by property values
/// </param>
/// <param name='select'>
/// Select properties to be returned
/// </param>
/// <param name='expand'>
/// Expand related entities
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="HttpOperationException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="SerializationException">
/// Thrown when unable to deserialize the response
/// </exception>
/// <exception cref="ValidationException">
/// Thrown when a required parameter is null
/// </exception>
/// <exception cref="System.ArgumentNullException">
/// Thrown when a required parameter is null
/// </exception>
/// <return>
/// A response object containing the response body and response headers.
/// </return>
public async Task<HttpOperationResponse<MicrosoftDynamicsCRMadoxioSpecialeventnoteCollection>> GetWithHttpMessagesAsync(string ownerid, int? top = default(int?), int? skip = default(int?), string search = default(string), string filter = default(string), bool? count = default(bool?), IList<string> orderby = default(IList<string>), IList<string> select = default(IList<string>), IList<string> expand = default(IList<string>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (ownerid == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "ownerid");
}
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
if (_shouldTrace)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary<string, object> tracingParameters = new Dictionary<string, object>();
tracingParameters.Add("ownerid", ownerid);
tracingParameters.Add("top", top);
tracingParameters.Add("skip", skip);
tracingParameters.Add("search", search);
tracingParameters.Add("filter", filter);
tracingParameters.Add("count", count);
tracingParameters.Add("orderby", orderby);
tracingParameters.Add("select", select);
tracingParameters.Add("expand", expand);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "systemusers({ownerid})/user_adoxio_specialeventnote").ToString();
_url = _url.Replace("{ownerid}", System.Uri.EscapeDataString(ownerid));
List<string> _queryParameters = new List<string>();
if (top != null)
{
_queryParameters.Add(string.Format("$top={0}", System.Uri.EscapeDataString(Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(top, Client.SerializationSettings).Trim('"'))));
}
if (skip != null)
{
_queryParameters.Add(string.Format("$skip={0}", System.Uri.EscapeDataString(Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(skip, Client.SerializationSettings).Trim('"'))));
}
if (search != null)
{
_queryParameters.Add(string.Format("$search={0}", System.Uri.EscapeDataString(search)));
}
if (filter != null)
{
_queryParameters.Add(string.Format("$filter={0}", System.Uri.EscapeDataString(filter)));
}
if (count != null)
{
_queryParameters.Add(string.Format("$count={0}", System.Uri.EscapeDataString(Microsoft.Rest.Serialization.SafeJsonConvert.SerializeObject(count, Client.SerializationSettings).Trim('"'))));
}
if (orderby != null)
{
_queryParameters.Add(string.Format("$orderby={0}", System.Uri.EscapeDataString(string.Join(",", orderby))));
}
if (select != null)
{
_queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(string.Join(",", select))));
}
if (expand != null)
{
_queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(string.Join(",", expand))));
}
if (_queryParameters.Count > 0)
{
_url += "?" + string.Join("&", _queryParameters);
}
// Create HTTP transport objects
var _httpRequest = new HttpRequestMessage();
HttpResponseMessage _httpResponse = null;
_httpRequest.Method = new HttpMethod("GET");
_httpRequest.RequestUri = new System.Uri(_url);
// Set Headers
if (customHeaders != null)
{
foreach(var _header in customHeaders)
{
if (_httpRequest.Headers.Contains(_header.Key))
{
_httpRequest.Headers.Remove(_header.Key);
}
_httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
}
}
// Serialize Request
string _requestContent = null;
// Set Credentials
if (Client.Credentials != null)
{
cancellationToken.ThrowIfCancellationRequested();
await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
}
// Send Request
if (_shouldTrace)
{
ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
}
cancellationToken.ThrowIfCancellationRequested();
_httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
if (_shouldTrace)
{
ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
}
HttpStatusCode _statusCode = _httpResponse.StatusCode;
cancellationToken.ThrowIfCancellationRequested();
string _responseContent = null;
if ((int)_statusCode != 200)
{
var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
if (_httpResponse.Content != null) {
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
}
else {
_responseContent = string.Empty;
}
ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
if (_shouldTrace)
{
ServiceClientTracing.Error(_invocationId, ex);
}
_httpRequest.Dispose();
if (_httpResponse != null)
{
_httpResponse.Dispose();
}
throw ex;
}
// Create Result
var _result = new HttpOperationResponse<MicrosoftDynamicsCRMadoxioSpecialeventnoteCollection>();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
// Deserialize Response
if ((int)_statusCode == 200)
{
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
_result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject<MicrosoftDynamicsCRMadoxioSpecialeventnoteCollection>(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
_httpRequest.Dispose();
if (_httpResponse != null)
{
_httpResponse.Dispose();
}
throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
}
}
if (_shouldTrace)
{
ServiceClientTracing.Exit(_invocationId, _result);
}
return _result;
}
/// <summary>
/// Get user_adoxio_specialeventnote from systemusers
/// </summary>
/// <param name='ownerid'>
/// key: ownerid of systemuser
/// </param>
/// <param name='adoxioSpecialeventnoteid'>
/// key: adoxio_specialeventnoteid of adoxio_specialeventnote
/// </param>
/// <param name='select'>
/// Select properties to be returned
/// </param>
/// <param name='expand'>
/// Expand related entities
/// </param>
/// <param name='customHeaders'>
/// Headers that will be added to request.
/// </param>
/// <param name='cancellationToken'>
/// The cancellation token.
/// </param>
/// <exception cref="HttpOperationException">
/// Thrown when the operation returned an invalid status code
/// </exception>
/// <exception cref="SerializationException">
/// Thrown when unable to deserialize the response
/// </exception>
/// <exception cref="ValidationException">
/// Thrown when a required parameter is null
/// </exception>
/// <exception cref="System.ArgumentNullException">
/// Thrown when a required parameter is null
/// </exception>
/// <return>
/// A response object containing the response body and response headers.
/// </return>
public async Task<HttpOperationResponse<MicrosoftDynamicsCRMadoxioSpecialeventnote>> SpecialeventnoteByKeyWithHttpMessagesAsync(string ownerid, string adoxioSpecialeventnoteid, IList<string> select = default(IList<string>), IList<string> expand = default(IList<string>), Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken))
{
if (ownerid == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "ownerid");
}
if (adoxioSpecialeventnoteid == null)
{
throw new ValidationException(ValidationRules.CannotBeNull, "adoxioSpecialeventnoteid");
}
// Tracing
bool _shouldTrace = ServiceClientTracing.IsEnabled;
string _invocationId = null;
if (_shouldTrace)
{
_invocationId = ServiceClientTracing.NextInvocationId.ToString();
Dictionary<string, object> tracingParameters = new Dictionary<string, object>();
tracingParameters.Add("ownerid", ownerid);
tracingParameters.Add("adoxioSpecialeventnoteid", adoxioSpecialeventnoteid);
tracingParameters.Add("select", select);
tracingParameters.Add("expand", expand);
tracingParameters.Add("cancellationToken", cancellationToken);
ServiceClientTracing.Enter(_invocationId, this, "SpecialeventnoteByKey", tracingParameters);
}
// Construct URL
var _baseUrl = Client.BaseUri.AbsoluteUri;
var _url = new System.Uri(new System.Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "systemusers({ownerid})/user_adoxio_specialeventnote({adoxio_specialeventnoteid})").ToString();
_url = _url.Replace("{ownerid}", System.Uri.EscapeDataString(ownerid));
_url = _url.Replace("{adoxio_specialeventnoteid}", System.Uri.EscapeDataString(adoxioSpecialeventnoteid));
List<string> _queryParameters = new List<string>();
if (select != null)
{
_queryParameters.Add(string.Format("$select={0}", System.Uri.EscapeDataString(string.Join(",", select))));
}
if (expand != null)
{
_queryParameters.Add(string.Format("$expand={0}", System.Uri.EscapeDataString(string.Join(",", expand))));
}
if (_queryParameters.Count > 0)
{
_url += "?" + string.Join("&", _queryParameters);
}
// Create HTTP transport objects
var _httpRequest = new HttpRequestMessage();
HttpResponseMessage _httpResponse = null;
_httpRequest.Method = new HttpMethod("GET");
_httpRequest.RequestUri = new System.Uri(_url);
// Set Headers
if (customHeaders != null)
{
foreach(var _header in customHeaders)
{
if (_httpRequest.Headers.Contains(_header.Key))
{
_httpRequest.Headers.Remove(_header.Key);
}
_httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value);
}
}
// Serialize Request
string _requestContent = null;
// Set Credentials
if (Client.Credentials != null)
{
cancellationToken.ThrowIfCancellationRequested();
await Client.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
}
// Send Request
if (_shouldTrace)
{
ServiceClientTracing.SendRequest(_invocationId, _httpRequest);
}
cancellationToken.ThrowIfCancellationRequested();
_httpResponse = await Client.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false);
if (_shouldTrace)
{
ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse);
}
HttpStatusCode _statusCode = _httpResponse.StatusCode;
cancellationToken.ThrowIfCancellationRequested();
string _responseContent = null;
if ((int)_statusCode != 200)
{
var ex = new HttpOperationException(string.Format("Operation returned an invalid status code '{0}'", _statusCode));
if (_httpResponse.Content != null) {
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
}
else {
_responseContent = string.Empty;
}
ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent);
ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent);
if (_shouldTrace)
{
ServiceClientTracing.Error(_invocationId, ex);
}
_httpRequest.Dispose();
if (_httpResponse != null)
{
_httpResponse.Dispose();
}
throw ex;
}
// Create Result
var _result = new HttpOperationResponse<MicrosoftDynamicsCRMadoxioSpecialeventnote>();
_result.Request = _httpRequest;
_result.Response = _httpResponse;
// Deserialize Response
if ((int)_statusCode == 200)
{
_responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false);
try
{
_result.Body = Microsoft.Rest.Serialization.SafeJsonConvert.DeserializeObject<MicrosoftDynamicsCRMadoxioSpecialeventnote>(_responseContent, Client.DeserializationSettings);
}
catch (JsonException ex)
{
_httpRequest.Dispose();
if (_httpResponse != null)
{
_httpResponse.Dispose();
}
throw new SerializationException("Unable to deserialize the response.", _responseContent, ex);
}
}
if (_shouldTrace)
{
ServiceClientTracing.Exit(_invocationId, _result);
}
return _result;
}
}
}
| 44.740047 | 555 | 0.566845 | [
"Apache-2.0"
] | BrendanBeachBC/jag-lcrb-carla-public | cllc-interfaces/Dynamics-Autorest/Useradoxiospecialeventnote.cs | 19,104 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Edward.Wilde.CSharp.Features.Model;
using Edward.Wilde.CSharp.Features.Sorting;
using Edward.Wilde.CSharp.Features.Utilities;
namespace Edward.Wilde.CSharp.Features.Querying.net_3
{
class Linq_query_expressions
{
public void Run()
{
ConsoleUtility.PrintInfo(".net 3.5 querying objects using linq query expression.");
var products = Model.Product.GetSampleProducts();
var suppliers = Model.Supplier.GetSampleSuppliers();
var items = from p in products
join s in suppliers on p.SupplierId equals s.Id
where p.Price > 10
orderby s.Name, p.Name
select new {Name = p.Name, Supplier = s.Name, Price = p.Price};
var text = items.ToStringTable(new[] { "Name", "Supplier", "Price" },
item => item.Name,
item => item.Supplier,
item => string.Format("£ {0:0.00}", item.Price));
ConsoleUtility.PrintSuccess(text);
ConsoleUtility.BlankLine();
}
}
}
| 34.583333 | 95 | 0.587149 | [
"Unlicense"
] | ewilde/dotnet-playground | programming/csharp-language-features/Querying/net 3/Linq_query_expressions.cs | 1,248 | C# |
namespace Data.Entities.Abstract
{
public abstract class BaseEntity
{
public int Id { get; set; }
}
}
| 14.666667 | 37 | 0.568182 | [
"MIT"
] | muratboy1993/Dovizmix.web | Data.Entities/Abstract/BaseEntity.cs | 134 | C# |
// Uncomment the following to provide samples for PageResult<T>. Must also add the Microsoft.AspNet.WebApi.OData
// package to your project.
////#define Handle_PageResultOfT
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Net.Http.Headers;
using System.Reflection;
using System.Web;
using System.Web.Http;
#if Handle_PageResultOfT
using System.Web.Http.OData;
#endif
namespace SignalRServer.Areas.HelpPage
{
/// <summary>
/// Use this class to customize the Help Page.
/// For example you can set a custom <see cref="System.Web.Http.Description.IDocumentationProvider"/> to supply the documentation
/// or you can provide the samples for the requests/responses.
/// </summary>
public static class HelpPageConfig
{
[SuppressMessage("Microsoft.Globalization", "CA1303:Do not pass literals as localized parameters",
MessageId = "SignalRServer.Areas.HelpPage.TextSample.#ctor(System.String)",
Justification = "End users may choose to merge this string with existing localized resources.")]
[SuppressMessage("Microsoft.Naming", "CA2204:Literals should be spelled correctly",
MessageId = "bsonspec",
Justification = "Part of a URI.")]
public static void Register(HttpConfiguration config)
{
//// Uncomment the following to use the documentation from XML documentation file.
//config.SetDocumentationProvider(new XmlDocumentationProvider(HttpContext.Current.Server.MapPath("~/App_Data/XmlDocument.xml")));
//// Uncomment the following to use "sample string" as the sample for all actions that have string as the body parameter or return type.
//// Also, the string arrays will be used for IEnumerable<string>. The sample objects will be serialized into different media type
//// formats by the available formatters.
//config.SetSampleObjects(new Dictionary<Type, object>
//{
// {typeof(string), "sample string"},
// {typeof(IEnumerable<string>), new string[]{"sample 1", "sample 2"}}
//});
// Extend the following to provide factories for types not handled automatically (those lacking parameterless
// constructors) or for which you prefer to use non-default property values. Line below provides a fallback
// since automatic handling will fail and GeneratePageResult handles only a single type.
#if Handle_PageResultOfT
config.GetHelpPageSampleGenerator().SampleObjectFactories.Add(GeneratePageResult);
#endif
// Extend the following to use a preset object directly as the sample for all actions that support a media
// type, regardless of the body parameter or return type. The lines below avoid display of binary content.
// The BsonMediaTypeFormatter (if available) is not used to serialize the TextSample object.
config.SetSampleForMediaType(
new TextSample("Binary JSON content. See http://bsonspec.org for details."),
new MediaTypeHeaderValue("application/bson"));
//// Uncomment the following to use "[0]=foo&[1]=bar" directly as the sample for all actions that support form URL encoded format
//// and have IEnumerable<string> as the body parameter or return type.
//config.SetSampleForType("[0]=foo&[1]=bar", new MediaTypeHeaderValue("application/x-www-form-urlencoded"), typeof(IEnumerable<string>));
//// Uncomment the following to use "1234" directly as the request sample for media type "text/plain" on the controller named "Values"
//// and action named "Put".
//config.SetSampleRequest("1234", new MediaTypeHeaderValue("text/plain"), "Values", "Put");
//// Uncomment the following to use the image on "../images/aspNetHome.png" directly as the response sample for media type "image/png"
//// on the controller named "Values" and action named "Get" with parameter "id".
//config.SetSampleResponse(new ImageSample("../images/aspNetHome.png"), new MediaTypeHeaderValue("image/png"), "Values", "Get", "id");
//// Uncomment the following to correct the sample request when the action expects an HttpRequestMessage with ObjectContent<string>.
//// The sample will be generated as if the controller named "Values" and action named "Get" were having string as the body parameter.
//config.SetActualRequestType(typeof(string), "Values", "Get");
//// Uncomment the following to correct the sample response when the action returns an HttpResponseMessage with ObjectContent<string>.
//// The sample will be generated as if the controller named "Values" and action named "Post" were returning a string.
//config.SetActualResponseType(typeof(string), "Values", "Post");
}
#if Handle_PageResultOfT
private static object GeneratePageResult(HelpPageSampleGenerator sampleGenerator, Type type)
{
if (type.IsGenericType)
{
Type openGenericType = type.GetGenericTypeDefinition();
if (openGenericType == typeof(PageResult<>))
{
// Get the T in PageResult<T>
Type[] typeParameters = type.GetGenericArguments();
Debug.Assert(typeParameters.Length == 1);
// Create an enumeration to pass as the first parameter to the PageResult<T> constuctor
Type itemsType = typeof(List<>).MakeGenericType(typeParameters);
object items = sampleGenerator.GetSampleObject(itemsType);
// Fill in the other information needed to invoke the PageResult<T> constuctor
Type[] parameterTypes = new Type[] { itemsType, typeof(Uri), typeof(long?), };
object[] parameters = new object[] { items, null, (long)ObjectGenerator.DefaultCollectionSize, };
// Call PageResult(IEnumerable<T> items, Uri nextPageLink, long? count) constructor
ConstructorInfo constructor = type.GetConstructor(parameterTypes);
return constructor.Invoke(parameters);
}
}
return null;
}
#endif
}
} | 57.495575 | 149 | 0.666154 | [
"MIT"
] | vinej/RestMediaServer | SignalRServer/Areas/HelpPage/App_Start/HelpPageConfig.cs | 6,497 | C# |
// ------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
// ------------------------------------------------------------------------------
#nullable enable
#pragma warning disable CS1591
#pragma warning disable CS0108
#pragma warning disable 618
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Linq;
using System.Runtime.Serialization;
using System.Text.Json.Serialization;
using System.Threading;
using System.Threading.Tasks;
using JetBrains.Space.Common;
using JetBrains.Space.Common.Json.Serialization;
using JetBrains.Space.Common.Json.Serialization.Polymorphism;
using JetBrains.Space.Common.Types;
namespace JetBrains.Space.Client
{
public sealed class RecurrenceRuleEndsNever
: RecurrenceRuleEnds, IClassNameConvertible, IPropagatePropertyAccessPath
{
[JsonPropertyName("className")]
public override string? ClassName => "RecurrenceRuleEnds.Never";
public RecurrenceRuleEndsNever() { }
public override void SetAccessPath(string path, bool validateHasBeenSet)
{
}
}
}
| 30.212766 | 82 | 0.658451 | [
"Apache-2.0"
] | PatrickRatzow/space-dotnet-sdk | src/JetBrains.Space.Client/Generated/Dtos/RecurrenceRuleEndsNever.generated.cs | 1,420 | C# |
// ------------------------------------------------------------------------------
// <copyright file="Region.cs" company="Drake53">
// Licensed under the MIT license.
// See the LICENSE file in the project root for more information.
// </copyright>
// ------------------------------------------------------------------------------
using System.Drawing;
using System.IO;
using War3Net.Common.Extensions;
namespace War3Net.Build.Environment
{
public sealed class Region
{
/// <summary>
/// Initializes a new instance of the <see cref="Region"/> class.
/// </summary>
public Region()
{
}
internal Region(BinaryReader reader, MapRegionsFormatVersion formatVersion)
{
ReadFrom(reader, formatVersion);
}
public float Left { get; set; }
public float Bottom { get; set; }
public float Right { get; set; }
public float Top { get; set; }
public string Name { get; set; }
public int CreationNumber { get; set; }
public WeatherType WeatherType { get; set; }
public string AmbientSound { get; set; }
public Color Color { get; set; }
public float Width => Right - Left;
public float Height => Top - Bottom;
public float CenterX => 0.5f * (Left + Right);
public float CenterY => 0.5f * (Top + Bottom);
public override string ToString() => Name;
internal void ReadFrom(BinaryReader reader, MapRegionsFormatVersion formatVersion)
{
Left = reader.ReadSingle();
Bottom = reader.ReadSingle();
Right = reader.ReadSingle();
Top = reader.ReadSingle();
Name = reader.ReadChars();
CreationNumber = reader.ReadInt32();
WeatherType = reader.ReadInt32<WeatherType>();
AmbientSound = reader.ReadChars();
Color = Color.FromArgb(reader.ReadInt32());
}
internal void WriteTo(BinaryWriter writer, MapRegionsFormatVersion formatVersion)
{
writer.Write(Left);
writer.Write(Bottom);
writer.Write(Right);
writer.Write(Top);
writer.WriteString(Name);
writer.Write(CreationNumber);
writer.Write((int)WeatherType);
writer.WriteString(AmbientSound);
writer.Write(Color.ToArgb());
}
}
} | 29.361446 | 90 | 0.544112 | [
"MIT"
] | Drake53/War3Net | src/War3Net.Build.Core/Environment/Region.cs | 2,439 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Myrtille.Web {
public partial class GetCursor {
}
}
| 28.375 | 81 | 0.389868 | [
"Apache-2.0"
] | 0xh4di/myrtille | Myrtille.Web/GetCursor.aspx.designer.cs | 454 | C# |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
// This behaviour marks prototypes on which trees can grow
public class TreeGrowingPrototype : MonoBehaviour { }
| 27.714286 | 58 | 0.814433 | [
"MIT"
] | Alan-love/wavefunctioncollapse | Assets/Code/Trees/TreeGrowingPrototype.cs | 196 | C# |
// <auto-generated />
using System;
using AspNetCoreIdentity.Areas.Identity.Data;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
namespace AspNetCoreIdentity.Migrations
{
[DbContext(typeof(AspNetCoreIdentityContext))]
[Migration("20210214131819_Identity")]
partial class Identity
{
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "2.2.6-servicing-10079")
.HasAnnotation("Relational:MaxIdentifierLength", 128)
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
{
b.Property<string>("Id")
.ValueGeneratedOnAdd();
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken();
b.Property<string>("Name")
.HasMaxLength(256);
b.Property<string>("NormalizedName")
.HasMaxLength(256);
b.HasKey("Id");
b.HasIndex("NormalizedName")
.IsUnique()
.HasName("RoleNameIndex")
.HasFilter("[NormalizedName] IS NOT NULL");
b.ToTable("AspNetRoles");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
b.Property<string>("ClaimType");
b.Property<string>("ClaimValue");
b.Property<string>("RoleId")
.IsRequired();
b.HasKey("Id");
b.HasIndex("RoleId");
b.ToTable("AspNetRoleClaims");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b =>
{
b.Property<string>("Id")
.ValueGeneratedOnAdd();
b.Property<int>("AccessFailedCount");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken();
b.Property<string>("Email")
.HasMaxLength(256);
b.Property<bool>("EmailConfirmed");
b.Property<bool>("LockoutEnabled");
b.Property<DateTimeOffset?>("LockoutEnd");
b.Property<string>("NormalizedEmail")
.HasMaxLength(256);
b.Property<string>("NormalizedUserName")
.HasMaxLength(256);
b.Property<string>("PasswordHash");
b.Property<string>("PhoneNumber");
b.Property<bool>("PhoneNumberConfirmed");
b.Property<string>("SecurityStamp");
b.Property<bool>("TwoFactorEnabled");
b.Property<string>("UserName")
.HasMaxLength(256);
b.HasKey("Id");
b.HasIndex("NormalizedEmail")
.HasName("EmailIndex");
b.HasIndex("NormalizedUserName")
.IsUnique()
.HasName("UserNameIndex")
.HasFilter("[NormalizedUserName] IS NOT NULL");
b.ToTable("AspNetUsers");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
b.Property<string>("ClaimType");
b.Property<string>("ClaimValue");
b.Property<string>("UserId")
.IsRequired();
b.HasKey("Id");
b.HasIndex("UserId");
b.ToTable("AspNetUserClaims");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.Property<string>("LoginProvider")
.HasMaxLength(128);
b.Property<string>("ProviderKey")
.HasMaxLength(128);
b.Property<string>("ProviderDisplayName");
b.Property<string>("UserId")
.IsRequired();
b.HasKey("LoginProvider", "ProviderKey");
b.HasIndex("UserId");
b.ToTable("AspNetUserLogins");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.Property<string>("UserId");
b.Property<string>("RoleId");
b.HasKey("UserId", "RoleId");
b.HasIndex("RoleId");
b.ToTable("AspNetUserRoles");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.Property<string>("UserId");
b.Property<string>("LoginProvider")
.HasMaxLength(128);
b.Property<string>("Name")
.HasMaxLength(128);
b.Property<string>("Value");
b.HasKey("UserId", "LoginProvider", "Name");
b.ToTable("AspNetUserTokens");
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole")
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser")
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser")
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole")
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade);
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser")
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser")
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade);
});
#pragma warning restore 612, 618
}
}
}
| 35.118143 | 125 | 0.489127 | [
"MIT"
] | gerasoa/RAS.ASPNET-Identity | AspNetCoreIdentity/Migrations/20210214131819_Identity.Designer.cs | 8,325 | C# |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Management.Automation;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
namespace Microsoft.PowerShell.EditorServices.Services.PowerShellContext
{
/// <summary>
/// Indicates the style of prompt to be displayed.
/// </summary>
internal enum PromptStyle
{
/// <summary>
/// Indicates that the full prompt should be displayed
/// with all relevant details.
/// </summary>
Full,
/// <summary>
/// Indicates that a minimal prompt should be displayed,
/// generally used after the full prompt has already been
/// displayed and the options must be displayed again.
/// </summary>
Minimal
}
/// <summary>
/// Provides a base implementation for IPromptHandler classes
/// that present the user a set of options from which a selection
/// should be made.
/// </summary>
internal abstract class ChoicePromptHandler : PromptHandler
{
#region Private Fields
private CancellationTokenSource promptCancellationTokenSource =
new CancellationTokenSource();
private TaskCompletionSource<Dictionary<string, object>> cancelTask =
new TaskCompletionSource<Dictionary<string, object>>();
#endregion
/// <summary>
///
/// </summary>
/// <param name="logger">An ILogger implementation used for writing log messages.</param>
public ChoicePromptHandler(ILogger logger) : base(logger)
{
}
#region Properties
/// <summary>
/// Returns true if the choice prompt allows multiple selections.
/// </summary>
protected bool IsMultiChoice { get; private set; }
/// <summary>
/// Gets the caption (title) string to display with the prompt.
/// </summary>
protected string Caption { get; private set; }
/// <summary>
/// Gets the descriptive message to display with the prompt.
/// </summary>
protected string Message { get; private set; }
/// <summary>
/// Gets the array of choices from which the user must select.
/// </summary>
protected ChoiceDetails[] Choices { get; private set; }
/// <summary>
/// Gets the index of the default choice so that the user
/// interface can make it easy to select this option.
/// </summary>
protected int[] DefaultChoices { get; private set; }
#endregion
#region Public Methods
/// <summary>
/// Prompts the user to make a choice using the provided details.
/// </summary>
/// <param name="promptCaption">
/// The caption string which will be displayed to the user.
/// </param>
/// <param name="promptMessage">
/// The descriptive message which will be displayed to the user.
/// </param>
/// <param name="choices">
/// The list of choices from which the user will select.
/// </param>
/// <param name="defaultChoice">
/// The default choice to highlight for the user.
/// </param>
/// <param name="cancellationToken">
/// A CancellationToken that can be used to cancel the prompt.
/// </param>
/// <returns>
/// A Task instance that can be monitored for completion to get
/// the user's choice.
/// </returns>
public Task<int> PromptForChoiceAsync(
string promptCaption,
string promptMessage,
ChoiceDetails[] choices,
int defaultChoice,
CancellationToken cancellationToken)
{
// TODO: Guard against multiple calls
this.Caption = promptCaption;
this.Message = promptMessage;
this.Choices = choices;
this.DefaultChoices =
defaultChoice == -1
? Array.Empty<int>()
: new int[] { defaultChoice };
// Cancel the TaskCompletionSource if the caller cancels the task
cancellationToken.Register(this.CancelPrompt, true);
// Convert the int[] result to int
return this.WaitForTaskAsync(
this.StartPromptLoopAsync(this.promptCancellationTokenSource.Token)
.ContinueWith(
task =>
{
if (task.IsFaulted)
{
throw task.Exception;
}
else if (task.IsCanceled)
{
throw new TaskCanceledException(task);
}
return ChoicePromptHandler.GetSingleResult(task.GetAwaiter().GetResult());
}));
}
/// <summary>
/// Prompts the user to make a choice of one or more options using the
/// provided details.
/// </summary>
/// <param name="promptCaption">
/// The caption string which will be displayed to the user.
/// </param>
/// <param name="promptMessage">
/// The descriptive message which will be displayed to the user.
/// </param>
/// <param name="choices">
/// The list of choices from which the user will select.
/// </param>
/// <param name="defaultChoices">
/// The default choice(s) to highlight for the user.
/// </param>
/// <param name="cancellationToken">
/// A CancellationToken that can be used to cancel the prompt.
/// </param>
/// <returns>
/// A Task instance that can be monitored for completion to get
/// the user's choices.
/// </returns>
public Task<int[]> PromptForChoiceAsync(
string promptCaption,
string promptMessage,
ChoiceDetails[] choices,
int[] defaultChoices,
CancellationToken cancellationToken)
{
// TODO: Guard against multiple calls
this.Caption = promptCaption;
this.Message = promptMessage;
this.Choices = choices;
this.DefaultChoices = defaultChoices;
this.IsMultiChoice = true;
// Cancel the TaskCompletionSource if the caller cancels the task
cancellationToken.Register(this.CancelPrompt, true);
return this.WaitForTaskAsync(
this.StartPromptLoopAsync(
this.promptCancellationTokenSource.Token));
}
private async Task<T> WaitForTaskAsync<T>(Task<T> taskToWait)
{
_ = await Task.WhenAny(cancelTask.Task, taskToWait).ConfigureAwait(false);
if (this.cancelTask.Task.IsCanceled)
{
throw new PipelineStoppedException();
}
return await taskToWait.ConfigureAwait(false);
}
private async Task<int[]> StartPromptLoopAsync(
CancellationToken cancellationToken)
{
int[] choiceIndexes = null;
// Show the prompt to the user
this.ShowPrompt(PromptStyle.Full);
while (!cancellationToken.IsCancellationRequested)
{
string responseString = await ReadInputStringAsync(cancellationToken).ConfigureAwait(false);
if (responseString == null)
{
// If the response string is null, the prompt has been cancelled
break;
}
choiceIndexes = this.HandleResponse(responseString);
// Return the default choice values if no choices were entered
if (choiceIndexes == null && string.IsNullOrEmpty(responseString))
{
choiceIndexes = this.DefaultChoices;
}
// If the user provided no choices, we should prompt again
if (choiceIndexes != null)
{
break;
}
// The user did not respond with a valid choice,
// show the prompt again to give another chance
this.ShowPrompt(PromptStyle.Minimal);
}
if (cancellationToken.IsCancellationRequested)
{
// Throw a TaskCanceledException to stop the pipeline
throw new TaskCanceledException();
}
return choiceIndexes?.ToArray();
}
/// <summary>
/// Implements behavior to handle the user's response.
/// </summary>
/// <param name="responseString">The string representing the user's response.</param>
/// <returns>
/// True if the prompt is complete, false if the prompt is
/// still waiting for a valid response.
/// </returns>
protected virtual int[] HandleResponse(string responseString)
{
List<int> choiceIndexes = new List<int>();
// Clean up the response string and split it
var choiceStrings =
responseString.Trim().Split(
new char[] { ',' },
StringSplitOptions.RemoveEmptyEntries);
foreach (string choiceString in choiceStrings)
{
for (int i = 0; i < this.Choices.Length; i++)
{
if (this.Choices[i].MatchesInput(choiceString))
{
choiceIndexes.Add(i);
// If this is a single-choice prompt, break out after
// the first matched choice
if (!this.IsMultiChoice)
{
break;
}
}
}
}
if (choiceIndexes.Count == 0)
{
// The user did not respond with a valid choice,
// show the prompt again to give another chance
return null;
}
return choiceIndexes.ToArray();
}
/// <summary>
/// Called when the active prompt should be cancelled.
/// </summary>
protected override void OnPromptCancelled()
{
// Cancel the prompt task
this.promptCancellationTokenSource.Cancel();
this.cancelTask.TrySetCanceled();
}
#endregion
#region Abstract Methods
/// <summary>
/// Called when the prompt should be displayed to the user.
/// </summary>
/// <param name="promptStyle">
/// Indicates the prompt style to use when showing the prompt.
/// </param>
protected abstract void ShowPrompt(PromptStyle promptStyle);
/// <summary>
/// Reads an input string asynchronously from the console.
/// </summary>
/// <param name="cancellationToken">
/// A CancellationToken that can be used to cancel the read.
/// </param>
/// <returns>
/// A Task instance that can be monitored for completion to get
/// the user's input.
/// </returns>
protected abstract Task<string> ReadInputStringAsync(CancellationToken cancellationToken);
#endregion
#region Private Methods
private static int GetSingleResult(int[] choiceArray)
{
return
choiceArray != null
? choiceArray.DefaultIfEmpty(-1).First()
: -1;
}
#endregion
}
}
| 34.25788 | 108 | 0.542405 | [
"MIT"
] | Knas2121/PowerShellEditorServices | src/PowerShellEditorServices/Services/PowerShellContext/Console/ChoicePromptHandler.cs | 11,956 | C# |
using System.Collections;
using System.Collections.Generic;
using System;
using NetRuntimeSystem = System;
using System.ComponentModel;
using NetOffice.Attributes;
using NetOffice.CollectionsGeneric;
namespace NetOffice.ExcelApi
{
/// <summary>
/// DispatchInterface Slicers
/// SupportByVersion Excel, 14,15,16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers"/> </remarks>
[SupportByVersion("Excel", 14,15,16)]
[EntityType(EntityType.IsDispatchInterface), Enumerator(Enumerator.Reference, EnumeratorInvoke.Property), HasIndexProperty(IndexInvoke.Property, "_Default")]
public class Slicers : COMObject, IEnumerableProvider<NetOffice.ExcelApi.Slicer>
{
#pragma warning disable
#region Type Information
/// <summary>
/// Instance Type
/// </summary>
[EditorBrowsable(EditorBrowsableState.Advanced), Browsable(false), Category("NetOffice"), CoreOverridden]
public override Type InstanceType
{
get
{
return LateBindingApiWrapperType;
}
}
private static Type _type;
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public static Type LateBindingApiWrapperType
{
get
{
if (null == _type)
_type = typeof(Slicers);
return _type;
}
}
#endregion
#region Ctor
/// <param name="factory">current used factory core</param>
/// <param name="parentObject">object there has created the proxy</param>
/// <param name="proxyShare">proxy share instead if com proxy</param>
public Slicers(Core factory, ICOMObject parentObject, COMProxyShare proxyShare) : base(factory, parentObject, proxyShare)
{
}
///<param name="factory">current used factory core</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
public Slicers(Core factory, ICOMObject parentObject, object comProxy) : base(factory, parentObject, comProxy)
{
}
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Slicers(ICOMObject parentObject, object comProxy) : base(parentObject, comProxy)
{
}
///<param name="factory">current used factory core</param>
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
///<param name="comProxyType">Type of inner wrapped COM proxy"</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Slicers(Core factory, ICOMObject parentObject, object comProxy, NetRuntimeSystem.Type comProxyType) : base(factory, parentObject, comProxy, comProxyType)
{
}
///<param name="parentObject">object there has created the proxy</param>
///<param name="comProxy">inner wrapped COM proxy</param>
///<param name="comProxyType">Type of inner wrapped COM proxy"</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Slicers(ICOMObject parentObject, object comProxy, NetRuntimeSystem.Type comProxyType) : base(parentObject, comProxy, comProxyType)
{
}
///<param name="replacedObject">object to replaced. replacedObject are not usable after this action</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Slicers(ICOMObject replacedObject) : base(replacedObject)
{
}
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Slicers() : base()
{
}
/// <param name="progId">registered progID</param>
[EditorBrowsable(EditorBrowsableState.Never), Browsable(false)]
public Slicers(string progId) : base(progId)
{
}
#endregion
#region Properties
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// Get
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Application"/> </remarks>
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Application Application
{
get
{
return Factory.ExecuteKnownReferencePropertyGet<NetOffice.ExcelApi.Application>(this, "Application", NetOffice.ExcelApi.Application.LateBindingApiWrapperType);
}
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// Get
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Creator"/> </remarks>
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Enums.XlCreator Creator
{
get
{
return Factory.ExecuteEnumPropertyGet<NetOffice.ExcelApi.Enums.XlCreator>(this, "Creator");
}
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// Get
/// Unknown COM Proxy
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Parent"/> </remarks>
[SupportByVersion("Excel", 14,15,16), ProxyResult]
public object Parent
{
get
{
return Factory.ExecuteReferencePropertyGet(this, "Parent");
}
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// Get
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Count"/> </remarks>
[SupportByVersion("Excel", 14,15,16)]
public Int32 Count
{
get
{
return Factory.ExecuteInt32PropertyGet(this, "Count");
}
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// Get
/// </summary>
/// <param name="index">object index</param>
[SupportByVersion("Excel", 14,15,16)]
[NetRuntimeSystem.Runtime.CompilerServices.IndexerName("Item"), IndexProperty]
public NetOffice.ExcelApi.Slicer this[object index]
{
get
{
return Factory.ExecuteKnownReferencePropertyGet<NetOffice.ExcelApi.Slicer>(this, "_Default", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, index);
}
}
#endregion
#region Methods
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
/// <param name="name">optional object name</param>
/// <param name="caption">optional object caption</param>
/// <param name="top">optional object top</param>
/// <param name="left">optional object left</param>
/// <param name="width">optional object width</param>
/// <param name="height">optional object height</param>
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level, object name, object caption, object top, object left, object width, object height)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, new object[]{ slicerDestination, level, name, caption, top, left, width, height });
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, slicerDestination);
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, slicerDestination, level);
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
/// <param name="name">optional object name</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level, object name)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, slicerDestination, level, name);
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
/// <param name="name">optional object name</param>
/// <param name="caption">optional object caption</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level, object name, object caption)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, slicerDestination, level, name, caption);
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
/// <param name="name">optional object name</param>
/// <param name="caption">optional object caption</param>
/// <param name="top">optional object top</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level, object name, object caption, object top)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, new object[]{ slicerDestination, level, name, caption, top });
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
/// <param name="name">optional object name</param>
/// <param name="caption">optional object caption</param>
/// <param name="top">optional object top</param>
/// <param name="left">optional object left</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level, object name, object caption, object top, object left)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, new object[]{ slicerDestination, level, name, caption, top, left });
}
/// <summary>
/// SupportByVersion Excel 14, 15, 16
/// </summary>
/// <remarks> Docs: <see href="https://docs.microsoft.com/en-us/office/vba/api/Excel.Slicers.Add"/> </remarks>
/// <param name="slicerDestination">object slicerDestination</param>
/// <param name="level">optional object level</param>
/// <param name="name">optional object name</param>
/// <param name="caption">optional object caption</param>
/// <param name="top">optional object top</param>
/// <param name="left">optional object left</param>
/// <param name="width">optional object width</param>
[CustomMethod]
[SupportByVersion("Excel", 14,15,16)]
public NetOffice.ExcelApi.Slicer Add(object slicerDestination, object level, object name, object caption, object top, object left, object width)
{
return Factory.ExecuteKnownReferenceMethodGet<NetOffice.ExcelApi.Slicer>(this, "Add", NetOffice.ExcelApi.Slicer.LateBindingApiWrapperType, new object[]{ slicerDestination, level, name, caption, top, left, width });
}
#endregion
#region IEnumerableProvider<NetOffice.ExcelApi.Slicer>
ICOMObject IEnumerableProvider<NetOffice.ExcelApi.Slicer>.GetComObjectEnumerator(ICOMObject parent)
{
return NetOffice.Utils.GetComObjectEnumeratorAsProperty(parent, this, false);
}
IEnumerable IEnumerableProvider<NetOffice.ExcelApi.Slicer>.FetchVariantComObjectEnumerator(ICOMObject parent, ICOMObject enumerator)
{
return NetOffice.Utils.FetchVariantComObjectEnumerator(parent, enumerator, false);
}
#endregion
#region IEnumerable<NetOffice.ExcelApi.Slicer>
/// <summary>
/// SupportByVersion Excel, 14,15,16
/// </summary>
[SupportByVersion("Excel", 14, 15, 16)]
public IEnumerator<NetOffice.ExcelApi.Slicer> GetEnumerator()
{
NetRuntimeSystem.Collections.IEnumerable innerEnumerator = (this as NetRuntimeSystem.Collections.IEnumerable);
foreach (NetOffice.ExcelApi.Slicer item in innerEnumerator)
yield return item;
}
#endregion
#region IEnumerable
/// <summary>
/// SupportByVersion Excel, 14,15,16
/// </summary>
[SupportByVersion("Excel", 14,15,16)]
IEnumerator NetRuntimeSystem.Collections.IEnumerable.GetEnumerator()
{
return NetOffice.Utils.GetProxyEnumeratorAsProperty(this, false);
}
#endregion
#pragma warning restore
}
} | 39.64624 | 225 | 0.700063 | [
"MIT"
] | NetOfficeFw/NetOffice | Source/Excel/DispatchInterfaces/Slicers.cs | 14,235 | C# |
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the comprehend-2017-11-27.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.Comprehend.Model
{
/// <summary>
/// The input properties for training a document classifier.
///
///
/// <para>
/// For more information on how the input file is formatted, see <a>how-document-classification-training-data</a>.
///
/// </para>
/// </summary>
public partial class DocumentClassifierInputDataConfig
{
private List<AugmentedManifestsListItem> _augmentedManifests = new List<AugmentedManifestsListItem>();
private DocumentClassifierDataFormat _dataFormat;
private string _labelDelimiter;
private string _s3Uri;
private string _testS3Uri;
/// <summary>
/// Gets and sets the property AugmentedManifests.
/// <para>
/// A list of augmented manifest files that provide training data for your custom model.
/// An augmented manifest file is a labeled dataset that is produced by Amazon SageMaker
/// Ground Truth.
/// </para>
///
/// <para>
/// This parameter is required if you set <code>DataFormat</code> to <code>AUGMENTED_MANIFEST</code>.
/// </para>
/// </summary>
public List<AugmentedManifestsListItem> AugmentedManifests
{
get { return this._augmentedManifests; }
set { this._augmentedManifests = value; }
}
// Check to see if AugmentedManifests property is set
internal bool IsSetAugmentedManifests()
{
return this._augmentedManifests != null && this._augmentedManifests.Count > 0;
}
/// <summary>
/// Gets and sets the property DataFormat.
/// <para>
/// The format of your training data:
/// </para>
/// <ul> <li>
/// <para>
/// <code>COMPREHEND_CSV</code>: A two-column CSV file, where labels are provided in
/// the first column, and documents are provided in the second. If you use this value,
/// you must provide the <code>S3Uri</code> parameter in your request.
/// </para>
/// </li> <li>
/// <para>
/// <code>AUGMENTED_MANIFEST</code>: A labeled dataset that is produced by Amazon SageMaker
/// Ground Truth. This file is in JSON lines format. Each line is a complete JSON object
/// that contains a training document and its associated labels.
/// </para>
///
/// <para>
/// If you use this value, you must provide the <code>AugmentedManifests</code> parameter
/// in your request.
/// </para>
/// </li> </ul>
/// <para>
/// If you don't specify a value, Amazon Comprehend uses <code>COMPREHEND_CSV</code> as
/// the default.
/// </para>
/// </summary>
public DocumentClassifierDataFormat DataFormat
{
get { return this._dataFormat; }
set { this._dataFormat = value; }
}
// Check to see if DataFormat property is set
internal bool IsSetDataFormat()
{
return this._dataFormat != null;
}
/// <summary>
/// Gets and sets the property LabelDelimiter.
/// <para>
/// Indicates the delimiter used to separate each label for training a multi-label classifier.
/// The default delimiter between labels is a pipe (|). You can use a different character
/// as a delimiter (if it's an allowed character) by specifying it under Delimiter for
/// labels. If the training documents use a delimiter other than the default or the delimiter
/// you specify, the labels on that line will be combined to make a single unique label,
/// such as LABELLABELLABEL.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1)]
public string LabelDelimiter
{
get { return this._labelDelimiter; }
set { this._labelDelimiter = value; }
}
// Check to see if LabelDelimiter property is set
internal bool IsSetLabelDelimiter()
{
return this._labelDelimiter != null;
}
/// <summary>
/// Gets and sets the property S3Uri.
/// <para>
/// The Amazon S3 URI for the input data. The S3 bucket must be in the same region as
/// the API endpoint that you are calling. The URI can point to a single input file or
/// it can provide the prefix for a collection of input files.
/// </para>
///
/// <para>
/// For example, if you use the URI <code>S3://bucketName/prefix</code>, if the prefix
/// is a single file, Amazon Comprehend uses that file as input. If more than one file
/// begins with the prefix, Amazon Comprehend uses all of them as input.
/// </para>
///
/// <para>
/// This parameter is required if you set <code>DataFormat</code> to <code>COMPREHEND_CSV</code>.
/// </para>
/// </summary>
[AWSProperty(Max=1024)]
public string S3Uri
{
get { return this._s3Uri; }
set { this._s3Uri = value; }
}
// Check to see if S3Uri property is set
internal bool IsSetS3Uri()
{
return this._s3Uri != null;
}
/// <summary>
/// Gets and sets the property TestS3Uri.
/// <para>
/// The Amazon S3 URI for the input data. The Amazon S3 bucket must be in the same AWS
/// Region as the API endpoint that you are calling. The URI can point to a single input
/// file or it can provide the prefix for a collection of input files.
/// </para>
/// </summary>
[AWSProperty(Max=1024)]
public string TestS3Uri
{
get { return this._testS3Uri; }
set { this._testS3Uri = value; }
}
// Check to see if TestS3Uri property is set
internal bool IsSetTestS3Uri()
{
return this._testS3Uri != null;
}
}
} | 36.994709 | 118 | 0.595109 | [
"Apache-2.0"
] | EbstaLimited/aws-sdk-net | sdk/src/Services/Comprehend/Generated/Model/DocumentClassifierInputDataConfig.cs | 6,992 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace libMatrix.Responses.Events.Room
{
[DataContract]
public class JoinRules : MatrixEvents
{
[DataMember(Name = "content")]
public JoinRulesContent Content { get; set; }
}
[DataContract]
public class JoinRulesContent
{
[DataMember(Name = "join_rule")]
public string JoinRule { get; set; }
}
}
| 21.583333 | 53 | 0.677606 | [
"Apache-2.0"
] | VRocker/MatrixAPI | Responses/Events/Room/JoinRules.cs | 520 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace TimeBasedOTPBT
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>()
.UseUrls("http://localhost:4000");
});
}
}
| 26.928571 | 70 | 0.628647 | [
"MIT"
] | BogdanCatalin/TimeBasedOtpBt | TimeBasedOTPBT/TimeBasedOTPBT/Program.cs | 754 | C# |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// La información general de un ensamblado se controla mediante el siguiente
// conjunto de atributos. Cambie estos valores de atributo para modificar la información
// asociada a un ensamblado.
[assembly: AssemblyTitle("Vestis.UWP")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Vestis.UWP")]
[assembly: AssemblyCopyright("Copyright © 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// La información de versión de un ensamblado consta de los cuatro valores siguientes:
//
// Versión principal
// Versión secundaria
// Número de compilación
// Revisión
//
// Puede especificar todos los valores o usar los valores predeterminados de número de compilación y de revisión
// utilizando el carácter "*", como se muestra a continuación:
//[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: ComVisible(false)] | 38.827586 | 112 | 0.75222 | [
"MIT"
] | carlubian/Vestis | Vestis/Vestis.UWP/Properties/AssemblyInfo.cs | 1,143 | C# |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Text;
using System.Threading.Tasks;
using CliWrap;
using CliWrap.Builders;
namespace DotNetReleaser.Runners;
public record DotNetResult(CommandResult CommandResult, string CommandLine, string Output)
{
public bool HasErrors => CommandResult.ExitCode != 0;
}
[DebuggerDisplay("{" + nameof(ToDebuggerDisplay) + "(),nq}")]
public abstract class DotNetRunnerBase : IDisposable
{
protected DotNetRunnerBase(string command)
{
Command = command ?? throw new ArgumentNullException(nameof(command));
Arguments = new List<string>();
Properties = new Dictionary<string, object>();
WorkingDirectory = Environment.CurrentDirectory;
}
public string Command { get; }
public List<string> Arguments { get; }
public Dictionary<string, object> Properties { get; }
public string WorkingDirectory { get; set; }
public Action<string>? LogStandardOutput { get; set; }
public Action<string>? LogStandardError { get; set; }
protected Action? RunAfterStart { get; set; }
protected virtual IEnumerable<string> ComputeArguments() => Arguments;
protected virtual IReadOnlyDictionary<string, object> ComputeProperties() => Properties;
protected async Task<DotNetResult> RunImpl()
{
return await Run(Command, ComputeArguments(), ComputeProperties(), WorkingDirectory);
}
private string ToDebuggerDisplay()
{
return $"dotnet {GetFullArguments(Command, ComputeArguments(), ComputeProperties())}";
}
private static string GetFullArguments(string command, IEnumerable<string> arguments, IReadOnlyDictionary<string, object>? properties)
{
var argsBuilder = new ArgumentsBuilder();
argsBuilder.Add($"{command}");
// Pass all our user properties to msbuild
if (properties != null)
{
foreach (var property in properties)
{
argsBuilder.Add($"-p:{property.Key}={GetPropertyValueAsString(property.Value)}");
}
}
// Add all arguments
foreach (var arg in arguments)
{
argsBuilder.Add(arg);
}
return argsBuilder.Build();
}
private static string GetPropertyValueAsString(object value)
{
if (value is bool b) return b ? "true" : "false";
if (value is IFormattable formattable) return formattable.ToString(null, CultureInfo.InvariantCulture);
return value.ToString() ?? string.Empty;
}
private async Task<DotNetResult> Run(string command, IEnumerable<string> args, IReadOnlyDictionary<string, object>? properties = null, string? workingDirectory = null)
{
var stdOutAndErrorBuffer = new StringBuilder();
var arguments = GetFullArguments(command, args, properties);
//Console.WriteLine($"dotnet {arguments}");
var wrap = Cli.Wrap("dotnet")
.WithArguments(arguments)
.WithWorkingDirectory(workingDirectory ?? Environment.CurrentDirectory)
.WithStandardOutputPipe(LogStandardOutput is not null ? PipeTarget.ToDelegate(LogStandardOutput): PipeTarget.ToStringBuilder(stdOutAndErrorBuffer))
.WithStandardErrorPipe(LogStandardError is not null ? PipeTarget.ToDelegate(LogStandardError) : PipeTarget.ToStringBuilder(stdOutAndErrorBuffer))
.WithValidation(CommandResultValidation.None)
.ExecuteAsync();
RunAfterStart?.Invoke();
var result = await wrap.ConfigureAwait(false);
return new DotNetResult(result, $"dotnet {arguments}",stdOutAndErrorBuffer.ToString());
}
protected virtual void Dispose(bool disposing)
{
if (disposing)
{
}
}
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
} | 32.716667 | 171 | 0.675751 | [
"BSD-2-Clause"
] | xoofx/dotnet-releaser | src/dotnet-releaser/Runners/DotNetRunnerBase.cs | 3,928 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace IGExcel.Resources.SamplesBrowser {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class SamplesBrowser {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal SamplesBrowser() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("IGExcel.Resources.SamplesBrowser.SamplesBrowser", typeof(SamplesBrowser).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Large100 {
get {
object obj = ResourceManager.GetObject("Large100", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Large140 {
get {
object obj = ResourceManager.GetObject("Large140", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Large180 {
get {
object obj = ResourceManager.GetObject("Large180", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Large80 {
get {
object obj = ResourceManager.GetObject("Large80", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Medium100 {
get {
object obj = ResourceManager.GetObject("Medium100", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Medium140 {
get {
object obj = ResourceManager.GetObject("Medium140", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Medium180 {
get {
object obj = ResourceManager.GetObject("Medium180", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>
internal static System.Drawing.Bitmap Medium80 {
get {
object obj = ResourceManager.GetObject("Medium80", resourceCulture);
return ((System.Drawing.Bitmap)(obj));
}
}
/// <summary>
/// Looks up a localized string similar to This sample showcases the Infragistics® Spreadsheet and ToolbarsManager (Ribbon) components in an Excel-style application..
/// </summary>
internal static string SampleDescription {
get {
return ResourceManager.GetString("SampleDescription", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to IGExcel.
/// </summary>
internal static string SampleName {
get {
return ResourceManager.GetString("SampleName", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Showcase.
/// </summary>
internal static string ShowcaseCategory {
get {
return ResourceManager.GetString("ShowcaseCategory", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to 3.
/// </summary>
internal static string SortOrder {
get {
return ResourceManager.GetString("SortOrder", resourceCulture);
}
}
}
}
| 39.111111 | 197 | 0.563494 | [
"MIT"
] | Infragistics/winforms-samples | Applications/IGExcel/IGExcel/Resources/SamplesBrowser/SamplesBrowser.Designer.cs | 7,043 | C# |
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the xray-2016-04-12.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Net;
using System.Text;
using System.Xml.Serialization;
using Amazon.XRay.Model;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Transform;
using Amazon.Runtime.Internal.Util;
using ThirdParty.Json.LitJson;
namespace Amazon.XRay.Model.Internal.MarshallTransformations
{
/// <summary>
/// Response Unmarshaller for Segment Object
/// </summary>
public class SegmentUnmarshaller : IUnmarshaller<Segment, XmlUnmarshallerContext>, IUnmarshaller<Segment, JsonUnmarshallerContext>
{
/// <summary>
/// Unmarshaller the response from the service to the response class.
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
Segment IUnmarshaller<Segment, XmlUnmarshallerContext>.Unmarshall(XmlUnmarshallerContext context)
{
throw new NotImplementedException();
}
/// <summary>
/// Unmarshaller the response from the service to the response class.
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public Segment Unmarshall(JsonUnmarshallerContext context)
{
context.Read();
if (context.CurrentTokenType == JsonToken.Null)
return null;
Segment unmarshalledObject = new Segment();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("Document", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
unmarshalledObject.Document = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("Id", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
unmarshalledObject.Id = unmarshaller.Unmarshall(context);
continue;
}
}
return unmarshalledObject;
}
private static SegmentUnmarshaller _instance = new SegmentUnmarshaller();
/// <summary>
/// Gets the singleton.
/// </summary>
public static SegmentUnmarshaller Instance
{
get
{
return _instance;
}
}
}
} | 33.173469 | 134 | 0.616118 | [
"Apache-2.0"
] | ChristopherButtars/aws-sdk-net | sdk/src/Services/XRay/Generated/Model/Internal/MarshallTransformations/SegmentUnmarshaller.cs | 3,251 | C# |
using System;
namespace YmlTransform.Models
{
class TransformItem
{
private string _value;
private bool _used;
public string Path { get; set; }
public string Type { get; set; }
public string Languages { get; set; }
public Guid FieldId { get; set; }
public string Value
{
get
{
_used = true;
return _value;
}
set { _value = value; }
}
public string Hint { get; set; }
public bool Used => _used;
}
} | 20.103448 | 45 | 0.48199 | [
"MIT"
] | luuksommers/YamlTransform | src/YmlTransform/Models/TransformItem.cs | 585 | C# |
#if !NETSTANDARD13
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the states-2016-11-23.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
using System.Threading;
using System.Threading.Tasks;
using Amazon.Runtime;
namespace Amazon.StepFunctions.Model
{
/// <summary>
/// Base class for ListStateMachines paginators.
/// </summary>
internal sealed partial class ListStateMachinesPaginator : IPaginator<ListStateMachinesResponse>, IListStateMachinesPaginator
{
private readonly IAmazonStepFunctions _client;
private readonly ListStateMachinesRequest _request;
private int _isPaginatorInUse = 0;
/// <summary>
/// Enumerable containing all full responses for the operation
/// </summary>
public IPaginatedEnumerable<ListStateMachinesResponse> Responses => new PaginatedResponse<ListStateMachinesResponse>(this);
/// <summary>
/// Enumerable containing all of the StateMachines
/// </summary>
public IPaginatedEnumerable<StateMachineListItem> StateMachines =>
new PaginatedResultKeyResponse<ListStateMachinesResponse, StateMachineListItem>(this, (i) => i.StateMachines);
internal ListStateMachinesPaginator(IAmazonStepFunctions client, ListStateMachinesRequest request)
{
this._client = client;
this._request = request;
}
#if BCL
IEnumerable<ListStateMachinesResponse> IPaginator<ListStateMachinesResponse>.Paginate()
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
ListStateMachinesResponse response;
do
{
_request.NextToken = nextToken;
response = _client.ListStateMachines(_request);
nextToken = response.NextToken;
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
#if AWS_ASYNC_ENUMERABLES_API
async IAsyncEnumerable<ListStateMachinesResponse> IPaginator<ListStateMachinesResponse>.PaginateAsync(CancellationToken cancellationToken = default)
{
if (Interlocked.Exchange(ref _isPaginatorInUse, 1) != 0)
{
throw new System.InvalidOperationException("Paginator has already been consumed and cannot be reused. Please create a new instance.");
}
PaginatorUtils.SetUserAgentAdditionOnRequest(_request);
var nextToken = _request.NextToken;
ListStateMachinesResponse response;
do
{
_request.NextToken = nextToken;
response = await _client.ListStateMachinesAsync(_request, cancellationToken).ConfigureAwait(false);
nextToken = response.NextToken;
cancellationToken.ThrowIfCancellationRequested();
yield return response;
}
while (!string.IsNullOrEmpty(nextToken));
}
#endif
}
}
#endif | 39.989899 | 156 | 0.671887 | [
"Apache-2.0"
] | PureKrome/aws-sdk-net | sdk/src/Services/StepFunctions/Generated/Model/_bcl45+netstandard/ListStateMachinesPaginator.cs | 3,959 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc.RazorPages;
namespace Core_Web_App.Pages
{
public class AboutModel : PageModel
{
public string Message { get; set; }
public void OnGet()
{
Message = "Your application description page.";
}
}
}
| 20 | 59 | 0.657895 | [
"MIT"
] | TiagoPT/.NET-Latest-Greatest | Playground/Core Web App/Pages/About.cshtml.cs | 382 | C# |
#pragma warning disable 1591
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
[assembly: global::Android.Runtime.ResourceDesignerAttribute("SampleServices.Droid.Resource", IsApplication=true)]
namespace SampleServices.Droid
{
[System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")]
public partial class Resource
{
static Resource()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
public static void UpdateIdValues()
{
global::Xamarin.Forms.Platform.Android.Resource.Attribute.actionBarSize = global::SampleServices.Droid.Resource.Attribute.actionBarSize;
}
public partial class Animation
{
// aapt resource value: 0x7f040000
public const int abc_fade_in = 2130968576;
// aapt resource value: 0x7f040001
public const int abc_fade_out = 2130968577;
// aapt resource value: 0x7f040002
public const int abc_grow_fade_in_from_bottom = 2130968578;
// aapt resource value: 0x7f040003
public const int abc_popup_enter = 2130968579;
// aapt resource value: 0x7f040004
public const int abc_popup_exit = 2130968580;
// aapt resource value: 0x7f040005
public const int abc_shrink_fade_out_from_bottom = 2130968581;
// aapt resource value: 0x7f040006
public const int abc_slide_in_bottom = 2130968582;
// aapt resource value: 0x7f040007
public const int abc_slide_in_top = 2130968583;
// aapt resource value: 0x7f040008
public const int abc_slide_out_bottom = 2130968584;
// aapt resource value: 0x7f040009
public const int abc_slide_out_top = 2130968585;
// aapt resource value: 0x7f04000a
public const int design_bottom_sheet_slide_in = 2130968586;
// aapt resource value: 0x7f04000b
public const int design_bottom_sheet_slide_out = 2130968587;
// aapt resource value: 0x7f04000c
public const int design_snackbar_in = 2130968588;
// aapt resource value: 0x7f04000d
public const int design_snackbar_out = 2130968589;
// aapt resource value: 0x7f04000e
public const int tooltip_enter = 2130968590;
// aapt resource value: 0x7f04000f
public const int tooltip_exit = 2130968591;
static Animation()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Animation()
{
}
}
public partial class Animator
{
// aapt resource value: 0x7f050000
public const int design_appbar_state_list_animator = 2131034112;
static Animator()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Animator()
{
}
}
public partial class Attribute
{
// aapt resource value: 0x7f01006b
public const int actionBarDivider = 2130772075;
// aapt resource value: 0x7f01006c
public const int actionBarItemBackground = 2130772076;
// aapt resource value: 0x7f010065
public const int actionBarPopupTheme = 2130772069;
// aapt resource value: 0x7f01006a
public const int actionBarSize = 2130772074;
// aapt resource value: 0x7f010067
public const int actionBarSplitStyle = 2130772071;
// aapt resource value: 0x7f010066
public const int actionBarStyle = 2130772070;
// aapt resource value: 0x7f010061
public const int actionBarTabBarStyle = 2130772065;
// aapt resource value: 0x7f010060
public const int actionBarTabStyle = 2130772064;
// aapt resource value: 0x7f010062
public const int actionBarTabTextStyle = 2130772066;
// aapt resource value: 0x7f010068
public const int actionBarTheme = 2130772072;
// aapt resource value: 0x7f010069
public const int actionBarWidgetTheme = 2130772073;
// aapt resource value: 0x7f010086
public const int actionButtonStyle = 2130772102;
// aapt resource value: 0x7f010082
public const int actionDropDownStyle = 2130772098;
// aapt resource value: 0x7f0100dd
public const int actionLayout = 2130772189;
// aapt resource value: 0x7f01006d
public const int actionMenuTextAppearance = 2130772077;
// aapt resource value: 0x7f01006e
public const int actionMenuTextColor = 2130772078;
// aapt resource value: 0x7f010071
public const int actionModeBackground = 2130772081;
// aapt resource value: 0x7f010070
public const int actionModeCloseButtonStyle = 2130772080;
// aapt resource value: 0x7f010073
public const int actionModeCloseDrawable = 2130772083;
// aapt resource value: 0x7f010075
public const int actionModeCopyDrawable = 2130772085;
// aapt resource value: 0x7f010074
public const int actionModeCutDrawable = 2130772084;
// aapt resource value: 0x7f010079
public const int actionModeFindDrawable = 2130772089;
// aapt resource value: 0x7f010076
public const int actionModePasteDrawable = 2130772086;
// aapt resource value: 0x7f01007b
public const int actionModePopupWindowStyle = 2130772091;
// aapt resource value: 0x7f010077
public const int actionModeSelectAllDrawable = 2130772087;
// aapt resource value: 0x7f010078
public const int actionModeShareDrawable = 2130772088;
// aapt resource value: 0x7f010072
public const int actionModeSplitBackground = 2130772082;
// aapt resource value: 0x7f01006f
public const int actionModeStyle = 2130772079;
// aapt resource value: 0x7f01007a
public const int actionModeWebSearchDrawable = 2130772090;
// aapt resource value: 0x7f010063
public const int actionOverflowButtonStyle = 2130772067;
// aapt resource value: 0x7f010064
public const int actionOverflowMenuStyle = 2130772068;
// aapt resource value: 0x7f0100df
public const int actionProviderClass = 2130772191;
// aapt resource value: 0x7f0100de
public const int actionViewClass = 2130772190;
// aapt resource value: 0x7f01008e
public const int activityChooserViewStyle = 2130772110;
// aapt resource value: 0x7f0100b3
public const int alertDialogButtonGroupStyle = 2130772147;
// aapt resource value: 0x7f0100b4
public const int alertDialogCenterButtons = 2130772148;
// aapt resource value: 0x7f0100b2
public const int alertDialogStyle = 2130772146;
// aapt resource value: 0x7f0100b5
public const int alertDialogTheme = 2130772149;
// aapt resource value: 0x7f0100cb
public const int allowStacking = 2130772171;
// aapt resource value: 0x7f0100cc
public const int alpha = 2130772172;
// aapt resource value: 0x7f0100da
public const int alphabeticModifiers = 2130772186;
// aapt resource value: 0x7f0100d3
public const int arrowHeadLength = 2130772179;
// aapt resource value: 0x7f0100d4
public const int arrowShaftLength = 2130772180;
// aapt resource value: 0x7f0100ba
public const int autoCompleteTextViewStyle = 2130772154;
// aapt resource value: 0x7f010054
public const int autoSizeMaxTextSize = 2130772052;
// aapt resource value: 0x7f010053
public const int autoSizeMinTextSize = 2130772051;
// aapt resource value: 0x7f010052
public const int autoSizePresetSizes = 2130772050;
// aapt resource value: 0x7f010051
public const int autoSizeStepGranularity = 2130772049;
// aapt resource value: 0x7f010050
public const int autoSizeTextType = 2130772048;
// aapt resource value: 0x7f01002e
public const int background = 2130772014;
// aapt resource value: 0x7f010030
public const int backgroundSplit = 2130772016;
// aapt resource value: 0x7f01002f
public const int backgroundStacked = 2130772015;
// aapt resource value: 0x7f010116
public const int backgroundTint = 2130772246;
// aapt resource value: 0x7f010117
public const int backgroundTintMode = 2130772247;
// aapt resource value: 0x7f0100d5
public const int barLength = 2130772181;
// aapt resource value: 0x7f010141
public const int behavior_autoHide = 2130772289;
// aapt resource value: 0x7f01011e
public const int behavior_hideable = 2130772254;
// aapt resource value: 0x7f01014a
public const int behavior_overlapTop = 2130772298;
// aapt resource value: 0x7f01011d
public const int behavior_peekHeight = 2130772253;
// aapt resource value: 0x7f01011f
public const int behavior_skipCollapsed = 2130772255;
// aapt resource value: 0x7f01013f
public const int borderWidth = 2130772287;
// aapt resource value: 0x7f01008b
public const int borderlessButtonStyle = 2130772107;
// aapt resource value: 0x7f010139
public const int bottomSheetDialogTheme = 2130772281;
// aapt resource value: 0x7f01013a
public const int bottomSheetStyle = 2130772282;
// aapt resource value: 0x7f010088
public const int buttonBarButtonStyle = 2130772104;
// aapt resource value: 0x7f0100b8
public const int buttonBarNegativeButtonStyle = 2130772152;
// aapt resource value: 0x7f0100b9
public const int buttonBarNeutralButtonStyle = 2130772153;
// aapt resource value: 0x7f0100b7
public const int buttonBarPositiveButtonStyle = 2130772151;
// aapt resource value: 0x7f010087
public const int buttonBarStyle = 2130772103;
// aapt resource value: 0x7f01010b
public const int buttonGravity = 2130772235;
// aapt resource value: 0x7f010043
public const int buttonPanelSideLayout = 2130772035;
// aapt resource value: 0x7f0100bb
public const int buttonStyle = 2130772155;
// aapt resource value: 0x7f0100bc
public const int buttonStyleSmall = 2130772156;
// aapt resource value: 0x7f0100cd
public const int buttonTint = 2130772173;
// aapt resource value: 0x7f0100ce
public const int buttonTintMode = 2130772174;
// aapt resource value: 0x7f010017
public const int cardBackgroundColor = 2130771991;
// aapt resource value: 0x7f010018
public const int cardCornerRadius = 2130771992;
// aapt resource value: 0x7f010019
public const int cardElevation = 2130771993;
// aapt resource value: 0x7f01001a
public const int cardMaxElevation = 2130771994;
// aapt resource value: 0x7f01001c
public const int cardPreventCornerOverlap = 2130771996;
// aapt resource value: 0x7f01001b
public const int cardUseCompatPadding = 2130771995;
// aapt resource value: 0x7f0100bd
public const int checkboxStyle = 2130772157;
// aapt resource value: 0x7f0100be
public const int checkedTextViewStyle = 2130772158;
// aapt resource value: 0x7f0100ee
public const int closeIcon = 2130772206;
// aapt resource value: 0x7f010040
public const int closeItemLayout = 2130772032;
// aapt resource value: 0x7f01010d
public const int collapseContentDescription = 2130772237;
// aapt resource value: 0x7f01010c
public const int collapseIcon = 2130772236;
// aapt resource value: 0x7f01012c
public const int collapsedTitleGravity = 2130772268;
// aapt resource value: 0x7f010126
public const int collapsedTitleTextAppearance = 2130772262;
// aapt resource value: 0x7f0100cf
public const int color = 2130772175;
// aapt resource value: 0x7f0100aa
public const int colorAccent = 2130772138;
// aapt resource value: 0x7f0100b1
public const int colorBackgroundFloating = 2130772145;
// aapt resource value: 0x7f0100ae
public const int colorButtonNormal = 2130772142;
// aapt resource value: 0x7f0100ac
public const int colorControlActivated = 2130772140;
// aapt resource value: 0x7f0100ad
public const int colorControlHighlight = 2130772141;
// aapt resource value: 0x7f0100ab
public const int colorControlNormal = 2130772139;
// aapt resource value: 0x7f0100ca
public const int colorError = 2130772170;
// aapt resource value: 0x7f0100a8
public const int colorPrimary = 2130772136;
// aapt resource value: 0x7f0100a9
public const int colorPrimaryDark = 2130772137;
// aapt resource value: 0x7f0100af
public const int colorSwitchThumbNormal = 2130772143;
// aapt resource value: 0x7f0100f3
public const int commitIcon = 2130772211;
// aapt resource value: 0x7f0100e0
public const int contentDescription = 2130772192;
// aapt resource value: 0x7f010039
public const int contentInsetEnd = 2130772025;
// aapt resource value: 0x7f01003d
public const int contentInsetEndWithActions = 2130772029;
// aapt resource value: 0x7f01003a
public const int contentInsetLeft = 2130772026;
// aapt resource value: 0x7f01003b
public const int contentInsetRight = 2130772027;
// aapt resource value: 0x7f010038
public const int contentInsetStart = 2130772024;
// aapt resource value: 0x7f01003c
public const int contentInsetStartWithNavigation = 2130772028;
// aapt resource value: 0x7f01001d
public const int contentPadding = 2130771997;
// aapt resource value: 0x7f010021
public const int contentPaddingBottom = 2130772001;
// aapt resource value: 0x7f01001e
public const int contentPaddingLeft = 2130771998;
// aapt resource value: 0x7f01001f
public const int contentPaddingRight = 2130771999;
// aapt resource value: 0x7f010020
public const int contentPaddingTop = 2130772000;
// aapt resource value: 0x7f010127
public const int contentScrim = 2130772263;
// aapt resource value: 0x7f0100b0
public const int controlBackground = 2130772144;
// aapt resource value: 0x7f010160
public const int counterEnabled = 2130772320;
// aapt resource value: 0x7f010161
public const int counterMaxLength = 2130772321;
// aapt resource value: 0x7f010163
public const int counterOverflowTextAppearance = 2130772323;
// aapt resource value: 0x7f010162
public const int counterTextAppearance = 2130772322;
// aapt resource value: 0x7f010031
public const int customNavigationLayout = 2130772017;
// aapt resource value: 0x7f0100ed
public const int defaultQueryHint = 2130772205;
// aapt resource value: 0x7f010080
public const int dialogPreferredPadding = 2130772096;
// aapt resource value: 0x7f01007f
public const int dialogTheme = 2130772095;
// aapt resource value: 0x7f010027
public const int displayOptions = 2130772007;
// aapt resource value: 0x7f01002d
public const int divider = 2130772013;
// aapt resource value: 0x7f01008d
public const int dividerHorizontal = 2130772109;
// aapt resource value: 0x7f0100d9
public const int dividerPadding = 2130772185;
// aapt resource value: 0x7f01008c
public const int dividerVertical = 2130772108;
// aapt resource value: 0x7f0100d1
public const int drawableSize = 2130772177;
// aapt resource value: 0x7f010022
public const int drawerArrowStyle = 2130772002;
// aapt resource value: 0x7f01009f
public const int dropDownListViewStyle = 2130772127;
// aapt resource value: 0x7f010083
public const int dropdownListPreferredItemHeight = 2130772099;
// aapt resource value: 0x7f010094
public const int editTextBackground = 2130772116;
// aapt resource value: 0x7f010093
public const int editTextColor = 2130772115;
// aapt resource value: 0x7f0100bf
public const int editTextStyle = 2130772159;
// aapt resource value: 0x7f01003e
public const int elevation = 2130772030;
// aapt resource value: 0x7f01015e
public const int errorEnabled = 2130772318;
// aapt resource value: 0x7f01015f
public const int errorTextAppearance = 2130772319;
// aapt resource value: 0x7f010042
public const int expandActivityOverflowButtonDrawable = 2130772034;
// aapt resource value: 0x7f010118
public const int expanded = 2130772248;
// aapt resource value: 0x7f01012d
public const int expandedTitleGravity = 2130772269;
// aapt resource value: 0x7f010120
public const int expandedTitleMargin = 2130772256;
// aapt resource value: 0x7f010124
public const int expandedTitleMarginBottom = 2130772260;
// aapt resource value: 0x7f010123
public const int expandedTitleMarginEnd = 2130772259;
// aapt resource value: 0x7f010121
public const int expandedTitleMarginStart = 2130772257;
// aapt resource value: 0x7f010122
public const int expandedTitleMarginTop = 2130772258;
// aapt resource value: 0x7f010125
public const int expandedTitleTextAppearance = 2130772261;
// aapt resource value: 0x7f010015
public const int externalRouteEnabledDrawable = 2130771989;
// aapt resource value: 0x7f01013d
public const int fabSize = 2130772285;
// aapt resource value: 0x7f010004
public const int fastScrollEnabled = 2130771972;
// aapt resource value: 0x7f010007
public const int fastScrollHorizontalThumbDrawable = 2130771975;
// aapt resource value: 0x7f010008
public const int fastScrollHorizontalTrackDrawable = 2130771976;
// aapt resource value: 0x7f010005
public const int fastScrollVerticalThumbDrawable = 2130771973;
// aapt resource value: 0x7f010006
public const int fastScrollVerticalTrackDrawable = 2130771974;
// aapt resource value: 0x7f010171
public const int font = 2130772337;
// aapt resource value: 0x7f010055
public const int fontFamily = 2130772053;
// aapt resource value: 0x7f01016a
public const int fontProviderAuthority = 2130772330;
// aapt resource value: 0x7f01016d
public const int fontProviderCerts = 2130772333;
// aapt resource value: 0x7f01016e
public const int fontProviderFetchStrategy = 2130772334;
// aapt resource value: 0x7f01016f
public const int fontProviderFetchTimeout = 2130772335;
// aapt resource value: 0x7f01016b
public const int fontProviderPackage = 2130772331;
// aapt resource value: 0x7f01016c
public const int fontProviderQuery = 2130772332;
// aapt resource value: 0x7f010170
public const int fontStyle = 2130772336;
// aapt resource value: 0x7f010172
public const int fontWeight = 2130772338;
// aapt resource value: 0x7f010142
public const int foregroundInsidePadding = 2130772290;
// aapt resource value: 0x7f0100d2
public const int gapBetweenBars = 2130772178;
// aapt resource value: 0x7f0100ef
public const int goIcon = 2130772207;
// aapt resource value: 0x7f010148
public const int headerLayout = 2130772296;
// aapt resource value: 0x7f010023
public const int height = 2130772003;
// aapt resource value: 0x7f010037
public const int hideOnContentScroll = 2130772023;
// aapt resource value: 0x7f010164
public const int hintAnimationEnabled = 2130772324;
// aapt resource value: 0x7f01015d
public const int hintEnabled = 2130772317;
// aapt resource value: 0x7f01015c
public const int hintTextAppearance = 2130772316;
// aapt resource value: 0x7f010085
public const int homeAsUpIndicator = 2130772101;
// aapt resource value: 0x7f010032
public const int homeLayout = 2130772018;
// aapt resource value: 0x7f01002b
public const int icon = 2130772011;
// aapt resource value: 0x7f0100e2
public const int iconTint = 2130772194;
// aapt resource value: 0x7f0100e3
public const int iconTintMode = 2130772195;
// aapt resource value: 0x7f0100eb
public const int iconifiedByDefault = 2130772203;
// aapt resource value: 0x7f010095
public const int imageButtonStyle = 2130772117;
// aapt resource value: 0x7f010034
public const int indeterminateProgressStyle = 2130772020;
// aapt resource value: 0x7f010041
public const int initialActivityCount = 2130772033;
// aapt resource value: 0x7f010149
public const int insetForeground = 2130772297;
// aapt resource value: 0x7f010024
public const int isLightTheme = 2130772004;
// aapt resource value: 0x7f010146
public const int itemBackground = 2130772294;
// aapt resource value: 0x7f010144
public const int itemIconTint = 2130772292;
// aapt resource value: 0x7f010036
public const int itemPadding = 2130772022;
// aapt resource value: 0x7f010147
public const int itemTextAppearance = 2130772295;
// aapt resource value: 0x7f010145
public const int itemTextColor = 2130772293;
// aapt resource value: 0x7f010131
public const int keylines = 2130772273;
// aapt resource value: 0x7f0100ea
public const int layout = 2130772202;
// aapt resource value: 0x7f010000
public const int layoutManager = 2130771968;
// aapt resource value: 0x7f010134
public const int layout_anchor = 2130772276;
// aapt resource value: 0x7f010136
public const int layout_anchorGravity = 2130772278;
// aapt resource value: 0x7f010133
public const int layout_behavior = 2130772275;
// aapt resource value: 0x7f01012f
public const int layout_collapseMode = 2130772271;
// aapt resource value: 0x7f010130
public const int layout_collapseParallaxMultiplier = 2130772272;
// aapt resource value: 0x7f010138
public const int layout_dodgeInsetEdges = 2130772280;
// aapt resource value: 0x7f010137
public const int layout_insetEdge = 2130772279;
// aapt resource value: 0x7f010135
public const int layout_keyline = 2130772277;
// aapt resource value: 0x7f01011b
public const int layout_scrollFlags = 2130772251;
// aapt resource value: 0x7f01011c
public const int layout_scrollInterpolator = 2130772252;
// aapt resource value: 0x7f0100a7
public const int listChoiceBackgroundIndicator = 2130772135;
// aapt resource value: 0x7f010081
public const int listDividerAlertDialog = 2130772097;
// aapt resource value: 0x7f010047
public const int listItemLayout = 2130772039;
// aapt resource value: 0x7f010044
public const int listLayout = 2130772036;
// aapt resource value: 0x7f0100c7
public const int listMenuViewStyle = 2130772167;
// aapt resource value: 0x7f0100a0
public const int listPopupWindowStyle = 2130772128;
// aapt resource value: 0x7f01009a
public const int listPreferredItemHeight = 2130772122;
// aapt resource value: 0x7f01009c
public const int listPreferredItemHeightLarge = 2130772124;
// aapt resource value: 0x7f01009b
public const int listPreferredItemHeightSmall = 2130772123;
// aapt resource value: 0x7f01009d
public const int listPreferredItemPaddingLeft = 2130772125;
// aapt resource value: 0x7f01009e
public const int listPreferredItemPaddingRight = 2130772126;
// aapt resource value: 0x7f01002c
public const int logo = 2130772012;
// aapt resource value: 0x7f010110
public const int logoDescription = 2130772240;
// aapt resource value: 0x7f01014b
public const int maxActionInlineWidth = 2130772299;
// aapt resource value: 0x7f01010a
public const int maxButtonHeight = 2130772234;
// aapt resource value: 0x7f0100d7
public const int measureWithLargestChild = 2130772183;
// aapt resource value: 0x7f010009
public const int mediaRouteAudioTrackDrawable = 2130771977;
// aapt resource value: 0x7f01000a
public const int mediaRouteButtonStyle = 2130771978;
// aapt resource value: 0x7f010016
public const int mediaRouteButtonTint = 2130771990;
// aapt resource value: 0x7f01000b
public const int mediaRouteCloseDrawable = 2130771979;
// aapt resource value: 0x7f01000c
public const int mediaRouteControlPanelThemeOverlay = 2130771980;
// aapt resource value: 0x7f01000d
public const int mediaRouteDefaultIconDrawable = 2130771981;
// aapt resource value: 0x7f01000e
public const int mediaRoutePauseDrawable = 2130771982;
// aapt resource value: 0x7f01000f
public const int mediaRoutePlayDrawable = 2130771983;
// aapt resource value: 0x7f010010
public const int mediaRouteSpeakerGroupIconDrawable = 2130771984;
// aapt resource value: 0x7f010011
public const int mediaRouteSpeakerIconDrawable = 2130771985;
// aapt resource value: 0x7f010012
public const int mediaRouteStopDrawable = 2130771986;
// aapt resource value: 0x7f010013
public const int mediaRouteTheme = 2130771987;
// aapt resource value: 0x7f010014
public const int mediaRouteTvIconDrawable = 2130771988;
// aapt resource value: 0x7f010143
public const int menu = 2130772291;
// aapt resource value: 0x7f010045
public const int multiChoiceItemLayout = 2130772037;
// aapt resource value: 0x7f01010f
public const int navigationContentDescription = 2130772239;
// aapt resource value: 0x7f01010e
public const int navigationIcon = 2130772238;
// aapt resource value: 0x7f010026
public const int navigationMode = 2130772006;
// aapt resource value: 0x7f0100db
public const int numericModifiers = 2130772187;
// aapt resource value: 0x7f0100e6
public const int overlapAnchor = 2130772198;
// aapt resource value: 0x7f0100e8
public const int paddingBottomNoButtons = 2130772200;
// aapt resource value: 0x7f010114
public const int paddingEnd = 2130772244;
// aapt resource value: 0x7f010113
public const int paddingStart = 2130772243;
// aapt resource value: 0x7f0100e9
public const int paddingTopNoTitle = 2130772201;
// aapt resource value: 0x7f0100a4
public const int panelBackground = 2130772132;
// aapt resource value: 0x7f0100a6
public const int panelMenuListTheme = 2130772134;
// aapt resource value: 0x7f0100a5
public const int panelMenuListWidth = 2130772133;
// aapt resource value: 0x7f010167
public const int passwordToggleContentDescription = 2130772327;
// aapt resource value: 0x7f010166
public const int passwordToggleDrawable = 2130772326;
// aapt resource value: 0x7f010165
public const int passwordToggleEnabled = 2130772325;
// aapt resource value: 0x7f010168
public const int passwordToggleTint = 2130772328;
// aapt resource value: 0x7f010169
public const int passwordToggleTintMode = 2130772329;
// aapt resource value: 0x7f010091
public const int popupMenuStyle = 2130772113;
// aapt resource value: 0x7f01003f
public const int popupTheme = 2130772031;
// aapt resource value: 0x7f010092
public const int popupWindowStyle = 2130772114;
// aapt resource value: 0x7f0100e4
public const int preserveIconSpacing = 2130772196;
// aapt resource value: 0x7f01013e
public const int pressedTranslationZ = 2130772286;
// aapt resource value: 0x7f010035
public const int progressBarPadding = 2130772021;
// aapt resource value: 0x7f010033
public const int progressBarStyle = 2130772019;
// aapt resource value: 0x7f0100f5
public const int queryBackground = 2130772213;
// aapt resource value: 0x7f0100ec
public const int queryHint = 2130772204;
// aapt resource value: 0x7f0100c0
public const int radioButtonStyle = 2130772160;
// aapt resource value: 0x7f0100c1
public const int ratingBarStyle = 2130772161;
// aapt resource value: 0x7f0100c2
public const int ratingBarStyleIndicator = 2130772162;
// aapt resource value: 0x7f0100c3
public const int ratingBarStyleSmall = 2130772163;
// aapt resource value: 0x7f010002
public const int reverseLayout = 2130771970;
// aapt resource value: 0x7f01013c
public const int rippleColor = 2130772284;
// aapt resource value: 0x7f01012b
public const int scrimAnimationDuration = 2130772267;
// aapt resource value: 0x7f01012a
public const int scrimVisibleHeightTrigger = 2130772266;
// aapt resource value: 0x7f0100f1
public const int searchHintIcon = 2130772209;
// aapt resource value: 0x7f0100f0
public const int searchIcon = 2130772208;
// aapt resource value: 0x7f010099
public const int searchViewStyle = 2130772121;
// aapt resource value: 0x7f0100c4
public const int seekBarStyle = 2130772164;
// aapt resource value: 0x7f010089
public const int selectableItemBackground = 2130772105;
// aapt resource value: 0x7f01008a
public const int selectableItemBackgroundBorderless = 2130772106;
// aapt resource value: 0x7f0100dc
public const int showAsAction = 2130772188;
// aapt resource value: 0x7f0100d8
public const int showDividers = 2130772184;
// aapt resource value: 0x7f010101
public const int showText = 2130772225;
// aapt resource value: 0x7f010048
public const int showTitle = 2130772040;
// aapt resource value: 0x7f010046
public const int singleChoiceItemLayout = 2130772038;
// aapt resource value: 0x7f010001
public const int spanCount = 2130771969;
// aapt resource value: 0x7f0100d0
public const int spinBars = 2130772176;
// aapt resource value: 0x7f010084
public const int spinnerDropDownItemStyle = 2130772100;
// aapt resource value: 0x7f0100c5
public const int spinnerStyle = 2130772165;
// aapt resource value: 0x7f010100
public const int splitTrack = 2130772224;
// aapt resource value: 0x7f010049
public const int srcCompat = 2130772041;
// aapt resource value: 0x7f010003
public const int stackFromEnd = 2130771971;
// aapt resource value: 0x7f0100e7
public const int state_above_anchor = 2130772199;
// aapt resource value: 0x7f010119
public const int state_collapsed = 2130772249;
// aapt resource value: 0x7f01011a
public const int state_collapsible = 2130772250;
// aapt resource value: 0x7f010132
public const int statusBarBackground = 2130772274;
// aapt resource value: 0x7f010128
public const int statusBarScrim = 2130772264;
// aapt resource value: 0x7f0100e5
public const int subMenuArrow = 2130772197;
// aapt resource value: 0x7f0100f6
public const int submitBackground = 2130772214;
// aapt resource value: 0x7f010028
public const int subtitle = 2130772008;
// aapt resource value: 0x7f010103
public const int subtitleTextAppearance = 2130772227;
// aapt resource value: 0x7f010112
public const int subtitleTextColor = 2130772242;
// aapt resource value: 0x7f01002a
public const int subtitleTextStyle = 2130772010;
// aapt resource value: 0x7f0100f4
public const int suggestionRowLayout = 2130772212;
// aapt resource value: 0x7f0100fe
public const int switchMinWidth = 2130772222;
// aapt resource value: 0x7f0100ff
public const int switchPadding = 2130772223;
// aapt resource value: 0x7f0100c6
public const int switchStyle = 2130772166;
// aapt resource value: 0x7f0100fd
public const int switchTextAppearance = 2130772221;
// aapt resource value: 0x7f01014f
public const int tabBackground = 2130772303;
// aapt resource value: 0x7f01014e
public const int tabContentStart = 2130772302;
// aapt resource value: 0x7f010151
public const int tabGravity = 2130772305;
// aapt resource value: 0x7f01014c
public const int tabIndicatorColor = 2130772300;
// aapt resource value: 0x7f01014d
public const int tabIndicatorHeight = 2130772301;
// aapt resource value: 0x7f010153
public const int tabMaxWidth = 2130772307;
// aapt resource value: 0x7f010152
public const int tabMinWidth = 2130772306;
// aapt resource value: 0x7f010150
public const int tabMode = 2130772304;
// aapt resource value: 0x7f01015b
public const int tabPadding = 2130772315;
// aapt resource value: 0x7f01015a
public const int tabPaddingBottom = 2130772314;
// aapt resource value: 0x7f010159
public const int tabPaddingEnd = 2130772313;
// aapt resource value: 0x7f010157
public const int tabPaddingStart = 2130772311;
// aapt resource value: 0x7f010158
public const int tabPaddingTop = 2130772312;
// aapt resource value: 0x7f010156
public const int tabSelectedTextColor = 2130772310;
// aapt resource value: 0x7f010154
public const int tabTextAppearance = 2130772308;
// aapt resource value: 0x7f010155
public const int tabTextColor = 2130772309;
// aapt resource value: 0x7f01004f
public const int textAllCaps = 2130772047;
// aapt resource value: 0x7f01007c
public const int textAppearanceLargePopupMenu = 2130772092;
// aapt resource value: 0x7f0100a1
public const int textAppearanceListItem = 2130772129;
// aapt resource value: 0x7f0100a2
public const int textAppearanceListItemSecondary = 2130772130;
// aapt resource value: 0x7f0100a3
public const int textAppearanceListItemSmall = 2130772131;
// aapt resource value: 0x7f01007e
public const int textAppearancePopupMenuHeader = 2130772094;
// aapt resource value: 0x7f010097
public const int textAppearanceSearchResultSubtitle = 2130772119;
// aapt resource value: 0x7f010096
public const int textAppearanceSearchResultTitle = 2130772118;
// aapt resource value: 0x7f01007d
public const int textAppearanceSmallPopupMenu = 2130772093;
// aapt resource value: 0x7f0100b6
public const int textColorAlertDialogListItem = 2130772150;
// aapt resource value: 0x7f01013b
public const int textColorError = 2130772283;
// aapt resource value: 0x7f010098
public const int textColorSearchUrl = 2130772120;
// aapt resource value: 0x7f010115
public const int theme = 2130772245;
// aapt resource value: 0x7f0100d6
public const int thickness = 2130772182;
// aapt resource value: 0x7f0100fc
public const int thumbTextPadding = 2130772220;
// aapt resource value: 0x7f0100f7
public const int thumbTint = 2130772215;
// aapt resource value: 0x7f0100f8
public const int thumbTintMode = 2130772216;
// aapt resource value: 0x7f01004c
public const int tickMark = 2130772044;
// aapt resource value: 0x7f01004d
public const int tickMarkTint = 2130772045;
// aapt resource value: 0x7f01004e
public const int tickMarkTintMode = 2130772046;
// aapt resource value: 0x7f01004a
public const int tint = 2130772042;
// aapt resource value: 0x7f01004b
public const int tintMode = 2130772043;
// aapt resource value: 0x7f010025
public const int title = 2130772005;
// aapt resource value: 0x7f01012e
public const int titleEnabled = 2130772270;
// aapt resource value: 0x7f010104
public const int titleMargin = 2130772228;
// aapt resource value: 0x7f010108
public const int titleMarginBottom = 2130772232;
// aapt resource value: 0x7f010106
public const int titleMarginEnd = 2130772230;
// aapt resource value: 0x7f010105
public const int titleMarginStart = 2130772229;
// aapt resource value: 0x7f010107
public const int titleMarginTop = 2130772231;
// aapt resource value: 0x7f010109
public const int titleMargins = 2130772233;
// aapt resource value: 0x7f010102
public const int titleTextAppearance = 2130772226;
// aapt resource value: 0x7f010111
public const int titleTextColor = 2130772241;
// aapt resource value: 0x7f010029
public const int titleTextStyle = 2130772009;
// aapt resource value: 0x7f010129
public const int toolbarId = 2130772265;
// aapt resource value: 0x7f010090
public const int toolbarNavigationButtonStyle = 2130772112;
// aapt resource value: 0x7f01008f
public const int toolbarStyle = 2130772111;
// aapt resource value: 0x7f0100c9
public const int tooltipForegroundColor = 2130772169;
// aapt resource value: 0x7f0100c8
public const int tooltipFrameBackground = 2130772168;
// aapt resource value: 0x7f0100e1
public const int tooltipText = 2130772193;
// aapt resource value: 0x7f0100f9
public const int track = 2130772217;
// aapt resource value: 0x7f0100fa
public const int trackTint = 2130772218;
// aapt resource value: 0x7f0100fb
public const int trackTintMode = 2130772219;
// aapt resource value: 0x7f010140
public const int useCompatPadding = 2130772288;
// aapt resource value: 0x7f0100f2
public const int voiceIcon = 2130772210;
// aapt resource value: 0x7f010056
public const int windowActionBar = 2130772054;
// aapt resource value: 0x7f010058
public const int windowActionBarOverlay = 2130772056;
// aapt resource value: 0x7f010059
public const int windowActionModeOverlay = 2130772057;
// aapt resource value: 0x7f01005d
public const int windowFixedHeightMajor = 2130772061;
// aapt resource value: 0x7f01005b
public const int windowFixedHeightMinor = 2130772059;
// aapt resource value: 0x7f01005a
public const int windowFixedWidthMajor = 2130772058;
// aapt resource value: 0x7f01005c
public const int windowFixedWidthMinor = 2130772060;
// aapt resource value: 0x7f01005e
public const int windowMinWidthMajor = 2130772062;
// aapt resource value: 0x7f01005f
public const int windowMinWidthMinor = 2130772063;
// aapt resource value: 0x7f010057
public const int windowNoTitle = 2130772055;
static Attribute()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Attribute()
{
}
}
public partial class Boolean
{
// aapt resource value: 0x7f0d0000
public const int abc_action_bar_embed_tabs = 2131558400;
// aapt resource value: 0x7f0d0001
public const int abc_allow_stacked_button_bar = 2131558401;
// aapt resource value: 0x7f0d0002
public const int abc_config_actionMenuItemAllCaps = 2131558402;
// aapt resource value: 0x7f0d0003
public const int abc_config_closeDialogWhenTouchOutside = 2131558403;
// aapt resource value: 0x7f0d0004
public const int abc_config_showMenuShortcutsWhenKeyboardPresent = 2131558404;
static Boolean()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Boolean()
{
}
}
public partial class Color
{
// aapt resource value: 0x7f0c004b
public const int abc_background_cache_hint_selector_material_dark = 2131492939;
// aapt resource value: 0x7f0c004c
public const int abc_background_cache_hint_selector_material_light = 2131492940;
// aapt resource value: 0x7f0c004d
public const int abc_btn_colored_borderless_text_material = 2131492941;
// aapt resource value: 0x7f0c004e
public const int abc_btn_colored_text_material = 2131492942;
// aapt resource value: 0x7f0c004f
public const int abc_color_highlight_material = 2131492943;
// aapt resource value: 0x7f0c0050
public const int abc_hint_foreground_material_dark = 2131492944;
// aapt resource value: 0x7f0c0051
public const int abc_hint_foreground_material_light = 2131492945;
// aapt resource value: 0x7f0c0004
public const int abc_input_method_navigation_guard = 2131492868;
// aapt resource value: 0x7f0c0052
public const int abc_primary_text_disable_only_material_dark = 2131492946;
// aapt resource value: 0x7f0c0053
public const int abc_primary_text_disable_only_material_light = 2131492947;
// aapt resource value: 0x7f0c0054
public const int abc_primary_text_material_dark = 2131492948;
// aapt resource value: 0x7f0c0055
public const int abc_primary_text_material_light = 2131492949;
// aapt resource value: 0x7f0c0056
public const int abc_search_url_text = 2131492950;
// aapt resource value: 0x7f0c0005
public const int abc_search_url_text_normal = 2131492869;
// aapt resource value: 0x7f0c0006
public const int abc_search_url_text_pressed = 2131492870;
// aapt resource value: 0x7f0c0007
public const int abc_search_url_text_selected = 2131492871;
// aapt resource value: 0x7f0c0057
public const int abc_secondary_text_material_dark = 2131492951;
// aapt resource value: 0x7f0c0058
public const int abc_secondary_text_material_light = 2131492952;
// aapt resource value: 0x7f0c0059
public const int abc_tint_btn_checkable = 2131492953;
// aapt resource value: 0x7f0c005a
public const int abc_tint_default = 2131492954;
// aapt resource value: 0x7f0c005b
public const int abc_tint_edittext = 2131492955;
// aapt resource value: 0x7f0c005c
public const int abc_tint_seek_thumb = 2131492956;
// aapt resource value: 0x7f0c005d
public const int abc_tint_spinner = 2131492957;
// aapt resource value: 0x7f0c005e
public const int abc_tint_switch_track = 2131492958;
// aapt resource value: 0x7f0c0008
public const int accent_material_dark = 2131492872;
// aapt resource value: 0x7f0c0009
public const int accent_material_light = 2131492873;
// aapt resource value: 0x7f0c000a
public const int background_floating_material_dark = 2131492874;
// aapt resource value: 0x7f0c000b
public const int background_floating_material_light = 2131492875;
// aapt resource value: 0x7f0c000c
public const int background_material_dark = 2131492876;
// aapt resource value: 0x7f0c000d
public const int background_material_light = 2131492877;
// aapt resource value: 0x7f0c000e
public const int bright_foreground_disabled_material_dark = 2131492878;
// aapt resource value: 0x7f0c000f
public const int bright_foreground_disabled_material_light = 2131492879;
// aapt resource value: 0x7f0c0010
public const int bright_foreground_inverse_material_dark = 2131492880;
// aapt resource value: 0x7f0c0011
public const int bright_foreground_inverse_material_light = 2131492881;
// aapt resource value: 0x7f0c0012
public const int bright_foreground_material_dark = 2131492882;
// aapt resource value: 0x7f0c0013
public const int bright_foreground_material_light = 2131492883;
// aapt resource value: 0x7f0c0014
public const int button_material_dark = 2131492884;
// aapt resource value: 0x7f0c0015
public const int button_material_light = 2131492885;
// aapt resource value: 0x7f0c0000
public const int cardview_dark_background = 2131492864;
// aapt resource value: 0x7f0c0001
public const int cardview_light_background = 2131492865;
// aapt resource value: 0x7f0c0002
public const int cardview_shadow_end_color = 2131492866;
// aapt resource value: 0x7f0c0003
public const int cardview_shadow_start_color = 2131492867;
// aapt resource value: 0x7f0c0040
public const int design_bottom_navigation_shadow_color = 2131492928;
// aapt resource value: 0x7f0c005f
public const int design_error = 2131492959;
// aapt resource value: 0x7f0c0041
public const int design_fab_shadow_end_color = 2131492929;
// aapt resource value: 0x7f0c0042
public const int design_fab_shadow_mid_color = 2131492930;
// aapt resource value: 0x7f0c0043
public const int design_fab_shadow_start_color = 2131492931;
// aapt resource value: 0x7f0c0044
public const int design_fab_stroke_end_inner_color = 2131492932;
// aapt resource value: 0x7f0c0045
public const int design_fab_stroke_end_outer_color = 2131492933;
// aapt resource value: 0x7f0c0046
public const int design_fab_stroke_top_inner_color = 2131492934;
// aapt resource value: 0x7f0c0047
public const int design_fab_stroke_top_outer_color = 2131492935;
// aapt resource value: 0x7f0c0048
public const int design_snackbar_background_color = 2131492936;
// aapt resource value: 0x7f0c0060
public const int design_tint_password_toggle = 2131492960;
// aapt resource value: 0x7f0c0016
public const int dim_foreground_disabled_material_dark = 2131492886;
// aapt resource value: 0x7f0c0017
public const int dim_foreground_disabled_material_light = 2131492887;
// aapt resource value: 0x7f0c0018
public const int dim_foreground_material_dark = 2131492888;
// aapt resource value: 0x7f0c0019
public const int dim_foreground_material_light = 2131492889;
// aapt resource value: 0x7f0c001a
public const int error_color_material = 2131492890;
// aapt resource value: 0x7f0c001b
public const int foreground_material_dark = 2131492891;
// aapt resource value: 0x7f0c001c
public const int foreground_material_light = 2131492892;
// aapt resource value: 0x7f0c001d
public const int highlighted_text_material_dark = 2131492893;
// aapt resource value: 0x7f0c001e
public const int highlighted_text_material_light = 2131492894;
// aapt resource value: 0x7f0c001f
public const int material_blue_grey_800 = 2131492895;
// aapt resource value: 0x7f0c0020
public const int material_blue_grey_900 = 2131492896;
// aapt resource value: 0x7f0c0021
public const int material_blue_grey_950 = 2131492897;
// aapt resource value: 0x7f0c0022
public const int material_deep_teal_200 = 2131492898;
// aapt resource value: 0x7f0c0023
public const int material_deep_teal_500 = 2131492899;
// aapt resource value: 0x7f0c0024
public const int material_grey_100 = 2131492900;
// aapt resource value: 0x7f0c0025
public const int material_grey_300 = 2131492901;
// aapt resource value: 0x7f0c0026
public const int material_grey_50 = 2131492902;
// aapt resource value: 0x7f0c0027
public const int material_grey_600 = 2131492903;
// aapt resource value: 0x7f0c0028
public const int material_grey_800 = 2131492904;
// aapt resource value: 0x7f0c0029
public const int material_grey_850 = 2131492905;
// aapt resource value: 0x7f0c002a
public const int material_grey_900 = 2131492906;
// aapt resource value: 0x7f0c0049
public const int notification_action_color_filter = 2131492937;
// aapt resource value: 0x7f0c004a
public const int notification_icon_bg_color = 2131492938;
// aapt resource value: 0x7f0c003f
public const int notification_material_background_media_default_color = 2131492927;
// aapt resource value: 0x7f0c002b
public const int primary_dark_material_dark = 2131492907;
// aapt resource value: 0x7f0c002c
public const int primary_dark_material_light = 2131492908;
// aapt resource value: 0x7f0c002d
public const int primary_material_dark = 2131492909;
// aapt resource value: 0x7f0c002e
public const int primary_material_light = 2131492910;
// aapt resource value: 0x7f0c002f
public const int primary_text_default_material_dark = 2131492911;
// aapt resource value: 0x7f0c0030
public const int primary_text_default_material_light = 2131492912;
// aapt resource value: 0x7f0c0031
public const int primary_text_disabled_material_dark = 2131492913;
// aapt resource value: 0x7f0c0032
public const int primary_text_disabled_material_light = 2131492914;
// aapt resource value: 0x7f0c0033
public const int ripple_material_dark = 2131492915;
// aapt resource value: 0x7f0c0034
public const int ripple_material_light = 2131492916;
// aapt resource value: 0x7f0c0035
public const int secondary_text_default_material_dark = 2131492917;
// aapt resource value: 0x7f0c0036
public const int secondary_text_default_material_light = 2131492918;
// aapt resource value: 0x7f0c0037
public const int secondary_text_disabled_material_dark = 2131492919;
// aapt resource value: 0x7f0c0038
public const int secondary_text_disabled_material_light = 2131492920;
// aapt resource value: 0x7f0c0039
public const int switch_thumb_disabled_material_dark = 2131492921;
// aapt resource value: 0x7f0c003a
public const int switch_thumb_disabled_material_light = 2131492922;
// aapt resource value: 0x7f0c0061
public const int switch_thumb_material_dark = 2131492961;
// aapt resource value: 0x7f0c0062
public const int switch_thumb_material_light = 2131492962;
// aapt resource value: 0x7f0c003b
public const int switch_thumb_normal_material_dark = 2131492923;
// aapt resource value: 0x7f0c003c
public const int switch_thumb_normal_material_light = 2131492924;
// aapt resource value: 0x7f0c003d
public const int tooltip_background_dark = 2131492925;
// aapt resource value: 0x7f0c003e
public const int tooltip_background_light = 2131492926;
static Color()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Color()
{
}
}
public partial class Dimension
{
// aapt resource value: 0x7f07001b
public const int abc_action_bar_content_inset_material = 2131165211;
// aapt resource value: 0x7f07001c
public const int abc_action_bar_content_inset_with_nav = 2131165212;
// aapt resource value: 0x7f070010
public const int abc_action_bar_default_height_material = 2131165200;
// aapt resource value: 0x7f07001d
public const int abc_action_bar_default_padding_end_material = 2131165213;
// aapt resource value: 0x7f07001e
public const int abc_action_bar_default_padding_start_material = 2131165214;
// aapt resource value: 0x7f070020
public const int abc_action_bar_elevation_material = 2131165216;
// aapt resource value: 0x7f070021
public const int abc_action_bar_icon_vertical_padding_material = 2131165217;
// aapt resource value: 0x7f070022
public const int abc_action_bar_overflow_padding_end_material = 2131165218;
// aapt resource value: 0x7f070023
public const int abc_action_bar_overflow_padding_start_material = 2131165219;
// aapt resource value: 0x7f070011
public const int abc_action_bar_progress_bar_size = 2131165201;
// aapt resource value: 0x7f070024
public const int abc_action_bar_stacked_max_height = 2131165220;
// aapt resource value: 0x7f070025
public const int abc_action_bar_stacked_tab_max_width = 2131165221;
// aapt resource value: 0x7f070026
public const int abc_action_bar_subtitle_bottom_margin_material = 2131165222;
// aapt resource value: 0x7f070027
public const int abc_action_bar_subtitle_top_margin_material = 2131165223;
// aapt resource value: 0x7f070028
public const int abc_action_button_min_height_material = 2131165224;
// aapt resource value: 0x7f070029
public const int abc_action_button_min_width_material = 2131165225;
// aapt resource value: 0x7f07002a
public const int abc_action_button_min_width_overflow_material = 2131165226;
// aapt resource value: 0x7f07000f
public const int abc_alert_dialog_button_bar_height = 2131165199;
// aapt resource value: 0x7f07002b
public const int abc_button_inset_horizontal_material = 2131165227;
// aapt resource value: 0x7f07002c
public const int abc_button_inset_vertical_material = 2131165228;
// aapt resource value: 0x7f07002d
public const int abc_button_padding_horizontal_material = 2131165229;
// aapt resource value: 0x7f07002e
public const int abc_button_padding_vertical_material = 2131165230;
// aapt resource value: 0x7f07002f
public const int abc_cascading_menus_min_smallest_width = 2131165231;
// aapt resource value: 0x7f070014
public const int abc_config_prefDialogWidth = 2131165204;
// aapt resource value: 0x7f070030
public const int abc_control_corner_material = 2131165232;
// aapt resource value: 0x7f070031
public const int abc_control_inset_material = 2131165233;
// aapt resource value: 0x7f070032
public const int abc_control_padding_material = 2131165234;
// aapt resource value: 0x7f070015
public const int abc_dialog_fixed_height_major = 2131165205;
// aapt resource value: 0x7f070016
public const int abc_dialog_fixed_height_minor = 2131165206;
// aapt resource value: 0x7f070017
public const int abc_dialog_fixed_width_major = 2131165207;
// aapt resource value: 0x7f070018
public const int abc_dialog_fixed_width_minor = 2131165208;
// aapt resource value: 0x7f070033
public const int abc_dialog_list_padding_bottom_no_buttons = 2131165235;
// aapt resource value: 0x7f070034
public const int abc_dialog_list_padding_top_no_title = 2131165236;
// aapt resource value: 0x7f070019
public const int abc_dialog_min_width_major = 2131165209;
// aapt resource value: 0x7f07001a
public const int abc_dialog_min_width_minor = 2131165210;
// aapt resource value: 0x7f070035
public const int abc_dialog_padding_material = 2131165237;
// aapt resource value: 0x7f070036
public const int abc_dialog_padding_top_material = 2131165238;
// aapt resource value: 0x7f070037
public const int abc_dialog_title_divider_material = 2131165239;
// aapt resource value: 0x7f070038
public const int abc_disabled_alpha_material_dark = 2131165240;
// aapt resource value: 0x7f070039
public const int abc_disabled_alpha_material_light = 2131165241;
// aapt resource value: 0x7f07003a
public const int abc_dropdownitem_icon_width = 2131165242;
// aapt resource value: 0x7f07003b
public const int abc_dropdownitem_text_padding_left = 2131165243;
// aapt resource value: 0x7f07003c
public const int abc_dropdownitem_text_padding_right = 2131165244;
// aapt resource value: 0x7f07003d
public const int abc_edit_text_inset_bottom_material = 2131165245;
// aapt resource value: 0x7f07003e
public const int abc_edit_text_inset_horizontal_material = 2131165246;
// aapt resource value: 0x7f07003f
public const int abc_edit_text_inset_top_material = 2131165247;
// aapt resource value: 0x7f070040
public const int abc_floating_window_z = 2131165248;
// aapt resource value: 0x7f070041
public const int abc_list_item_padding_horizontal_material = 2131165249;
// aapt resource value: 0x7f070042
public const int abc_panel_menu_list_width = 2131165250;
// aapt resource value: 0x7f070043
public const int abc_progress_bar_height_material = 2131165251;
// aapt resource value: 0x7f070044
public const int abc_search_view_preferred_height = 2131165252;
// aapt resource value: 0x7f070045
public const int abc_search_view_preferred_width = 2131165253;
// aapt resource value: 0x7f070046
public const int abc_seekbar_track_background_height_material = 2131165254;
// aapt resource value: 0x7f070047
public const int abc_seekbar_track_progress_height_material = 2131165255;
// aapt resource value: 0x7f070048
public const int abc_select_dialog_padding_start_material = 2131165256;
// aapt resource value: 0x7f07001f
public const int abc_switch_padding = 2131165215;
// aapt resource value: 0x7f070049
public const int abc_text_size_body_1_material = 2131165257;
// aapt resource value: 0x7f07004a
public const int abc_text_size_body_2_material = 2131165258;
// aapt resource value: 0x7f07004b
public const int abc_text_size_button_material = 2131165259;
// aapt resource value: 0x7f07004c
public const int abc_text_size_caption_material = 2131165260;
// aapt resource value: 0x7f07004d
public const int abc_text_size_display_1_material = 2131165261;
// aapt resource value: 0x7f07004e
public const int abc_text_size_display_2_material = 2131165262;
// aapt resource value: 0x7f07004f
public const int abc_text_size_display_3_material = 2131165263;
// aapt resource value: 0x7f070050
public const int abc_text_size_display_4_material = 2131165264;
// aapt resource value: 0x7f070051
public const int abc_text_size_headline_material = 2131165265;
// aapt resource value: 0x7f070052
public const int abc_text_size_large_material = 2131165266;
// aapt resource value: 0x7f070053
public const int abc_text_size_medium_material = 2131165267;
// aapt resource value: 0x7f070054
public const int abc_text_size_menu_header_material = 2131165268;
// aapt resource value: 0x7f070055
public const int abc_text_size_menu_material = 2131165269;
// aapt resource value: 0x7f070056
public const int abc_text_size_small_material = 2131165270;
// aapt resource value: 0x7f070057
public const int abc_text_size_subhead_material = 2131165271;
// aapt resource value: 0x7f070012
public const int abc_text_size_subtitle_material_toolbar = 2131165202;
// aapt resource value: 0x7f070058
public const int abc_text_size_title_material = 2131165272;
// aapt resource value: 0x7f070013
public const int abc_text_size_title_material_toolbar = 2131165203;
// aapt resource value: 0x7f07000c
public const int cardview_compat_inset_shadow = 2131165196;
// aapt resource value: 0x7f07000d
public const int cardview_default_elevation = 2131165197;
// aapt resource value: 0x7f07000e
public const int cardview_default_radius = 2131165198;
// aapt resource value: 0x7f070094
public const int compat_button_inset_horizontal_material = 2131165332;
// aapt resource value: 0x7f070095
public const int compat_button_inset_vertical_material = 2131165333;
// aapt resource value: 0x7f070096
public const int compat_button_padding_horizontal_material = 2131165334;
// aapt resource value: 0x7f070097
public const int compat_button_padding_vertical_material = 2131165335;
// aapt resource value: 0x7f070098
public const int compat_control_corner_material = 2131165336;
// aapt resource value: 0x7f070072
public const int design_appbar_elevation = 2131165298;
// aapt resource value: 0x7f070073
public const int design_bottom_navigation_active_item_max_width = 2131165299;
// aapt resource value: 0x7f070074
public const int design_bottom_navigation_active_text_size = 2131165300;
// aapt resource value: 0x7f070075
public const int design_bottom_navigation_elevation = 2131165301;
// aapt resource value: 0x7f070076
public const int design_bottom_navigation_height = 2131165302;
// aapt resource value: 0x7f070077
public const int design_bottom_navigation_item_max_width = 2131165303;
// aapt resource value: 0x7f070078
public const int design_bottom_navigation_item_min_width = 2131165304;
// aapt resource value: 0x7f070079
public const int design_bottom_navigation_margin = 2131165305;
// aapt resource value: 0x7f07007a
public const int design_bottom_navigation_shadow_height = 2131165306;
// aapt resource value: 0x7f07007b
public const int design_bottom_navigation_text_size = 2131165307;
// aapt resource value: 0x7f07007c
public const int design_bottom_sheet_modal_elevation = 2131165308;
// aapt resource value: 0x7f07007d
public const int design_bottom_sheet_peek_height_min = 2131165309;
// aapt resource value: 0x7f07007e
public const int design_fab_border_width = 2131165310;
// aapt resource value: 0x7f07007f
public const int design_fab_elevation = 2131165311;
// aapt resource value: 0x7f070080
public const int design_fab_image_size = 2131165312;
// aapt resource value: 0x7f070081
public const int design_fab_size_mini = 2131165313;
// aapt resource value: 0x7f070082
public const int design_fab_size_normal = 2131165314;
// aapt resource value: 0x7f070083
public const int design_fab_translation_z_pressed = 2131165315;
// aapt resource value: 0x7f070084
public const int design_navigation_elevation = 2131165316;
// aapt resource value: 0x7f070085
public const int design_navigation_icon_padding = 2131165317;
// aapt resource value: 0x7f070086
public const int design_navigation_icon_size = 2131165318;
// aapt resource value: 0x7f07006a
public const int design_navigation_max_width = 2131165290;
// aapt resource value: 0x7f070087
public const int design_navigation_padding_bottom = 2131165319;
// aapt resource value: 0x7f070088
public const int design_navigation_separator_vertical_padding = 2131165320;
// aapt resource value: 0x7f07006b
public const int design_snackbar_action_inline_max_width = 2131165291;
// aapt resource value: 0x7f07006c
public const int design_snackbar_background_corner_radius = 2131165292;
// aapt resource value: 0x7f070089
public const int design_snackbar_elevation = 2131165321;
// aapt resource value: 0x7f07006d
public const int design_snackbar_extra_spacing_horizontal = 2131165293;
// aapt resource value: 0x7f07006e
public const int design_snackbar_max_width = 2131165294;
// aapt resource value: 0x7f07006f
public const int design_snackbar_min_width = 2131165295;
// aapt resource value: 0x7f07008a
public const int design_snackbar_padding_horizontal = 2131165322;
// aapt resource value: 0x7f07008b
public const int design_snackbar_padding_vertical = 2131165323;
// aapt resource value: 0x7f070070
public const int design_snackbar_padding_vertical_2lines = 2131165296;
// aapt resource value: 0x7f07008c
public const int design_snackbar_text_size = 2131165324;
// aapt resource value: 0x7f07008d
public const int design_tab_max_width = 2131165325;
// aapt resource value: 0x7f070071
public const int design_tab_scrollable_min_width = 2131165297;
// aapt resource value: 0x7f07008e
public const int design_tab_text_size = 2131165326;
// aapt resource value: 0x7f07008f
public const int design_tab_text_size_2line = 2131165327;
// aapt resource value: 0x7f070059
public const int disabled_alpha_material_dark = 2131165273;
// aapt resource value: 0x7f07005a
public const int disabled_alpha_material_light = 2131165274;
// aapt resource value: 0x7f070000
public const int fastscroll_default_thickness = 2131165184;
// aapt resource value: 0x7f070001
public const int fastscroll_margin = 2131165185;
// aapt resource value: 0x7f070002
public const int fastscroll_minimum_range = 2131165186;
// aapt resource value: 0x7f07005b
public const int highlight_alpha_material_colored = 2131165275;
// aapt resource value: 0x7f07005c
public const int highlight_alpha_material_dark = 2131165276;
// aapt resource value: 0x7f07005d
public const int highlight_alpha_material_light = 2131165277;
// aapt resource value: 0x7f07005e
public const int hint_alpha_material_dark = 2131165278;
// aapt resource value: 0x7f07005f
public const int hint_alpha_material_light = 2131165279;
// aapt resource value: 0x7f070060
public const int hint_pressed_alpha_material_dark = 2131165280;
// aapt resource value: 0x7f070061
public const int hint_pressed_alpha_material_light = 2131165281;
// aapt resource value: 0x7f070003
public const int item_touch_helper_max_drag_scroll_per_frame = 2131165187;
// aapt resource value: 0x7f070004
public const int item_touch_helper_swipe_escape_max_velocity = 2131165188;
// aapt resource value: 0x7f070005
public const int item_touch_helper_swipe_escape_velocity = 2131165189;
// aapt resource value: 0x7f070006
public const int mr_controller_volume_group_list_item_height = 2131165190;
// aapt resource value: 0x7f070007
public const int mr_controller_volume_group_list_item_icon_size = 2131165191;
// aapt resource value: 0x7f070008
public const int mr_controller_volume_group_list_max_height = 2131165192;
// aapt resource value: 0x7f07000b
public const int mr_controller_volume_group_list_padding_top = 2131165195;
// aapt resource value: 0x7f070009
public const int mr_dialog_fixed_width_major = 2131165193;
// aapt resource value: 0x7f07000a
public const int mr_dialog_fixed_width_minor = 2131165194;
// aapt resource value: 0x7f070099
public const int notification_action_icon_size = 2131165337;
// aapt resource value: 0x7f07009a
public const int notification_action_text_size = 2131165338;
// aapt resource value: 0x7f07009b
public const int notification_big_circle_margin = 2131165339;
// aapt resource value: 0x7f070091
public const int notification_content_margin_start = 2131165329;
// aapt resource value: 0x7f07009c
public const int notification_large_icon_height = 2131165340;
// aapt resource value: 0x7f07009d
public const int notification_large_icon_width = 2131165341;
// aapt resource value: 0x7f070092
public const int notification_main_column_padding_top = 2131165330;
// aapt resource value: 0x7f070093
public const int notification_media_narrow_margin = 2131165331;
// aapt resource value: 0x7f07009e
public const int notification_right_icon_size = 2131165342;
// aapt resource value: 0x7f070090
public const int notification_right_side_padding_top = 2131165328;
// aapt resource value: 0x7f07009f
public const int notification_small_icon_background_padding = 2131165343;
// aapt resource value: 0x7f0700a0
public const int notification_small_icon_size_as_large = 2131165344;
// aapt resource value: 0x7f0700a1
public const int notification_subtext_size = 2131165345;
// aapt resource value: 0x7f0700a2
public const int notification_top_pad = 2131165346;
// aapt resource value: 0x7f0700a3
public const int notification_top_pad_large_text = 2131165347;
// aapt resource value: 0x7f070062
public const int tooltip_corner_radius = 2131165282;
// aapt resource value: 0x7f070063
public const int tooltip_horizontal_padding = 2131165283;
// aapt resource value: 0x7f070064
public const int tooltip_margin = 2131165284;
// aapt resource value: 0x7f070065
public const int tooltip_precise_anchor_extra_offset = 2131165285;
// aapt resource value: 0x7f070066
public const int tooltip_precise_anchor_threshold = 2131165286;
// aapt resource value: 0x7f070067
public const int tooltip_vertical_padding = 2131165287;
// aapt resource value: 0x7f070068
public const int tooltip_y_offset_non_touch = 2131165288;
// aapt resource value: 0x7f070069
public const int tooltip_y_offset_touch = 2131165289;
static Dimension()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Dimension()
{
}
}
public partial class Drawable
{
// aapt resource value: 0x7f020000
public const int abc_ab_share_pack_mtrl_alpha = 2130837504;
// aapt resource value: 0x7f020001
public const int abc_action_bar_item_background_material = 2130837505;
// aapt resource value: 0x7f020002
public const int abc_btn_borderless_material = 2130837506;
// aapt resource value: 0x7f020003
public const int abc_btn_check_material = 2130837507;
// aapt resource value: 0x7f020004
public const int abc_btn_check_to_on_mtrl_000 = 2130837508;
// aapt resource value: 0x7f020005
public const int abc_btn_check_to_on_mtrl_015 = 2130837509;
// aapt resource value: 0x7f020006
public const int abc_btn_colored_material = 2130837510;
// aapt resource value: 0x7f020007
public const int abc_btn_default_mtrl_shape = 2130837511;
// aapt resource value: 0x7f020008
public const int abc_btn_radio_material = 2130837512;
// aapt resource value: 0x7f020009
public const int abc_btn_radio_to_on_mtrl_000 = 2130837513;
// aapt resource value: 0x7f02000a
public const int abc_btn_radio_to_on_mtrl_015 = 2130837514;
// aapt resource value: 0x7f02000b
public const int abc_btn_switch_to_on_mtrl_00001 = 2130837515;
// aapt resource value: 0x7f02000c
public const int abc_btn_switch_to_on_mtrl_00012 = 2130837516;
// aapt resource value: 0x7f02000d
public const int abc_cab_background_internal_bg = 2130837517;
// aapt resource value: 0x7f02000e
public const int abc_cab_background_top_material = 2130837518;
// aapt resource value: 0x7f02000f
public const int abc_cab_background_top_mtrl_alpha = 2130837519;
// aapt resource value: 0x7f020010
public const int abc_control_background_material = 2130837520;
// aapt resource value: 0x7f020011
public const int abc_dialog_material_background = 2130837521;
// aapt resource value: 0x7f020012
public const int abc_edit_text_material = 2130837522;
// aapt resource value: 0x7f020013
public const int abc_ic_ab_back_material = 2130837523;
// aapt resource value: 0x7f020014
public const int abc_ic_arrow_drop_right_black_24dp = 2130837524;
// aapt resource value: 0x7f020015
public const int abc_ic_clear_material = 2130837525;
// aapt resource value: 0x7f020016
public const int abc_ic_commit_search_api_mtrl_alpha = 2130837526;
// aapt resource value: 0x7f020017
public const int abc_ic_go_search_api_material = 2130837527;
// aapt resource value: 0x7f020018
public const int abc_ic_menu_copy_mtrl_am_alpha = 2130837528;
// aapt resource value: 0x7f020019
public const int abc_ic_menu_cut_mtrl_alpha = 2130837529;
// aapt resource value: 0x7f02001a
public const int abc_ic_menu_overflow_material = 2130837530;
// aapt resource value: 0x7f02001b
public const int abc_ic_menu_paste_mtrl_am_alpha = 2130837531;
// aapt resource value: 0x7f02001c
public const int abc_ic_menu_selectall_mtrl_alpha = 2130837532;
// aapt resource value: 0x7f02001d
public const int abc_ic_menu_share_mtrl_alpha = 2130837533;
// aapt resource value: 0x7f02001e
public const int abc_ic_search_api_material = 2130837534;
// aapt resource value: 0x7f02001f
public const int abc_ic_star_black_16dp = 2130837535;
// aapt resource value: 0x7f020020
public const int abc_ic_star_black_36dp = 2130837536;
// aapt resource value: 0x7f020021
public const int abc_ic_star_black_48dp = 2130837537;
// aapt resource value: 0x7f020022
public const int abc_ic_star_half_black_16dp = 2130837538;
// aapt resource value: 0x7f020023
public const int abc_ic_star_half_black_36dp = 2130837539;
// aapt resource value: 0x7f020024
public const int abc_ic_star_half_black_48dp = 2130837540;
// aapt resource value: 0x7f020025
public const int abc_ic_voice_search_api_material = 2130837541;
// aapt resource value: 0x7f020026
public const int abc_item_background_holo_dark = 2130837542;
// aapt resource value: 0x7f020027
public const int abc_item_background_holo_light = 2130837543;
// aapt resource value: 0x7f020028
public const int abc_list_divider_mtrl_alpha = 2130837544;
// aapt resource value: 0x7f020029
public const int abc_list_focused_holo = 2130837545;
// aapt resource value: 0x7f02002a
public const int abc_list_longpressed_holo = 2130837546;
// aapt resource value: 0x7f02002b
public const int abc_list_pressed_holo_dark = 2130837547;
// aapt resource value: 0x7f02002c
public const int abc_list_pressed_holo_light = 2130837548;
// aapt resource value: 0x7f02002d
public const int abc_list_selector_background_transition_holo_dark = 2130837549;
// aapt resource value: 0x7f02002e
public const int abc_list_selector_background_transition_holo_light = 2130837550;
// aapt resource value: 0x7f02002f
public const int abc_list_selector_disabled_holo_dark = 2130837551;
// aapt resource value: 0x7f020030
public const int abc_list_selector_disabled_holo_light = 2130837552;
// aapt resource value: 0x7f020031
public const int abc_list_selector_holo_dark = 2130837553;
// aapt resource value: 0x7f020032
public const int abc_list_selector_holo_light = 2130837554;
// aapt resource value: 0x7f020033
public const int abc_menu_hardkey_panel_mtrl_mult = 2130837555;
// aapt resource value: 0x7f020034
public const int abc_popup_background_mtrl_mult = 2130837556;
// aapt resource value: 0x7f020035
public const int abc_ratingbar_indicator_material = 2130837557;
// aapt resource value: 0x7f020036
public const int abc_ratingbar_material = 2130837558;
// aapt resource value: 0x7f020037
public const int abc_ratingbar_small_material = 2130837559;
// aapt resource value: 0x7f020038
public const int abc_scrubber_control_off_mtrl_alpha = 2130837560;
// aapt resource value: 0x7f020039
public const int abc_scrubber_control_to_pressed_mtrl_000 = 2130837561;
// aapt resource value: 0x7f02003a
public const int abc_scrubber_control_to_pressed_mtrl_005 = 2130837562;
// aapt resource value: 0x7f02003b
public const int abc_scrubber_primary_mtrl_alpha = 2130837563;
// aapt resource value: 0x7f02003c
public const int abc_scrubber_track_mtrl_alpha = 2130837564;
// aapt resource value: 0x7f02003d
public const int abc_seekbar_thumb_material = 2130837565;
// aapt resource value: 0x7f02003e
public const int abc_seekbar_tick_mark_material = 2130837566;
// aapt resource value: 0x7f02003f
public const int abc_seekbar_track_material = 2130837567;
// aapt resource value: 0x7f020040
public const int abc_spinner_mtrl_am_alpha = 2130837568;
// aapt resource value: 0x7f020041
public const int abc_spinner_textfield_background_material = 2130837569;
// aapt resource value: 0x7f020042
public const int abc_switch_thumb_material = 2130837570;
// aapt resource value: 0x7f020043
public const int abc_switch_track_mtrl_alpha = 2130837571;
// aapt resource value: 0x7f020044
public const int abc_tab_indicator_material = 2130837572;
// aapt resource value: 0x7f020045
public const int abc_tab_indicator_mtrl_alpha = 2130837573;
// aapt resource value: 0x7f020046
public const int abc_text_cursor_material = 2130837574;
// aapt resource value: 0x7f020047
public const int abc_text_select_handle_left_mtrl_dark = 2130837575;
// aapt resource value: 0x7f020048
public const int abc_text_select_handle_left_mtrl_light = 2130837576;
// aapt resource value: 0x7f020049
public const int abc_text_select_handle_middle_mtrl_dark = 2130837577;
// aapt resource value: 0x7f02004a
public const int abc_text_select_handle_middle_mtrl_light = 2130837578;
// aapt resource value: 0x7f02004b
public const int abc_text_select_handle_right_mtrl_dark = 2130837579;
// aapt resource value: 0x7f02004c
public const int abc_text_select_handle_right_mtrl_light = 2130837580;
// aapt resource value: 0x7f02004d
public const int abc_textfield_activated_mtrl_alpha = 2130837581;
// aapt resource value: 0x7f02004e
public const int abc_textfield_default_mtrl_alpha = 2130837582;
// aapt resource value: 0x7f02004f
public const int abc_textfield_search_activated_mtrl_alpha = 2130837583;
// aapt resource value: 0x7f020050
public const int abc_textfield_search_default_mtrl_alpha = 2130837584;
// aapt resource value: 0x7f020051
public const int abc_textfield_search_material = 2130837585;
// aapt resource value: 0x7f020052
public const int abc_vector_test = 2130837586;
// aapt resource value: 0x7f020053
public const int avd_hide_password = 2130837587;
// aapt resource value: 0x7f020130
public const int avd_hide_password_1 = 2130837808;
// aapt resource value: 0x7f020131
public const int avd_hide_password_2 = 2130837809;
// aapt resource value: 0x7f020132
public const int avd_hide_password_3 = 2130837810;
// aapt resource value: 0x7f020054
public const int avd_show_password = 2130837588;
// aapt resource value: 0x7f020133
public const int avd_show_password_1 = 2130837811;
// aapt resource value: 0x7f020134
public const int avd_show_password_2 = 2130837812;
// aapt resource value: 0x7f020135
public const int avd_show_password_3 = 2130837813;
// aapt resource value: 0x7f020055
public const int design_bottom_navigation_item_background = 2130837589;
// aapt resource value: 0x7f020056
public const int design_fab_background = 2130837590;
// aapt resource value: 0x7f020057
public const int design_ic_visibility = 2130837591;
// aapt resource value: 0x7f020058
public const int design_ic_visibility_off = 2130837592;
// aapt resource value: 0x7f020059
public const int design_password_eye = 2130837593;
// aapt resource value: 0x7f02005a
public const int design_snackbar_background = 2130837594;
// aapt resource value: 0x7f02005b
public const int ic_audiotrack_dark = 2130837595;
// aapt resource value: 0x7f02005c
public const int ic_audiotrack_light = 2130837596;
// aapt resource value: 0x7f02005d
public const int ic_dialog_close_dark = 2130837597;
// aapt resource value: 0x7f02005e
public const int ic_dialog_close_light = 2130837598;
// aapt resource value: 0x7f02005f
public const int ic_group_collapse_00 = 2130837599;
// aapt resource value: 0x7f020060
public const int ic_group_collapse_01 = 2130837600;
// aapt resource value: 0x7f020061
public const int ic_group_collapse_02 = 2130837601;
// aapt resource value: 0x7f020062
public const int ic_group_collapse_03 = 2130837602;
// aapt resource value: 0x7f020063
public const int ic_group_collapse_04 = 2130837603;
// aapt resource value: 0x7f020064
public const int ic_group_collapse_05 = 2130837604;
// aapt resource value: 0x7f020065
public const int ic_group_collapse_06 = 2130837605;
// aapt resource value: 0x7f020066
public const int ic_group_collapse_07 = 2130837606;
// aapt resource value: 0x7f020067
public const int ic_group_collapse_08 = 2130837607;
// aapt resource value: 0x7f020068
public const int ic_group_collapse_09 = 2130837608;
// aapt resource value: 0x7f020069
public const int ic_group_collapse_10 = 2130837609;
// aapt resource value: 0x7f02006a
public const int ic_group_collapse_11 = 2130837610;
// aapt resource value: 0x7f02006b
public const int ic_group_collapse_12 = 2130837611;
// aapt resource value: 0x7f02006c
public const int ic_group_collapse_13 = 2130837612;
// aapt resource value: 0x7f02006d
public const int ic_group_collapse_14 = 2130837613;
// aapt resource value: 0x7f02006e
public const int ic_group_collapse_15 = 2130837614;
// aapt resource value: 0x7f02006f
public const int ic_group_expand_00 = 2130837615;
// aapt resource value: 0x7f020070
public const int ic_group_expand_01 = 2130837616;
// aapt resource value: 0x7f020071
public const int ic_group_expand_02 = 2130837617;
// aapt resource value: 0x7f020072
public const int ic_group_expand_03 = 2130837618;
// aapt resource value: 0x7f020073
public const int ic_group_expand_04 = 2130837619;
// aapt resource value: 0x7f020074
public const int ic_group_expand_05 = 2130837620;
// aapt resource value: 0x7f020075
public const int ic_group_expand_06 = 2130837621;
// aapt resource value: 0x7f020076
public const int ic_group_expand_07 = 2130837622;
// aapt resource value: 0x7f020077
public const int ic_group_expand_08 = 2130837623;
// aapt resource value: 0x7f020078
public const int ic_group_expand_09 = 2130837624;
// aapt resource value: 0x7f020079
public const int ic_group_expand_10 = 2130837625;
// aapt resource value: 0x7f02007a
public const int ic_group_expand_11 = 2130837626;
// aapt resource value: 0x7f02007b
public const int ic_group_expand_12 = 2130837627;
// aapt resource value: 0x7f02007c
public const int ic_group_expand_13 = 2130837628;
// aapt resource value: 0x7f02007d
public const int ic_group_expand_14 = 2130837629;
// aapt resource value: 0x7f02007e
public const int ic_group_expand_15 = 2130837630;
// aapt resource value: 0x7f02007f
public const int ic_media_pause_dark = 2130837631;
// aapt resource value: 0x7f020080
public const int ic_media_pause_light = 2130837632;
// aapt resource value: 0x7f020081
public const int ic_media_play_dark = 2130837633;
// aapt resource value: 0x7f020082
public const int ic_media_play_light = 2130837634;
// aapt resource value: 0x7f020083
public const int ic_media_stop_dark = 2130837635;
// aapt resource value: 0x7f020084
public const int ic_media_stop_light = 2130837636;
// aapt resource value: 0x7f020085
public const int ic_mr_button_connected_00_dark = 2130837637;
// aapt resource value: 0x7f020086
public const int ic_mr_button_connected_00_light = 2130837638;
// aapt resource value: 0x7f020087
public const int ic_mr_button_connected_01_dark = 2130837639;
// aapt resource value: 0x7f020088
public const int ic_mr_button_connected_01_light = 2130837640;
// aapt resource value: 0x7f020089
public const int ic_mr_button_connected_02_dark = 2130837641;
// aapt resource value: 0x7f02008a
public const int ic_mr_button_connected_02_light = 2130837642;
// aapt resource value: 0x7f02008b
public const int ic_mr_button_connected_03_dark = 2130837643;
// aapt resource value: 0x7f02008c
public const int ic_mr_button_connected_03_light = 2130837644;
// aapt resource value: 0x7f02008d
public const int ic_mr_button_connected_04_dark = 2130837645;
// aapt resource value: 0x7f02008e
public const int ic_mr_button_connected_04_light = 2130837646;
// aapt resource value: 0x7f02008f
public const int ic_mr_button_connected_05_dark = 2130837647;
// aapt resource value: 0x7f020090
public const int ic_mr_button_connected_05_light = 2130837648;
// aapt resource value: 0x7f020091
public const int ic_mr_button_connected_06_dark = 2130837649;
// aapt resource value: 0x7f020092
public const int ic_mr_button_connected_06_light = 2130837650;
// aapt resource value: 0x7f020093
public const int ic_mr_button_connected_07_dark = 2130837651;
// aapt resource value: 0x7f020094
public const int ic_mr_button_connected_07_light = 2130837652;
// aapt resource value: 0x7f020095
public const int ic_mr_button_connected_08_dark = 2130837653;
// aapt resource value: 0x7f020096
public const int ic_mr_button_connected_08_light = 2130837654;
// aapt resource value: 0x7f020097
public const int ic_mr_button_connected_09_dark = 2130837655;
// aapt resource value: 0x7f020098
public const int ic_mr_button_connected_09_light = 2130837656;
// aapt resource value: 0x7f020099
public const int ic_mr_button_connected_10_dark = 2130837657;
// aapt resource value: 0x7f02009a
public const int ic_mr_button_connected_10_light = 2130837658;
// aapt resource value: 0x7f02009b
public const int ic_mr_button_connected_11_dark = 2130837659;
// aapt resource value: 0x7f02009c
public const int ic_mr_button_connected_11_light = 2130837660;
// aapt resource value: 0x7f02009d
public const int ic_mr_button_connected_12_dark = 2130837661;
// aapt resource value: 0x7f02009e
public const int ic_mr_button_connected_12_light = 2130837662;
// aapt resource value: 0x7f02009f
public const int ic_mr_button_connected_13_dark = 2130837663;
// aapt resource value: 0x7f0200a0
public const int ic_mr_button_connected_13_light = 2130837664;
// aapt resource value: 0x7f0200a1
public const int ic_mr_button_connected_14_dark = 2130837665;
// aapt resource value: 0x7f0200a2
public const int ic_mr_button_connected_14_light = 2130837666;
// aapt resource value: 0x7f0200a3
public const int ic_mr_button_connected_15_dark = 2130837667;
// aapt resource value: 0x7f0200a4
public const int ic_mr_button_connected_15_light = 2130837668;
// aapt resource value: 0x7f0200a5
public const int ic_mr_button_connected_16_dark = 2130837669;
// aapt resource value: 0x7f0200a6
public const int ic_mr_button_connected_16_light = 2130837670;
// aapt resource value: 0x7f0200a7
public const int ic_mr_button_connected_17_dark = 2130837671;
// aapt resource value: 0x7f0200a8
public const int ic_mr_button_connected_17_light = 2130837672;
// aapt resource value: 0x7f0200a9
public const int ic_mr_button_connected_18_dark = 2130837673;
// aapt resource value: 0x7f0200aa
public const int ic_mr_button_connected_18_light = 2130837674;
// aapt resource value: 0x7f0200ab
public const int ic_mr_button_connected_19_dark = 2130837675;
// aapt resource value: 0x7f0200ac
public const int ic_mr_button_connected_19_light = 2130837676;
// aapt resource value: 0x7f0200ad
public const int ic_mr_button_connected_20_dark = 2130837677;
// aapt resource value: 0x7f0200ae
public const int ic_mr_button_connected_20_light = 2130837678;
// aapt resource value: 0x7f0200af
public const int ic_mr_button_connected_21_dark = 2130837679;
// aapt resource value: 0x7f0200b0
public const int ic_mr_button_connected_21_light = 2130837680;
// aapt resource value: 0x7f0200b1
public const int ic_mr_button_connected_22_dark = 2130837681;
// aapt resource value: 0x7f0200b2
public const int ic_mr_button_connected_22_light = 2130837682;
// aapt resource value: 0x7f0200b3
public const int ic_mr_button_connected_23_dark = 2130837683;
// aapt resource value: 0x7f0200b4
public const int ic_mr_button_connected_23_light = 2130837684;
// aapt resource value: 0x7f0200b5
public const int ic_mr_button_connected_24_dark = 2130837685;
// aapt resource value: 0x7f0200b6
public const int ic_mr_button_connected_24_light = 2130837686;
// aapt resource value: 0x7f0200b7
public const int ic_mr_button_connected_25_dark = 2130837687;
// aapt resource value: 0x7f0200b8
public const int ic_mr_button_connected_25_light = 2130837688;
// aapt resource value: 0x7f0200b9
public const int ic_mr_button_connected_26_dark = 2130837689;
// aapt resource value: 0x7f0200ba
public const int ic_mr_button_connected_26_light = 2130837690;
// aapt resource value: 0x7f0200bb
public const int ic_mr_button_connected_27_dark = 2130837691;
// aapt resource value: 0x7f0200bc
public const int ic_mr_button_connected_27_light = 2130837692;
// aapt resource value: 0x7f0200bd
public const int ic_mr_button_connected_28_dark = 2130837693;
// aapt resource value: 0x7f0200be
public const int ic_mr_button_connected_28_light = 2130837694;
// aapt resource value: 0x7f0200bf
public const int ic_mr_button_connected_29_dark = 2130837695;
// aapt resource value: 0x7f0200c0
public const int ic_mr_button_connected_29_light = 2130837696;
// aapt resource value: 0x7f0200c1
public const int ic_mr_button_connected_30_dark = 2130837697;
// aapt resource value: 0x7f0200c2
public const int ic_mr_button_connected_30_light = 2130837698;
// aapt resource value: 0x7f0200c3
public const int ic_mr_button_connecting_00_dark = 2130837699;
// aapt resource value: 0x7f0200c4
public const int ic_mr_button_connecting_00_light = 2130837700;
// aapt resource value: 0x7f0200c5
public const int ic_mr_button_connecting_01_dark = 2130837701;
// aapt resource value: 0x7f0200c6
public const int ic_mr_button_connecting_01_light = 2130837702;
// aapt resource value: 0x7f0200c7
public const int ic_mr_button_connecting_02_dark = 2130837703;
// aapt resource value: 0x7f0200c8
public const int ic_mr_button_connecting_02_light = 2130837704;
// aapt resource value: 0x7f0200c9
public const int ic_mr_button_connecting_03_dark = 2130837705;
// aapt resource value: 0x7f0200ca
public const int ic_mr_button_connecting_03_light = 2130837706;
// aapt resource value: 0x7f0200cb
public const int ic_mr_button_connecting_04_dark = 2130837707;
// aapt resource value: 0x7f0200cc
public const int ic_mr_button_connecting_04_light = 2130837708;
// aapt resource value: 0x7f0200cd
public const int ic_mr_button_connecting_05_dark = 2130837709;
// aapt resource value: 0x7f0200ce
public const int ic_mr_button_connecting_05_light = 2130837710;
// aapt resource value: 0x7f0200cf
public const int ic_mr_button_connecting_06_dark = 2130837711;
// aapt resource value: 0x7f0200d0
public const int ic_mr_button_connecting_06_light = 2130837712;
// aapt resource value: 0x7f0200d1
public const int ic_mr_button_connecting_07_dark = 2130837713;
// aapt resource value: 0x7f0200d2
public const int ic_mr_button_connecting_07_light = 2130837714;
// aapt resource value: 0x7f0200d3
public const int ic_mr_button_connecting_08_dark = 2130837715;
// aapt resource value: 0x7f0200d4
public const int ic_mr_button_connecting_08_light = 2130837716;
// aapt resource value: 0x7f0200d5
public const int ic_mr_button_connecting_09_dark = 2130837717;
// aapt resource value: 0x7f0200d6
public const int ic_mr_button_connecting_09_light = 2130837718;
// aapt resource value: 0x7f0200d7
public const int ic_mr_button_connecting_10_dark = 2130837719;
// aapt resource value: 0x7f0200d8
public const int ic_mr_button_connecting_10_light = 2130837720;
// aapt resource value: 0x7f0200d9
public const int ic_mr_button_connecting_11_dark = 2130837721;
// aapt resource value: 0x7f0200da
public const int ic_mr_button_connecting_11_light = 2130837722;
// aapt resource value: 0x7f0200db
public const int ic_mr_button_connecting_12_dark = 2130837723;
// aapt resource value: 0x7f0200dc
public const int ic_mr_button_connecting_12_light = 2130837724;
// aapt resource value: 0x7f0200dd
public const int ic_mr_button_connecting_13_dark = 2130837725;
// aapt resource value: 0x7f0200de
public const int ic_mr_button_connecting_13_light = 2130837726;
// aapt resource value: 0x7f0200df
public const int ic_mr_button_connecting_14_dark = 2130837727;
// aapt resource value: 0x7f0200e0
public const int ic_mr_button_connecting_14_light = 2130837728;
// aapt resource value: 0x7f0200e1
public const int ic_mr_button_connecting_15_dark = 2130837729;
// aapt resource value: 0x7f0200e2
public const int ic_mr_button_connecting_15_light = 2130837730;
// aapt resource value: 0x7f0200e3
public const int ic_mr_button_connecting_16_dark = 2130837731;
// aapt resource value: 0x7f0200e4
public const int ic_mr_button_connecting_16_light = 2130837732;
// aapt resource value: 0x7f0200e5
public const int ic_mr_button_connecting_17_dark = 2130837733;
// aapt resource value: 0x7f0200e6
public const int ic_mr_button_connecting_17_light = 2130837734;
// aapt resource value: 0x7f0200e7
public const int ic_mr_button_connecting_18_dark = 2130837735;
// aapt resource value: 0x7f0200e8
public const int ic_mr_button_connecting_18_light = 2130837736;
// aapt resource value: 0x7f0200e9
public const int ic_mr_button_connecting_19_dark = 2130837737;
// aapt resource value: 0x7f0200ea
public const int ic_mr_button_connecting_19_light = 2130837738;
// aapt resource value: 0x7f0200eb
public const int ic_mr_button_connecting_20_dark = 2130837739;
// aapt resource value: 0x7f0200ec
public const int ic_mr_button_connecting_20_light = 2130837740;
// aapt resource value: 0x7f0200ed
public const int ic_mr_button_connecting_21_dark = 2130837741;
// aapt resource value: 0x7f0200ee
public const int ic_mr_button_connecting_21_light = 2130837742;
// aapt resource value: 0x7f0200ef
public const int ic_mr_button_connecting_22_dark = 2130837743;
// aapt resource value: 0x7f0200f0
public const int ic_mr_button_connecting_22_light = 2130837744;
// aapt resource value: 0x7f0200f1
public const int ic_mr_button_connecting_23_dark = 2130837745;
// aapt resource value: 0x7f0200f2
public const int ic_mr_button_connecting_23_light = 2130837746;
// aapt resource value: 0x7f0200f3
public const int ic_mr_button_connecting_24_dark = 2130837747;
// aapt resource value: 0x7f0200f4
public const int ic_mr_button_connecting_24_light = 2130837748;
// aapt resource value: 0x7f0200f5
public const int ic_mr_button_connecting_25_dark = 2130837749;
// aapt resource value: 0x7f0200f6
public const int ic_mr_button_connecting_25_light = 2130837750;
// aapt resource value: 0x7f0200f7
public const int ic_mr_button_connecting_26_dark = 2130837751;
// aapt resource value: 0x7f0200f8
public const int ic_mr_button_connecting_26_light = 2130837752;
// aapt resource value: 0x7f0200f9
public const int ic_mr_button_connecting_27_dark = 2130837753;
// aapt resource value: 0x7f0200fa
public const int ic_mr_button_connecting_27_light = 2130837754;
// aapt resource value: 0x7f0200fb
public const int ic_mr_button_connecting_28_dark = 2130837755;
// aapt resource value: 0x7f0200fc
public const int ic_mr_button_connecting_28_light = 2130837756;
// aapt resource value: 0x7f0200fd
public const int ic_mr_button_connecting_29_dark = 2130837757;
// aapt resource value: 0x7f0200fe
public const int ic_mr_button_connecting_29_light = 2130837758;
// aapt resource value: 0x7f0200ff
public const int ic_mr_button_connecting_30_dark = 2130837759;
// aapt resource value: 0x7f020100
public const int ic_mr_button_connecting_30_light = 2130837760;
// aapt resource value: 0x7f020101
public const int ic_mr_button_disabled_dark = 2130837761;
// aapt resource value: 0x7f020102
public const int ic_mr_button_disabled_light = 2130837762;
// aapt resource value: 0x7f020103
public const int ic_mr_button_disconnected_dark = 2130837763;
// aapt resource value: 0x7f020104
public const int ic_mr_button_disconnected_light = 2130837764;
// aapt resource value: 0x7f020105
public const int ic_mr_button_grey = 2130837765;
// aapt resource value: 0x7f020106
public const int ic_vol_type_speaker_dark = 2130837766;
// aapt resource value: 0x7f020107
public const int ic_vol_type_speaker_group_dark = 2130837767;
// aapt resource value: 0x7f020108
public const int ic_vol_type_speaker_group_light = 2130837768;
// aapt resource value: 0x7f020109
public const int ic_vol_type_speaker_light = 2130837769;
// aapt resource value: 0x7f02010a
public const int ic_vol_type_tv_dark = 2130837770;
// aapt resource value: 0x7f02010b
public const int ic_vol_type_tv_light = 2130837771;
// aapt resource value: 0x7f02010c
public const int icon = 2130837772;
// aapt resource value: 0x7f02010d
public const int mr_button_connected_dark = 2130837773;
// aapt resource value: 0x7f02010e
public const int mr_button_connected_light = 2130837774;
// aapt resource value: 0x7f02010f
public const int mr_button_connecting_dark = 2130837775;
// aapt resource value: 0x7f020110
public const int mr_button_connecting_light = 2130837776;
// aapt resource value: 0x7f020111
public const int mr_button_dark = 2130837777;
// aapt resource value: 0x7f020112
public const int mr_button_light = 2130837778;
// aapt resource value: 0x7f020113
public const int mr_dialog_close_dark = 2130837779;
// aapt resource value: 0x7f020114
public const int mr_dialog_close_light = 2130837780;
// aapt resource value: 0x7f020115
public const int mr_dialog_material_background_dark = 2130837781;
// aapt resource value: 0x7f020116
public const int mr_dialog_material_background_light = 2130837782;
// aapt resource value: 0x7f020117
public const int mr_group_collapse = 2130837783;
// aapt resource value: 0x7f020118
public const int mr_group_expand = 2130837784;
// aapt resource value: 0x7f020119
public const int mr_media_pause_dark = 2130837785;
// aapt resource value: 0x7f02011a
public const int mr_media_pause_light = 2130837786;
// aapt resource value: 0x7f02011b
public const int mr_media_play_dark = 2130837787;
// aapt resource value: 0x7f02011c
public const int mr_media_play_light = 2130837788;
// aapt resource value: 0x7f02011d
public const int mr_media_stop_dark = 2130837789;
// aapt resource value: 0x7f02011e
public const int mr_media_stop_light = 2130837790;
// aapt resource value: 0x7f02011f
public const int mr_vol_type_audiotrack_dark = 2130837791;
// aapt resource value: 0x7f020120
public const int mr_vol_type_audiotrack_light = 2130837792;
// aapt resource value: 0x7f020121
public const int navigation_empty_icon = 2130837793;
// aapt resource value: 0x7f020122
public const int notification_action_background = 2130837794;
// aapt resource value: 0x7f020123
public const int notification_bg = 2130837795;
// aapt resource value: 0x7f020124
public const int notification_bg_low = 2130837796;
// aapt resource value: 0x7f020125
public const int notification_bg_low_normal = 2130837797;
// aapt resource value: 0x7f020126
public const int notification_bg_low_pressed = 2130837798;
// aapt resource value: 0x7f020127
public const int notification_bg_normal = 2130837799;
// aapt resource value: 0x7f020128
public const int notification_bg_normal_pressed = 2130837800;
// aapt resource value: 0x7f020129
public const int notification_icon_background = 2130837801;
// aapt resource value: 0x7f02012e
public const int notification_template_icon_bg = 2130837806;
// aapt resource value: 0x7f02012f
public const int notification_template_icon_low_bg = 2130837807;
// aapt resource value: 0x7f02012a
public const int notification_tile_bg = 2130837802;
// aapt resource value: 0x7f02012b
public const int notify_panel_notification_icon_bg = 2130837803;
// aapt resource value: 0x7f02012c
public const int tooltip_frame_dark = 2130837804;
// aapt resource value: 0x7f02012d
public const int tooltip_frame_light = 2130837805;
static Drawable()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Drawable()
{
}
}
public partial class Id
{
// aapt resource value: 0x7f080031
public const int ALT = 2131230769;
// aapt resource value: 0x7f080032
public const int CTRL = 2131230770;
// aapt resource value: 0x7f080033
public const int FUNCTION = 2131230771;
// aapt resource value: 0x7f080034
public const int META = 2131230772;
// aapt resource value: 0x7f080035
public const int SHIFT = 2131230773;
// aapt resource value: 0x7f080036
public const int SYM = 2131230774;
// aapt resource value: 0x7f0800b5
public const int action0 = 2131230901;
// aapt resource value: 0x7f08007b
public const int action_bar = 2131230843;
// aapt resource value: 0x7f080001
public const int action_bar_activity_content = 2131230721;
// aapt resource value: 0x7f08007a
public const int action_bar_container = 2131230842;
// aapt resource value: 0x7f080076
public const int action_bar_root = 2131230838;
// aapt resource value: 0x7f080002
public const int action_bar_spinner = 2131230722;
// aapt resource value: 0x7f08005a
public const int action_bar_subtitle = 2131230810;
// aapt resource value: 0x7f080059
public const int action_bar_title = 2131230809;
// aapt resource value: 0x7f0800b2
public const int action_container = 2131230898;
// aapt resource value: 0x7f08007c
public const int action_context_bar = 2131230844;
// aapt resource value: 0x7f0800b9
public const int action_divider = 2131230905;
// aapt resource value: 0x7f0800b3
public const int action_image = 2131230899;
// aapt resource value: 0x7f080003
public const int action_menu_divider = 2131230723;
// aapt resource value: 0x7f080004
public const int action_menu_presenter = 2131230724;
// aapt resource value: 0x7f080078
public const int action_mode_bar = 2131230840;
// aapt resource value: 0x7f080077
public const int action_mode_bar_stub = 2131230839;
// aapt resource value: 0x7f08005b
public const int action_mode_close_button = 2131230811;
// aapt resource value: 0x7f0800b4
public const int action_text = 2131230900;
// aapt resource value: 0x7f0800c2
public const int actions = 2131230914;
// aapt resource value: 0x7f08005c
public const int activity_chooser_view_content = 2131230812;
// aapt resource value: 0x7f08002b
public const int add = 2131230763;
// aapt resource value: 0x7f08006f
public const int alertTitle = 2131230831;
// aapt resource value: 0x7f080051
public const int all = 2131230801;
// aapt resource value: 0x7f080037
public const int always = 2131230775;
// aapt resource value: 0x7f080055
public const int async = 2131230805;
// aapt resource value: 0x7f080043
public const int auto = 2131230787;
// aapt resource value: 0x7f08002e
public const int beginning = 2131230766;
// aapt resource value: 0x7f080056
public const int blocking = 2131230806;
// aapt resource value: 0x7f08003c
public const int bottom = 2131230780;
// aapt resource value: 0x7f080062
public const int buttonPanel = 2131230818;
// aapt resource value: 0x7f0800b6
public const int cancel_action = 2131230902;
// aapt resource value: 0x7f080044
public const int center = 2131230788;
// aapt resource value: 0x7f080045
public const int center_horizontal = 2131230789;
// aapt resource value: 0x7f080046
public const int center_vertical = 2131230790;
// aapt resource value: 0x7f080072
public const int checkbox = 2131230834;
// aapt resource value: 0x7f0800be
public const int chronometer = 2131230910;
// aapt resource value: 0x7f08004d
public const int clip_horizontal = 2131230797;
// aapt resource value: 0x7f08004e
public const int clip_vertical = 2131230798;
// aapt resource value: 0x7f080038
public const int collapseActionView = 2131230776;
// aapt resource value: 0x7f08008c
public const int container = 2131230860;
// aapt resource value: 0x7f080065
public const int contentPanel = 2131230821;
// aapt resource value: 0x7f08008d
public const int coordinator = 2131230861;
// aapt resource value: 0x7f08006c
public const int custom = 2131230828;
// aapt resource value: 0x7f08006b
public const int customPanel = 2131230827;
// aapt resource value: 0x7f080079
public const int decor_content_parent = 2131230841;
// aapt resource value: 0x7f08005f
public const int default_activity_button = 2131230815;
// aapt resource value: 0x7f08008f
public const int design_bottom_sheet = 2131230863;
// aapt resource value: 0x7f080096
public const int design_menu_item_action_area = 2131230870;
// aapt resource value: 0x7f080095
public const int design_menu_item_action_area_stub = 2131230869;
// aapt resource value: 0x7f080094
public const int design_menu_item_text = 2131230868;
// aapt resource value: 0x7f080093
public const int design_navigation_view = 2131230867;
// aapt resource value: 0x7f08001f
public const int disableHome = 2131230751;
// aapt resource value: 0x7f08007d
public const int edit_query = 2131230845;
// aapt resource value: 0x7f08002f
public const int end = 2131230767;
// aapt resource value: 0x7f0800c4
public const int end_padder = 2131230916;
// aapt resource value: 0x7f08003e
public const int enterAlways = 2131230782;
// aapt resource value: 0x7f08003f
public const int enterAlwaysCollapsed = 2131230783;
// aapt resource value: 0x7f080040
public const int exitUntilCollapsed = 2131230784;
// aapt resource value: 0x7f08005d
public const int expand_activities_button = 2131230813;
// aapt resource value: 0x7f080071
public const int expanded_menu = 2131230833;
// aapt resource value: 0x7f08004f
public const int fill = 2131230799;
// aapt resource value: 0x7f080050
public const int fill_horizontal = 2131230800;
// aapt resource value: 0x7f080047
public const int fill_vertical = 2131230791;
// aapt resource value: 0x7f080053
public const int @fixed = 2131230803;
// aapt resource value: 0x7f080057
public const int forever = 2131230807;
// aapt resource value: 0x7f08000a
public const int ghost_view = 2131230730;
// aapt resource value: 0x7f080005
public const int home = 2131230725;
// aapt resource value: 0x7f080020
public const int homeAsUp = 2131230752;
// aapt resource value: 0x7f080061
public const int icon = 2131230817;
// aapt resource value: 0x7f0800c3
public const int icon_group = 2131230915;
// aapt resource value: 0x7f080039
public const int ifRoom = 2131230777;
// aapt resource value: 0x7f08005e
public const int image = 2131230814;
// aapt resource value: 0x7f0800bf
public const int info = 2131230911;
// aapt resource value: 0x7f080058
public const int italic = 2131230808;
// aapt resource value: 0x7f080000
public const int item_touch_helper_previous_elevation = 2131230720;
// aapt resource value: 0x7f08008b
public const int largeLabel = 2131230859;
// aapt resource value: 0x7f080048
public const int left = 2131230792;
// aapt resource value: 0x7f080017
public const int line1 = 2131230743;
// aapt resource value: 0x7f080018
public const int line3 = 2131230744;
// aapt resource value: 0x7f08001c
public const int listMode = 2131230748;
// aapt resource value: 0x7f080060
public const int list_item = 2131230816;
// aapt resource value: 0x7f0800c9
public const int masked = 2131230921;
// aapt resource value: 0x7f0800b8
public const int media_actions = 2131230904;
// aapt resource value: 0x7f0800c7
public const int message = 2131230919;
// aapt resource value: 0x7f080030
public const int middle = 2131230768;
// aapt resource value: 0x7f080052
public const int mini = 2131230802;
// aapt resource value: 0x7f0800a4
public const int mr_art = 2131230884;
// aapt resource value: 0x7f080099
public const int mr_chooser_list = 2131230873;
// aapt resource value: 0x7f08009c
public const int mr_chooser_route_desc = 2131230876;
// aapt resource value: 0x7f08009a
public const int mr_chooser_route_icon = 2131230874;
// aapt resource value: 0x7f08009b
public const int mr_chooser_route_name = 2131230875;
// aapt resource value: 0x7f080098
public const int mr_chooser_title = 2131230872;
// aapt resource value: 0x7f0800a1
public const int mr_close = 2131230881;
// aapt resource value: 0x7f0800a7
public const int mr_control_divider = 2131230887;
// aapt resource value: 0x7f0800ad
public const int mr_control_playback_ctrl = 2131230893;
// aapt resource value: 0x7f0800b0
public const int mr_control_subtitle = 2131230896;
// aapt resource value: 0x7f0800af
public const int mr_control_title = 2131230895;
// aapt resource value: 0x7f0800ae
public const int mr_control_title_container = 2131230894;
// aapt resource value: 0x7f0800a2
public const int mr_custom_control = 2131230882;
// aapt resource value: 0x7f0800a3
public const int mr_default_control = 2131230883;
// aapt resource value: 0x7f08009e
public const int mr_dialog_area = 2131230878;
// aapt resource value: 0x7f08009d
public const int mr_expandable_area = 2131230877;
// aapt resource value: 0x7f0800b1
public const int mr_group_expand_collapse = 2131230897;
// aapt resource value: 0x7f0800a5
public const int mr_media_main_control = 2131230885;
// aapt resource value: 0x7f0800a0
public const int mr_name = 2131230880;
// aapt resource value: 0x7f0800a6
public const int mr_playback_control = 2131230886;
// aapt resource value: 0x7f08009f
public const int mr_title_bar = 2131230879;
// aapt resource value: 0x7f0800a8
public const int mr_volume_control = 2131230888;
// aapt resource value: 0x7f0800a9
public const int mr_volume_group_list = 2131230889;
// aapt resource value: 0x7f0800ab
public const int mr_volume_item_icon = 2131230891;
// aapt resource value: 0x7f0800ac
public const int mr_volume_slider = 2131230892;
// aapt resource value: 0x7f080026
public const int multiply = 2131230758;
// aapt resource value: 0x7f080092
public const int navigation_header_container = 2131230866;
// aapt resource value: 0x7f08003a
public const int never = 2131230778;
// aapt resource value: 0x7f080021
public const int none = 2131230753;
// aapt resource value: 0x7f08001d
public const int normal = 2131230749;
// aapt resource value: 0x7f0800c1
public const int notification_background = 2131230913;
// aapt resource value: 0x7f0800bb
public const int notification_main_column = 2131230907;
// aapt resource value: 0x7f0800ba
public const int notification_main_column_container = 2131230906;
// aapt resource value: 0x7f08004b
public const int parallax = 2131230795;
// aapt resource value: 0x7f080064
public const int parentPanel = 2131230820;
// aapt resource value: 0x7f08000b
public const int parent_matrix = 2131230731;
// aapt resource value: 0x7f08004c
public const int pin = 2131230796;
// aapt resource value: 0x7f080006
public const int progress_circular = 2131230726;
// aapt resource value: 0x7f080007
public const int progress_horizontal = 2131230727;
// aapt resource value: 0x7f080074
public const int radio = 2131230836;
// aapt resource value: 0x7f080049
public const int right = 2131230793;
// aapt resource value: 0x7f0800c0
public const int right_icon = 2131230912;
// aapt resource value: 0x7f0800bc
public const int right_side = 2131230908;
// aapt resource value: 0x7f08000c
public const int save_image_matrix = 2131230732;
// aapt resource value: 0x7f08000d
public const int save_non_transition_alpha = 2131230733;
// aapt resource value: 0x7f08000e
public const int save_scale_type = 2131230734;
// aapt resource value: 0x7f080027
public const int screen = 2131230759;
// aapt resource value: 0x7f080041
public const int scroll = 2131230785;
// aapt resource value: 0x7f08006a
public const int scrollIndicatorDown = 2131230826;
// aapt resource value: 0x7f080066
public const int scrollIndicatorUp = 2131230822;
// aapt resource value: 0x7f080067
public const int scrollView = 2131230823;
// aapt resource value: 0x7f080054
public const int scrollable = 2131230804;
// aapt resource value: 0x7f08007f
public const int search_badge = 2131230847;
// aapt resource value: 0x7f08007e
public const int search_bar = 2131230846;
// aapt resource value: 0x7f080080
public const int search_button = 2131230848;
// aapt resource value: 0x7f080085
public const int search_close_btn = 2131230853;
// aapt resource value: 0x7f080081
public const int search_edit_frame = 2131230849;
// aapt resource value: 0x7f080087
public const int search_go_btn = 2131230855;
// aapt resource value: 0x7f080082
public const int search_mag_icon = 2131230850;
// aapt resource value: 0x7f080083
public const int search_plate = 2131230851;
// aapt resource value: 0x7f080084
public const int search_src_text = 2131230852;
// aapt resource value: 0x7f080088
public const int search_voice_btn = 2131230856;
// aapt resource value: 0x7f080089
public const int select_dialog_listview = 2131230857;
// aapt resource value: 0x7f080073
public const int shortcut = 2131230835;
// aapt resource value: 0x7f080022
public const int showCustom = 2131230754;
// aapt resource value: 0x7f080023
public const int showHome = 2131230755;
// aapt resource value: 0x7f080024
public const int showTitle = 2131230756;
// aapt resource value: 0x7f0800c5
public const int sliding_tabs = 2131230917;
// aapt resource value: 0x7f08008a
public const int smallLabel = 2131230858;
// aapt resource value: 0x7f080091
public const int snackbar_action = 2131230865;
// aapt resource value: 0x7f080090
public const int snackbar_text = 2131230864;
// aapt resource value: 0x7f080042
public const int snap = 2131230786;
// aapt resource value: 0x7f080063
public const int spacer = 2131230819;
// aapt resource value: 0x7f080008
public const int split_action_bar = 2131230728;
// aapt resource value: 0x7f080028
public const int src_atop = 2131230760;
// aapt resource value: 0x7f080029
public const int src_in = 2131230761;
// aapt resource value: 0x7f08002a
public const int src_over = 2131230762;
// aapt resource value: 0x7f08004a
public const int start = 2131230794;
// aapt resource value: 0x7f0800b7
public const int status_bar_latest_event_content = 2131230903;
// aapt resource value: 0x7f080075
public const int submenuarrow = 2131230837;
// aapt resource value: 0x7f080086
public const int submit_area = 2131230854;
// aapt resource value: 0x7f08001e
public const int tabMode = 2131230750;
// aapt resource value: 0x7f080019
public const int text = 2131230745;
// aapt resource value: 0x7f08001a
public const int text2 = 2131230746;
// aapt resource value: 0x7f080069
public const int textSpacerNoButtons = 2131230825;
// aapt resource value: 0x7f080068
public const int textSpacerNoTitle = 2131230824;
// aapt resource value: 0x7f080097
public const int text_input_password_toggle = 2131230871;
// aapt resource value: 0x7f080014
public const int textinput_counter = 2131230740;
// aapt resource value: 0x7f080015
public const int textinput_error = 2131230741;
// aapt resource value: 0x7f0800bd
public const int time = 2131230909;
// aapt resource value: 0x7f08001b
public const int title = 2131230747;
// aapt resource value: 0x7f080070
public const int titleDividerNoCustom = 2131230832;
// aapt resource value: 0x7f08006e
public const int title_template = 2131230830;
// aapt resource value: 0x7f0800c6
public const int toolbar = 2131230918;
// aapt resource value: 0x7f08003d
public const int top = 2131230781;
// aapt resource value: 0x7f08006d
public const int topPanel = 2131230829;
// aapt resource value: 0x7f08008e
public const int touch_outside = 2131230862;
// aapt resource value: 0x7f08000f
public const int transition_current_scene = 2131230735;
// aapt resource value: 0x7f080010
public const int transition_layout_save = 2131230736;
// aapt resource value: 0x7f080011
public const int transition_position = 2131230737;
// aapt resource value: 0x7f080012
public const int transition_scene_layoutid_cache = 2131230738;
// aapt resource value: 0x7f080013
public const int transition_transform = 2131230739;
// aapt resource value: 0x7f08002c
public const int uniform = 2131230764;
// aapt resource value: 0x7f080009
public const int up = 2131230729;
// aapt resource value: 0x7f080025
public const int useLogo = 2131230757;
// aapt resource value: 0x7f080016
public const int view_offset_helper = 2131230742;
// aapt resource value: 0x7f0800c8
public const int visible = 2131230920;
// aapt resource value: 0x7f0800aa
public const int volume_item_container = 2131230890;
// aapt resource value: 0x7f08003b
public const int withText = 2131230779;
// aapt resource value: 0x7f08002d
public const int wrap_content = 2131230765;
static Id()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Id()
{
}
}
public partial class Integer
{
// aapt resource value: 0x7f0a0003
public const int abc_config_activityDefaultDur = 2131361795;
// aapt resource value: 0x7f0a0004
public const int abc_config_activityShortDur = 2131361796;
// aapt resource value: 0x7f0a0008
public const int app_bar_elevation_anim_duration = 2131361800;
// aapt resource value: 0x7f0a0009
public const int bottom_sheet_slide_duration = 2131361801;
// aapt resource value: 0x7f0a0005
public const int cancel_button_image_alpha = 2131361797;
// aapt resource value: 0x7f0a0006
public const int config_tooltipAnimTime = 2131361798;
// aapt resource value: 0x7f0a0007
public const int design_snackbar_text_max_lines = 2131361799;
// aapt resource value: 0x7f0a000a
public const int hide_password_duration = 2131361802;
// aapt resource value: 0x7f0a0000
public const int mr_controller_volume_group_list_animation_duration_ms = 2131361792;
// aapt resource value: 0x7f0a0001
public const int mr_controller_volume_group_list_fade_in_duration_ms = 2131361793;
// aapt resource value: 0x7f0a0002
public const int mr_controller_volume_group_list_fade_out_duration_ms = 2131361794;
// aapt resource value: 0x7f0a000b
public const int show_password_duration = 2131361803;
// aapt resource value: 0x7f0a000c
public const int status_bar_notification_info_maxnum = 2131361804;
static Integer()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Integer()
{
}
}
public partial class Interpolator
{
// aapt resource value: 0x7f060000
public const int mr_fast_out_slow_in = 2131099648;
// aapt resource value: 0x7f060001
public const int mr_linear_out_slow_in = 2131099649;
static Interpolator()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Interpolator()
{
}
}
public partial class Layout
{
// aapt resource value: 0x7f030000
public const int abc_action_bar_title_item = 2130903040;
// aapt resource value: 0x7f030001
public const int abc_action_bar_up_container = 2130903041;
// aapt resource value: 0x7f030002
public const int abc_action_bar_view_list_nav_layout = 2130903042;
// aapt resource value: 0x7f030003
public const int abc_action_menu_item_layout = 2130903043;
// aapt resource value: 0x7f030004
public const int abc_action_menu_layout = 2130903044;
// aapt resource value: 0x7f030005
public const int abc_action_mode_bar = 2130903045;
// aapt resource value: 0x7f030006
public const int abc_action_mode_close_item_material = 2130903046;
// aapt resource value: 0x7f030007
public const int abc_activity_chooser_view = 2130903047;
// aapt resource value: 0x7f030008
public const int abc_activity_chooser_view_list_item = 2130903048;
// aapt resource value: 0x7f030009
public const int abc_alert_dialog_button_bar_material = 2130903049;
// aapt resource value: 0x7f03000a
public const int abc_alert_dialog_material = 2130903050;
// aapt resource value: 0x7f03000b
public const int abc_alert_dialog_title_material = 2130903051;
// aapt resource value: 0x7f03000c
public const int abc_dialog_title_material = 2130903052;
// aapt resource value: 0x7f03000d
public const int abc_expanded_menu_layout = 2130903053;
// aapt resource value: 0x7f03000e
public const int abc_list_menu_item_checkbox = 2130903054;
// aapt resource value: 0x7f03000f
public const int abc_list_menu_item_icon = 2130903055;
// aapt resource value: 0x7f030010
public const int abc_list_menu_item_layout = 2130903056;
// aapt resource value: 0x7f030011
public const int abc_list_menu_item_radio = 2130903057;
// aapt resource value: 0x7f030012
public const int abc_popup_menu_header_item_layout = 2130903058;
// aapt resource value: 0x7f030013
public const int abc_popup_menu_item_layout = 2130903059;
// aapt resource value: 0x7f030014
public const int abc_screen_content_include = 2130903060;
// aapt resource value: 0x7f030015
public const int abc_screen_simple = 2130903061;
// aapt resource value: 0x7f030016
public const int abc_screen_simple_overlay_action_mode = 2130903062;
// aapt resource value: 0x7f030017
public const int abc_screen_toolbar = 2130903063;
// aapt resource value: 0x7f030018
public const int abc_search_dropdown_item_icons_2line = 2130903064;
// aapt resource value: 0x7f030019
public const int abc_search_view = 2130903065;
// aapt resource value: 0x7f03001a
public const int abc_select_dialog_material = 2130903066;
// aapt resource value: 0x7f03001b
public const int design_bottom_navigation_item = 2130903067;
// aapt resource value: 0x7f03001c
public const int design_bottom_sheet_dialog = 2130903068;
// aapt resource value: 0x7f03001d
public const int design_layout_snackbar = 2130903069;
// aapt resource value: 0x7f03001e
public const int design_layout_snackbar_include = 2130903070;
// aapt resource value: 0x7f03001f
public const int design_layout_tab_icon = 2130903071;
// aapt resource value: 0x7f030020
public const int design_layout_tab_text = 2130903072;
// aapt resource value: 0x7f030021
public const int design_menu_item_action_area = 2130903073;
// aapt resource value: 0x7f030022
public const int design_navigation_item = 2130903074;
// aapt resource value: 0x7f030023
public const int design_navigation_item_header = 2130903075;
// aapt resource value: 0x7f030024
public const int design_navigation_item_separator = 2130903076;
// aapt resource value: 0x7f030025
public const int design_navigation_item_subheader = 2130903077;
// aapt resource value: 0x7f030026
public const int design_navigation_menu = 2130903078;
// aapt resource value: 0x7f030027
public const int design_navigation_menu_item = 2130903079;
// aapt resource value: 0x7f030028
public const int design_text_input_password_icon = 2130903080;
// aapt resource value: 0x7f030029
public const int mr_chooser_dialog = 2130903081;
// aapt resource value: 0x7f03002a
public const int mr_chooser_list_item = 2130903082;
// aapt resource value: 0x7f03002b
public const int mr_controller_material_dialog_b = 2130903083;
// aapt resource value: 0x7f03002c
public const int mr_controller_volume_item = 2130903084;
// aapt resource value: 0x7f03002d
public const int mr_playback_control = 2130903085;
// aapt resource value: 0x7f03002e
public const int mr_volume_control = 2130903086;
// aapt resource value: 0x7f03002f
public const int notification_action = 2130903087;
// aapt resource value: 0x7f030030
public const int notification_action_tombstone = 2130903088;
// aapt resource value: 0x7f030031
public const int notification_media_action = 2130903089;
// aapt resource value: 0x7f030032
public const int notification_media_cancel_action = 2130903090;
// aapt resource value: 0x7f030033
public const int notification_template_big_media = 2130903091;
// aapt resource value: 0x7f030034
public const int notification_template_big_media_custom = 2130903092;
// aapt resource value: 0x7f030035
public const int notification_template_big_media_narrow = 2130903093;
// aapt resource value: 0x7f030036
public const int notification_template_big_media_narrow_custom = 2130903094;
// aapt resource value: 0x7f030037
public const int notification_template_custom_big = 2130903095;
// aapt resource value: 0x7f030038
public const int notification_template_icon_group = 2130903096;
// aapt resource value: 0x7f030039
public const int notification_template_lines_media = 2130903097;
// aapt resource value: 0x7f03003a
public const int notification_template_media = 2130903098;
// aapt resource value: 0x7f03003b
public const int notification_template_media_custom = 2130903099;
// aapt resource value: 0x7f03003c
public const int notification_template_part_chronometer = 2130903100;
// aapt resource value: 0x7f03003d
public const int notification_template_part_time = 2130903101;
// aapt resource value: 0x7f03003e
public const int select_dialog_item_material = 2130903102;
// aapt resource value: 0x7f03003f
public const int select_dialog_multichoice_material = 2130903103;
// aapt resource value: 0x7f030040
public const int select_dialog_singlechoice_material = 2130903104;
// aapt resource value: 0x7f030041
public const int support_simple_spinner_dropdown_item = 2130903105;
// aapt resource value: 0x7f030042
public const int Tabbar = 2130903106;
// aapt resource value: 0x7f030043
public const int Toolbar = 2130903107;
// aapt resource value: 0x7f030044
public const int tooltip = 2130903108;
static Layout()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Layout()
{
}
}
public partial class String
{
// aapt resource value: 0x7f090015
public const int abc_action_bar_home_description = 2131296277;
// aapt resource value: 0x7f090016
public const int abc_action_bar_home_description_format = 2131296278;
// aapt resource value: 0x7f090017
public const int abc_action_bar_home_subtitle_description_format = 2131296279;
// aapt resource value: 0x7f090018
public const int abc_action_bar_up_description = 2131296280;
// aapt resource value: 0x7f090019
public const int abc_action_menu_overflow_description = 2131296281;
// aapt resource value: 0x7f09001a
public const int abc_action_mode_done = 2131296282;
// aapt resource value: 0x7f09001b
public const int abc_activity_chooser_view_see_all = 2131296283;
// aapt resource value: 0x7f09001c
public const int abc_activitychooserview_choose_application = 2131296284;
// aapt resource value: 0x7f09001d
public const int abc_capital_off = 2131296285;
// aapt resource value: 0x7f09001e
public const int abc_capital_on = 2131296286;
// aapt resource value: 0x7f09002a
public const int abc_font_family_body_1_material = 2131296298;
// aapt resource value: 0x7f09002b
public const int abc_font_family_body_2_material = 2131296299;
// aapt resource value: 0x7f09002c
public const int abc_font_family_button_material = 2131296300;
// aapt resource value: 0x7f09002d
public const int abc_font_family_caption_material = 2131296301;
// aapt resource value: 0x7f09002e
public const int abc_font_family_display_1_material = 2131296302;
// aapt resource value: 0x7f09002f
public const int abc_font_family_display_2_material = 2131296303;
// aapt resource value: 0x7f090030
public const int abc_font_family_display_3_material = 2131296304;
// aapt resource value: 0x7f090031
public const int abc_font_family_display_4_material = 2131296305;
// aapt resource value: 0x7f090032
public const int abc_font_family_headline_material = 2131296306;
// aapt resource value: 0x7f090033
public const int abc_font_family_menu_material = 2131296307;
// aapt resource value: 0x7f090034
public const int abc_font_family_subhead_material = 2131296308;
// aapt resource value: 0x7f090035
public const int abc_font_family_title_material = 2131296309;
// aapt resource value: 0x7f09001f
public const int abc_search_hint = 2131296287;
// aapt resource value: 0x7f090020
public const int abc_searchview_description_clear = 2131296288;
// aapt resource value: 0x7f090021
public const int abc_searchview_description_query = 2131296289;
// aapt resource value: 0x7f090022
public const int abc_searchview_description_search = 2131296290;
// aapt resource value: 0x7f090023
public const int abc_searchview_description_submit = 2131296291;
// aapt resource value: 0x7f090024
public const int abc_searchview_description_voice = 2131296292;
// aapt resource value: 0x7f090025
public const int abc_shareactionprovider_share_with = 2131296293;
// aapt resource value: 0x7f090026
public const int abc_shareactionprovider_share_with_application = 2131296294;
// aapt resource value: 0x7f090027
public const int abc_toolbar_collapse_description = 2131296295;
// aapt resource value: 0x7f090036
public const int appbar_scrolling_view_behavior = 2131296310;
// aapt resource value: 0x7f090037
public const int bottom_sheet_behavior = 2131296311;
// aapt resource value: 0x7f090038
public const int character_counter_pattern = 2131296312;
// aapt resource value: 0x7f090000
public const int mr_button_content_description = 2131296256;
// aapt resource value: 0x7f090001
public const int mr_cast_button_connected = 2131296257;
// aapt resource value: 0x7f090002
public const int mr_cast_button_connecting = 2131296258;
// aapt resource value: 0x7f090003
public const int mr_cast_button_disconnected = 2131296259;
// aapt resource value: 0x7f090004
public const int mr_chooser_searching = 2131296260;
// aapt resource value: 0x7f090005
public const int mr_chooser_title = 2131296261;
// aapt resource value: 0x7f090006
public const int mr_controller_album_art = 2131296262;
// aapt resource value: 0x7f090007
public const int mr_controller_casting_screen = 2131296263;
// aapt resource value: 0x7f090008
public const int mr_controller_close_description = 2131296264;
// aapt resource value: 0x7f090009
public const int mr_controller_collapse_group = 2131296265;
// aapt resource value: 0x7f09000a
public const int mr_controller_disconnect = 2131296266;
// aapt resource value: 0x7f09000b
public const int mr_controller_expand_group = 2131296267;
// aapt resource value: 0x7f09000c
public const int mr_controller_no_info_available = 2131296268;
// aapt resource value: 0x7f09000d
public const int mr_controller_no_media_selected = 2131296269;
// aapt resource value: 0x7f09000e
public const int mr_controller_pause = 2131296270;
// aapt resource value: 0x7f09000f
public const int mr_controller_play = 2131296271;
// aapt resource value: 0x7f090010
public const int mr_controller_stop = 2131296272;
// aapt resource value: 0x7f090011
public const int mr_controller_stop_casting = 2131296273;
// aapt resource value: 0x7f090012
public const int mr_controller_volume_slider = 2131296274;
// aapt resource value: 0x7f090013
public const int mr_system_route_name = 2131296275;
// aapt resource value: 0x7f090014
public const int mr_user_route_category_name = 2131296276;
// aapt resource value: 0x7f090039
public const int password_toggle_content_description = 2131296313;
// aapt resource value: 0x7f09003a
public const int path_password_eye = 2131296314;
// aapt resource value: 0x7f09003b
public const int path_password_eye_mask_strike_through = 2131296315;
// aapt resource value: 0x7f09003c
public const int path_password_eye_mask_visible = 2131296316;
// aapt resource value: 0x7f09003d
public const int path_password_strike_through = 2131296317;
// aapt resource value: 0x7f090028
public const int search_menu_title = 2131296296;
// aapt resource value: 0x7f090029
public const int status_bar_notification_info_overflow = 2131296297;
static String()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private String()
{
}
}
public partial class Style
{
// aapt resource value: 0x7f0b00ac
public const int AlertDialog_AppCompat = 2131427500;
// aapt resource value: 0x7f0b00ad
public const int AlertDialog_AppCompat_Light = 2131427501;
// aapt resource value: 0x7f0b00ae
public const int Animation_AppCompat_Dialog = 2131427502;
// aapt resource value: 0x7f0b00af
public const int Animation_AppCompat_DropDownUp = 2131427503;
// aapt resource value: 0x7f0b00b0
public const int Animation_AppCompat_Tooltip = 2131427504;
// aapt resource value: 0x7f0b0178
public const int Animation_Design_BottomSheetDialog = 2131427704;
// aapt resource value: 0x7f0b019b
public const int AppCompatDialogStyle = 2131427739;
// aapt resource value: 0x7f0b00b1
public const int Base_AlertDialog_AppCompat = 2131427505;
// aapt resource value: 0x7f0b00b2
public const int Base_AlertDialog_AppCompat_Light = 2131427506;
// aapt resource value: 0x7f0b00b3
public const int Base_Animation_AppCompat_Dialog = 2131427507;
// aapt resource value: 0x7f0b00b4
public const int Base_Animation_AppCompat_DropDownUp = 2131427508;
// aapt resource value: 0x7f0b00b5
public const int Base_Animation_AppCompat_Tooltip = 2131427509;
// aapt resource value: 0x7f0b000c
public const int Base_CardView = 2131427340;
// aapt resource value: 0x7f0b00b6
public const int Base_DialogWindowTitle_AppCompat = 2131427510;
// aapt resource value: 0x7f0b00b7
public const int Base_DialogWindowTitleBackground_AppCompat = 2131427511;
// aapt resource value: 0x7f0b0048
public const int Base_TextAppearance_AppCompat = 2131427400;
// aapt resource value: 0x7f0b0049
public const int Base_TextAppearance_AppCompat_Body1 = 2131427401;
// aapt resource value: 0x7f0b004a
public const int Base_TextAppearance_AppCompat_Body2 = 2131427402;
// aapt resource value: 0x7f0b0036
public const int Base_TextAppearance_AppCompat_Button = 2131427382;
// aapt resource value: 0x7f0b004b
public const int Base_TextAppearance_AppCompat_Caption = 2131427403;
// aapt resource value: 0x7f0b004c
public const int Base_TextAppearance_AppCompat_Display1 = 2131427404;
// aapt resource value: 0x7f0b004d
public const int Base_TextAppearance_AppCompat_Display2 = 2131427405;
// aapt resource value: 0x7f0b004e
public const int Base_TextAppearance_AppCompat_Display3 = 2131427406;
// aapt resource value: 0x7f0b004f
public const int Base_TextAppearance_AppCompat_Display4 = 2131427407;
// aapt resource value: 0x7f0b0050
public const int Base_TextAppearance_AppCompat_Headline = 2131427408;
// aapt resource value: 0x7f0b001a
public const int Base_TextAppearance_AppCompat_Inverse = 2131427354;
// aapt resource value: 0x7f0b0051
public const int Base_TextAppearance_AppCompat_Large = 2131427409;
// aapt resource value: 0x7f0b001b
public const int Base_TextAppearance_AppCompat_Large_Inverse = 2131427355;
// aapt resource value: 0x7f0b0052
public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427410;
// aapt resource value: 0x7f0b0053
public const int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427411;
// aapt resource value: 0x7f0b0054
public const int Base_TextAppearance_AppCompat_Medium = 2131427412;
// aapt resource value: 0x7f0b001c
public const int Base_TextAppearance_AppCompat_Medium_Inverse = 2131427356;
// aapt resource value: 0x7f0b0055
public const int Base_TextAppearance_AppCompat_Menu = 2131427413;
// aapt resource value: 0x7f0b00b8
public const int Base_TextAppearance_AppCompat_SearchResult = 2131427512;
// aapt resource value: 0x7f0b0056
public const int Base_TextAppearance_AppCompat_SearchResult_Subtitle = 2131427414;
// aapt resource value: 0x7f0b0057
public const int Base_TextAppearance_AppCompat_SearchResult_Title = 2131427415;
// aapt resource value: 0x7f0b0058
public const int Base_TextAppearance_AppCompat_Small = 2131427416;
// aapt resource value: 0x7f0b001d
public const int Base_TextAppearance_AppCompat_Small_Inverse = 2131427357;
// aapt resource value: 0x7f0b0059
public const int Base_TextAppearance_AppCompat_Subhead = 2131427417;
// aapt resource value: 0x7f0b001e
public const int Base_TextAppearance_AppCompat_Subhead_Inverse = 2131427358;
// aapt resource value: 0x7f0b005a
public const int Base_TextAppearance_AppCompat_Title = 2131427418;
// aapt resource value: 0x7f0b001f
public const int Base_TextAppearance_AppCompat_Title_Inverse = 2131427359;
// aapt resource value: 0x7f0b00b9
public const int Base_TextAppearance_AppCompat_Tooltip = 2131427513;
// aapt resource value: 0x7f0b009d
public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427485;
// aapt resource value: 0x7f0b005b
public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427419;
// aapt resource value: 0x7f0b005c
public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427420;
// aapt resource value: 0x7f0b005d
public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427421;
// aapt resource value: 0x7f0b005e
public const int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427422;
// aapt resource value: 0x7f0b005f
public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427423;
// aapt resource value: 0x7f0b0060
public const int Base_TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427424;
// aapt resource value: 0x7f0b0061
public const int Base_TextAppearance_AppCompat_Widget_Button = 2131427425;
// aapt resource value: 0x7f0b00a4
public const int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427492;
// aapt resource value: 0x7f0b00a5
public const int Base_TextAppearance_AppCompat_Widget_Button_Colored = 2131427493;
// aapt resource value: 0x7f0b009e
public const int Base_TextAppearance_AppCompat_Widget_Button_Inverse = 2131427486;
// aapt resource value: 0x7f0b00ba
public const int Base_TextAppearance_AppCompat_Widget_DropDownItem = 2131427514;
// aapt resource value: 0x7f0b0062
public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427426;
// aapt resource value: 0x7f0b0063
public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427427;
// aapt resource value: 0x7f0b0064
public const int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427428;
// aapt resource value: 0x7f0b0065
public const int Base_TextAppearance_AppCompat_Widget_Switch = 2131427429;
// aapt resource value: 0x7f0b0066
public const int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427430;
// aapt resource value: 0x7f0b00bb
public const int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427515;
// aapt resource value: 0x7f0b0067
public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427431;
// aapt resource value: 0x7f0b0068
public const int Base_TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427432;
// aapt resource value: 0x7f0b0069
public const int Base_Theme_AppCompat = 2131427433;
// aapt resource value: 0x7f0b00bc
public const int Base_Theme_AppCompat_CompactMenu = 2131427516;
// aapt resource value: 0x7f0b0020
public const int Base_Theme_AppCompat_Dialog = 2131427360;
// aapt resource value: 0x7f0b0021
public const int Base_Theme_AppCompat_Dialog_Alert = 2131427361;
// aapt resource value: 0x7f0b00bd
public const int Base_Theme_AppCompat_Dialog_FixedSize = 2131427517;
// aapt resource value: 0x7f0b0022
public const int Base_Theme_AppCompat_Dialog_MinWidth = 2131427362;
// aapt resource value: 0x7f0b0010
public const int Base_Theme_AppCompat_DialogWhenLarge = 2131427344;
// aapt resource value: 0x7f0b006a
public const int Base_Theme_AppCompat_Light = 2131427434;
// aapt resource value: 0x7f0b00be
public const int Base_Theme_AppCompat_Light_DarkActionBar = 2131427518;
// aapt resource value: 0x7f0b0023
public const int Base_Theme_AppCompat_Light_Dialog = 2131427363;
// aapt resource value: 0x7f0b0024
public const int Base_Theme_AppCompat_Light_Dialog_Alert = 2131427364;
// aapt resource value: 0x7f0b00bf
public const int Base_Theme_AppCompat_Light_Dialog_FixedSize = 2131427519;
// aapt resource value: 0x7f0b0025
public const int Base_Theme_AppCompat_Light_Dialog_MinWidth = 2131427365;
// aapt resource value: 0x7f0b0011
public const int Base_Theme_AppCompat_Light_DialogWhenLarge = 2131427345;
// aapt resource value: 0x7f0b00c0
public const int Base_ThemeOverlay_AppCompat = 2131427520;
// aapt resource value: 0x7f0b00c1
public const int Base_ThemeOverlay_AppCompat_ActionBar = 2131427521;
// aapt resource value: 0x7f0b00c2
public const int Base_ThemeOverlay_AppCompat_Dark = 2131427522;
// aapt resource value: 0x7f0b00c3
public const int Base_ThemeOverlay_AppCompat_Dark_ActionBar = 2131427523;
// aapt resource value: 0x7f0b0026
public const int Base_ThemeOverlay_AppCompat_Dialog = 2131427366;
// aapt resource value: 0x7f0b0027
public const int Base_ThemeOverlay_AppCompat_Dialog_Alert = 2131427367;
// aapt resource value: 0x7f0b00c4
public const int Base_ThemeOverlay_AppCompat_Light = 2131427524;
// aapt resource value: 0x7f0b0028
public const int Base_V11_Theme_AppCompat_Dialog = 2131427368;
// aapt resource value: 0x7f0b0029
public const int Base_V11_Theme_AppCompat_Light_Dialog = 2131427369;
// aapt resource value: 0x7f0b002a
public const int Base_V11_ThemeOverlay_AppCompat_Dialog = 2131427370;
// aapt resource value: 0x7f0b0032
public const int Base_V12_Widget_AppCompat_AutoCompleteTextView = 2131427378;
// aapt resource value: 0x7f0b0033
public const int Base_V12_Widget_AppCompat_EditText = 2131427379;
// aapt resource value: 0x7f0b0179
public const int Base_V14_Widget_Design_AppBarLayout = 2131427705;
// aapt resource value: 0x7f0b006b
public const int Base_V21_Theme_AppCompat = 2131427435;
// aapt resource value: 0x7f0b006c
public const int Base_V21_Theme_AppCompat_Dialog = 2131427436;
// aapt resource value: 0x7f0b006d
public const int Base_V21_Theme_AppCompat_Light = 2131427437;
// aapt resource value: 0x7f0b006e
public const int Base_V21_Theme_AppCompat_Light_Dialog = 2131427438;
// aapt resource value: 0x7f0b006f
public const int Base_V21_ThemeOverlay_AppCompat_Dialog = 2131427439;
// aapt resource value: 0x7f0b0175
public const int Base_V21_Widget_Design_AppBarLayout = 2131427701;
// aapt resource value: 0x7f0b009b
public const int Base_V22_Theme_AppCompat = 2131427483;
// aapt resource value: 0x7f0b009c
public const int Base_V22_Theme_AppCompat_Light = 2131427484;
// aapt resource value: 0x7f0b009f
public const int Base_V23_Theme_AppCompat = 2131427487;
// aapt resource value: 0x7f0b00a0
public const int Base_V23_Theme_AppCompat_Light = 2131427488;
// aapt resource value: 0x7f0b00a8
public const int Base_V26_Theme_AppCompat = 2131427496;
// aapt resource value: 0x7f0b00a9
public const int Base_V26_Theme_AppCompat_Light = 2131427497;
// aapt resource value: 0x7f0b00aa
public const int Base_V26_Widget_AppCompat_Toolbar = 2131427498;
// aapt resource value: 0x7f0b0177
public const int Base_V26_Widget_Design_AppBarLayout = 2131427703;
// aapt resource value: 0x7f0b00c5
public const int Base_V7_Theme_AppCompat = 2131427525;
// aapt resource value: 0x7f0b00c6
public const int Base_V7_Theme_AppCompat_Dialog = 2131427526;
// aapt resource value: 0x7f0b00c7
public const int Base_V7_Theme_AppCompat_Light = 2131427527;
// aapt resource value: 0x7f0b00c8
public const int Base_V7_Theme_AppCompat_Light_Dialog = 2131427528;
// aapt resource value: 0x7f0b00c9
public const int Base_V7_ThemeOverlay_AppCompat_Dialog = 2131427529;
// aapt resource value: 0x7f0b00ca
public const int Base_V7_Widget_AppCompat_AutoCompleteTextView = 2131427530;
// aapt resource value: 0x7f0b00cb
public const int Base_V7_Widget_AppCompat_EditText = 2131427531;
// aapt resource value: 0x7f0b00cc
public const int Base_V7_Widget_AppCompat_Toolbar = 2131427532;
// aapt resource value: 0x7f0b00cd
public const int Base_Widget_AppCompat_ActionBar = 2131427533;
// aapt resource value: 0x7f0b00ce
public const int Base_Widget_AppCompat_ActionBar_Solid = 2131427534;
// aapt resource value: 0x7f0b00cf
public const int Base_Widget_AppCompat_ActionBar_TabBar = 2131427535;
// aapt resource value: 0x7f0b0070
public const int Base_Widget_AppCompat_ActionBar_TabText = 2131427440;
// aapt resource value: 0x7f0b0071
public const int Base_Widget_AppCompat_ActionBar_TabView = 2131427441;
// aapt resource value: 0x7f0b0072
public const int Base_Widget_AppCompat_ActionButton = 2131427442;
// aapt resource value: 0x7f0b0073
public const int Base_Widget_AppCompat_ActionButton_CloseMode = 2131427443;
// aapt resource value: 0x7f0b0074
public const int Base_Widget_AppCompat_ActionButton_Overflow = 2131427444;
// aapt resource value: 0x7f0b00d0
public const int Base_Widget_AppCompat_ActionMode = 2131427536;
// aapt resource value: 0x7f0b00d1
public const int Base_Widget_AppCompat_ActivityChooserView = 2131427537;
// aapt resource value: 0x7f0b0034
public const int Base_Widget_AppCompat_AutoCompleteTextView = 2131427380;
// aapt resource value: 0x7f0b0075
public const int Base_Widget_AppCompat_Button = 2131427445;
// aapt resource value: 0x7f0b0076
public const int Base_Widget_AppCompat_Button_Borderless = 2131427446;
// aapt resource value: 0x7f0b0077
public const int Base_Widget_AppCompat_Button_Borderless_Colored = 2131427447;
// aapt resource value: 0x7f0b00d2
public const int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427538;
// aapt resource value: 0x7f0b00a1
public const int Base_Widget_AppCompat_Button_Colored = 2131427489;
// aapt resource value: 0x7f0b0078
public const int Base_Widget_AppCompat_Button_Small = 2131427448;
// aapt resource value: 0x7f0b0079
public const int Base_Widget_AppCompat_ButtonBar = 2131427449;
// aapt resource value: 0x7f0b00d3
public const int Base_Widget_AppCompat_ButtonBar_AlertDialog = 2131427539;
// aapt resource value: 0x7f0b007a
public const int Base_Widget_AppCompat_CompoundButton_CheckBox = 2131427450;
// aapt resource value: 0x7f0b007b
public const int Base_Widget_AppCompat_CompoundButton_RadioButton = 2131427451;
// aapt resource value: 0x7f0b00d4
public const int Base_Widget_AppCompat_CompoundButton_Switch = 2131427540;
// aapt resource value: 0x7f0b000f
public const int Base_Widget_AppCompat_DrawerArrowToggle = 2131427343;
// aapt resource value: 0x7f0b00d5
public const int Base_Widget_AppCompat_DrawerArrowToggle_Common = 2131427541;
// aapt resource value: 0x7f0b007c
public const int Base_Widget_AppCompat_DropDownItem_Spinner = 2131427452;
// aapt resource value: 0x7f0b0035
public const int Base_Widget_AppCompat_EditText = 2131427381;
// aapt resource value: 0x7f0b007d
public const int Base_Widget_AppCompat_ImageButton = 2131427453;
// aapt resource value: 0x7f0b00d6
public const int Base_Widget_AppCompat_Light_ActionBar = 2131427542;
// aapt resource value: 0x7f0b00d7
public const int Base_Widget_AppCompat_Light_ActionBar_Solid = 2131427543;
// aapt resource value: 0x7f0b00d8
public const int Base_Widget_AppCompat_Light_ActionBar_TabBar = 2131427544;
// aapt resource value: 0x7f0b007e
public const int Base_Widget_AppCompat_Light_ActionBar_TabText = 2131427454;
// aapt resource value: 0x7f0b007f
public const int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427455;
// aapt resource value: 0x7f0b0080
public const int Base_Widget_AppCompat_Light_ActionBar_TabView = 2131427456;
// aapt resource value: 0x7f0b0081
public const int Base_Widget_AppCompat_Light_PopupMenu = 2131427457;
// aapt resource value: 0x7f0b0082
public const int Base_Widget_AppCompat_Light_PopupMenu_Overflow = 2131427458;
// aapt resource value: 0x7f0b00d9
public const int Base_Widget_AppCompat_ListMenuView = 2131427545;
// aapt resource value: 0x7f0b0083
public const int Base_Widget_AppCompat_ListPopupWindow = 2131427459;
// aapt resource value: 0x7f0b0084
public const int Base_Widget_AppCompat_ListView = 2131427460;
// aapt resource value: 0x7f0b0085
public const int Base_Widget_AppCompat_ListView_DropDown = 2131427461;
// aapt resource value: 0x7f0b0086
public const int Base_Widget_AppCompat_ListView_Menu = 2131427462;
// aapt resource value: 0x7f0b0087
public const int Base_Widget_AppCompat_PopupMenu = 2131427463;
// aapt resource value: 0x7f0b0088
public const int Base_Widget_AppCompat_PopupMenu_Overflow = 2131427464;
// aapt resource value: 0x7f0b00da
public const int Base_Widget_AppCompat_PopupWindow = 2131427546;
// aapt resource value: 0x7f0b002b
public const int Base_Widget_AppCompat_ProgressBar = 2131427371;
// aapt resource value: 0x7f0b002c
public const int Base_Widget_AppCompat_ProgressBar_Horizontal = 2131427372;
// aapt resource value: 0x7f0b0089
public const int Base_Widget_AppCompat_RatingBar = 2131427465;
// aapt resource value: 0x7f0b00a2
public const int Base_Widget_AppCompat_RatingBar_Indicator = 2131427490;
// aapt resource value: 0x7f0b00a3
public const int Base_Widget_AppCompat_RatingBar_Small = 2131427491;
// aapt resource value: 0x7f0b00db
public const int Base_Widget_AppCompat_SearchView = 2131427547;
// aapt resource value: 0x7f0b00dc
public const int Base_Widget_AppCompat_SearchView_ActionBar = 2131427548;
// aapt resource value: 0x7f0b008a
public const int Base_Widget_AppCompat_SeekBar = 2131427466;
// aapt resource value: 0x7f0b00dd
public const int Base_Widget_AppCompat_SeekBar_Discrete = 2131427549;
// aapt resource value: 0x7f0b008b
public const int Base_Widget_AppCompat_Spinner = 2131427467;
// aapt resource value: 0x7f0b0012
public const int Base_Widget_AppCompat_Spinner_Underlined = 2131427346;
// aapt resource value: 0x7f0b008c
public const int Base_Widget_AppCompat_TextView_SpinnerItem = 2131427468;
// aapt resource value: 0x7f0b00ab
public const int Base_Widget_AppCompat_Toolbar = 2131427499;
// aapt resource value: 0x7f0b008d
public const int Base_Widget_AppCompat_Toolbar_Button_Navigation = 2131427469;
// aapt resource value: 0x7f0b0176
public const int Base_Widget_Design_AppBarLayout = 2131427702;
// aapt resource value: 0x7f0b017a
public const int Base_Widget_Design_TabLayout = 2131427706;
// aapt resource value: 0x7f0b000b
public const int CardView = 2131427339;
// aapt resource value: 0x7f0b000d
public const int CardView_Dark = 2131427341;
// aapt resource value: 0x7f0b000e
public const int CardView_Light = 2131427342;
// aapt resource value: 0x7f0b0199
public const int MyTheme = 2131427737;
// aapt resource value: 0x7f0b019a
public const int MyTheme_Base = 2131427738;
// aapt resource value: 0x7f0b002d
public const int Platform_AppCompat = 2131427373;
// aapt resource value: 0x7f0b002e
public const int Platform_AppCompat_Light = 2131427374;
// aapt resource value: 0x7f0b008e
public const int Platform_ThemeOverlay_AppCompat = 2131427470;
// aapt resource value: 0x7f0b008f
public const int Platform_ThemeOverlay_AppCompat_Dark = 2131427471;
// aapt resource value: 0x7f0b0090
public const int Platform_ThemeOverlay_AppCompat_Light = 2131427472;
// aapt resource value: 0x7f0b002f
public const int Platform_V11_AppCompat = 2131427375;
// aapt resource value: 0x7f0b0030
public const int Platform_V11_AppCompat_Light = 2131427376;
// aapt resource value: 0x7f0b0037
public const int Platform_V14_AppCompat = 2131427383;
// aapt resource value: 0x7f0b0038
public const int Platform_V14_AppCompat_Light = 2131427384;
// aapt resource value: 0x7f0b0091
public const int Platform_V21_AppCompat = 2131427473;
// aapt resource value: 0x7f0b0092
public const int Platform_V21_AppCompat_Light = 2131427474;
// aapt resource value: 0x7f0b00a6
public const int Platform_V25_AppCompat = 2131427494;
// aapt resource value: 0x7f0b00a7
public const int Platform_V25_AppCompat_Light = 2131427495;
// aapt resource value: 0x7f0b0031
public const int Platform_Widget_AppCompat_Spinner = 2131427377;
// aapt resource value: 0x7f0b003a
public const int RtlOverlay_DialogWindowTitle_AppCompat = 2131427386;
// aapt resource value: 0x7f0b003b
public const int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem = 2131427387;
// aapt resource value: 0x7f0b003c
public const int RtlOverlay_Widget_AppCompat_DialogTitle_Icon = 2131427388;
// aapt resource value: 0x7f0b003d
public const int RtlOverlay_Widget_AppCompat_PopupMenuItem = 2131427389;
// aapt resource value: 0x7f0b003e
public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup = 2131427390;
// aapt resource value: 0x7f0b003f
public const int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text = 2131427391;
// aapt resource value: 0x7f0b0040
public const int RtlOverlay_Widget_AppCompat_Search_DropDown = 2131427392;
// aapt resource value: 0x7f0b0041
public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 = 2131427393;
// aapt resource value: 0x7f0b0042
public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 = 2131427394;
// aapt resource value: 0x7f0b0043
public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Query = 2131427395;
// aapt resource value: 0x7f0b0044
public const int RtlOverlay_Widget_AppCompat_Search_DropDown_Text = 2131427396;
// aapt resource value: 0x7f0b0045
public const int RtlOverlay_Widget_AppCompat_SearchView_MagIcon = 2131427397;
// aapt resource value: 0x7f0b0046
public const int RtlUnderlay_Widget_AppCompat_ActionButton = 2131427398;
// aapt resource value: 0x7f0b0047
public const int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow = 2131427399;
// aapt resource value: 0x7f0b00de
public const int TextAppearance_AppCompat = 2131427550;
// aapt resource value: 0x7f0b00df
public const int TextAppearance_AppCompat_Body1 = 2131427551;
// aapt resource value: 0x7f0b00e0
public const int TextAppearance_AppCompat_Body2 = 2131427552;
// aapt resource value: 0x7f0b00e1
public const int TextAppearance_AppCompat_Button = 2131427553;
// aapt resource value: 0x7f0b00e2
public const int TextAppearance_AppCompat_Caption = 2131427554;
// aapt resource value: 0x7f0b00e3
public const int TextAppearance_AppCompat_Display1 = 2131427555;
// aapt resource value: 0x7f0b00e4
public const int TextAppearance_AppCompat_Display2 = 2131427556;
// aapt resource value: 0x7f0b00e5
public const int TextAppearance_AppCompat_Display3 = 2131427557;
// aapt resource value: 0x7f0b00e6
public const int TextAppearance_AppCompat_Display4 = 2131427558;
// aapt resource value: 0x7f0b00e7
public const int TextAppearance_AppCompat_Headline = 2131427559;
// aapt resource value: 0x7f0b00e8
public const int TextAppearance_AppCompat_Inverse = 2131427560;
// aapt resource value: 0x7f0b00e9
public const int TextAppearance_AppCompat_Large = 2131427561;
// aapt resource value: 0x7f0b00ea
public const int TextAppearance_AppCompat_Large_Inverse = 2131427562;
// aapt resource value: 0x7f0b00eb
public const int TextAppearance_AppCompat_Light_SearchResult_Subtitle = 2131427563;
// aapt resource value: 0x7f0b00ec
public const int TextAppearance_AppCompat_Light_SearchResult_Title = 2131427564;
// aapt resource value: 0x7f0b00ed
public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large = 2131427565;
// aapt resource value: 0x7f0b00ee
public const int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small = 2131427566;
// aapt resource value: 0x7f0b00ef
public const int TextAppearance_AppCompat_Medium = 2131427567;
// aapt resource value: 0x7f0b00f0
public const int TextAppearance_AppCompat_Medium_Inverse = 2131427568;
// aapt resource value: 0x7f0b00f1
public const int TextAppearance_AppCompat_Menu = 2131427569;
// aapt resource value: 0x7f0b0093
public const int TextAppearance_AppCompat_Notification = 2131427475;
// aapt resource value: 0x7f0b0094
public const int TextAppearance_AppCompat_Notification_Info = 2131427476;
// aapt resource value: 0x7f0b0095
public const int TextAppearance_AppCompat_Notification_Info_Media = 2131427477;
// aapt resource value: 0x7f0b00f2
public const int TextAppearance_AppCompat_Notification_Line2 = 2131427570;
// aapt resource value: 0x7f0b00f3
public const int TextAppearance_AppCompat_Notification_Line2_Media = 2131427571;
// aapt resource value: 0x7f0b0096
public const int TextAppearance_AppCompat_Notification_Media = 2131427478;
// aapt resource value: 0x7f0b0097
public const int TextAppearance_AppCompat_Notification_Time = 2131427479;
// aapt resource value: 0x7f0b0098
public const int TextAppearance_AppCompat_Notification_Time_Media = 2131427480;
// aapt resource value: 0x7f0b0099
public const int TextAppearance_AppCompat_Notification_Title = 2131427481;
// aapt resource value: 0x7f0b009a
public const int TextAppearance_AppCompat_Notification_Title_Media = 2131427482;
// aapt resource value: 0x7f0b00f4
public const int TextAppearance_AppCompat_SearchResult_Subtitle = 2131427572;
// aapt resource value: 0x7f0b00f5
public const int TextAppearance_AppCompat_SearchResult_Title = 2131427573;
// aapt resource value: 0x7f0b00f6
public const int TextAppearance_AppCompat_Small = 2131427574;
// aapt resource value: 0x7f0b00f7
public const int TextAppearance_AppCompat_Small_Inverse = 2131427575;
// aapt resource value: 0x7f0b00f8
public const int TextAppearance_AppCompat_Subhead = 2131427576;
// aapt resource value: 0x7f0b00f9
public const int TextAppearance_AppCompat_Subhead_Inverse = 2131427577;
// aapt resource value: 0x7f0b00fa
public const int TextAppearance_AppCompat_Title = 2131427578;
// aapt resource value: 0x7f0b00fb
public const int TextAppearance_AppCompat_Title_Inverse = 2131427579;
// aapt resource value: 0x7f0b0039
public const int TextAppearance_AppCompat_Tooltip = 2131427385;
// aapt resource value: 0x7f0b00fc
public const int TextAppearance_AppCompat_Widget_ActionBar_Menu = 2131427580;
// aapt resource value: 0x7f0b00fd
public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle = 2131427581;
// aapt resource value: 0x7f0b00fe
public const int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse = 2131427582;
// aapt resource value: 0x7f0b00ff
public const int TextAppearance_AppCompat_Widget_ActionBar_Title = 2131427583;
// aapt resource value: 0x7f0b0100
public const int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse = 2131427584;
// aapt resource value: 0x7f0b0101
public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle = 2131427585;
// aapt resource value: 0x7f0b0102
public const int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse = 2131427586;
// aapt resource value: 0x7f0b0103
public const int TextAppearance_AppCompat_Widget_ActionMode_Title = 2131427587;
// aapt resource value: 0x7f0b0104
public const int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse = 2131427588;
// aapt resource value: 0x7f0b0105
public const int TextAppearance_AppCompat_Widget_Button = 2131427589;
// aapt resource value: 0x7f0b0106
public const int TextAppearance_AppCompat_Widget_Button_Borderless_Colored = 2131427590;
// aapt resource value: 0x7f0b0107
public const int TextAppearance_AppCompat_Widget_Button_Colored = 2131427591;
// aapt resource value: 0x7f0b0108
public const int TextAppearance_AppCompat_Widget_Button_Inverse = 2131427592;
// aapt resource value: 0x7f0b0109
public const int TextAppearance_AppCompat_Widget_DropDownItem = 2131427593;
// aapt resource value: 0x7f0b010a
public const int TextAppearance_AppCompat_Widget_PopupMenu_Header = 2131427594;
// aapt resource value: 0x7f0b010b
public const int TextAppearance_AppCompat_Widget_PopupMenu_Large = 2131427595;
// aapt resource value: 0x7f0b010c
public const int TextAppearance_AppCompat_Widget_PopupMenu_Small = 2131427596;
// aapt resource value: 0x7f0b010d
public const int TextAppearance_AppCompat_Widget_Switch = 2131427597;
// aapt resource value: 0x7f0b010e
public const int TextAppearance_AppCompat_Widget_TextView_SpinnerItem = 2131427598;
// aapt resource value: 0x7f0b0192
public const int TextAppearance_Compat_Notification = 2131427730;
// aapt resource value: 0x7f0b0193
public const int TextAppearance_Compat_Notification_Info = 2131427731;
// aapt resource value: 0x7f0b016f
public const int TextAppearance_Compat_Notification_Info_Media = 2131427695;
// aapt resource value: 0x7f0b0198
public const int TextAppearance_Compat_Notification_Line2 = 2131427736;
// aapt resource value: 0x7f0b0173
public const int TextAppearance_Compat_Notification_Line2_Media = 2131427699;
// aapt resource value: 0x7f0b0170
public const int TextAppearance_Compat_Notification_Media = 2131427696;
// aapt resource value: 0x7f0b0194
public const int TextAppearance_Compat_Notification_Time = 2131427732;
// aapt resource value: 0x7f0b0171
public const int TextAppearance_Compat_Notification_Time_Media = 2131427697;
// aapt resource value: 0x7f0b0195
public const int TextAppearance_Compat_Notification_Title = 2131427733;
// aapt resource value: 0x7f0b0172
public const int TextAppearance_Compat_Notification_Title_Media = 2131427698;
// aapt resource value: 0x7f0b017b
public const int TextAppearance_Design_CollapsingToolbar_Expanded = 2131427707;
// aapt resource value: 0x7f0b017c
public const int TextAppearance_Design_Counter = 2131427708;
// aapt resource value: 0x7f0b017d
public const int TextAppearance_Design_Counter_Overflow = 2131427709;
// aapt resource value: 0x7f0b017e
public const int TextAppearance_Design_Error = 2131427710;
// aapt resource value: 0x7f0b017f
public const int TextAppearance_Design_Hint = 2131427711;
// aapt resource value: 0x7f0b0180
public const int TextAppearance_Design_Snackbar_Message = 2131427712;
// aapt resource value: 0x7f0b0181
public const int TextAppearance_Design_Tab = 2131427713;
// aapt resource value: 0x7f0b0000
public const int TextAppearance_MediaRouter_PrimaryText = 2131427328;
// aapt resource value: 0x7f0b0001
public const int TextAppearance_MediaRouter_SecondaryText = 2131427329;
// aapt resource value: 0x7f0b0002
public const int TextAppearance_MediaRouter_Title = 2131427330;
// aapt resource value: 0x7f0b010f
public const int TextAppearance_Widget_AppCompat_ExpandedMenu_Item = 2131427599;
// aapt resource value: 0x7f0b0110
public const int TextAppearance_Widget_AppCompat_Toolbar_Subtitle = 2131427600;
// aapt resource value: 0x7f0b0111
public const int TextAppearance_Widget_AppCompat_Toolbar_Title = 2131427601;
// aapt resource value: 0x7f0b0112
public const int Theme_AppCompat = 2131427602;
// aapt resource value: 0x7f0b0113
public const int Theme_AppCompat_CompactMenu = 2131427603;
// aapt resource value: 0x7f0b0013
public const int Theme_AppCompat_DayNight = 2131427347;
// aapt resource value: 0x7f0b0014
public const int Theme_AppCompat_DayNight_DarkActionBar = 2131427348;
// aapt resource value: 0x7f0b0015
public const int Theme_AppCompat_DayNight_Dialog = 2131427349;
// aapt resource value: 0x7f0b0016
public const int Theme_AppCompat_DayNight_Dialog_Alert = 2131427350;
// aapt resource value: 0x7f0b0017
public const int Theme_AppCompat_DayNight_Dialog_MinWidth = 2131427351;
// aapt resource value: 0x7f0b0018
public const int Theme_AppCompat_DayNight_DialogWhenLarge = 2131427352;
// aapt resource value: 0x7f0b0019
public const int Theme_AppCompat_DayNight_NoActionBar = 2131427353;
// aapt resource value: 0x7f0b0114
public const int Theme_AppCompat_Dialog = 2131427604;
// aapt resource value: 0x7f0b0115
public const int Theme_AppCompat_Dialog_Alert = 2131427605;
// aapt resource value: 0x7f0b0116
public const int Theme_AppCompat_Dialog_MinWidth = 2131427606;
// aapt resource value: 0x7f0b0117
public const int Theme_AppCompat_DialogWhenLarge = 2131427607;
// aapt resource value: 0x7f0b0118
public const int Theme_AppCompat_Light = 2131427608;
// aapt resource value: 0x7f0b0119
public const int Theme_AppCompat_Light_DarkActionBar = 2131427609;
// aapt resource value: 0x7f0b011a
public const int Theme_AppCompat_Light_Dialog = 2131427610;
// aapt resource value: 0x7f0b011b
public const int Theme_AppCompat_Light_Dialog_Alert = 2131427611;
// aapt resource value: 0x7f0b011c
public const int Theme_AppCompat_Light_Dialog_MinWidth = 2131427612;
// aapt resource value: 0x7f0b011d
public const int Theme_AppCompat_Light_DialogWhenLarge = 2131427613;
// aapt resource value: 0x7f0b011e
public const int Theme_AppCompat_Light_NoActionBar = 2131427614;
// aapt resource value: 0x7f0b011f
public const int Theme_AppCompat_NoActionBar = 2131427615;
// aapt resource value: 0x7f0b0182
public const int Theme_Design = 2131427714;
// aapt resource value: 0x7f0b0183
public const int Theme_Design_BottomSheetDialog = 2131427715;
// aapt resource value: 0x7f0b0184
public const int Theme_Design_Light = 2131427716;
// aapt resource value: 0x7f0b0185
public const int Theme_Design_Light_BottomSheetDialog = 2131427717;
// aapt resource value: 0x7f0b0186
public const int Theme_Design_Light_NoActionBar = 2131427718;
// aapt resource value: 0x7f0b0187
public const int Theme_Design_NoActionBar = 2131427719;
// aapt resource value: 0x7f0b0003
public const int Theme_MediaRouter = 2131427331;
// aapt resource value: 0x7f0b0004
public const int Theme_MediaRouter_Light = 2131427332;
// aapt resource value: 0x7f0b0005
public const int Theme_MediaRouter_Light_DarkControlPanel = 2131427333;
// aapt resource value: 0x7f0b0006
public const int Theme_MediaRouter_LightControlPanel = 2131427334;
// aapt resource value: 0x7f0b0120
public const int ThemeOverlay_AppCompat = 2131427616;
// aapt resource value: 0x7f0b0121
public const int ThemeOverlay_AppCompat_ActionBar = 2131427617;
// aapt resource value: 0x7f0b0122
public const int ThemeOverlay_AppCompat_Dark = 2131427618;
// aapt resource value: 0x7f0b0123
public const int ThemeOverlay_AppCompat_Dark_ActionBar = 2131427619;
// aapt resource value: 0x7f0b0124
public const int ThemeOverlay_AppCompat_Dialog = 2131427620;
// aapt resource value: 0x7f0b0125
public const int ThemeOverlay_AppCompat_Dialog_Alert = 2131427621;
// aapt resource value: 0x7f0b0126
public const int ThemeOverlay_AppCompat_Light = 2131427622;
// aapt resource value: 0x7f0b0007
public const int ThemeOverlay_MediaRouter_Dark = 2131427335;
// aapt resource value: 0x7f0b0008
public const int ThemeOverlay_MediaRouter_Light = 2131427336;
// aapt resource value: 0x7f0b0127
public const int Widget_AppCompat_ActionBar = 2131427623;
// aapt resource value: 0x7f0b0128
public const int Widget_AppCompat_ActionBar_Solid = 2131427624;
// aapt resource value: 0x7f0b0129
public const int Widget_AppCompat_ActionBar_TabBar = 2131427625;
// aapt resource value: 0x7f0b012a
public const int Widget_AppCompat_ActionBar_TabText = 2131427626;
// aapt resource value: 0x7f0b012b
public const int Widget_AppCompat_ActionBar_TabView = 2131427627;
// aapt resource value: 0x7f0b012c
public const int Widget_AppCompat_ActionButton = 2131427628;
// aapt resource value: 0x7f0b012d
public const int Widget_AppCompat_ActionButton_CloseMode = 2131427629;
// aapt resource value: 0x7f0b012e
public const int Widget_AppCompat_ActionButton_Overflow = 2131427630;
// aapt resource value: 0x7f0b012f
public const int Widget_AppCompat_ActionMode = 2131427631;
// aapt resource value: 0x7f0b0130
public const int Widget_AppCompat_ActivityChooserView = 2131427632;
// aapt resource value: 0x7f0b0131
public const int Widget_AppCompat_AutoCompleteTextView = 2131427633;
// aapt resource value: 0x7f0b0132
public const int Widget_AppCompat_Button = 2131427634;
// aapt resource value: 0x7f0b0133
public const int Widget_AppCompat_Button_Borderless = 2131427635;
// aapt resource value: 0x7f0b0134
public const int Widget_AppCompat_Button_Borderless_Colored = 2131427636;
// aapt resource value: 0x7f0b0135
public const int Widget_AppCompat_Button_ButtonBar_AlertDialog = 2131427637;
// aapt resource value: 0x7f0b0136
public const int Widget_AppCompat_Button_Colored = 2131427638;
// aapt resource value: 0x7f0b0137
public const int Widget_AppCompat_Button_Small = 2131427639;
// aapt resource value: 0x7f0b0138
public const int Widget_AppCompat_ButtonBar = 2131427640;
// aapt resource value: 0x7f0b0139
public const int Widget_AppCompat_ButtonBar_AlertDialog = 2131427641;
// aapt resource value: 0x7f0b013a
public const int Widget_AppCompat_CompoundButton_CheckBox = 2131427642;
// aapt resource value: 0x7f0b013b
public const int Widget_AppCompat_CompoundButton_RadioButton = 2131427643;
// aapt resource value: 0x7f0b013c
public const int Widget_AppCompat_CompoundButton_Switch = 2131427644;
// aapt resource value: 0x7f0b013d
public const int Widget_AppCompat_DrawerArrowToggle = 2131427645;
// aapt resource value: 0x7f0b013e
public const int Widget_AppCompat_DropDownItem_Spinner = 2131427646;
// aapt resource value: 0x7f0b013f
public const int Widget_AppCompat_EditText = 2131427647;
// aapt resource value: 0x7f0b0140
public const int Widget_AppCompat_ImageButton = 2131427648;
// aapt resource value: 0x7f0b0141
public const int Widget_AppCompat_Light_ActionBar = 2131427649;
// aapt resource value: 0x7f0b0142
public const int Widget_AppCompat_Light_ActionBar_Solid = 2131427650;
// aapt resource value: 0x7f0b0143
public const int Widget_AppCompat_Light_ActionBar_Solid_Inverse = 2131427651;
// aapt resource value: 0x7f0b0144
public const int Widget_AppCompat_Light_ActionBar_TabBar = 2131427652;
// aapt resource value: 0x7f0b0145
public const int Widget_AppCompat_Light_ActionBar_TabBar_Inverse = 2131427653;
// aapt resource value: 0x7f0b0146
public const int Widget_AppCompat_Light_ActionBar_TabText = 2131427654;
// aapt resource value: 0x7f0b0147
public const int Widget_AppCompat_Light_ActionBar_TabText_Inverse = 2131427655;
// aapt resource value: 0x7f0b0148
public const int Widget_AppCompat_Light_ActionBar_TabView = 2131427656;
// aapt resource value: 0x7f0b0149
public const int Widget_AppCompat_Light_ActionBar_TabView_Inverse = 2131427657;
// aapt resource value: 0x7f0b014a
public const int Widget_AppCompat_Light_ActionButton = 2131427658;
// aapt resource value: 0x7f0b014b
public const int Widget_AppCompat_Light_ActionButton_CloseMode = 2131427659;
// aapt resource value: 0x7f0b014c
public const int Widget_AppCompat_Light_ActionButton_Overflow = 2131427660;
// aapt resource value: 0x7f0b014d
public const int Widget_AppCompat_Light_ActionMode_Inverse = 2131427661;
// aapt resource value: 0x7f0b014e
public const int Widget_AppCompat_Light_ActivityChooserView = 2131427662;
// aapt resource value: 0x7f0b014f
public const int Widget_AppCompat_Light_AutoCompleteTextView = 2131427663;
// aapt resource value: 0x7f0b0150
public const int Widget_AppCompat_Light_DropDownItem_Spinner = 2131427664;
// aapt resource value: 0x7f0b0151
public const int Widget_AppCompat_Light_ListPopupWindow = 2131427665;
// aapt resource value: 0x7f0b0152
public const int Widget_AppCompat_Light_ListView_DropDown = 2131427666;
// aapt resource value: 0x7f0b0153
public const int Widget_AppCompat_Light_PopupMenu = 2131427667;
// aapt resource value: 0x7f0b0154
public const int Widget_AppCompat_Light_PopupMenu_Overflow = 2131427668;
// aapt resource value: 0x7f0b0155
public const int Widget_AppCompat_Light_SearchView = 2131427669;
// aapt resource value: 0x7f0b0156
public const int Widget_AppCompat_Light_Spinner_DropDown_ActionBar = 2131427670;
// aapt resource value: 0x7f0b0157
public const int Widget_AppCompat_ListMenuView = 2131427671;
// aapt resource value: 0x7f0b0158
public const int Widget_AppCompat_ListPopupWindow = 2131427672;
// aapt resource value: 0x7f0b0159
public const int Widget_AppCompat_ListView = 2131427673;
// aapt resource value: 0x7f0b015a
public const int Widget_AppCompat_ListView_DropDown = 2131427674;
// aapt resource value: 0x7f0b015b
public const int Widget_AppCompat_ListView_Menu = 2131427675;
// aapt resource value: 0x7f0b015c
public const int Widget_AppCompat_PopupMenu = 2131427676;
// aapt resource value: 0x7f0b015d
public const int Widget_AppCompat_PopupMenu_Overflow = 2131427677;
// aapt resource value: 0x7f0b015e
public const int Widget_AppCompat_PopupWindow = 2131427678;
// aapt resource value: 0x7f0b015f
public const int Widget_AppCompat_ProgressBar = 2131427679;
// aapt resource value: 0x7f0b0160
public const int Widget_AppCompat_ProgressBar_Horizontal = 2131427680;
// aapt resource value: 0x7f0b0161
public const int Widget_AppCompat_RatingBar = 2131427681;
// aapt resource value: 0x7f0b0162
public const int Widget_AppCompat_RatingBar_Indicator = 2131427682;
// aapt resource value: 0x7f0b0163
public const int Widget_AppCompat_RatingBar_Small = 2131427683;
// aapt resource value: 0x7f0b0164
public const int Widget_AppCompat_SearchView = 2131427684;
// aapt resource value: 0x7f0b0165
public const int Widget_AppCompat_SearchView_ActionBar = 2131427685;
// aapt resource value: 0x7f0b0166
public const int Widget_AppCompat_SeekBar = 2131427686;
// aapt resource value: 0x7f0b0167
public const int Widget_AppCompat_SeekBar_Discrete = 2131427687;
// aapt resource value: 0x7f0b0168
public const int Widget_AppCompat_Spinner = 2131427688;
// aapt resource value: 0x7f0b0169
public const int Widget_AppCompat_Spinner_DropDown = 2131427689;
// aapt resource value: 0x7f0b016a
public const int Widget_AppCompat_Spinner_DropDown_ActionBar = 2131427690;
// aapt resource value: 0x7f0b016b
public const int Widget_AppCompat_Spinner_Underlined = 2131427691;
// aapt resource value: 0x7f0b016c
public const int Widget_AppCompat_TextView_SpinnerItem = 2131427692;
// aapt resource value: 0x7f0b016d
public const int Widget_AppCompat_Toolbar = 2131427693;
// aapt resource value: 0x7f0b016e
public const int Widget_AppCompat_Toolbar_Button_Navigation = 2131427694;
// aapt resource value: 0x7f0b0196
public const int Widget_Compat_NotificationActionContainer = 2131427734;
// aapt resource value: 0x7f0b0197
public const int Widget_Compat_NotificationActionText = 2131427735;
// aapt resource value: 0x7f0b0188
public const int Widget_Design_AppBarLayout = 2131427720;
// aapt resource value: 0x7f0b0189
public const int Widget_Design_BottomNavigationView = 2131427721;
// aapt resource value: 0x7f0b018a
public const int Widget_Design_BottomSheet_Modal = 2131427722;
// aapt resource value: 0x7f0b018b
public const int Widget_Design_CollapsingToolbar = 2131427723;
// aapt resource value: 0x7f0b018c
public const int Widget_Design_CoordinatorLayout = 2131427724;
// aapt resource value: 0x7f0b018d
public const int Widget_Design_FloatingActionButton = 2131427725;
// aapt resource value: 0x7f0b018e
public const int Widget_Design_NavigationView = 2131427726;
// aapt resource value: 0x7f0b018f
public const int Widget_Design_ScrimInsetsFrameLayout = 2131427727;
// aapt resource value: 0x7f0b0190
public const int Widget_Design_Snackbar = 2131427728;
// aapt resource value: 0x7f0b0174
public const int Widget_Design_TabLayout = 2131427700;
// aapt resource value: 0x7f0b0191
public const int Widget_Design_TextInputLayout = 2131427729;
// aapt resource value: 0x7f0b0009
public const int Widget_MediaRouter_Light_MediaRouteButton = 2131427337;
// aapt resource value: 0x7f0b000a
public const int Widget_MediaRouter_MediaRouteButton = 2131427338;
static Style()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Style()
{
}
}
public partial class Styleable
{
public static int[] ActionBar = new int[] {
2130772003,
2130772005,
2130772006,
2130772007,
2130772008,
2130772009,
2130772010,
2130772011,
2130772012,
2130772013,
2130772014,
2130772015,
2130772016,
2130772017,
2130772018,
2130772019,
2130772020,
2130772021,
2130772022,
2130772023,
2130772024,
2130772025,
2130772026,
2130772027,
2130772028,
2130772029,
2130772030,
2130772031,
2130772101};
// aapt resource value: 10
public const int ActionBar_background = 10;
// aapt resource value: 12
public const int ActionBar_backgroundSplit = 12;
// aapt resource value: 11
public const int ActionBar_backgroundStacked = 11;
// aapt resource value: 21
public const int ActionBar_contentInsetEnd = 21;
// aapt resource value: 25
public const int ActionBar_contentInsetEndWithActions = 25;
// aapt resource value: 22
public const int ActionBar_contentInsetLeft = 22;
// aapt resource value: 23
public const int ActionBar_contentInsetRight = 23;
// aapt resource value: 20
public const int ActionBar_contentInsetStart = 20;
// aapt resource value: 24
public const int ActionBar_contentInsetStartWithNavigation = 24;
// aapt resource value: 13
public const int ActionBar_customNavigationLayout = 13;
// aapt resource value: 3
public const int ActionBar_displayOptions = 3;
// aapt resource value: 9
public const int ActionBar_divider = 9;
// aapt resource value: 26
public const int ActionBar_elevation = 26;
// aapt resource value: 0
public const int ActionBar_height = 0;
// aapt resource value: 19
public const int ActionBar_hideOnContentScroll = 19;
// aapt resource value: 28
public const int ActionBar_homeAsUpIndicator = 28;
// aapt resource value: 14
public const int ActionBar_homeLayout = 14;
// aapt resource value: 7
public const int ActionBar_icon = 7;
// aapt resource value: 16
public const int ActionBar_indeterminateProgressStyle = 16;
// aapt resource value: 18
public const int ActionBar_itemPadding = 18;
// aapt resource value: 8
public const int ActionBar_logo = 8;
// aapt resource value: 2
public const int ActionBar_navigationMode = 2;
// aapt resource value: 27
public const int ActionBar_popupTheme = 27;
// aapt resource value: 17
public const int ActionBar_progressBarPadding = 17;
// aapt resource value: 15
public const int ActionBar_progressBarStyle = 15;
// aapt resource value: 4
public const int ActionBar_subtitle = 4;
// aapt resource value: 6
public const int ActionBar_subtitleTextStyle = 6;
// aapt resource value: 1
public const int ActionBar_title = 1;
// aapt resource value: 5
public const int ActionBar_titleTextStyle = 5;
public static int[] ActionBarLayout = new int[] {
16842931};
// aapt resource value: 0
public const int ActionBarLayout_android_layout_gravity = 0;
public static int[] ActionMenuItemView = new int[] {
16843071};
// aapt resource value: 0
public const int ActionMenuItemView_android_minWidth = 0;
public static int[] ActionMenuView;
public static int[] ActionMode = new int[] {
2130772003,
2130772009,
2130772010,
2130772014,
2130772016,
2130772032};
// aapt resource value: 3
public const int ActionMode_background = 3;
// aapt resource value: 4
public const int ActionMode_backgroundSplit = 4;
// aapt resource value: 5
public const int ActionMode_closeItemLayout = 5;
// aapt resource value: 0
public const int ActionMode_height = 0;
// aapt resource value: 2
public const int ActionMode_subtitleTextStyle = 2;
// aapt resource value: 1
public const int ActionMode_titleTextStyle = 1;
public static int[] ActivityChooserView = new int[] {
2130772033,
2130772034};
// aapt resource value: 1
public const int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
// aapt resource value: 0
public const int ActivityChooserView_initialActivityCount = 0;
public static int[] AlertDialog = new int[] {
16842994,
2130772035,
2130772036,
2130772037,
2130772038,
2130772039,
2130772040};
// aapt resource value: 0
public const int AlertDialog_android_layout = 0;
// aapt resource value: 1
public const int AlertDialog_buttonPanelSideLayout = 1;
// aapt resource value: 5
public const int AlertDialog_listItemLayout = 5;
// aapt resource value: 2
public const int AlertDialog_listLayout = 2;
// aapt resource value: 3
public const int AlertDialog_multiChoiceItemLayout = 3;
// aapt resource value: 6
public const int AlertDialog_showTitle = 6;
// aapt resource value: 4
public const int AlertDialog_singleChoiceItemLayout = 4;
public static int[] AppBarLayout = new int[] {
16842964,
16843919,
16844096,
2130772030,
2130772248};
// aapt resource value: 0
public const int AppBarLayout_android_background = 0;
// aapt resource value: 2
public const int AppBarLayout_android_keyboardNavigationCluster = 2;
// aapt resource value: 1
public const int AppBarLayout_android_touchscreenBlocksFocus = 1;
// aapt resource value: 3
public const int AppBarLayout_elevation = 3;
// aapt resource value: 4
public const int AppBarLayout_expanded = 4;
public static int[] AppBarLayoutStates = new int[] {
2130772249,
2130772250};
// aapt resource value: 0
public const int AppBarLayoutStates_state_collapsed = 0;
// aapt resource value: 1
public const int AppBarLayoutStates_state_collapsible = 1;
public static int[] AppBarLayout_Layout = new int[] {
2130772251,
2130772252};
// aapt resource value: 0
public const int AppBarLayout_Layout_layout_scrollFlags = 0;
// aapt resource value: 1
public const int AppBarLayout_Layout_layout_scrollInterpolator = 1;
public static int[] AppCompatImageView = new int[] {
16843033,
2130772041,
2130772042,
2130772043};
// aapt resource value: 0
public const int AppCompatImageView_android_src = 0;
// aapt resource value: 1
public const int AppCompatImageView_srcCompat = 1;
// aapt resource value: 2
public const int AppCompatImageView_tint = 2;
// aapt resource value: 3
public const int AppCompatImageView_tintMode = 3;
public static int[] AppCompatSeekBar = new int[] {
16843074,
2130772044,
2130772045,
2130772046};
// aapt resource value: 0
public const int AppCompatSeekBar_android_thumb = 0;
// aapt resource value: 1
public const int AppCompatSeekBar_tickMark = 1;
// aapt resource value: 2
public const int AppCompatSeekBar_tickMarkTint = 2;
// aapt resource value: 3
public const int AppCompatSeekBar_tickMarkTintMode = 3;
public static int[] AppCompatTextHelper = new int[] {
16842804,
16843117,
16843118,
16843119,
16843120,
16843666,
16843667};
// aapt resource value: 2
public const int AppCompatTextHelper_android_drawableBottom = 2;
// aapt resource value: 6
public const int AppCompatTextHelper_android_drawableEnd = 6;
// aapt resource value: 3
public const int AppCompatTextHelper_android_drawableLeft = 3;
// aapt resource value: 4
public const int AppCompatTextHelper_android_drawableRight = 4;
// aapt resource value: 5
public const int AppCompatTextHelper_android_drawableStart = 5;
// aapt resource value: 1
public const int AppCompatTextHelper_android_drawableTop = 1;
// aapt resource value: 0
public const int AppCompatTextHelper_android_textAppearance = 0;
public static int[] AppCompatTextView = new int[] {
16842804,
2130772047,
2130772048,
2130772049,
2130772050,
2130772051,
2130772052,
2130772053};
// aapt resource value: 0
public const int AppCompatTextView_android_textAppearance = 0;
// aapt resource value: 6
public const int AppCompatTextView_autoSizeMaxTextSize = 6;
// aapt resource value: 5
public const int AppCompatTextView_autoSizeMinTextSize = 5;
// aapt resource value: 4
public const int AppCompatTextView_autoSizePresetSizes = 4;
// aapt resource value: 3
public const int AppCompatTextView_autoSizeStepGranularity = 3;
// aapt resource value: 2
public const int AppCompatTextView_autoSizeTextType = 2;
// aapt resource value: 7
public const int AppCompatTextView_fontFamily = 7;
// aapt resource value: 1
public const int AppCompatTextView_textAllCaps = 1;
public static int[] AppCompatTheme = new int[] {
16842839,
16842926,
2130772054,
2130772055,
2130772056,
2130772057,
2130772058,
2130772059,
2130772060,
2130772061,
2130772062,
2130772063,
2130772064,
2130772065,
2130772066,
2130772067,
2130772068,
2130772069,
2130772070,
2130772071,
2130772072,
2130772073,
2130772074,
2130772075,
2130772076,
2130772077,
2130772078,
2130772079,
2130772080,
2130772081,
2130772082,
2130772083,
2130772084,
2130772085,
2130772086,
2130772087,
2130772088,
2130772089,
2130772090,
2130772091,
2130772092,
2130772093,
2130772094,
2130772095,
2130772096,
2130772097,
2130772098,
2130772099,
2130772100,
2130772101,
2130772102,
2130772103,
2130772104,
2130772105,
2130772106,
2130772107,
2130772108,
2130772109,
2130772110,
2130772111,
2130772112,
2130772113,
2130772114,
2130772115,
2130772116,
2130772117,
2130772118,
2130772119,
2130772120,
2130772121,
2130772122,
2130772123,
2130772124,
2130772125,
2130772126,
2130772127,
2130772128,
2130772129,
2130772130,
2130772131,
2130772132,
2130772133,
2130772134,
2130772135,
2130772136,
2130772137,
2130772138,
2130772139,
2130772140,
2130772141,
2130772142,
2130772143,
2130772144,
2130772145,
2130772146,
2130772147,
2130772148,
2130772149,
2130772150,
2130772151,
2130772152,
2130772153,
2130772154,
2130772155,
2130772156,
2130772157,
2130772158,
2130772159,
2130772160,
2130772161,
2130772162,
2130772163,
2130772164,
2130772165,
2130772166,
2130772167,
2130772168,
2130772169,
2130772170};
// aapt resource value: 23
public const int AppCompatTheme_actionBarDivider = 23;
// aapt resource value: 24
public const int AppCompatTheme_actionBarItemBackground = 24;
// aapt resource value: 17
public const int AppCompatTheme_actionBarPopupTheme = 17;
// aapt resource value: 22
public const int AppCompatTheme_actionBarSize = 22;
// aapt resource value: 19
public const int AppCompatTheme_actionBarSplitStyle = 19;
// aapt resource value: 18
public const int AppCompatTheme_actionBarStyle = 18;
// aapt resource value: 13
public const int AppCompatTheme_actionBarTabBarStyle = 13;
// aapt resource value: 12
public const int AppCompatTheme_actionBarTabStyle = 12;
// aapt resource value: 14
public const int AppCompatTheme_actionBarTabTextStyle = 14;
// aapt resource value: 20
public const int AppCompatTheme_actionBarTheme = 20;
// aapt resource value: 21
public const int AppCompatTheme_actionBarWidgetTheme = 21;
// aapt resource value: 50
public const int AppCompatTheme_actionButtonStyle = 50;
// aapt resource value: 46
public const int AppCompatTheme_actionDropDownStyle = 46;
// aapt resource value: 25
public const int AppCompatTheme_actionMenuTextAppearance = 25;
// aapt resource value: 26
public const int AppCompatTheme_actionMenuTextColor = 26;
// aapt resource value: 29
public const int AppCompatTheme_actionModeBackground = 29;
// aapt resource value: 28
public const int AppCompatTheme_actionModeCloseButtonStyle = 28;
// aapt resource value: 31
public const int AppCompatTheme_actionModeCloseDrawable = 31;
// aapt resource value: 33
public const int AppCompatTheme_actionModeCopyDrawable = 33;
// aapt resource value: 32
public const int AppCompatTheme_actionModeCutDrawable = 32;
// aapt resource value: 37
public const int AppCompatTheme_actionModeFindDrawable = 37;
// aapt resource value: 34
public const int AppCompatTheme_actionModePasteDrawable = 34;
// aapt resource value: 39
public const int AppCompatTheme_actionModePopupWindowStyle = 39;
// aapt resource value: 35
public const int AppCompatTheme_actionModeSelectAllDrawable = 35;
// aapt resource value: 36
public const int AppCompatTheme_actionModeShareDrawable = 36;
// aapt resource value: 30
public const int AppCompatTheme_actionModeSplitBackground = 30;
// aapt resource value: 27
public const int AppCompatTheme_actionModeStyle = 27;
// aapt resource value: 38
public const int AppCompatTheme_actionModeWebSearchDrawable = 38;
// aapt resource value: 15
public const int AppCompatTheme_actionOverflowButtonStyle = 15;
// aapt resource value: 16
public const int AppCompatTheme_actionOverflowMenuStyle = 16;
// aapt resource value: 58
public const int AppCompatTheme_activityChooserViewStyle = 58;
// aapt resource value: 95
public const int AppCompatTheme_alertDialogButtonGroupStyle = 95;
// aapt resource value: 96
public const int AppCompatTheme_alertDialogCenterButtons = 96;
// aapt resource value: 94
public const int AppCompatTheme_alertDialogStyle = 94;
// aapt resource value: 97
public const int AppCompatTheme_alertDialogTheme = 97;
// aapt resource value: 1
public const int AppCompatTheme_android_windowAnimationStyle = 1;
// aapt resource value: 0
public const int AppCompatTheme_android_windowIsFloating = 0;
// aapt resource value: 102
public const int AppCompatTheme_autoCompleteTextViewStyle = 102;
// aapt resource value: 55
public const int AppCompatTheme_borderlessButtonStyle = 55;
// aapt resource value: 52
public const int AppCompatTheme_buttonBarButtonStyle = 52;
// aapt resource value: 100
public const int AppCompatTheme_buttonBarNegativeButtonStyle = 100;
// aapt resource value: 101
public const int AppCompatTheme_buttonBarNeutralButtonStyle = 101;
// aapt resource value: 99
public const int AppCompatTheme_buttonBarPositiveButtonStyle = 99;
// aapt resource value: 51
public const int AppCompatTheme_buttonBarStyle = 51;
// aapt resource value: 103
public const int AppCompatTheme_buttonStyle = 103;
// aapt resource value: 104
public const int AppCompatTheme_buttonStyleSmall = 104;
// aapt resource value: 105
public const int AppCompatTheme_checkboxStyle = 105;
// aapt resource value: 106
public const int AppCompatTheme_checkedTextViewStyle = 106;
// aapt resource value: 86
public const int AppCompatTheme_colorAccent = 86;
// aapt resource value: 93
public const int AppCompatTheme_colorBackgroundFloating = 93;
// aapt resource value: 90
public const int AppCompatTheme_colorButtonNormal = 90;
// aapt resource value: 88
public const int AppCompatTheme_colorControlActivated = 88;
// aapt resource value: 89
public const int AppCompatTheme_colorControlHighlight = 89;
// aapt resource value: 87
public const int AppCompatTheme_colorControlNormal = 87;
// aapt resource value: 118
public const int AppCompatTheme_colorError = 118;
// aapt resource value: 84
public const int AppCompatTheme_colorPrimary = 84;
// aapt resource value: 85
public const int AppCompatTheme_colorPrimaryDark = 85;
// aapt resource value: 91
public const int AppCompatTheme_colorSwitchThumbNormal = 91;
// aapt resource value: 92
public const int AppCompatTheme_controlBackground = 92;
// aapt resource value: 44
public const int AppCompatTheme_dialogPreferredPadding = 44;
// aapt resource value: 43
public const int AppCompatTheme_dialogTheme = 43;
// aapt resource value: 57
public const int AppCompatTheme_dividerHorizontal = 57;
// aapt resource value: 56
public const int AppCompatTheme_dividerVertical = 56;
// aapt resource value: 75
public const int AppCompatTheme_dropDownListViewStyle = 75;
// aapt resource value: 47
public const int AppCompatTheme_dropdownListPreferredItemHeight = 47;
// aapt resource value: 64
public const int AppCompatTheme_editTextBackground = 64;
// aapt resource value: 63
public const int AppCompatTheme_editTextColor = 63;
// aapt resource value: 107
public const int AppCompatTheme_editTextStyle = 107;
// aapt resource value: 49
public const int AppCompatTheme_homeAsUpIndicator = 49;
// aapt resource value: 65
public const int AppCompatTheme_imageButtonStyle = 65;
// aapt resource value: 83
public const int AppCompatTheme_listChoiceBackgroundIndicator = 83;
// aapt resource value: 45
public const int AppCompatTheme_listDividerAlertDialog = 45;
// aapt resource value: 115
public const int AppCompatTheme_listMenuViewStyle = 115;
// aapt resource value: 76
public const int AppCompatTheme_listPopupWindowStyle = 76;
// aapt resource value: 70
public const int AppCompatTheme_listPreferredItemHeight = 70;
// aapt resource value: 72
public const int AppCompatTheme_listPreferredItemHeightLarge = 72;
// aapt resource value: 71
public const int AppCompatTheme_listPreferredItemHeightSmall = 71;
// aapt resource value: 73
public const int AppCompatTheme_listPreferredItemPaddingLeft = 73;
// aapt resource value: 74
public const int AppCompatTheme_listPreferredItemPaddingRight = 74;
// aapt resource value: 80
public const int AppCompatTheme_panelBackground = 80;
// aapt resource value: 82
public const int AppCompatTheme_panelMenuListTheme = 82;
// aapt resource value: 81
public const int AppCompatTheme_panelMenuListWidth = 81;
// aapt resource value: 61
public const int AppCompatTheme_popupMenuStyle = 61;
// aapt resource value: 62
public const int AppCompatTheme_popupWindowStyle = 62;
// aapt resource value: 108
public const int AppCompatTheme_radioButtonStyle = 108;
// aapt resource value: 109
public const int AppCompatTheme_ratingBarStyle = 109;
// aapt resource value: 110
public const int AppCompatTheme_ratingBarStyleIndicator = 110;
// aapt resource value: 111
public const int AppCompatTheme_ratingBarStyleSmall = 111;
// aapt resource value: 69
public const int AppCompatTheme_searchViewStyle = 69;
// aapt resource value: 112
public const int AppCompatTheme_seekBarStyle = 112;
// aapt resource value: 53
public const int AppCompatTheme_selectableItemBackground = 53;
// aapt resource value: 54
public const int AppCompatTheme_selectableItemBackgroundBorderless = 54;
// aapt resource value: 48
public const int AppCompatTheme_spinnerDropDownItemStyle = 48;
// aapt resource value: 113
public const int AppCompatTheme_spinnerStyle = 113;
// aapt resource value: 114
public const int AppCompatTheme_switchStyle = 114;
// aapt resource value: 40
public const int AppCompatTheme_textAppearanceLargePopupMenu = 40;
// aapt resource value: 77
public const int AppCompatTheme_textAppearanceListItem = 77;
// aapt resource value: 78
public const int AppCompatTheme_textAppearanceListItemSecondary = 78;
// aapt resource value: 79
public const int AppCompatTheme_textAppearanceListItemSmall = 79;
// aapt resource value: 42
public const int AppCompatTheme_textAppearancePopupMenuHeader = 42;
// aapt resource value: 67
public const int AppCompatTheme_textAppearanceSearchResultSubtitle = 67;
// aapt resource value: 66
public const int AppCompatTheme_textAppearanceSearchResultTitle = 66;
// aapt resource value: 41
public const int AppCompatTheme_textAppearanceSmallPopupMenu = 41;
// aapt resource value: 98
public const int AppCompatTheme_textColorAlertDialogListItem = 98;
// aapt resource value: 68
public const int AppCompatTheme_textColorSearchUrl = 68;
// aapt resource value: 60
public const int AppCompatTheme_toolbarNavigationButtonStyle = 60;
// aapt resource value: 59
public const int AppCompatTheme_toolbarStyle = 59;
// aapt resource value: 117
public const int AppCompatTheme_tooltipForegroundColor = 117;
// aapt resource value: 116
public const int AppCompatTheme_tooltipFrameBackground = 116;
// aapt resource value: 2
public const int AppCompatTheme_windowActionBar = 2;
// aapt resource value: 4
public const int AppCompatTheme_windowActionBarOverlay = 4;
// aapt resource value: 5
public const int AppCompatTheme_windowActionModeOverlay = 5;
// aapt resource value: 9
public const int AppCompatTheme_windowFixedHeightMajor = 9;
// aapt resource value: 7
public const int AppCompatTheme_windowFixedHeightMinor = 7;
// aapt resource value: 6
public const int AppCompatTheme_windowFixedWidthMajor = 6;
// aapt resource value: 8
public const int AppCompatTheme_windowFixedWidthMinor = 8;
// aapt resource value: 10
public const int AppCompatTheme_windowMinWidthMajor = 10;
// aapt resource value: 11
public const int AppCompatTheme_windowMinWidthMinor = 11;
// aapt resource value: 3
public const int AppCompatTheme_windowNoTitle = 3;
public static int[] BottomNavigationView = new int[] {
2130772030,
2130772291,
2130772292,
2130772293,
2130772294};
// aapt resource value: 0
public const int BottomNavigationView_elevation = 0;
// aapt resource value: 4
public const int BottomNavigationView_itemBackground = 4;
// aapt resource value: 2
public const int BottomNavigationView_itemIconTint = 2;
// aapt resource value: 3
public const int BottomNavigationView_itemTextColor = 3;
// aapt resource value: 1
public const int BottomNavigationView_menu = 1;
public static int[] BottomSheetBehavior_Layout = new int[] {
2130772253,
2130772254,
2130772255};
// aapt resource value: 1
public const int BottomSheetBehavior_Layout_behavior_hideable = 1;
// aapt resource value: 0
public const int BottomSheetBehavior_Layout_behavior_peekHeight = 0;
// aapt resource value: 2
public const int BottomSheetBehavior_Layout_behavior_skipCollapsed = 2;
public static int[] ButtonBarLayout = new int[] {
2130772171};
// aapt resource value: 0
public const int ButtonBarLayout_allowStacking = 0;
public static int[] CardView = new int[] {
16843071,
16843072,
2130771991,
2130771992,
2130771993,
2130771994,
2130771995,
2130771996,
2130771997,
2130771998,
2130771999,
2130772000,
2130772001};
// aapt resource value: 1
public const int CardView_android_minHeight = 1;
// aapt resource value: 0
public const int CardView_android_minWidth = 0;
// aapt resource value: 2
public const int CardView_cardBackgroundColor = 2;
// aapt resource value: 3
public const int CardView_cardCornerRadius = 3;
// aapt resource value: 4
public const int CardView_cardElevation = 4;
// aapt resource value: 5
public const int CardView_cardMaxElevation = 5;
// aapt resource value: 7
public const int CardView_cardPreventCornerOverlap = 7;
// aapt resource value: 6
public const int CardView_cardUseCompatPadding = 6;
// aapt resource value: 8
public const int CardView_contentPadding = 8;
// aapt resource value: 12
public const int CardView_contentPaddingBottom = 12;
// aapt resource value: 9
public const int CardView_contentPaddingLeft = 9;
// aapt resource value: 10
public const int CardView_contentPaddingRight = 10;
// aapt resource value: 11
public const int CardView_contentPaddingTop = 11;
public static int[] CollapsingToolbarLayout = new int[] {
2130772005,
2130772256,
2130772257,
2130772258,
2130772259,
2130772260,
2130772261,
2130772262,
2130772263,
2130772264,
2130772265,
2130772266,
2130772267,
2130772268,
2130772269,
2130772270};
// aapt resource value: 13
public const int CollapsingToolbarLayout_collapsedTitleGravity = 13;
// aapt resource value: 7
public const int CollapsingToolbarLayout_collapsedTitleTextAppearance = 7;
// aapt resource value: 8
public const int CollapsingToolbarLayout_contentScrim = 8;
// aapt resource value: 14
public const int CollapsingToolbarLayout_expandedTitleGravity = 14;
// aapt resource value: 1
public const int CollapsingToolbarLayout_expandedTitleMargin = 1;
// aapt resource value: 5
public const int CollapsingToolbarLayout_expandedTitleMarginBottom = 5;
// aapt resource value: 4
public const int CollapsingToolbarLayout_expandedTitleMarginEnd = 4;
// aapt resource value: 2
public const int CollapsingToolbarLayout_expandedTitleMarginStart = 2;
// aapt resource value: 3
public const int CollapsingToolbarLayout_expandedTitleMarginTop = 3;
// aapt resource value: 6
public const int CollapsingToolbarLayout_expandedTitleTextAppearance = 6;
// aapt resource value: 12
public const int CollapsingToolbarLayout_scrimAnimationDuration = 12;
// aapt resource value: 11
public const int CollapsingToolbarLayout_scrimVisibleHeightTrigger = 11;
// aapt resource value: 9
public const int CollapsingToolbarLayout_statusBarScrim = 9;
// aapt resource value: 0
public const int CollapsingToolbarLayout_title = 0;
// aapt resource value: 15
public const int CollapsingToolbarLayout_titleEnabled = 15;
// aapt resource value: 10
public const int CollapsingToolbarLayout_toolbarId = 10;
public static int[] CollapsingToolbarLayout_Layout = new int[] {
2130772271,
2130772272};
// aapt resource value: 0
public const int CollapsingToolbarLayout_Layout_layout_collapseMode = 0;
// aapt resource value: 1
public const int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier = 1;
public static int[] ColorStateListItem = new int[] {
16843173,
16843551,
2130772172};
// aapt resource value: 2
public const int ColorStateListItem_alpha = 2;
// aapt resource value: 1
public const int ColorStateListItem_android_alpha = 1;
// aapt resource value: 0
public const int ColorStateListItem_android_color = 0;
public static int[] CompoundButton = new int[] {
16843015,
2130772173,
2130772174};
// aapt resource value: 0
public const int CompoundButton_android_button = 0;
// aapt resource value: 1
public const int CompoundButton_buttonTint = 1;
// aapt resource value: 2
public const int CompoundButton_buttonTintMode = 2;
public static int[] CoordinatorLayout = new int[] {
2130772273,
2130772274};
// aapt resource value: 0
public const int CoordinatorLayout_keylines = 0;
// aapt resource value: 1
public const int CoordinatorLayout_statusBarBackground = 1;
public static int[] CoordinatorLayout_Layout = new int[] {
16842931,
2130772275,
2130772276,
2130772277,
2130772278,
2130772279,
2130772280};
// aapt resource value: 0
public const int CoordinatorLayout_Layout_android_layout_gravity = 0;
// aapt resource value: 2
public const int CoordinatorLayout_Layout_layout_anchor = 2;
// aapt resource value: 4
public const int CoordinatorLayout_Layout_layout_anchorGravity = 4;
// aapt resource value: 1
public const int CoordinatorLayout_Layout_layout_behavior = 1;
// aapt resource value: 6
public const int CoordinatorLayout_Layout_layout_dodgeInsetEdges = 6;
// aapt resource value: 5
public const int CoordinatorLayout_Layout_layout_insetEdge = 5;
// aapt resource value: 3
public const int CoordinatorLayout_Layout_layout_keyline = 3;
public static int[] DesignTheme = new int[] {
2130772281,
2130772282,
2130772283};
// aapt resource value: 0
public const int DesignTheme_bottomSheetDialogTheme = 0;
// aapt resource value: 1
public const int DesignTheme_bottomSheetStyle = 1;
// aapt resource value: 2
public const int DesignTheme_textColorError = 2;
public static int[] DrawerArrowToggle = new int[] {
2130772175,
2130772176,
2130772177,
2130772178,
2130772179,
2130772180,
2130772181,
2130772182};
// aapt resource value: 4
public const int DrawerArrowToggle_arrowHeadLength = 4;
// aapt resource value: 5
public const int DrawerArrowToggle_arrowShaftLength = 5;
// aapt resource value: 6
public const int DrawerArrowToggle_barLength = 6;
// aapt resource value: 0
public const int DrawerArrowToggle_color = 0;
// aapt resource value: 2
public const int DrawerArrowToggle_drawableSize = 2;
// aapt resource value: 3
public const int DrawerArrowToggle_gapBetweenBars = 3;
// aapt resource value: 1
public const int DrawerArrowToggle_spinBars = 1;
// aapt resource value: 7
public const int DrawerArrowToggle_thickness = 7;
public static int[] FloatingActionButton = new int[] {
2130772030,
2130772246,
2130772247,
2130772284,
2130772285,
2130772286,
2130772287,
2130772288};
// aapt resource value: 1
public const int FloatingActionButton_backgroundTint = 1;
// aapt resource value: 2
public const int FloatingActionButton_backgroundTintMode = 2;
// aapt resource value: 6
public const int FloatingActionButton_borderWidth = 6;
// aapt resource value: 0
public const int FloatingActionButton_elevation = 0;
// aapt resource value: 4
public const int FloatingActionButton_fabSize = 4;
// aapt resource value: 5
public const int FloatingActionButton_pressedTranslationZ = 5;
// aapt resource value: 3
public const int FloatingActionButton_rippleColor = 3;
// aapt resource value: 7
public const int FloatingActionButton_useCompatPadding = 7;
public static int[] FloatingActionButton_Behavior_Layout = new int[] {
2130772289};
// aapt resource value: 0
public const int FloatingActionButton_Behavior_Layout_behavior_autoHide = 0;
public static int[] FontFamily = new int[] {
2130772330,
2130772331,
2130772332,
2130772333,
2130772334,
2130772335};
// aapt resource value: 0
public const int FontFamily_fontProviderAuthority = 0;
// aapt resource value: 3
public const int FontFamily_fontProviderCerts = 3;
// aapt resource value: 4
public const int FontFamily_fontProviderFetchStrategy = 4;
// aapt resource value: 5
public const int FontFamily_fontProviderFetchTimeout = 5;
// aapt resource value: 1
public const int FontFamily_fontProviderPackage = 1;
// aapt resource value: 2
public const int FontFamily_fontProviderQuery = 2;
public static int[] FontFamilyFont = new int[] {
2130772336,
2130772337,
2130772338};
// aapt resource value: 1
public const int FontFamilyFont_font = 1;
// aapt resource value: 0
public const int FontFamilyFont_fontStyle = 0;
// aapt resource value: 2
public const int FontFamilyFont_fontWeight = 2;
public static int[] ForegroundLinearLayout = new int[] {
16843017,
16843264,
2130772290};
// aapt resource value: 0
public const int ForegroundLinearLayout_android_foreground = 0;
// aapt resource value: 1
public const int ForegroundLinearLayout_android_foregroundGravity = 1;
// aapt resource value: 2
public const int ForegroundLinearLayout_foregroundInsidePadding = 2;
public static int[] LinearLayoutCompat = new int[] {
16842927,
16842948,
16843046,
16843047,
16843048,
2130772013,
2130772183,
2130772184,
2130772185};
// aapt resource value: 2
public const int LinearLayoutCompat_android_baselineAligned = 2;
// aapt resource value: 3
public const int LinearLayoutCompat_android_baselineAlignedChildIndex = 3;
// aapt resource value: 0
public const int LinearLayoutCompat_android_gravity = 0;
// aapt resource value: 1
public const int LinearLayoutCompat_android_orientation = 1;
// aapt resource value: 4
public const int LinearLayoutCompat_android_weightSum = 4;
// aapt resource value: 5
public const int LinearLayoutCompat_divider = 5;
// aapt resource value: 8
public const int LinearLayoutCompat_dividerPadding = 8;
// aapt resource value: 6
public const int LinearLayoutCompat_measureWithLargestChild = 6;
// aapt resource value: 7
public const int LinearLayoutCompat_showDividers = 7;
public static int[] LinearLayoutCompat_Layout = new int[] {
16842931,
16842996,
16842997,
16843137};
// aapt resource value: 0
public const int LinearLayoutCompat_Layout_android_layout_gravity = 0;
// aapt resource value: 2
public const int LinearLayoutCompat_Layout_android_layout_height = 2;
// aapt resource value: 3
public const int LinearLayoutCompat_Layout_android_layout_weight = 3;
// aapt resource value: 1
public const int LinearLayoutCompat_Layout_android_layout_width = 1;
public static int[] ListPopupWindow = new int[] {
16843436,
16843437};
// aapt resource value: 0
public const int ListPopupWindow_android_dropDownHorizontalOffset = 0;
// aapt resource value: 1
public const int ListPopupWindow_android_dropDownVerticalOffset = 1;
public static int[] MediaRouteButton = new int[] {
16843071,
16843072,
2130771989,
2130771990};
// aapt resource value: 1
public const int MediaRouteButton_android_minHeight = 1;
// aapt resource value: 0
public const int MediaRouteButton_android_minWidth = 0;
// aapt resource value: 2
public const int MediaRouteButton_externalRouteEnabledDrawable = 2;
// aapt resource value: 3
public const int MediaRouteButton_mediaRouteButtonTint = 3;
public static int[] MenuGroup = new int[] {
16842766,
16842960,
16843156,
16843230,
16843231,
16843232};
// aapt resource value: 5
public const int MenuGroup_android_checkableBehavior = 5;
// aapt resource value: 0
public const int MenuGroup_android_enabled = 0;
// aapt resource value: 1
public const int MenuGroup_android_id = 1;
// aapt resource value: 3
public const int MenuGroup_android_menuCategory = 3;
// aapt resource value: 4
public const int MenuGroup_android_orderInCategory = 4;
// aapt resource value: 2
public const int MenuGroup_android_visible = 2;
public static int[] MenuItem = new int[] {
16842754,
16842766,
16842960,
16843014,
16843156,
16843230,
16843231,
16843233,
16843234,
16843235,
16843236,
16843237,
16843375,
2130772186,
2130772187,
2130772188,
2130772189,
2130772190,
2130772191,
2130772192,
2130772193,
2130772194,
2130772195};
// aapt resource value: 16
public const int MenuItem_actionLayout = 16;
// aapt resource value: 18
public const int MenuItem_actionProviderClass = 18;
// aapt resource value: 17
public const int MenuItem_actionViewClass = 17;
// aapt resource value: 13
public const int MenuItem_alphabeticModifiers = 13;
// aapt resource value: 9
public const int MenuItem_android_alphabeticShortcut = 9;
// aapt resource value: 11
public const int MenuItem_android_checkable = 11;
// aapt resource value: 3
public const int MenuItem_android_checked = 3;
// aapt resource value: 1
public const int MenuItem_android_enabled = 1;
// aapt resource value: 0
public const int MenuItem_android_icon = 0;
// aapt resource value: 2
public const int MenuItem_android_id = 2;
// aapt resource value: 5
public const int MenuItem_android_menuCategory = 5;
// aapt resource value: 10
public const int MenuItem_android_numericShortcut = 10;
// aapt resource value: 12
public const int MenuItem_android_onClick = 12;
// aapt resource value: 6
public const int MenuItem_android_orderInCategory = 6;
// aapt resource value: 7
public const int MenuItem_android_title = 7;
// aapt resource value: 8
public const int MenuItem_android_titleCondensed = 8;
// aapt resource value: 4
public const int MenuItem_android_visible = 4;
// aapt resource value: 19
public const int MenuItem_contentDescription = 19;
// aapt resource value: 21
public const int MenuItem_iconTint = 21;
// aapt resource value: 22
public const int MenuItem_iconTintMode = 22;
// aapt resource value: 14
public const int MenuItem_numericModifiers = 14;
// aapt resource value: 15
public const int MenuItem_showAsAction = 15;
// aapt resource value: 20
public const int MenuItem_tooltipText = 20;
public static int[] MenuView = new int[] {
16842926,
16843052,
16843053,
16843054,
16843055,
16843056,
16843057,
2130772196,
2130772197};
// aapt resource value: 4
public const int MenuView_android_headerBackground = 4;
// aapt resource value: 2
public const int MenuView_android_horizontalDivider = 2;
// aapt resource value: 5
public const int MenuView_android_itemBackground = 5;
// aapt resource value: 6
public const int MenuView_android_itemIconDisabledAlpha = 6;
// aapt resource value: 1
public const int MenuView_android_itemTextAppearance = 1;
// aapt resource value: 3
public const int MenuView_android_verticalDivider = 3;
// aapt resource value: 0
public const int MenuView_android_windowAnimationStyle = 0;
// aapt resource value: 7
public const int MenuView_preserveIconSpacing = 7;
// aapt resource value: 8
public const int MenuView_subMenuArrow = 8;
public static int[] NavigationView = new int[] {
16842964,
16842973,
16843039,
2130772030,
2130772291,
2130772292,
2130772293,
2130772294,
2130772295,
2130772296};
// aapt resource value: 0
public const int NavigationView_android_background = 0;
// aapt resource value: 1
public const int NavigationView_android_fitsSystemWindows = 1;
// aapt resource value: 2
public const int NavigationView_android_maxWidth = 2;
// aapt resource value: 3
public const int NavigationView_elevation = 3;
// aapt resource value: 9
public const int NavigationView_headerLayout = 9;
// aapt resource value: 7
public const int NavigationView_itemBackground = 7;
// aapt resource value: 5
public const int NavigationView_itemIconTint = 5;
// aapt resource value: 8
public const int NavigationView_itemTextAppearance = 8;
// aapt resource value: 6
public const int NavigationView_itemTextColor = 6;
// aapt resource value: 4
public const int NavigationView_menu = 4;
public static int[] PopupWindow = new int[] {
16843126,
16843465,
2130772198};
// aapt resource value: 1
public const int PopupWindow_android_popupAnimationStyle = 1;
// aapt resource value: 0
public const int PopupWindow_android_popupBackground = 0;
// aapt resource value: 2
public const int PopupWindow_overlapAnchor = 2;
public static int[] PopupWindowBackgroundState = new int[] {
2130772199};
// aapt resource value: 0
public const int PopupWindowBackgroundState_state_above_anchor = 0;
public static int[] RecycleListView = new int[] {
2130772200,
2130772201};
// aapt resource value: 0
public const int RecycleListView_paddingBottomNoButtons = 0;
// aapt resource value: 1
public const int RecycleListView_paddingTopNoTitle = 1;
public static int[] RecyclerView = new int[] {
16842948,
16842993,
2130771968,
2130771969,
2130771970,
2130771971,
2130771972,
2130771973,
2130771974,
2130771975,
2130771976};
// aapt resource value: 1
public const int RecyclerView_android_descendantFocusability = 1;
// aapt resource value: 0
public const int RecyclerView_android_orientation = 0;
// aapt resource value: 6
public const int RecyclerView_fastScrollEnabled = 6;
// aapt resource value: 9
public const int RecyclerView_fastScrollHorizontalThumbDrawable = 9;
// aapt resource value: 10
public const int RecyclerView_fastScrollHorizontalTrackDrawable = 10;
// aapt resource value: 7
public const int RecyclerView_fastScrollVerticalThumbDrawable = 7;
// aapt resource value: 8
public const int RecyclerView_fastScrollVerticalTrackDrawable = 8;
// aapt resource value: 2
public const int RecyclerView_layoutManager = 2;
// aapt resource value: 4
public const int RecyclerView_reverseLayout = 4;
// aapt resource value: 3
public const int RecyclerView_spanCount = 3;
// aapt resource value: 5
public const int RecyclerView_stackFromEnd = 5;
public static int[] ScrimInsetsFrameLayout = new int[] {
2130772297};
// aapt resource value: 0
public const int ScrimInsetsFrameLayout_insetForeground = 0;
public static int[] ScrollingViewBehavior_Layout = new int[] {
2130772298};
// aapt resource value: 0
public const int ScrollingViewBehavior_Layout_behavior_overlapTop = 0;
public static int[] SearchView = new int[] {
16842970,
16843039,
16843296,
16843364,
2130772202,
2130772203,
2130772204,
2130772205,
2130772206,
2130772207,
2130772208,
2130772209,
2130772210,
2130772211,
2130772212,
2130772213,
2130772214};
// aapt resource value: 0
public const int SearchView_android_focusable = 0;
// aapt resource value: 3
public const int SearchView_android_imeOptions = 3;
// aapt resource value: 2
public const int SearchView_android_inputType = 2;
// aapt resource value: 1
public const int SearchView_android_maxWidth = 1;
// aapt resource value: 8
public const int SearchView_closeIcon = 8;
// aapt resource value: 13
public const int SearchView_commitIcon = 13;
// aapt resource value: 7
public const int SearchView_defaultQueryHint = 7;
// aapt resource value: 9
public const int SearchView_goIcon = 9;
// aapt resource value: 5
public const int SearchView_iconifiedByDefault = 5;
// aapt resource value: 4
public const int SearchView_layout = 4;
// aapt resource value: 15
public const int SearchView_queryBackground = 15;
// aapt resource value: 6
public const int SearchView_queryHint = 6;
// aapt resource value: 11
public const int SearchView_searchHintIcon = 11;
// aapt resource value: 10
public const int SearchView_searchIcon = 10;
// aapt resource value: 16
public const int SearchView_submitBackground = 16;
// aapt resource value: 14
public const int SearchView_suggestionRowLayout = 14;
// aapt resource value: 12
public const int SearchView_voiceIcon = 12;
public static int[] SnackbarLayout = new int[] {
16843039,
2130772030,
2130772299};
// aapt resource value: 0
public const int SnackbarLayout_android_maxWidth = 0;
// aapt resource value: 1
public const int SnackbarLayout_elevation = 1;
// aapt resource value: 2
public const int SnackbarLayout_maxActionInlineWidth = 2;
public static int[] Spinner = new int[] {
16842930,
16843126,
16843131,
16843362,
2130772031};
// aapt resource value: 3
public const int Spinner_android_dropDownWidth = 3;
// aapt resource value: 0
public const int Spinner_android_entries = 0;
// aapt resource value: 1
public const int Spinner_android_popupBackground = 1;
// aapt resource value: 2
public const int Spinner_android_prompt = 2;
// aapt resource value: 4
public const int Spinner_popupTheme = 4;
public static int[] SwitchCompat = new int[] {
16843044,
16843045,
16843074,
2130772215,
2130772216,
2130772217,
2130772218,
2130772219,
2130772220,
2130772221,
2130772222,
2130772223,
2130772224,
2130772225};
// aapt resource value: 1
public const int SwitchCompat_android_textOff = 1;
// aapt resource value: 0
public const int SwitchCompat_android_textOn = 0;
// aapt resource value: 2
public const int SwitchCompat_android_thumb = 2;
// aapt resource value: 13
public const int SwitchCompat_showText = 13;
// aapt resource value: 12
public const int SwitchCompat_splitTrack = 12;
// aapt resource value: 10
public const int SwitchCompat_switchMinWidth = 10;
// aapt resource value: 11
public const int SwitchCompat_switchPadding = 11;
// aapt resource value: 9
public const int SwitchCompat_switchTextAppearance = 9;
// aapt resource value: 8
public const int SwitchCompat_thumbTextPadding = 8;
// aapt resource value: 3
public const int SwitchCompat_thumbTint = 3;
// aapt resource value: 4
public const int SwitchCompat_thumbTintMode = 4;
// aapt resource value: 5
public const int SwitchCompat_track = 5;
// aapt resource value: 6
public const int SwitchCompat_trackTint = 6;
// aapt resource value: 7
public const int SwitchCompat_trackTintMode = 7;
public static int[] TabItem = new int[] {
16842754,
16842994,
16843087};
// aapt resource value: 0
public const int TabItem_android_icon = 0;
// aapt resource value: 1
public const int TabItem_android_layout = 1;
// aapt resource value: 2
public const int TabItem_android_text = 2;
public static int[] TabLayout = new int[] {
2130772300,
2130772301,
2130772302,
2130772303,
2130772304,
2130772305,
2130772306,
2130772307,
2130772308,
2130772309,
2130772310,
2130772311,
2130772312,
2130772313,
2130772314,
2130772315};
// aapt resource value: 3
public const int TabLayout_tabBackground = 3;
// aapt resource value: 2
public const int TabLayout_tabContentStart = 2;
// aapt resource value: 5
public const int TabLayout_tabGravity = 5;
// aapt resource value: 0
public const int TabLayout_tabIndicatorColor = 0;
// aapt resource value: 1
public const int TabLayout_tabIndicatorHeight = 1;
// aapt resource value: 7
public const int TabLayout_tabMaxWidth = 7;
// aapt resource value: 6
public const int TabLayout_tabMinWidth = 6;
// aapt resource value: 4
public const int TabLayout_tabMode = 4;
// aapt resource value: 15
public const int TabLayout_tabPadding = 15;
// aapt resource value: 14
public const int TabLayout_tabPaddingBottom = 14;
// aapt resource value: 13
public const int TabLayout_tabPaddingEnd = 13;
// aapt resource value: 11
public const int TabLayout_tabPaddingStart = 11;
// aapt resource value: 12
public const int TabLayout_tabPaddingTop = 12;
// aapt resource value: 10
public const int TabLayout_tabSelectedTextColor = 10;
// aapt resource value: 8
public const int TabLayout_tabTextAppearance = 8;
// aapt resource value: 9
public const int TabLayout_tabTextColor = 9;
public static int[] TextAppearance = new int[] {
16842901,
16842902,
16842903,
16842904,
16842906,
16842907,
16843105,
16843106,
16843107,
16843108,
16843692,
2130772047,
2130772053};
// aapt resource value: 10
public const int TextAppearance_android_fontFamily = 10;
// aapt resource value: 6
public const int TextAppearance_android_shadowColor = 6;
// aapt resource value: 7
public const int TextAppearance_android_shadowDx = 7;
// aapt resource value: 8
public const int TextAppearance_android_shadowDy = 8;
// aapt resource value: 9
public const int TextAppearance_android_shadowRadius = 9;
// aapt resource value: 3
public const int TextAppearance_android_textColor = 3;
// aapt resource value: 4
public const int TextAppearance_android_textColorHint = 4;
// aapt resource value: 5
public const int TextAppearance_android_textColorLink = 5;
// aapt resource value: 0
public const int TextAppearance_android_textSize = 0;
// aapt resource value: 2
public const int TextAppearance_android_textStyle = 2;
// aapt resource value: 1
public const int TextAppearance_android_typeface = 1;
// aapt resource value: 12
public const int TextAppearance_fontFamily = 12;
// aapt resource value: 11
public const int TextAppearance_textAllCaps = 11;
public static int[] TextInputLayout = new int[] {
16842906,
16843088,
2130772316,
2130772317,
2130772318,
2130772319,
2130772320,
2130772321,
2130772322,
2130772323,
2130772324,
2130772325,
2130772326,
2130772327,
2130772328,
2130772329};
// aapt resource value: 1
public const int TextInputLayout_android_hint = 1;
// aapt resource value: 0
public const int TextInputLayout_android_textColorHint = 0;
// aapt resource value: 6
public const int TextInputLayout_counterEnabled = 6;
// aapt resource value: 7
public const int TextInputLayout_counterMaxLength = 7;
// aapt resource value: 9
public const int TextInputLayout_counterOverflowTextAppearance = 9;
// aapt resource value: 8
public const int TextInputLayout_counterTextAppearance = 8;
// aapt resource value: 4
public const int TextInputLayout_errorEnabled = 4;
// aapt resource value: 5
public const int TextInputLayout_errorTextAppearance = 5;
// aapt resource value: 10
public const int TextInputLayout_hintAnimationEnabled = 10;
// aapt resource value: 3
public const int TextInputLayout_hintEnabled = 3;
// aapt resource value: 2
public const int TextInputLayout_hintTextAppearance = 2;
// aapt resource value: 13
public const int TextInputLayout_passwordToggleContentDescription = 13;
// aapt resource value: 12
public const int TextInputLayout_passwordToggleDrawable = 12;
// aapt resource value: 11
public const int TextInputLayout_passwordToggleEnabled = 11;
// aapt resource value: 14
public const int TextInputLayout_passwordToggleTint = 14;
// aapt resource value: 15
public const int TextInputLayout_passwordToggleTintMode = 15;
public static int[] Toolbar = new int[] {
16842927,
16843072,
2130772005,
2130772008,
2130772012,
2130772024,
2130772025,
2130772026,
2130772027,
2130772028,
2130772029,
2130772031,
2130772226,
2130772227,
2130772228,
2130772229,
2130772230,
2130772231,
2130772232,
2130772233,
2130772234,
2130772235,
2130772236,
2130772237,
2130772238,
2130772239,
2130772240,
2130772241,
2130772242};
// aapt resource value: 0
public const int Toolbar_android_gravity = 0;
// aapt resource value: 1
public const int Toolbar_android_minHeight = 1;
// aapt resource value: 21
public const int Toolbar_buttonGravity = 21;
// aapt resource value: 23
public const int Toolbar_collapseContentDescription = 23;
// aapt resource value: 22
public const int Toolbar_collapseIcon = 22;
// aapt resource value: 6
public const int Toolbar_contentInsetEnd = 6;
// aapt resource value: 10
public const int Toolbar_contentInsetEndWithActions = 10;
// aapt resource value: 7
public const int Toolbar_contentInsetLeft = 7;
// aapt resource value: 8
public const int Toolbar_contentInsetRight = 8;
// aapt resource value: 5
public const int Toolbar_contentInsetStart = 5;
// aapt resource value: 9
public const int Toolbar_contentInsetStartWithNavigation = 9;
// aapt resource value: 4
public const int Toolbar_logo = 4;
// aapt resource value: 26
public const int Toolbar_logoDescription = 26;
// aapt resource value: 20
public const int Toolbar_maxButtonHeight = 20;
// aapt resource value: 25
public const int Toolbar_navigationContentDescription = 25;
// aapt resource value: 24
public const int Toolbar_navigationIcon = 24;
// aapt resource value: 11
public const int Toolbar_popupTheme = 11;
// aapt resource value: 3
public const int Toolbar_subtitle = 3;
// aapt resource value: 13
public const int Toolbar_subtitleTextAppearance = 13;
// aapt resource value: 28
public const int Toolbar_subtitleTextColor = 28;
// aapt resource value: 2
public const int Toolbar_title = 2;
// aapt resource value: 14
public const int Toolbar_titleMargin = 14;
// aapt resource value: 18
public const int Toolbar_titleMarginBottom = 18;
// aapt resource value: 16
public const int Toolbar_titleMarginEnd = 16;
// aapt resource value: 15
public const int Toolbar_titleMarginStart = 15;
// aapt resource value: 17
public const int Toolbar_titleMarginTop = 17;
// aapt resource value: 19
public const int Toolbar_titleMargins = 19;
// aapt resource value: 12
public const int Toolbar_titleTextAppearance = 12;
// aapt resource value: 27
public const int Toolbar_titleTextColor = 27;
public static int[] View = new int[] {
16842752,
16842970,
2130772243,
2130772244,
2130772245};
// aapt resource value: 1
public const int View_android_focusable = 1;
// aapt resource value: 0
public const int View_android_theme = 0;
// aapt resource value: 3
public const int View_paddingEnd = 3;
// aapt resource value: 2
public const int View_paddingStart = 2;
// aapt resource value: 4
public const int View_theme = 4;
public static int[] ViewBackgroundHelper = new int[] {
16842964,
2130772246,
2130772247};
// aapt resource value: 0
public const int ViewBackgroundHelper_android_background = 0;
// aapt resource value: 1
public const int ViewBackgroundHelper_backgroundTint = 1;
// aapt resource value: 2
public const int ViewBackgroundHelper_backgroundTintMode = 2;
public static int[] ViewStubCompat = new int[] {
16842960,
16842994,
16842995};
// aapt resource value: 0
public const int ViewStubCompat_android_id = 0;
// aapt resource value: 2
public const int ViewStubCompat_android_inflatedId = 2;
// aapt resource value: 1
public const int ViewStubCompat_android_layout = 1;
static Styleable()
{
global::Android.Runtime.ResourceIdManager.UpdateIdValues();
}
private Styleable()
{
}
}
}
}
#pragma warning restore 1591
| 31.871699 | 139 | 0.732452 | [
"MIT"
] | Redth/f50 | Sample/SampleServices.Android/Resources/Resource.designer.cs | 238,974 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Sparrow.Domain
{
using System;
using System.Collections.Generic;
public partial class Rol
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Rol()
{
this.Usuario = new HashSet<Usuario>();
}
public int Id { get; set; }
public string nombre { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Usuario> Usuario { get; set; }
}
}
| 35.166667 | 128 | 0.565877 | [
"MIT"
] | brayancruces/Sparrow | Sparrow.Domain/Rol.cs | 1,055 | C# |
//----------------------
// <auto-generated>
// This file was automatically generated. Any changes to it will be lost if and when the file is regenerated.
// </auto-generated>
//----------------------
#pragma warning disable
using System;
using SQEX.Luminous.Core.Object;
using System.Collections.Generic;
using CodeDom = System.CodeDom;
namespace Black.Sequence.Action.TimeLine.Camera
{
[Serializable, CodeDom.Compiler.GeneratedCode("Luminaire", "0.1")]
public partial class SequenceActionTimeLineCameraCharRelativeAttachTrack : Black.Sequence.Action.TimeLine.SequenceActionTimeLineDurationTrackBase
{
new public static ObjectType ObjectType { get; private set; }
private static PropertyContainer fieldProperties;
[UnityEngine.SerializeReference] public SQEX.Ebony.Framework.Node.GraphVariableInputPin actorPin_= new SQEX.Ebony.Framework.Node.GraphVariableInputPin();
public UnityEngine.Vector4 relativeOffset_;
public UnityEngine.Vector4 relativeRotation_;
public int charaRelativeIndex_;
new public static void SetupObjectType()
{
if (ObjectType != null)
{
return;
}
var dummy = new SequenceActionTimeLineCameraCharRelativeAttachTrack();
var properties = dummy.GetFieldProperties();
ObjectType = new ObjectType("Black.Sequence.Action.TimeLine.Camera.SequenceActionTimeLineCameraCharRelativeAttachTrack", 0, Black.Sequence.Action.TimeLine.Camera.SequenceActionTimeLineCameraCharRelativeAttachTrack.ObjectType, Construct, properties, 0, 544);
}
public override ObjectType GetObjectType()
{
return ObjectType;
}
protected override PropertyContainer GetFieldProperties()
{
if (fieldProperties != null)
{
return fieldProperties;
}
fieldProperties = new PropertyContainer("Black.Sequence.Action.TimeLine.Camera.SequenceActionTimeLineCameraCharRelativeAttachTrack", base.GetFieldProperties(), -2112299496, 968920170);
fieldProperties.AddIndirectlyProperty(new Property("refInPorts_", 1035088696, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 24, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
fieldProperties.AddIndirectlyProperty(new Property("refOutPorts_", 283683627, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 40, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
fieldProperties.AddIndirectlyProperty(new Property("triInPorts_", 291734708, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 96, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
fieldProperties.AddIndirectlyProperty(new Property("triOutPorts_", 3107891487, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin*, MEMORY_CATEGORY_FRAMEWORK >", 112, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)4));
fieldProperties.AddIndirectlyProperty(new Property("Isolated_", 56305607, "bool", 168, 1, 1, Property.PrimitiveType.Bool, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("curveList_", 1657928633, "SQEX.Ebony.Framework.TimeControl.CurveList", 176, 24, 1, Property.PrimitiveType.ClassField, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("curveList_.propertyList_", 3952472237, "SQEX.Ebony.Std.DynamicArray< AnchorReferenceValue* >", 184, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)2));
fieldProperties.AddIndirectlyProperty(new Property("in_", 1827225043, "SQEX.Ebony.Framework.Node.GraphTriggerInputPin", 208, 96, 1, Property.PrimitiveType.ClassField, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("in_.pinName_", 3330161590, "Base.String", 216, 16, 1, Property.PrimitiveType.String, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("in_.name_", 192292993, "Base.String", 232, 16, 1, Property.PrimitiveType.String, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("in_.connections_", 490033121, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 248, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
fieldProperties.AddIndirectlyProperty(new Property("in_.delayType_", 261766523, "SQEX.Ebony.Framework.Node.GraphPin.DelayType", 280, 4, 1, Property.PrimitiveType.Enum, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("in_.delayTime_", 1689218608, "float", 284, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("in_.delayMaxTime_", 1529341114, "float", 288, 4, 1, Property.PrimitiveType.Float, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("actorPin_.pinName_", 61679437, "Base.String", 408, 16, 1, Property.PrimitiveType.String, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("actorPin_.name_", 700809432, "Base.String", 424, 16, 1, Property.PrimitiveType.String, 0, (char)0));
fieldProperties.AddIndirectlyProperty(new Property("actorPin_.connections_", 2962364278, "SQEX.Ebony.Std.DynamicArray< SQEX.Ebony.Framework.Node.GraphPin* >", 440, 16, 1, Property.PrimitiveType.PointerArray, 0, (char)1));
fieldProperties.AddIndirectlyProperty(new Property("actorPin_.pinValueType_", 2807496477, "Base.String", 472, 16, 1, Property.PrimitiveType.String, 0, (char)0));
fieldProperties.AddProperty(new Property("actorPin_", 3381458010, "SQEX.Ebony.Framework.Node.GraphVariableInputPin", 400, 88, 1, Property.PrimitiveType.ClassField, 0, (char)0));
fieldProperties.AddProperty(new Property("relativeOffset_", 2366110807, "Luminous.Math.VectorA", 496, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
fieldProperties.AddProperty(new Property("relativeRotation_", 1396190808, "Luminous.Math.VectorA", 512, 16, 1, Property.PrimitiveType.Vector4, 0, (char)0));
fieldProperties.AddProperty(new Property("charaRelativeIndex_", 1966693805, "int", 528, 4, 1, Property.PrimitiveType.Int32, 0, (char)0));
return fieldProperties;
}
private static BaseObject Construct()
{
return new SequenceActionTimeLineCameraCharRelativeAttachTrack();
}
}
} | 70.666667 | 269 | 0.742767 | [
"MIT"
] | Gurrimo/Luminaire | Assets/Editor/Generated/Black/Sequence/Action/TimeLine/Camera/SequenceActionTimeLineCameraCharRelativeAttachTrack.generated.cs | 6,360 | C# |
// Author:
// Brian Faust <brian@ark.io>
//
// Copyright (c) 2018 Ark Ecosystem <info@ark.io>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
using Microsoft.VisualStudio.TestTools.UnitTesting;
using NBitcoin.DataEncoders;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.IO;
namespace ArkEcosystem.Crypto.Tests.Transactions.Serializers
{
[TestClass]
public class TransferTest
{
[TestMethod]
public void Should_Serialize_The_Transaction()
{
var fixture = TestHelper.ReadTransactionFixture("transfer", "passphrase");
var transaction = fixture["data"];
var transactionModel = new Crypto.Transactions.Deserializer(fixture["serialized"]).Deserialize();
var actual = new Crypto.Transactions.Serializer(transactionModel).Serialize();
Assert.AreEqual(fixture["serialized"], Encoders.Hex.EncodeData(actual));
}
}
}
| 40.55102 | 109 | 0.733266 | [
"MIT"
] | ArkEcosystem/dotnet-crypto | ArkEcosystem.Crypto.Tests/Transactions/Serializers/TransferTest.cs | 1,987 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Rimss.Web.Data
{
using System;
using System.Collections.Generic;
public partial class View_ApplicationListing
{
public System.Guid Id { get; set; }
public string Title { get; set; }
public System.DateTime CreatedOn { get; set; }
public System.Guid CreatedById { get; set; }
public string CreatedByLoginName { get; set; }
public string CreatedByDisplayName { get; set; }
public System.DateTime ModifiedOn { get; set; }
public System.Guid ModifiedById { get; set; }
public string ModifiedByLoginName { get; set; }
public string ModifiedByDisplayName { get; set; }
public Nullable<int> TotalFolderCount { get; set; }
public Nullable<int> TotalSourceImageCount { get; set; }
public Nullable<int> ActiveConversionJobCount { get; set; }
public Nullable<int> TotalConversionJobCount { get; set; }
}
}
| 41.363636 | 85 | 0.586081 | [
"Apache-2.0"
] | lerwine/RIMSS | Rimss.Web/Data/View_ApplicationListing.cs | 1,365 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace DataProject
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class Model1Container : DbContext
{
public Model1Container()
: base("name=Model1Container")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
}
}
| 29.133333 | 85 | 0.52746 | [
"MIT"
] | VE-2016/3DModelExplorer | helix-toolkit3d/Source/Examples/WPF/DataProject/Model1.Context.cs | 876 | C# |
#pragma warning disable 108 // new keyword hiding
#pragma warning disable 114 // new keyword hiding
namespace Windows.Media.PlayTo
{
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
[global::Uno.NotImplemented]
#endif
public partial class CurrentTimeChangeRequestedEventArgs
{
#if __ANDROID__ || __IOS__ || NET461 || __WASM__ || __SKIA__ || __NETSTD_REFERENCE__ || __MACOS__
[global::Uno.NotImplemented("__ANDROID__", "__IOS__", "NET461", "__WASM__", "__SKIA__", "__NETSTD_REFERENCE__", "__MACOS__")]
public global::System.TimeSpan Time
{
get
{
throw new global::System.NotImplementedException("The member TimeSpan CurrentTimeChangeRequestedEventArgs.Time is not implemented in Uno.");
}
}
#endif
// Forced skipping of method Windows.Media.PlayTo.CurrentTimeChangeRequestedEventArgs.Time.get
}
}
| 38.304348 | 144 | 0.749149 | [
"Apache-2.0"
] | AbdalaMask/uno | src/Uno.UWP/Generated/3.0.0.0/Windows.Media.PlayTo/CurrentTimeChangeRequestedEventArgs.cs | 881 | C# |
using System;
namespace Maths
{
public class Point : IComparable<Point>
{
public double x;
public double y;
public Point(double x, double y)
{
this.x = Math.Round(x, 2);
this.y = Math.Round(y, 2);
}
// compare the points as in projections on the ox axis then if they are the same, then according to the y axis
// helps in dealing with points situated on the same line
public int CompareTo(Point other)
{
if (this.x == other.x)
return this.y.CompareTo(other.y);
else
return this.x.CompareTo(other.x);
}
public override string ToString()
{
return this.x + " " + this.y + " ";
}
}
}
| 24.060606 | 118 | 0.517632 | [
"MIT"
] | econnolly27/MudanoSpaceGame | Maths/Point.cs | 796 | C# |
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using INITool.Parser.Tokeniser;
using INITool.Parser.Units;
namespace INITool.Parser.Parselets
{
internal class NumericParselet : Parselet, IPrefixParselet
{
public NumericParselet(Parser parser, Tokeniser.Tokeniser tokeniser, IniOptions options)
: base(parser, tokeniser, options)
{
}
public Unit Parse(Token token)
{
var tokens = new List<Token> {token};
IEnumerable<Token> newTokens;
object value;
// if the first token is a zero, depending on the next one this might either be a hex or a binary literal
if (token.Value == "0")
{
var next = Tokeniser.Peek().Value;
if (next.StartsWith("x"))
{
token = Tokeniser.TakeOfType(TokenType.Word);
tokens.Add(token);
(newTokens, value) = ParseHex(token.Value);
return new ValueUnit(value, tokens.Concat(newTokens));
}
if (next.StartsWith("b"))
{
tokens.Add(Tokeniser.TakeOfType(TokenType.Word));
(newTokens, value) = ParseBinary();
return new ValueUnit(value, tokens.Concat(newTokens));
}
}
if (token.TokenType == TokenType.Ampersand)
{
var next = Tokeniser.Peek();
if (!next.Value.StartsWith("H"))
throw new InvalidLiteralException(Tokeniser.CurrentPosition);
token = Tokeniser.TakeOfType(TokenType.Word);
tokens.Add(token);
(newTokens, value) = ParseHex(token.Value);
return new ValueUnit(value, tokens.Concat(newTokens));
}
(newTokens, value) = ParseNumeric(token.Value);
return new ValueUnit(value, tokens.Concat(newTokens));
}
private (IEnumerable<Token> tokens, object value) ParseNumeric(string firstValue)
{
var tokens = new List<Token>();
var valueBuilder = new StringBuilder(firstValue);
var isDouble = false;
object value;
if (firstValue == "-")
{
var numberToken = Tokeniser.TakeOfType(TokenType.Number);
tokens.Add(numberToken);
valueBuilder.Append(numberToken.Value);
}
if (Tokeniser.Peek().TokenType == TokenType.Period)
{
var periodToken = Tokeniser.Take();
tokens.Add(periodToken);
valueBuilder.Append(periodToken.Value);
Token decimalToken;
try
{
decimalToken = Tokeniser.TakeOfType(TokenType.Number);
}
catch (InvalidTokenException e)
{
throw new InvalidLiteralException(Tokeniser.CurrentPosition, e);
}
tokens.Add(decimalToken);
valueBuilder.Append(decimalToken.Value);
isDouble = true;
}
var valueStr = valueBuilder.ToString();
// the ternary expression messes up the typing and causes invalid casting
// ReSharper disable once ConvertIfStatementToConditionalTernaryExpression
if (isDouble)
{
if (!double.TryParse(valueStr, out var temp))
throw new InvalidLiteralException(Tokeniser.CurrentPosition);
value = temp;
}
else
{
if (!long.TryParse(valueStr, out var temp))
throw new InvalidLiteralException(Tokeniser.CurrentPosition);
value = temp;
}
return (tokens.AsEnumerable(), value);
}
private (IEnumerable<Token> tokens, ulong value) ParseHex(string firstValue)
{
var tokens = new List<Token>();
var valueBuilder = new StringBuilder();
if (firstValue.Length > 1)
valueBuilder.Append(firstValue.Substring(1, firstValue.Length - 1));
var allowedLetters = "abcdef".ToCharArray();
foreach (var token in Tokeniser.TakeSequentialOfType(TokenType.Word, TokenType.Number))
{
if (token.TokenType == TokenType.Word)
{
if (token.Value.Any(c => !allowedLetters.Contains(c)))
throw new InvalidLiteralException(Tokeniser.CurrentPosition);
}
tokens.Add(token);
valueBuilder.Append(token.Value);
}
var valueStr = valueBuilder.ToString();
if (!ulong.TryParse(valueStr, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out var value))
throw new InvalidLiteralException(Tokeniser.CurrentPosition);
return (tokens.AsEnumerable(), value);
}
private (IEnumerable<Token> tokens, ulong value) ParseBinary()
{
var tokens = new List<Token>();
var valueBuilder = new StringBuilder();
var bin = Tokeniser.TakeOfType(TokenType.Number);
if (bin.Value.Any(d => d != '0' && d != '1'))
throw new InvalidLiteralException(Tokeniser.CurrentPosition);
tokens.Add(bin);
valueBuilder.Append(bin.Value);
var valueStr = valueBuilder.ToString();
ulong value;
try
{
value = Convert.ToUInt64(valueStr, 2);
}
catch (OverflowException e)
{
throw new InvalidLiteralException(Tokeniser.CurrentPosition, e);
}
catch (FormatException e)
{
throw new InvalidLiteralException(Tokeniser.CurrentPosition, e);
}
return (tokens.AsEnumerable(), value);
}
}
}
| 35.045455 | 117 | 0.537776 | [
"MIT"
] | Spanfile/INITool | INITool/Parser/Parselets/NumericParselet.cs | 6,170 | C# |
using System.Threading;
using System.Web.Razor.Parser;
using System.Web.Razor.Parser.SyntaxTree;
using System.Web.Razor.Test.Framework;
using System.Web.Razor.Text;
using Moq;
using Xunit;
namespace System.Web.Razor.Test.Parser
{
public class CallbackParserListenerTest
{
[Fact]
public void ListenerConstructedWithSpanCallbackCallsCallbackOnEndSpan()
{
RunOnEndSpanTest(callback => new CallbackVisitor(callback));
}
[Fact]
public void ListenerConstructedWithSpanCallbackDoesNotThrowOnStartBlockEndBlockOrError()
{
// Arrange
Action<Span> spanCallback = _ => { };
CallbackVisitor listener = new CallbackVisitor(spanCallback);
// Act/Assert
listener.VisitStartBlock(new FunctionsBlock());
listener.VisitError(new RazorError("Error", SourceLocation.Zero));
listener.VisitEndBlock(new FunctionsBlock());
}
[Fact]
public void ListenerConstructedWithSpanAndErrorCallbackCallsCallbackOnEndSpan()
{
RunOnEndSpanTest(spanCallback => new CallbackVisitor(spanCallback, _ => { }));
}
[Fact]
public void ListenerConstructedWithSpanAndErrorCallbackCallsCallbackOnError()
{
RunOnErrorTest(errorCallback => new CallbackVisitor(_ => { }, errorCallback));
}
[Fact]
public void ListenerConstructedWithAllCallbacksCallsCallbackOnEndSpan()
{
RunOnEndSpanTest(spanCallback => new CallbackVisitor(spanCallback, _ => { }, _ => { }, _ => { }));
}
[Fact]
public void ListenerConstructedWithAllCallbacksCallsCallbackOnError()
{
RunOnErrorTest(errorCallback => new CallbackVisitor(_ => { }, errorCallback, _ => { }, _ => { }));
}
[Fact]
public void ListenerConstructedWithAllCallbacksCallsCallbackOnStartBlock()
{
RunOnStartBlockTest(startBlockCallback => new CallbackVisitor(_ => { }, _ => { }, startBlockCallback, _ => { }));
}
[Fact]
public void ListenerConstructedWithAllCallbacksCallsCallbackOnEndBlock()
{
RunOnEndBlockTest(endBlockCallback => new CallbackVisitor(_ => { }, _ => { }, _ => { }, endBlockCallback));
}
[Fact]
public void ListenerCallsOnEndSpanCallbackUsingSynchronizationContextIfSpecified()
{
RunSyncContextTest(new SpanBuilder().Build(),
spanCallback => new CallbackVisitor(spanCallback, _ => { }, _ => { }, _ => { }),
(listener, expected) => listener.VisitSpan(expected));
}
[Fact]
public void ListenerCallsOnStartBlockCallbackUsingSynchronizationContextIfSpecified()
{
RunSyncContextTest(BlockType.Template,
startBlockCallback => new CallbackVisitor(_ => { }, _ => { }, startBlockCallback, _ => { }),
(listener, expected) => listener.VisitStartBlock(new BlockBuilder() { Type = expected }.Build()));
}
[Fact]
public void ListenerCallsOnEndBlockCallbackUsingSynchronizationContextIfSpecified()
{
RunSyncContextTest(BlockType.Template,
endBlockCallback => new CallbackVisitor(_ => { }, _ => { }, _ => { }, endBlockCallback),
(listener, expected) => listener.VisitEndBlock(new BlockBuilder() { Type = expected }.Build()));
}
[Fact]
public void ListenerCallsOnErrorCallbackUsingSynchronizationContextIfSpecified()
{
RunSyncContextTest(new RazorError("Bar", 42, 42, 42),
errorCallback => new CallbackVisitor(_ => { }, errorCallback, _ => { }, _ => { }),
(listener, expected) => listener.VisitError(expected));
}
private static void RunSyncContextTest<T>(T expected, Func<Action<T>, CallbackVisitor> ctor, Action<CallbackVisitor, T> call)
{
// Arrange
Mock<SynchronizationContext> mockContext = new Mock<SynchronizationContext>();
mockContext.Setup(c => c.Post(It.IsAny<SendOrPostCallback>(), It.IsAny<object>()))
.Callback<SendOrPostCallback, object>((callback, state) => { callback(expected); });
// Act/Assert
RunCallbackTest<T>(default(T), callback =>
{
CallbackVisitor listener = ctor(callback);
listener.SynchronizationContext = mockContext.Object;
return listener;
}, call, (original, actual) =>
{
Assert.NotEqual(original, actual);
Assert.Equal(expected, actual);
});
}
private static void RunOnStartBlockTest(Func<Action<BlockType>, CallbackVisitor> ctor, Action<BlockType, BlockType> verifyResults = null)
{
RunCallbackTest(BlockType.Markup, ctor, (listener, expected) => listener.VisitStartBlock(new BlockBuilder() { Type = expected }.Build()), verifyResults);
}
private static void RunOnEndBlockTest(Func<Action<BlockType>, CallbackVisitor> ctor, Action<BlockType, BlockType> verifyResults = null)
{
RunCallbackTest(BlockType.Markup, ctor, (listener, expected) => listener.VisitEndBlock(new BlockBuilder() { Type = expected }.Build()), verifyResults);
}
private static void RunOnErrorTest(Func<Action<RazorError>, CallbackVisitor> ctor, Action<RazorError, RazorError> verifyResults = null)
{
RunCallbackTest(new RazorError("Foo", SourceLocation.Zero), ctor, (listener, expected) => listener.VisitError(expected), verifyResults);
}
private static void RunOnEndSpanTest(Func<Action<Span>, CallbackVisitor> ctor, Action<Span, Span> verifyResults = null)
{
RunCallbackTest(new SpanBuilder().Build(), ctor, (listener, expected) => listener.VisitSpan(expected), verifyResults);
}
private static void RunCallbackTest<T>(T expected, Func<Action<T>, CallbackVisitor> ctor, Action<CallbackVisitor, T> call, Action<T, T> verifyResults = null)
{
// Arrange
object actual = null;
Action<T> callback = t => actual = t;
CallbackVisitor listener = ctor(callback);
// Act
call(listener, expected);
// Assert
if (verifyResults == null)
{
Assert.Equal(expected, actual);
}
else
{
verifyResults(expected, (T)actual);
}
}
}
}
| 41.564417 | 165 | 0.600738 | [
"Apache-2.0"
] | douchedetector/mvc-razor | test/System.Web.Razor.Test/Parser/CallbackParserListenerTest.cs | 6,777 | C# |
using System;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Altinn.App.PlatformServices.Extensions;
using Altinn.App.PlatformServices.Helpers;
using Altinn.App.Services.Configuration;
using Altinn.App.Services.Constants;
using Altinn.App.Services.Interface;
using Altinn.Common.AccessTokenClient.Services;
using Altinn.Platform.Register.Models;
using AltinnCore.Authentication.Utils;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Newtonsoft.Json;
using IRegister = Altinn.App.Services.Interface.IRegister;
namespace Altinn.App.Services.Implementation
{
/// <summary>
/// App implementation of the register service, for app development. Calls the platform register service.
/// </summary>
public class RegisterAppSI : IRegister
{
private readonly IDSF _dsf;
private readonly IER _er;
private readonly ILogger _logger;
private readonly IHttpContextAccessor _httpContextAccessor;
private readonly AppSettings _settings;
private readonly HttpClient _client;
private readonly IAppResources _appResources;
private readonly IAccessTokenGenerator _accessTokenGenerator;
/// <summary>
/// Initializes a new instance of the <see cref="RegisterAppSI"/> class
/// </summary>
/// <param name="dsf">The dsf</param>
/// <param name="er">The er</param>
/// <param name="logger">The logger</param>
/// <param name="httpContextAccessor">The http context accessor </param>
/// <param name="settings">The application settings.</param>
///<param name="httpClient">The http client</param>
///<param name="appResources">The app resources service</param>
///<param name="accessTokenGenerator">The platform access token generator</param>
public RegisterAppSI(
IOptions<PlatformSettings> platformSettings,
IDSF dsf,
IER er,
ILogger<RegisterAppSI> logger,
IHttpContextAccessor httpContextAccessor,
IOptionsMonitor<AppSettings> settings,
HttpClient httpClient,
IAppResources appResources,
IAccessTokenGenerator accessTokenGenerator)
{
_dsf = dsf;
_er = er;
_logger = logger;
_httpContextAccessor = httpContextAccessor;
_settings = settings.CurrentValue;
httpClient.BaseAddress = new Uri(platformSettings.Value.ApiRegisterEndpoint);
httpClient.DefaultRequestHeaders.Add(General.SubscriptionKeyHeaderName, platformSettings.Value.SubscriptionKey);
httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
_client = httpClient;
_appResources = appResources;
_accessTokenGenerator = accessTokenGenerator;
}
/// <summary>
/// The access to the dsf component through register services
/// </summary>
public IDSF DSF
{
get { return _dsf; }
}
/// <summary>
/// The access to the er component through register services
/// </summary>
public IER ER
{
get { return _er; }
}
/// <inheritdoc/>
public async Task<Party> GetParty(int partyId)
{
Party party = null;
string endpointUrl = $"parties/{partyId}";
string token = JwtTokenUtil.GetTokenFromContext(_httpContextAccessor.HttpContext, _settings.RuntimeCookieName);
HttpResponseMessage response = await _client.GetAsync(token, endpointUrl, _accessTokenGenerator.GenerateAccessToken(_appResources.GetApplication().Org, _appResources.GetApplication().Id));
if (response.StatusCode == System.Net.HttpStatusCode.OK)
{
party = await response.Content.ReadAsAsync<Party>();
}
else
{
_logger.LogError($"// Getting party with partyID {partyId} failed with statuscode {response.StatusCode}");
}
return party;
}
/// <inheritdoc/>
public async Task<Party> LookupParty(PartyLookup partyLookup)
{
Party party;
string endpointUrl = "parties/lookup";
string token = JwtTokenUtil.GetTokenFromContext(_httpContextAccessor.HttpContext, _settings.RuntimeCookieName);
StringContent content = new StringContent(JsonConvert.SerializeObject(partyLookup));
content.Headers.ContentType = MediaTypeHeaderValue.Parse("application/json");
HttpRequestMessage request = new HttpRequestMessage
{
RequestUri = new System.Uri(endpointUrl, System.UriKind.Relative),
Method = HttpMethod.Post,
Content = content,
};
request.Headers.Add("Authorization", "Bearer " + token);
request.Headers.Add("PlatformAccessToken", _accessTokenGenerator.GenerateAccessToken(_appResources.GetApplication().Org, _appResources.GetApplication().Id));
HttpResponseMessage response = await _client.SendAsync(request);
if (response.StatusCode == HttpStatusCode.OK)
{
party = await response.Content.ReadAsAsync<Party>();
}
else
{
string reason = await response.Content.ReadAsStringAsync();
_logger.LogError($"// Getting party with orgNo: {partyLookup.OrgNo} or ssn: {partyLookup.Ssn} failed with statuscode {response.StatusCode} - {reason}");
throw await PlatformHttpException.CreateAsync(response);
}
return party;
}
}
}
| 40.510345 | 200 | 0.647089 | [
"BSD-3-Clause"
] | TheTechArch/altinn-studio | src/Altinn.Apps/AppTemplates/AspNet/Altinn.App.PlatformServices/Implementation/RegisterAppSI.cs | 5,874 | C# |
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.
// All Rights Reserved.
// Licensed under the MIT License.
// See License in the project root for license information.
// ------------------------------------------------------------------------------
namespace Microsoft.Groove.Api.Client
{
using System.Threading.Tasks;
/// <summary>
/// Interface for a user token manager.
/// The role of this component is to acquire valid user tokens that can be used to call the Groove API.
/// </summary>
public interface IUserTokenManager
{
bool UserIsSignedIn { get; }
/// <summary>
/// Get a valid user token that can be used to call the Groove API and format it to be used in the request's Authorization header.
/// </summary>
/// <param name="forceRefresh">If the API returned an INVALID_AUTHORIZATION_HEADER error you might need to force a token refresh.</param>
Task<string> GetUserAuthorizationHeaderAsync(bool forceRefresh = false);
}
}
| 40.62963 | 145 | 0.581586 | [
"MIT"
] | Bhaskers-Blu-Org2/groove-api-sdk-csharp | src/GrooveApiClient/IUserTokenManager.cs | 1,099 | C# |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("KSP Directory Junction Creator")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("KSP Directory Junction Creator")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("1894b84e-3d7e-462f-a7ca-dc478d5707f9")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
| 38.72973 | 84 | 0.747383 | [
"MIT"
] | Alshain01/DirectoryJunctionCreator | Properties/AssemblyInfo.cs | 1,436 | C# |
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
namespace RPG_Character_Creator
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Welcome to RPG Character Creator! \nThis software was developed by Barzotti Cristian.");
Console.WriteLine("\nDisclaimer!\nThis software is free to use and it's not intended as a substitute of the \nRoleplaying Game Core Book published by Wizards of the Coast, Inc.!");
Console.WriteLine("The information inside this software were taken from https://www.d20srd.org/index.htm");
Console.WriteLine("I do not own any of the informations inside this software.");
Console.WriteLine("------------------------------------------------------------------------------------------------------------------");
Console.WriteLine("Ehy you, you are finally ready!\nLet me introduce you to this software.");
Console.WriteLine("With this software, you too will be able to create your own RPG Character! \nEither randomly or guided, the AI in this software is amazing!...ly stupid. I apologize.");
Console.WriteLine("Anyway, let's start. First of all, I will need to know how do you want to proceed. Do you want a:\n1- Randomly Created Character\n2- Create My Own Character");
int res = 0;
int choice = 0;
dynamic character = null;
do
{
try
{
choice = Convert.ToInt32(Console.ReadLine());
}
catch (FormatException)
{
Console.WriteLine("It seems like you tried to insert one or more letters instead of an integer. You can't do that!");
Console.WriteLine();
}
catch (OverflowException)
{
Console.WriteLine("It seems like something went wrong. Try contacting the developer, but he won't know much more.");
Console.WriteLine();
}
finally
{
if (choice > 0 && choice < 3)
{
res = 1;
Console.WriteLine("Amazing! Let's start!");
}
else
Console.WriteLine("There was a problem selecting your option. Please, try again.");
}
} // Choice
while (res == 0);
// Here we create the character
if (choice == 1)
character = RandomGenerator.Generate();
else
character = GuidedGenerator.Generate();
// Some more info
CharacterInfo info = new CharacterInfo();
Console.WriteLine("------------------------------------------------------------------------------------------------------------------");
Console.WriteLine("Your character is almost done! I need only a few more info about it.\n");
Console.WriteLine("What is your name?");
info.Name = Console.ReadLine();
Console.WriteLine("When were you born? (Use xx/xx/xxxx format)");
info.DateOfBirth = Console.ReadLine();
Console.WriteLine("Where were you born?");
info.PlaceOfBirth = Console.ReadLine();
Console.WriteLine("How old you are?");
info.Age = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("What is your sex?");
info.Sex = Console.ReadLine();
Console.WriteLine("How tall are you in cm?");
info.Height = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("How much do you weight?");
info.Weight = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("What is your muscolar size?");
info.Size = Console.ReadLine();
Console.WriteLine("And your skintone?");
info.SkinTone = Console.ReadLine();
Console.WriteLine("What's your hair color?");
info.Hair = Console.ReadLine();
Console.WriteLine("And your eyes color?");
info.Eyes = Console.ReadLine();
Console.WriteLine("Congrats! Your character is finally done!");
res = 0;
choice = 0;
do
{
Console.WriteLine("\n------------------------------------------------------------------------------------------------------------------");
Console.WriteLine("Do you want to do something else before closing the program?\n1- Print my stat\n2- Print my talents\n3- Print my spells\n4- Create the .txt file and exit.");
try
{
choice = Convert.ToInt32(Console.ReadLine());
}
catch (FormatException)
{
Console.WriteLine("It seems like you tried to insert one or more letters instead of an integer. You can't do that!");
Console.WriteLine();
}
catch (OverflowException)
{
Console.WriteLine("It seems like something went wrong. Try contacting the developer, but he won't know much more.");
Console.WriteLine();
}
finally
{
if (choice == 1)
{
Console.WriteLine("");
Console.WriteLine("Strength: " + character.GetBaseStat("Strength"));
Console.WriteLine("Dexterity: " + character.GetBaseStat("Dexterity"));
Console.WriteLine("Constitution: " + character.GetBaseStat("Constitution"));
Console.WriteLine("Intelligence: " + character.GetBaseStat("Intelligence"));
Console.WriteLine("Wisdom: " + character.GetBaseStat("Wisdom"));
Console.WriteLine("Charisma: " + character.GetBaseStat("Charisma"));
}
else if (choice == 2)
{
Console.WriteLine("");
character.PrintTalents();
}
else if (choice == 3)
{
Console.WriteLine("");
character.PrintCastableSpells();
}
else if (choice == 4)
{
res = 1;
List<string> talents = character.GetTalents();
Dictionary<string, int> spells = character.ReturnCastableSpells();
WriteFile.Create(character, info, talents, spells);
}
else
{
Console.WriteLine("Seems like that choice is invalid. Please, try again.");
}
}
} while (res == 0);
Console.WriteLine("\nThank you for using this software! We are done!");
string desktopPath = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
Console.WriteLine("A file has been created @:" + desktopPath + " named " + info.Name + ".txt");
Console.WriteLine("See you next time!");
}
}
}
| 46.97546 | 200 | 0.481259 | [
"MIT"
] | NocturneCrowz/RPG-Character-Creator | RPG Character Creator/Program.cs | 7,659 | C# |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Diagnostics;
using System.IO;
using System.Linq;
namespace Yarp.Kubernetes.Tests.Utils;
public static class TestYaml
{
private static readonly IResourceSerializers _serializers = new ResourceSerializers();
public static T LoadFromEmbeddedStream<T>()
{
var stackTrace = new StackTrace();
var frame = 1;
var method = stackTrace.GetFrame(frame).GetMethod();
var reflectedType = method.ReflectedType;
while (true)
{
var assemblyName = reflectedType.Assembly.GetName().Name;
if (assemblyName == "System.Private.CoreLib")
{
frame += 1;
method = stackTrace.GetFrame(frame).GetMethod();
reflectedType = method.ReflectedType;
}
else
{
break;
}
}
var methodName = method.Name;
if (methodName == "MoveNext" && reflectedType.Name.StartsWith("<", StringComparison.Ordinal))
{
methodName = reflectedType.Name[1..reflectedType.Name.IndexOf('>', StringComparison.Ordinal)];
reflectedType = reflectedType.DeclaringType;
}
var resourceName = reflectedType.Assembly.GetManifestResourceNames().Single(str => str.EndsWith($"{reflectedType.Name}.{methodName}.yaml"));
var manifestStream = reflectedType.Assembly.GetManifestResourceStream(resourceName);
if (manifestStream is null)
{
throw new FileNotFoundException($"Could not find embedded stream {reflectedType.FullName}.{methodName}.yaml");
}
using var reader = new StreamReader(manifestStream);
return _serializers.DeserializeYaml<T>(reader.ReadToEnd());
}
}
| 33.545455 | 148 | 0.633604 | [
"MIT"
] | pipeline-foundation/reverse-proxy | test/Kubernetes.Tests/Utils/TestYaml.cs | 1,845 | C# |
using System;
using DClean.Domain.Interfaces;
namespace DClean.Domain.Common.BaseEntities
{
public abstract class SoftDeleteAuditedEntity<TUserPK> : UpdateAuditedEntity<TUserPK>, ISoftDeleteAuditedEntity<TUserPK>
where TUserPK : struct
{
public TUserPK? DeletedById { get; set; }
public DateTime? DeletedAt { get; set; }
public bool IsDeleted { get; set; }
}
public abstract class SoftDeleteAuditedEntity : SoftDeleteAuditedEntity<Guid>, IEntity<Guid>
{
public Guid Id { get; set; }
}
}
| 27.75 | 124 | 0.69009 | [
"MIT"
] | amro93/DClean | DClean/DClean.Domain/Common/SoftDeleteAuditedEntity.cs | 557 | C# |
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ASYNC_AWAIT_FORM.Properties
{
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources
{
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Resources()
{
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Resources.ResourceManager ResourceManager
{
get
{
if ((resourceMan == null))
{
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ASYNC_AWAIT_FORM.Properties.Resources", typeof(Resources).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
internal static global::System.Globalization.CultureInfo Culture
{
get
{
return resourceCulture;
}
set
{
resourceCulture = value;
}
}
}
}
| 39.267606 | 182 | 0.604735 | [
"MIT"
] | Rumirad64/ASYNC_AWAIT | ASYNC_AWAIT_FORM/Properties/Resources.Designer.cs | 2,790 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
namespace Restall.Ichnaea
{
public class DomainEventFunnel: IDisposable
{
private readonly WeakReference<object> observable;
private readonly Delegate observer;
public DomainEventFunnel(object observable, Source.Of<object> observer)
{
this.observable = new WeakReference<object>(observable);
this.observer = observer;
GetDomainEventAddMethodsFrom(observable).ForEach(e => e.Invoke(observable, new object[] {observer}));
}
private static IEnumerable<MethodInfo> GetDomainEventAddMethodsFrom(object observable)
{
return GetDomainEventsFrom(observable).Select(x => x.GetAddMethod(true));
}
private static IEnumerable<EventInfo> GetDomainEventsFrom(object observable)
{
return GetAllInstanceEventsFrom(observable)
.Where(x => x.EventHandlerType.GetGenericTypeDefinition() == typeof(Source.Of<>));
}
private static IEnumerable<EventInfo> GetAllInstanceEventsFrom(object observable)
{
return observable.GetType().GetEvents(BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
}
public void Dispose()
{
object strongReference;
if (!this.observable.TryGetTarget(out strongReference))
return;
GetDomainEventRemoveMethodsFrom(strongReference).ForEach(e => e.Invoke(strongReference, new object[] {this.observer}));
}
private static IEnumerable<MethodInfo> GetDomainEventRemoveMethodsFrom(object observable)
{
return GetDomainEventsFrom(observable).Select(x => x.GetRemoveMethod(true));
}
}
}
| 30.423077 | 122 | 0.771176 | [
"MIT"
] | pete-restall/Ichnaea | Ichnaea/DomainEventFunnel.cs | 1,584 | C# |
using System.Data.Common;
using NPoco;
using Umbraco.Cms.Infrastructure.Persistence;
namespace Umbraco.Cms.Persistence.SqlServer.Interceptors;
public abstract class SqlServerConnectionInterceptor : IProviderSpecificConnectionInterceptor
{
public string ProviderName => Constants.ProviderName;
public abstract DbConnection OnConnectionOpened(IDatabase database, DbConnection conn);
public virtual void OnConnectionClosing(IDatabase database, DbConnection conn)
{
}
}
| 28.823529 | 93 | 0.816327 | [
"MIT"
] | Lantzify/Umbraco-CMS | src/Umbraco.Cms.Persistence.SqlServer/Interceptors/SqlServerConnectionInterceptor.cs | 490 | C# |
//******************************************************************************************************
// PQIWSClient.cs - Gbtc
//
// Copyright © 2021, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
// the NOTICE file distributed with this work for additional information regarding copyright ownership.
// The GPA licenses this file to you under the MIT License (MIT), the "License"; you may not use this
// file except in compliance with the License. You may obtain a copy of the License at:
//
// http://opensource.org/licenses/MIT
//
// Unless agreed to in writing, the subject software distributed under the License is distributed on an
// "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
// License for the specific language governing permissions and limitations.
//
// Code Modification History:
// ----------------------------------------------------------------------------------------------------
// 07/22/2021 - Stephen C. Wills
// Generated original version of source code.
//
//******************************************************************************************************
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
namespace openXDA.PQI
{
public class PQIWSClient
{
private const string BasePath = "PQDashboard";
public PQIWSClient(string baseURL, Func<string> tokenProvider)
{
BaseURL = baseURL;
TokenProvider = tokenProvider;
}
private string BaseURL { get; }
private Func<string> TokenProvider { get; }
public async Task<FacilityInfo> GetFacilityInfoAsync(int facilityID, CancellationToken cancellationToken = default)
{
string url = BuildURL(BaseURL, BasePath, "GetFacilityInfo");
string queryString = $"facilityID={facilityID}";
void ConfigureRequest(HttpRequestMessage request)
{
request.RequestUri = new Uri($"{url}?{queryString}");
request.Method = HttpMethod.Get;
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", TokenProvider());
MediaTypeWithQualityHeaderValue acceptHeader = new MediaTypeWithQualityHeaderValue("application/json");
request.Headers.Accept.Add(acceptHeader);
}
using (HttpResponseMessage response = await HttpClient.SendRequestAsync(ConfigureRequest, cancellationToken))
return await response.Content.ReadAsAsync<FacilityInfo>();
}
public async Task<bool> IsImpactedAsync(int facilityID, double magnitude, double duration, CancellationToken cancellationToken = default)
{
string url = BuildURL(BaseURL, BasePath, "IsImpacted");
string queryString =
$"facilityID={facilityID}&" +
$"magnitude={magnitude}&" +
$"duration={duration}";
void ConfigureRequest(HttpRequestMessage request)
{
request.RequestUri = new Uri($"{url}?{queryString}");
request.Method = HttpMethod.Get;
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", TokenProvider());
MediaTypeWithQualityHeaderValue acceptHeader = new MediaTypeWithQualityHeaderValue("application/json");
request.Headers.Accept.Add(acceptHeader);
}
using (HttpResponseMessage response = await HttpClient.SendRequestAsync(ConfigureRequest, cancellationToken))
return await response.Content.ReadAsAsync<bool>();
}
public async Task<List<Equipment>> GetImpactedEquipmentAsync(int facilityID, double magnitude, double duration, CancellationToken cancellationToken = default)
{
string url = BuildURL(BaseURL, BasePath, "GetEquipmentImpacted");
string queryString =
$"facilityID={facilityID}&" +
$"magnitude={magnitude}&" +
$"duration={duration}";
void ConfigureRequest(HttpRequestMessage request)
{
request.RequestUri = new Uri($"{url}?{queryString}");
request.Method = HttpMethod.Get;
request.Headers.Authorization = new AuthenticationHeaderValue("Bearer", TokenProvider());
MediaTypeWithQualityHeaderValue acceptHeader = new MediaTypeWithQualityHeaderValue("application/json");
request.Headers.Accept.Add(acceptHeader);
}
using (HttpResponseMessage response = await HttpClient.SendRequestAsync(ConfigureRequest, cancellationToken))
return await response.Content.ReadAsAsync<List<Equipment>>();
}
private static string BuildURL(params string[] parts)
{
const string Separator = "/";
string combinedPath = "";
foreach (string path in parts)
{
if (path == null)
throw new ArgumentNullException(nameof(parts), "One of the strings in the array is null.");
if (path.Length == 0)
continue;
if (combinedPath.Length == 0)
combinedPath = path;
else if (path.StartsWith(Separator))
combinedPath = path;
else if (combinedPath.EndsWith(Separator))
combinedPath += path;
else
combinedPath += Separator + path;
}
return combinedPath;
}
private static HttpClient HttpClient =>
HttpClientProvider.GetClient();
}
}
| 42.092199 | 166 | 0.597473 | [
"MIT"
] | GridProtectionAlliance/openXDA | Source/Libraries/openXDA.PQI/PQIWSClient.cs | 5,938 | C# |
#if MapRenderV1
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
namespace WzComparerR2.MapRender.Patches
{
public class FootholdPatch : RenderPatch
{
public FootholdPatch()
{
}
private int x1;
private int y1;
private int x2;
private int y2;
private int prev;
private int next;
private int piece;
public int X1
{
get { return x1; }
set { x1 = value; }
}
public int Y1
{
get { return y1; }
set { y1 = value; }
}
public int X2
{
get { return x2; }
set { x2 = value; }
}
public int Y2
{
get { return y2; }
set { y2 = value; }
}
public int Prev
{
get { return prev; }
set { prev = value; }
}
public int Next
{
get { return next; }
set { next = value; }
}
public int Piece
{
get { return piece; }
set { piece = value; }
}
public override void Update(GameTime gameTime, RenderEnv env)
{
}
public override void Draw(GameTime gameTime, RenderEnv env)
{
Vector2 origin = env.Camera.Origin;
Point p1 = new Point(x1 - (int)origin.X, y1 - (int)origin.Y);
Point p2 = new Point(x2 - (int)origin.X, y2 - (int)origin.Y);
Color color = MathHelper2.Lerp(colorTable, (float)gameTime.TotalGameTime.TotalMilliseconds % 10000 / 2000);
if (x1 != x2 && y1 != y2)
{
}
env.Sprite.DrawLine(p1, p2, 2, color);
}
private static Color[] colorTable = new Color[] {
Color.Red,
Color.Yellow,
Color.Blue,
Color.Purple,
Color.Red};
}
}
#endif | 22.777778 | 119 | 0.47561 | [
"MIT"
] | Atomadeus/WzComparerR2 | WzComparerR2.MapRender/Patches/FootholdPatch.cs | 2,052 | C# |
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the glue-2017-03-31.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Text;
using System.Xml.Serialization;
using Amazon.Glue.Model;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Transform;
using Amazon.Runtime.Internal.Util;
using ThirdParty.Json.LitJson;
namespace Amazon.Glue.Model.Internal.MarshallTransformations
{
/// <summary>
/// SchemaChangePolicy Marshaller
/// </summary>
public class SchemaChangePolicyMarshaller : IRequestMarshaller<SchemaChangePolicy, JsonMarshallerContext>
{
/// <summary>
/// Unmarshaller the response from the service to the response class.
/// </summary>
/// <param name="requestObject"></param>
/// <param name="context"></param>
/// <returns></returns>
public void Marshall(SchemaChangePolicy requestObject, JsonMarshallerContext context)
{
if(requestObject.IsSetDeleteBehavior())
{
context.Writer.WritePropertyName("DeleteBehavior");
context.Writer.Write(requestObject.DeleteBehavior);
}
if(requestObject.IsSetUpdateBehavior())
{
context.Writer.WritePropertyName("UpdateBehavior");
context.Writer.Write(requestObject.UpdateBehavior);
}
}
/// <summary>
/// Singleton Marshaller.
/// </summary>
public readonly static SchemaChangePolicyMarshaller Instance = new SchemaChangePolicyMarshaller();
}
} | 34.470588 | 111 | 0.657423 | [
"Apache-2.0"
] | philasmar/aws-sdk-net | sdk/src/Services/Glue/Generated/Model/Internal/MarshallTransformations/SchemaChangePolicyMarshaller.cs | 2,344 | C# |
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="PropertyGrid.cs" company="PropertyTools">
// Copyright (c) 2014 PropertyTools contributors
// </copyright>
// <summary>
// Specifies how the label widths are shared.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace PropertyTools.Wpf
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Input;
using System.Windows.Media;
using PropertyTools.DataAnnotations;
using HorizontalAlignment = System.Windows.HorizontalAlignment;
/// <summary>
/// Specifies how the label widths are shared.
/// </summary>
public enum LabelWidthSharing
{
/// <summary>
/// The shared in tab.
/// </summary>
SharedInTab,
/// <summary>
/// The shared in group.
/// </summary>
SharedInGroup,
/// <summary>
/// The not shared.
/// </summary>
NotShared
}
/// <summary>
/// Specifies the layout for checkboxes.
/// </summary>
public enum CheckBoxLayout
{
/// <summary>
/// Show the header, then the check box without content
/// </summary>
Header,
/// <summary>
/// Hide the header, show the check box with the display name as content
/// </summary>
HideHeader,
/// <summary>
/// Collapse the header, show the check box with the display name as content
/// </summary>
CollapseHeader
}
/// <summary>
/// Specifies the visibility of the tab strip.
/// </summary>
public enum TabVisibility
{
/// <summary>
/// The tabs are visible.
/// </summary>
Visible,
/// <summary>
/// The tabs are visible if there is more than one tab.
/// </summary>
VisibleIfMoreThanOne,
/// <summary>
/// The tab strip is collapsed. The contents of the tab pages will be stacked vertically in the control.
/// </summary>
Collapsed
}
/// <summary>
/// The property control.
/// </summary>
[TemplatePart(Name = PartTabs, Type = typeof(TabControl))]
[TemplatePart(Name = PartPanel, Type = typeof(StackPanel))]
[TemplatePart(Name = PartScrollViewer, Type = typeof(ScrollViewer))]
public class PropertyGrid : Control, IPropertyGridOptions
{
/// <summary>
/// Identifies the <see cref="CategoryControlTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty CategoryControlTemplateProperty = DependencyProperty.Register(
nameof(CategoryControlTemplate),
typeof(ControlTemplate),
typeof(PropertyGrid),
new UIPropertyMetadata(null));
/// <summary>
/// Identifies the <see cref="CategoryControlType"/> dependency property.
/// </summary>
public static readonly DependencyProperty CategoryControlTypeProperty = DependencyProperty.Register(
nameof(CategoryControlType),
typeof(CategoryControlType),
typeof(PropertyGrid),
new UIPropertyMetadata(CategoryControlType.GroupBox, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="CategoryHeaderTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty CategoryHeaderTemplateProperty = DependencyProperty.Register(
nameof(CategoryHeaderTemplate),
typeof(DataTemplate),
typeof(PropertyGrid));
/// <summary>
/// Identifies the <see cref="DescriptionIconAlignment"/> dependency property.
/// </summary>
public static readonly DependencyProperty DescriptionIconAlignmentProperty = DependencyProperty.Register(
nameof(DescriptionIconAlignment),
typeof(HorizontalAlignment),
typeof(PropertyGrid),
new UIPropertyMetadata(HorizontalAlignment.Right, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="DescriptionIcon"/> dependency property.
/// </summary>
public static readonly DependencyProperty DescriptionIconProperty = DependencyProperty.Register(
nameof(DescriptionIcon), typeof(ImageSource), typeof(PropertyGrid));
/// <summary>
/// Identifies the <see cref="EnableLabelWidthResizing"/> dependency property.
/// </summary>
public static readonly DependencyProperty EnableLabelWidthResizingProperty = DependencyProperty.Register(
nameof(EnableLabelWidthResizing),
typeof(bool),
typeof(PropertyGrid),
new UIPropertyMetadata(true, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="EnumAsRadioButtonsLimit"/> dependency property.
/// </summary>
public static readonly DependencyProperty EnumAsRadioButtonsLimitProperty = DependencyProperty.Register(
nameof(EnumAsRadioButtonsLimit),
typeof(int),
typeof(PropertyGrid),
new UIPropertyMetadata(4, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="Indentation"/> dependency property.
/// </summary>
public static readonly DependencyProperty IndentationProperty = DependencyProperty.Register(
nameof(Indentation),
typeof(double),
typeof(PropertyGrid),
new UIPropertyMetadata(16d));
/// <summary>
/// Identifies the <see cref="LabelWidthSharing"/> dependency property.
/// </summary>
public static readonly DependencyProperty LabelWidthSharingProperty = DependencyProperty.Register(
nameof(LabelWidthSharing),
typeof(LabelWidthSharing),
typeof(PropertyGrid),
new UIPropertyMetadata(LabelWidthSharing.SharedInTab, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="MaximumLabelWidth"/> dependency property.
/// </summary>
public static readonly DependencyProperty MaximumLabelWidthProperty = DependencyProperty.Register(
nameof(MaximumLabelWidth),
typeof(double),
typeof(PropertyGrid),
new UIPropertyMetadata(double.MaxValue));
/// <summary>
/// Identifies the <see cref="MinimumLabelWidth"/> dependency property.
/// </summary>
public static readonly DependencyProperty MinimumLabelWidthProperty = DependencyProperty.Register(
nameof(MinimumLabelWidth),
typeof(double),
typeof(PropertyGrid),
new UIPropertyMetadata(70.0));
/// <summary>
/// Identifies the <see cref="MoveFocusOnEnter"/> dependency property.
/// </summary>
public static readonly DependencyProperty MoveFocusOnEnterProperty = DependencyProperty.Register(
nameof(MoveFocusOnEnter),
typeof(bool),
typeof(PropertyGrid),
new UIPropertyMetadata(false));
/// <summary>
/// Identifies the <see cref="ControlFactory"/> dependency property.
/// </summary>
public static readonly DependencyProperty ControlFactoryProperty = DependencyProperty.Register(
nameof(ControlFactory),
typeof(IPropertyGridControlFactory),
typeof(PropertyGrid),
new UIPropertyMetadata(new PropertyGridControlFactory()));
/// <summary>
/// Identifies the <see cref="PropertyItem"/> dependency property.
/// </summary>
public static readonly DependencyProperty OperatorProperty = DependencyProperty.Register(
nameof(Operator),
typeof(IPropertyGridOperator),
typeof(PropertyGrid),
new UIPropertyMetadata(new PropertyGridOperator()));
/// <summary>
/// Identifies the <see cref="RequiredAttribute"/> dependency property.
/// </summary>
public static readonly DependencyProperty RequiredAttributeProperty = DependencyProperty.Register(
nameof(RequiredAttribute),
typeof(Type),
typeof(PropertyGrid),
new UIPropertyMetadata(null, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="SelectedObject"/> dependency property.
/// </summary>
public static readonly DependencyProperty SelectedObjectProperty = DependencyProperty.Register(
nameof(SelectedObject),
typeof(object),
typeof(PropertyGrid),
new UIPropertyMetadata(null, (s, e) => ((PropertyGrid)s).OnSelectedObjectChanged(e)));
/// <summary>
/// Identifies the <see cref="SelectedObjects"/> dependency property.
/// </summary>
public static readonly DependencyProperty SelectedObjectsProperty = DependencyProperty.Register(
nameof(SelectedObjects),
typeof(IEnumerable),
typeof(PropertyGrid),
new UIPropertyMetadata(null, (s, e) => ((PropertyGrid)s).SelectedObjectsChanged(e)));
/// <summary>
/// Identifies the <see cref="SelectedTabIndex"/> dependency property.
/// </summary>
public static readonly DependencyProperty SelectedTabIndexProperty = DependencyProperty.Register(
nameof(SelectedTabIndex),
typeof(int),
typeof(PropertyGrid),
new FrameworkPropertyMetadata(0, (s, e) => ((PropertyGrid)s).SelectedTabIndexChanged(e)));
/// <summary>
/// The selected tab id property.
/// </summary>
public static readonly DependencyProperty SelectedTabIdProperty = DependencyProperty.Register(
nameof(SelectedTabId),
typeof(string),
typeof(PropertyGrid),
new UIPropertyMetadata(null, (s, e) => ((PropertyGrid)s).SelectedTabChanged(e)));
/// <summary>
/// Identifies the <see cref="CheckBoxLayout"/> dependency property.
/// </summary>
public static readonly DependencyProperty CheckBoxLayoutProperty = DependencyProperty.Register(
nameof(CheckBoxLayout),
typeof(CheckBoxLayout),
typeof(PropertyGrid),
new UIPropertyMetadata(CheckBoxLayout.Header, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="ShowDeclaredOnly"/> dependency property.
/// </summary>
public static readonly DependencyProperty ShowDeclaredOnlyProperty = DependencyProperty.Register(
nameof(ShowDeclaredOnly),
typeof(bool),
typeof(PropertyGrid),
new UIPropertyMetadata(false, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="ShowDescriptionIcons"/> dependency property.
/// </summary>
public static readonly DependencyProperty ShowDescriptionIconsProperty = DependencyProperty.Register(
nameof(ShowDescriptionIcons),
typeof(bool),
typeof(PropertyGrid),
new UIPropertyMetadata(true, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="ShowReadOnlyProperties"/> dependency property.
/// </summary>
public static readonly DependencyProperty ShowReadOnlyPropertiesProperty = DependencyProperty.Register(
nameof(ShowReadOnlyProperties),
typeof(bool),
typeof(PropertyGrid),
new UIPropertyMetadata(true, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="TabHeaderTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty TabHeaderTemplateProperty = DependencyProperty.Register(
nameof(TabHeaderTemplate),
typeof(DataTemplate),
typeof(PropertyGrid));
/// <summary>
/// Identifies the <see cref="TabPageHeaderTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty TabPageHeaderTemplateProperty = DependencyProperty.Register(
nameof(TabPageHeaderTemplate),
typeof(DataTemplate),
typeof(PropertyGrid),
new UIPropertyMetadata(null));
/// <summary>
/// Identifies the <see cref="TabStripPlacement"/> dependency property.
/// </summary>
public static readonly DependencyProperty TabStripPlacementProperty = DependencyProperty.Register(
nameof(TabStripPlacement),
typeof(Dock),
typeof(PropertyGrid),
new UIPropertyMetadata(Dock.Top));
/// <summary>
/// Identifies the <see cref="ToolTipTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty ToolTipTemplateProperty = DependencyProperty.Register(
nameof(ToolTipTemplate),
typeof(DataTemplate),
typeof(PropertyGrid),
new UIPropertyMetadata(null));
/// <summary>
/// Identifies the <see cref="TabVisibility"/> dependency property.
/// </summary>
public static readonly DependencyProperty TabVisibilityProperty = DependencyProperty.Register(
nameof(TabVisibility),
typeof(TabVisibility),
typeof(PropertyGrid),
new UIPropertyMetadata(TabVisibility.Visible, AppearanceChanged));
/// <summary>
/// Identifies the <see cref="ValidationErrorStyle"/> dependency property.
/// </summary>
public static readonly DependencyProperty ValidationErrorStyleProperty = DependencyProperty.Register(
nameof(ValidationErrorStyle),
typeof(Style),
typeof(PropertyGrid),
new UIPropertyMetadata(null));
/// <summary>
/// Identifies the <see cref="ValidationErrorTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty ValidationErrorTemplateProperty = DependencyProperty.Register(
nameof(ValidationErrorTemplate),
typeof(DataTemplate),
typeof(PropertyGrid),
new UIPropertyMetadata(null));
/// <summary>
/// Identifies the <see cref="ValidationTemplate"/> dependency property.
/// </summary>
public static readonly DependencyProperty ValidationTemplateProperty = DependencyProperty.Register(
nameof(ValidationTemplate),
typeof(ControlTemplate),
typeof(PropertyGrid),
new UIPropertyMetadata(null));
/// <summary>
/// The panel part name.
/// </summary>
private const string PartPanel = "PART_Panel";
/// <summary>
/// The scroll control part name.
/// </summary>
private const string PartScrollViewer = "PART_ScrollViewer";
/// <summary>
/// The tab control part name.
/// </summary>
private const string PartTabs = "PART_Tabs";
/// <summary>
/// The value to visibility converter.
/// </summary>
private static readonly ValueToVisibilityConverter ValueToVisibilityConverter = new ValueToVisibilityConverter();
/// <summary>
/// The value to boolean converter.
/// </summary>
private static readonly ValueToBooleanConverter ValueToBooleanConverter = new ValueToBooleanConverter();
/// <summary>
/// Converts a list of values to a boolean value. Returns <c>true</c> if all values equal the converter parameter.
/// </summary>
private static readonly AllMultiValueConverter AllMultiValueConverter = new AllMultiValueConverter();
/// <summary>
/// The <c>null</c> to boolean converter.
/// </summary>
private static readonly NullToBoolConverter NullToBoolConverter = new NullToBoolConverter { NullValue = false };
/// <summary>
/// The zero to visibility converter.
/// </summary>
private static readonly ZeroToVisibilityConverter ZeroToVisibilityConverter = new ZeroToVisibilityConverter();
/// <summary>
/// The current selected object type.
/// </summary>
private Type currentSelectedObjectType;
/// <summary>
/// The panel control.
/// </summary>
private StackPanel panelControl;
/// <summary>
/// The scroll viewer.
/// </summary>
private ScrollViewer scrollViewer;
/// <summary>
/// The tab control.
/// </summary>
private TabControl tabControl;
/// <summary>
/// Initializes static members of the <see cref="PropertyGrid" /> class.
/// </summary>
static PropertyGrid()
{
DefaultStyleKeyProperty.OverrideMetadata(
typeof(PropertyGrid), new FrameworkPropertyMetadata(typeof(PropertyGrid)));
}
/// <summary>
/// Gets or sets the category control template.
/// </summary>
/// <value>The category control template.</value>
public ControlTemplate CategoryControlTemplate
{
get
{
return (ControlTemplate)this.GetValue(CategoryControlTemplateProperty);
}
set
{
this.SetValue(CategoryControlTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets the type of the category control.
/// </summary>
/// <value>The type of the category control.</value>
public CategoryControlType CategoryControlType
{
get
{
return (CategoryControlType)this.GetValue(CategoryControlTypeProperty);
}
set
{
this.SetValue(CategoryControlTypeProperty, value);
}
}
/// <summary>
/// Gets or sets the category header template.
/// </summary>
/// <value>The category header template.</value>
public DataTemplate CategoryHeaderTemplate
{
get
{
return (DataTemplate)this.GetValue(CategoryHeaderTemplateProperty);
}
set
{
this.SetValue(CategoryHeaderTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets CurrentObject.
/// </summary>
public object CurrentObject { get; set; }
/// <summary>
/// Gets or sets the description icon.
/// </summary>
/// <value>The description icon.</value>
public ImageSource DescriptionIcon
{
get
{
return (ImageSource)this.GetValue(DescriptionIconProperty);
}
set
{
this.SetValue(DescriptionIconProperty, value);
}
}
/// <summary>
/// Gets or sets the alignment for description icons.
/// </summary>
/// <value>The description icon alignment.</value>
public HorizontalAlignment DescriptionIconAlignment
{
get
{
return (HorizontalAlignment)this.GetValue(DescriptionIconAlignmentProperty);
}
set
{
this.SetValue(DescriptionIconAlignmentProperty, value);
}
}
/// <summary>
/// Gets or sets a value indicating whether label column resizing is enabled.
/// </summary>
public bool EnableLabelWidthResizing
{
get
{
return (bool)this.GetValue(EnableLabelWidthResizingProperty);
}
set
{
this.SetValue(EnableLabelWidthResizingProperty, value);
}
}
/// <summary>
/// Gets or sets the maximum number of values to show for radio buttons lists.
/// </summary>
/// <value>The limit.</value>
public int EnumAsRadioButtonsLimit
{
get
{
return (int)this.GetValue(EnumAsRadioButtonsLimitProperty);
}
set
{
this.SetValue(EnumAsRadioButtonsLimitProperty, value);
}
}
/// <summary>
/// Gets or sets the indentation.
/// </summary>
/// <value>
/// The indentation.
/// </value>
public double Indentation
{
get
{
return (double)this.GetValue(IndentationProperty);
}
set
{
this.SetValue(IndentationProperty, value);
}
}
/// <summary>
/// Gets or sets the type of label width sharing.
/// </summary>
/// <value>The label width sharing.</value>
public LabelWidthSharing LabelWidthSharing
{
get
{
return (LabelWidthSharing)this.GetValue(LabelWidthSharingProperty);
}
set
{
this.SetValue(LabelWidthSharingProperty, value);
}
}
/// <summary>
/// Gets or sets the maximum width of the label.
/// </summary>
/// <value>The maximum width of the label.</value>
public double MaximumLabelWidth
{
get
{
return (double)this.GetValue(MaximumLabelWidthProperty);
}
set
{
this.SetValue(MaximumLabelWidthProperty, value);
}
}
/// <summary>
/// Gets or sets the minimum width of the property labels.
/// </summary>
/// <value>The minimum width.</value>
public double MinimumLabelWidth
{
get
{
return (double)this.GetValue(MinimumLabelWidthProperty);
}
set
{
this.SetValue(MinimumLabelWidthProperty, value);
}
}
/// <summary>
/// Gets or sets a value indicating whether to move focus on unhandled Enter key down events.
/// </summary>
/// <value><c>true</c> if move focus on enter; otherwise, <c>false</c> .</value>
public bool MoveFocusOnEnter
{
get
{
return (bool)this.GetValue(MoveFocusOnEnterProperty);
}
set
{
this.SetValue(MoveFocusOnEnterProperty, value);
}
}
/// <summary>
/// Gets or sets the control factory.
/// </summary>
public IPropertyGridControlFactory ControlFactory
{
get
{
return (IPropertyGridControlFactory)this.GetValue(ControlFactoryProperty);
}
set
{
this.SetValue(ControlFactoryProperty, value);
}
}
/// <summary>
/// Gets or sets the operator.
/// </summary>
/// <value>The operator.</value>
public IPropertyGridOperator Operator
{
get
{
return (IPropertyGridOperator)this.GetValue(OperatorProperty);
}
set
{
this.SetValue(OperatorProperty, value);
}
}
/// <summary>
/// Gets or sets the selected object.
/// </summary>
/// <value>The selected object.</value>
public object SelectedObject
{
get
{
return this.GetValue(SelectedObjectProperty);
}
set
{
this.SetValue(SelectedObjectProperty, value);
}
}
/// <summary>
/// Gets or sets the selected objects.
/// </summary>
/// <value>The selected objects.</value>
public IEnumerable SelectedObjects
{
get
{
return (IEnumerable)this.GetValue(SelectedObjectsProperty);
}
set
{
this.SetValue(SelectedObjectsProperty, value);
}
}
/// <summary>
/// Gets or sets the index of the selected tab.
/// </summary>
/// <value>The index of the selected tab.</value>
public int SelectedTabIndex
{
get
{
return (int)this.GetValue(SelectedTabIndexProperty);
}
set
{
this.SetValue(SelectedTabIndexProperty, value);
}
}
/// <summary>
/// Gets or sets the selected tab id.
/// </summary>
public string SelectedTabId
{
get
{
return (string)this.GetValue(SelectedTabIdProperty);
}
set
{
this.SetValue(SelectedTabIdProperty, value);
}
}
/// <summary>
/// Gets or sets the check box layout.
/// </summary>
/// <value>The check box layout.</value>
public CheckBoxLayout CheckBoxLayout
{
get
{
return (CheckBoxLayout)this.GetValue(CheckBoxLayoutProperty);
}
set
{
this.SetValue(CheckBoxLayoutProperty, value);
}
}
/// <summary>
/// Gets or sets a value indicating whether to show description icons.
/// </summary>
public bool ShowDescriptionIcons
{
get
{
return (bool)this.GetValue(ShowDescriptionIconsProperty);
}
set
{
this.SetValue(ShowDescriptionIconsProperty, value);
}
}
/// <summary>
/// Gets or sets the tab header template.
/// </summary>
/// <value>The tab header template.</value>
public DataTemplate TabHeaderTemplate
{
get
{
return (DataTemplate)this.GetValue(TabHeaderTemplateProperty);
}
set
{
this.SetValue(TabHeaderTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets the tab page header template.
/// </summary>
/// <value>The tab page header template.</value>
public DataTemplate TabPageHeaderTemplate
{
get
{
return (DataTemplate)this.GetValue(TabPageHeaderTemplateProperty);
}
set
{
this.SetValue(TabPageHeaderTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets the tab strip placement.
/// </summary>
/// <value>The tab strip placement.</value>
public Dock TabStripPlacement
{
get
{
return (Dock)this.GetValue(TabStripPlacementProperty);
}
set
{
this.SetValue(TabStripPlacementProperty, value);
}
}
/// <summary>
/// Gets or sets the tool tip template.
/// </summary>
/// <value>The tool tip template.</value>
public DataTemplate ToolTipTemplate
{
get
{
return (DataTemplate)this.GetValue(ToolTipTemplateProperty);
}
set
{
this.SetValue(ToolTipTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets a value indicating the tab visibility state.
/// </summary>
/// <value>The tab visibility state.</value>
public TabVisibility TabVisibility
{
get
{
return (TabVisibility)this.GetValue(TabVisibilityProperty);
}
set
{
this.SetValue(TabVisibilityProperty, value);
}
}
/// <summary>
/// Gets or sets the validation error style.
/// </summary>
/// <value>The validation error style.</value>
public Style ValidationErrorStyle
{
get
{
return (Style)this.GetValue(ValidationErrorStyleProperty);
}
set
{
this.SetValue(ValidationErrorStyleProperty, value);
}
}
/// <summary>
/// Gets or sets the validation error template.
/// </summary>
/// <value>The validation error template.</value>
public DataTemplate ValidationErrorTemplate
{
get
{
return (DataTemplate)this.GetValue(ValidationErrorTemplateProperty);
}
set
{
this.SetValue(ValidationErrorTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets the validation template.
/// </summary>
/// <value>The validation template.</value>
public ControlTemplate ValidationTemplate
{
get
{
return (ControlTemplate)this.GetValue(ValidationTemplateProperty);
}
set
{
this.SetValue(ValidationTemplateProperty, value);
}
}
/// <summary>
/// Gets or sets the required attribute type.
/// </summary>
/// <value>The required attribute type.</value>
public Type RequiredAttribute
{
get
{
return (Type)this.GetValue(RequiredAttributeProperty);
}
set
{
this.SetValue(RequiredAttributeProperty, value);
}
}
/// <summary>
/// Gets or sets a value indicating whether to show declared properties only.
/// </summary>
/// <value><c>true</c> if only declared properties should be shown; otherwise, <c>false</c> .</value>
public bool ShowDeclaredOnly
{
get
{
return (bool)this.GetValue(ShowDeclaredOnlyProperty);
}
set
{
this.SetValue(ShowDeclaredOnlyProperty, value);
}
}
/// <summary>
/// Gets or sets a value indicating whether to show read only properties].
/// </summary>
/// <value><c>true</c> if read only properties should be shown; otherwise, <c>false</c> .</value>
public bool ShowReadOnlyProperties
{
get
{
return (bool)this.GetValue(ShowReadOnlyPropertiesProperty);
}
set
{
this.SetValue(ShowReadOnlyPropertiesProperty, value);
}
}
/// <summary>
/// Creates the controls.
/// </summary>
/// <param name="instance">The instance.</param>
/// <param name="tabs">The tabs.</param>
public virtual void CreateControls(object instance, IEnumerable<Tab> tabs)
{
if (this.tabControl == null)
{
return;
}
this.tabControl.Items.Clear();
this.panelControl.Children.Clear();
this.tabControl.DataContext = instance;
// Set padding to zero - control margin on the tab items instead
this.tabControl.Padding = new Thickness(0);
this.tabControl.Visibility = Visibility.Visible;
this.scrollViewer.Visibility = Visibility.Hidden;
if (tabs == null)
{
return;
}
foreach (var tab in tabs)
{
bool fillTab = tab.Groups.Count == 1 && tab.Groups[0].Properties.Count == 1
&& tab.Groups[0].Properties[0].FillTab;
// Create the panel for the tab content
var tabPanel = new Grid();
if (this.LabelWidthSharing == LabelWidthSharing.SharedInTab)
{
Grid.SetIsSharedSizeScope(tabPanel, true);
}
var tabItem = new TabItem { Header = tab, Padding = new Thickness(4), Name = tab.Id ?? string.Empty };
this.ControlFactory.UpdateTabForValidationResults(tab, instance);
if (fillTab)
{
tabItem.Content = tabPanel;
}
else
{
tabItem.Content = new ScrollViewer
{
VerticalScrollBarVisibility = ScrollBarVisibility.Auto,
Content = tabPanel,
Focusable = false
};
}
this.tabControl.Items.Add(tabItem);
// set no margin if 'fill tab' and no tab page header
tabPanel.Margin = new Thickness(fillTab && this.TabPageHeaderTemplate == null ? 0 : 4);
if (this.TabHeaderTemplate != null)
{
tabItem.Header = tab;
tabItem.HeaderTemplate = this.TabHeaderTemplate;
}
this.AddTabPageHeader(tab, tabPanel);
int i = 0;
foreach (var g in tab.Groups)
{
var groupPanel = this.CreatePropertyPanel(g, tabPanel, i++, fillTab);
foreach (var pi in g.Properties)
{
// create and add the property panel (label, tooltip icon and property control)
this.AddPropertyPanel(groupPanel, pi, instance, tab);
}
}
}
int index = this.tabControl.SelectedIndex;
if (index >= this.tabControl.Items.Count || (uint)index == 0xffffffff)
{
index = 0;
}
if (this.tabControl.Items.Count > 0)
{
this.tabControl.SelectedItem = this.tabControl.Items[index];
}
}
/// <summary>
/// Creates the controls (not using tab control).
/// </summary>
/// <param name="instance">The instance.</param>
/// <param name="tabs">The tab collection.</param>
public virtual void CreateControlsTabless(object instance, IEnumerable<Tab> tabs)
{
if (this.tabControl == null)
{
return;
}
this.tabControl.Items.Clear();
this.panelControl.Children.Clear();
this.tabControl.Visibility = Visibility.Hidden;
this.scrollViewer.Visibility = Visibility.Visible;
if (tabs == null)
{
return;
}
this.panelControl.DataContext = instance;
foreach (var tab in tabs)
{
// Create the panel for the properties
var panel = new Grid();
if (this.LabelWidthSharing == LabelWidthSharing.SharedInTab)
{
Grid.SetIsSharedSizeScope(panel, true);
}
this.panelControl.Children.Add(panel);
this.AddTabPageHeader(tab, panel);
// Add the groups
int i = 0;
foreach (var g in tab.Groups)
{
var propertyPanel = this.CreatePropertyPanel(g, panel, i++, false);
foreach (var pi in g.Properties)
{
// create and add the property panel (label, tooltip icon and property control)
this.AddPropertyPanel(propertyPanel, pi, instance, tab);
}
}
}
}
/// <summary>
/// When overridden in a derived class, is invoked whenever application code or internal processes call <see
/// cref="M:System.Windows.FrameworkElement.ApplyTemplate" /> .
/// </summary>
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
this.tabControl = this.Template.FindName(PartTabs, this) as TabControl;
this.panelControl = this.Template.FindName(PartPanel, this) as StackPanel;
this.scrollViewer = this.Template.FindName(PartScrollViewer, this) as ScrollViewer;
this.UpdateControls();
}
/// <summary>
/// Creates a tool tip.
/// </summary>
/// <param name="content">The content.</param>
/// <returns>
/// The tool tip.
/// </returns>
protected virtual object CreateToolTip(string content)
{
if (string.IsNullOrWhiteSpace(content))
{
return null;
}
if (this.ToolTipTemplate == null)
{
return content;
}
return new ContentControl { ContentTemplate = this.ToolTipTemplate, Content = content };
}
/// <summary>
/// Invoked when an unhandled KeyDown attached event reaches an element in its route that is derived from this class. Implement this method to add class handling for this event.
/// </summary>
/// <param name="e">The <see cref="T:System.Windows.Input.KeyEventArgs" /> that contains the event data.</param>
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (this.MoveFocusOnEnter && e.Key == Key.Enter)
{
var textBox = e.OriginalSource as TextBox;
if (textBox != null)
{
if (textBox.AcceptsReturn)
{
return;
}
var bindingExpression = textBox.GetBindingExpression(TextBox.TextProperty);
if (bindingExpression != null && bindingExpression.Status == BindingStatus.Active)
{
bindingExpression.UpdateSource();
textBox.CaretIndex = textBox.Text.Length;
textBox.SelectAll();
}
}
var uie = e.OriginalSource as UIElement;
if (uie != null)
{
uie.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next));
}
e.Handled = true;
}
}
/// <summary>
/// Called when the selected object is changed.
/// </summary>
/// <param name="e">The e.</param>
protected virtual void OnSelectedObjectChanged(DependencyPropertyChangedEventArgs e)
{
this.CurrentObject = this.SelectedObject;
this.UpdateControls();
}
/// <summary>
/// The appearance changed.
/// </summary>
/// <param name="d">The d.</param>
/// <param name="e">The e.</param>
private static void AppearanceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
((PropertyGrid)d).UpdateControls();
}
/// <summary>
/// Creates the content control and property panel.
/// </summary>
/// <param name="g">The g.</param>
/// <param name="tabItems">The tab items.</param>
/// <param name="index">The index.</param>
/// <param name="fillTab">Stretch the panel if set to <c>true</c>.</param>
/// <returns>
/// The property panel.
/// </returns>
private Panel CreatePropertyPanel(Group g, Grid tabItems, int index, bool fillTab)
{
if (fillTab)
{
var p = new Grid();
tabItems.Children.Add(p);
Grid.SetRow(p, tabItems.RowDefinitions.Count);
tabItems.RowDefinitions.Add(
new System.Windows.Controls.RowDefinition { Height = new GridLength(1, GridUnitType.Star) });
return p;
}
var propertyPanel = new StackPanelEx();
HeaderedContentControl groupContentControl = null;
switch (this.CategoryControlType)
{
case CategoryControlType.GroupBox:
groupContentControl = new GroupBox { Margin = new Thickness(0, 4, 0, 4) };
break;
case CategoryControlType.Expander:
groupContentControl = new Expander { IsExpanded = index == 0 };
break;
case CategoryControlType.Template:
groupContentControl = new HeaderedContentControl
{
Template = this.CategoryControlTemplate,
Focusable = false
};
break;
}
if (groupContentControl != null)
{
if (this.CategoryHeaderTemplate != null)
{
groupContentControl.HeaderTemplate = this.CategoryHeaderTemplate;
groupContentControl.Header = g;
}
else
{
groupContentControl.Header = g.Header;
}
// Hide the group control if all child properties are invisible.
groupContentControl.SetBinding(
UIElement.VisibilityProperty,
new Binding("VisibleChildrenCount")
{
Source = propertyPanel,
Converter = ZeroToVisibilityConverter
});
if (this.LabelWidthSharing == LabelWidthSharing.SharedInGroup)
{
Grid.SetIsSharedSizeScope(propertyPanel, true);
}
groupContentControl.Content = propertyPanel;
tabItems.Children.Add(groupContentControl);
Grid.SetRow(groupContentControl, tabItems.RowDefinitions.Count);
tabItems.RowDefinitions.Add(new System.Windows.Controls.RowDefinition { Height = GridLength.Auto });
}
return propertyPanel;
}
/// <summary>
/// Adds the tab page header if TabPageHeaderTemplate is specified.
/// </summary>
/// <param name="tab">The tab.</param>
/// <param name="panel">The tab panel.</param>
private void AddTabPageHeader(Tab tab, Grid panel)
{
if (this.TabPageHeaderTemplate == null)
{
return;
}
panel.RowDefinitions.Add(new System.Windows.Controls.RowDefinition { Height = GridLength.Auto });
var hc = new ContentControl
{
Focusable = false,
ContentTemplate = this.TabPageHeaderTemplate,
Content = tab
};
panel.Children.Add(hc);
}
/// <summary>
/// Creates and adds the property panel.
/// </summary>
/// <param name="panel">The panel where the property panel should be added.</param>
/// <param name="pi">The property.</param>
/// <param name="instance">The instance.</param>
/// <param name="tab">The tab.</param>
[SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1126:PrefixCallsCorrectly", Justification = "Reviewed. Suppression is OK here.")]
private void AddPropertyPanel(Panel panel, PropertyItem pi, object instance, Tab tab)
{
var propertyPanel = new Grid();
if (!pi.FillTab)
{
propertyPanel.Margin = new Thickness(2);
}
var labelColumn = new System.Windows.Controls.ColumnDefinition
{
Width = GridLength.Auto,
MinWidth = this.MinimumLabelWidth,
MaxWidth = this.MaximumLabelWidth,
SharedSizeGroup = this.LabelWidthSharing != LabelWidthSharing.NotShared ? "labelColumn" : null
};
propertyPanel.ColumnDefinitions.Add(labelColumn);
propertyPanel.ColumnDefinitions.Add(new System.Windows.Controls.ColumnDefinition());
var rd = new System.Windows.Controls.RowDefinition
{
Height = pi.FillTab ? new GridLength(1, GridUnitType.Star) : GridLength.Auto
};
propertyPanel.RowDefinitions.Add(rd);
var propertyLabel = this.CreateLabel(pi);
var propertyControl = this.CreatePropertyControl(pi);
ContentControl errorControl = null;
if (propertyControl != null)
{
this.ConfigurePropertyControl(pi, propertyControl);
if (instance is IDataErrorInfo || instance is INotifyDataErrorInfo)
{
PropertyControlFactoryOptions options = new PropertyControlFactoryOptions
{
ValidationErrorTemplate = this.ValidationErrorTemplate,
ValidationErrorStyle = this.ValidationErrorStyle
};
if (this.ValidationTemplate != null)
{
Validation.SetErrorTemplate(propertyControl, this.ValidationTemplate);
}
this.ControlFactory.SetValidationErrorStyle(propertyControl, options);
errorControl = this.ControlFactory.CreateErrorControl(pi, instance, tab, options);
// Add a row with the error control to the panel
// The error control is placed in column 1
propertyPanel.RowDefinitions.Add(new System.Windows.Controls.RowDefinition { Height = GridLength.Auto });
propertyPanel.Children.Add(errorControl);
Grid.SetRow(errorControl, 1);
Grid.SetColumn(errorControl, 1);
}
Grid.SetColumn(propertyControl, 1);
}
AddLabel(pi, propertyPanel, ref propertyLabel, propertyControl, errorControl);
// add the property control
if (propertyControl != null)
{
propertyPanel.Children.Add(propertyControl);
}
this.ConfigureLabel(pi, propertyLabel);
this.ConfigureControl(pi, propertyControl);
this.ConfigurePanel(pi, propertyPanel);
panel.Children.Add(propertyPanel);
}
/// <summary>
/// Configures the panel.
/// </summary>
private void ConfigurePanel(PropertyItem pi, Grid propertyPanel)
{
if (pi.IsVisibleDescriptor != null)
{
var isVisibleBinding = new Binding(pi.IsVisibleDescriptor.Name);
isVisibleBinding.ConverterParameter = pi.IsVisibleValue;
isVisibleBinding.Converter = ValueToVisibilityConverter;
propertyPanel.SetBinding(VisibilityProperty, isVisibleBinding);
}
if (this.EnableLabelWidthResizing && pi.HeaderPlacement == HeaderPlacement.Left)
{
propertyPanel.Children.Add(
new GridSplitter
{
Width = 4,
Background = Brushes.Transparent,
HorizontalAlignment = HorizontalAlignment.Right,
Focusable = false
});
}
}
/// <summary>
/// Configures the property control
/// </summary>
private void ConfigureControl(PropertyItem pi, FrameworkElement propertyControl)
{
// Set the IsEnabled binding of the property control
if (pi.IsEnabledDescriptor != null && propertyControl != null)
{
var isEnabledBinding = new Binding(pi.IsEnabledDescriptor.Name);
if (pi.IsEnabledValue != null)
{
isEnabledBinding.ConverterParameter = pi.IsEnabledValue;
isEnabledBinding.Converter = ValueToBooleanConverter;
}
var currentBindingExpression = propertyControl.GetBindingExpression(IsEnabledProperty);
if (currentBindingExpression != null)
{
var multiBinding = new MultiBinding();
multiBinding.Bindings.Add(isEnabledBinding);
multiBinding.Bindings.Add(currentBindingExpression.ParentBinding);
multiBinding.Converter = AllMultiValueConverter;
multiBinding.ConverterParameter = true;
propertyControl.SetBinding(IsEnabledProperty, multiBinding);
}
else
{
propertyControl.SetBinding(IsEnabledProperty, isEnabledBinding);
}
}
}
/// <summary>
/// Configures the label.
/// </summary>
private void ConfigureLabel(PropertyItem pi, FrameworkElement propertyLabel)
{
// Set the IsEnabled binding of the label
if (pi.IsEnabledDescriptor != null && propertyLabel != null)
{
var isEnabledBinding = new Binding(pi.IsEnabledDescriptor.Name);
if (pi.IsEnabledValue != null)
{
isEnabledBinding.ConverterParameter = pi.IsEnabledValue;
isEnabledBinding.Converter = ValueToBooleanConverter;
}
propertyLabel.SetBinding(IsEnabledProperty, isEnabledBinding);
}
}
/// <summary>
/// Adds the label.
/// </summary>
private void AddLabel(PropertyItem pi, Grid propertyPanel, ref FrameworkElement propertyLabel, FrameworkElement propertyControl, ContentControl errorControl)
{
var actualHeaderPlacement = pi.HeaderPlacement;
if (propertyControl is CheckBox checkBoxPropertyControl)
{
if (this.CheckBoxLayout != CheckBoxLayout.Header)
{
checkBoxPropertyControl.Content = propertyLabel;
propertyLabel = null;
}
if (this.CheckBoxLayout == CheckBoxLayout.CollapseHeader)
{
actualHeaderPlacement = HeaderPlacement.Collapsed;
}
}
switch (actualHeaderPlacement)
{
case HeaderPlacement.Hidden:
break;
case HeaderPlacement.Collapsed:
{
if (propertyControl != null)
{
Grid.SetColumn(propertyControl, 0);
Grid.SetColumnSpan(propertyControl, 2);
}
break;
}
default:
{
// create the label panel
var labelPanel = new DockPanel();
if (pi.HeaderPlacement == HeaderPlacement.Left)
{
DockPanel.SetDock(labelPanel, Dock.Left);
}
else
{
// Above
if (propertyControl != null)
{
propertyPanel.RowDefinitions.Add(new System.Windows.Controls.RowDefinition());
Grid.SetColumnSpan(labelPanel, 2);
Grid.SetRow(propertyControl, 1);
Grid.SetColumn(propertyControl, 0);
Grid.SetColumnSpan(propertyControl, 2);
if (errorControl != null)
{
Grid.SetRow(errorControl, 2);
Grid.SetColumn(errorControl, 0);
Grid.SetColumnSpan(errorControl, 2);
}
}
}
propertyPanel.Children.Add(labelPanel);
if (propertyLabel != null)
{
DockPanel.SetDock(propertyLabel, Dock.Left);
labelPanel.Children.Add(propertyLabel);
}
if (this.ShowDescriptionIcons && this.DescriptionIcon != null)
{
if (!string.IsNullOrWhiteSpace(pi.Description))
{
var descriptionIconImage = new Image
{
Source = this.DescriptionIcon,
Stretch = Stretch.None,
Margin = new Thickness(0, 4, 4, 4),
VerticalAlignment = VerticalAlignment.Top,
HorizontalAlignment = this.DescriptionIconAlignment
};
// RenderOptions.SetBitmapScalingMode(descriptionIconImage, BitmapScalingMode.NearestNeighbor);
labelPanel.Children.Add(descriptionIconImage);
if (!string.IsNullOrWhiteSpace(pi.Description))
{
descriptionIconImage.ToolTip = this.CreateToolTip(pi.Description);
}
}
}
else
{
labelPanel.ToolTip = this.CreateToolTip(pi.Description);
}
}
break;
}
}
/// <summary>
/// Configures the property control.
/// </summary>
private void ConfigurePropertyControl(PropertyItem pi, FrameworkElement propertyControl)
{
if (!double.IsNaN(pi.Width))
{
propertyControl.Width = pi.Width;
propertyControl.HorizontalAlignment = HorizontalAlignment.Left;
}
if (!double.IsNaN(pi.Height))
{
propertyControl.Height = pi.Height;
}
if (!double.IsNaN(pi.MinimumHeight))
{
propertyControl.MinHeight = pi.MinimumHeight;
}
if (!double.IsNaN(pi.MaximumHeight))
{
propertyControl.MaxHeight = pi.MaximumHeight;
}
if (pi.IsOptional)
{
propertyControl.SetBinding(
IsEnabledProperty,
pi.OptionalDescriptor != null ? new Binding(pi.OptionalDescriptor.Name) : new Binding(pi.Descriptor.Name) { Converter = NullToBoolConverter });
}
if (pi.IsEnabledByRadioButton)
{
propertyControl.SetBinding(
IsEnabledProperty,
new Binding(pi.RadioDescriptor.Name) { Converter = new EnumToBooleanConverter() { EnumType = pi.RadioDescriptor.PropertyType }, ConverterParameter = pi.RadioValue });
}
}
/// <summary>
/// Creates the label control.
/// </summary>
/// <param name="pi">The property item.</param>
/// <returns>
/// An element.
/// </returns>
private FrameworkElement CreateLabel(PropertyItem pi)
{
var indentation = pi.IndentationLevel * this.Indentation;
FrameworkElement propertyLabel = null;
if (pi.IsOptional)
{
var cb = new CheckBox
{
Content = pi.DisplayName,
VerticalAlignment = VerticalAlignment.Center,
Margin = new Thickness(5 + indentation, 0, 4, 0)
};
cb.SetBinding(
ToggleButton.IsCheckedProperty,
pi.OptionalDescriptor != null ? new Binding(pi.OptionalDescriptor.Name) : new Binding(pi.Descriptor.Name) { Converter = NullToBoolConverter });
var g = new Grid();
g.Children.Add(cb);
propertyLabel = g;
}
if (pi.IsEnabledByRadioButton)
{
var rb = new RadioButton
{
Content = pi.DisplayName,
GroupName = pi.RadioDescriptor.Name,
VerticalAlignment = VerticalAlignment.Center,
Margin = new Thickness(5 + indentation, 0, 4, 0)
};
var converter = new EnumToBooleanConverter { EnumType = pi.RadioDescriptor.PropertyType };
rb.SetBinding(
ToggleButton.IsCheckedProperty,
new Binding(pi.RadioDescriptor.Name) { Converter = converter, ConverterParameter = pi.RadioValue });
var g = new Grid();
g.Children.Add(rb);
propertyLabel = g;
}
if (propertyLabel == null)
{
propertyLabel = new Label
{
Content = pi.DisplayName,
VerticalAlignment = VerticalAlignment.Top,
Margin = new Thickness(indentation, 0, 4, 0)
};
}
return propertyLabel;
}
/// <summary>
/// Creates the property control.
/// </summary>
/// <param name="pi">The property item.</param>
/// <returns>
/// An element.
/// </returns>
private FrameworkElement CreatePropertyControl(PropertyItem pi)
{
var options = new PropertyControlFactoryOptions { EnumAsRadioButtonsLimit = this.EnumAsRadioButtonsLimit };
var control = this.ControlFactory.CreateControl(pi, options);
if (control != null)
{
control.SetValue(AutomationProperties.AutomationIdProperty, pi.PropertyName);
}
return control;
}
/// <summary>
/// Handles changes in SelectedObjects.
/// </summary>
/// <param name="e">The <see cref="System.Windows.DependencyPropertyChangedEventArgs" /> instance containing the event data.</param>
private void SelectedObjectsChanged(DependencyPropertyChangedEventArgs e)
{
if (e.OldValue != null)
{
if (e.OldValue is INotifyCollectionChanged notifyCollectionChanged)
{
CollectionChangedEventManager.RemoveHandler(notifyCollectionChanged, this.OnSelectedObjectsCollectionChanged);
}
}
if (e.NewValue != null)
{
if (e.NewValue is INotifyCollectionChanged notifyCollectionChanged)
{
CollectionChangedEventManager.AddHandler(notifyCollectionChanged, this.OnSelectedObjectsCollectionChanged);
}
else if (e.NewValue is IEnumerable enumerable)
{
this.SetCurrentObjectFromSelectedObjects(enumerable);
}
}
else
{
this.CurrentObject = null;
this.UpdateControls();
}
}
/// <summary>
/// Called when the selected objects collection is changed.
/// </summary>
/// <param name="sender">The sender.</param>
/// <param name="e">The <see cref="NotifyCollectionChangedEventArgs"/> instance containing the event data.</param>
private void OnSelectedObjectsCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
{
if (sender is IEnumerable enumerable)
{
this.SetCurrentObjectFromSelectedObjects(enumerable);
}
}
/// <summary>
/// Set CurrentObject when SelectedObjects is changed.
/// </summary>
/// <param name="enumerable">SelectedObjects.</param>
private void SetCurrentObjectFromSelectedObjects(IEnumerable enumerable)
{
var list = enumerable.Cast<object>().ToList();
if (list.Count == 0)
{
this.CurrentObject = null;
}
else if (list.Count == 1)
{
this.CurrentObject = list[0];
}
else
{
this.CurrentObject = new ItemsBag(list);
}
this.UpdateControls();
}
/// <summary>
/// Updates the controls.
/// </summary>
private void UpdateControls()
{
if (this.Operator == null)
{
return;
}
var oldIndex = this.tabControl != null ? this.tabControl.SelectedIndex : -1;
var tabs = this.Operator.CreateModel(this.CurrentObject, false, this);
var tabsArray = tabs != null ? tabs.ToArray() : null;
var areTabsVisible = this.TabVisibility == TabVisibility.Visible
|| (this.TabVisibility == TabVisibility.VisibleIfMoreThanOne && tabsArray != null && tabsArray.Length > 1);
if (areTabsVisible)
{
this.CreateControls(this.CurrentObject, tabsArray);
}
else
{
this.CreateControlsTabless(this.CurrentObject, tabsArray);
}
var newSelectedObjectType = this.CurrentObject != null ? this.CurrentObject.GetType() : null;
var currentObject = this.CurrentObject as ItemsBag;
if (currentObject != null)
{
newSelectedObjectType = currentObject.BiggestType;
}
if (newSelectedObjectType == this.currentSelectedObjectType && this.tabControl != null)
{
this.tabControl.SelectedIndex = oldIndex;
}
if (this.tabControl != null && this.tabControl.SelectedItem is TabItem)
{
this.SelectedTabId = (this.tabControl.SelectedItem as TabItem).Name;
}
this.currentSelectedObjectType = newSelectedObjectType;
}
/// <summary>
/// Handles changes of the selected tab.
/// </summary>
/// <param name="e">
/// The event arguments.
/// </param>
private void SelectedTabChanged(DependencyPropertyChangedEventArgs e)
{
if (this.tabControl == null)
{
return;
}
var tabId = e.NewValue as string;
if (tabId == null)
{
this.tabControl.SelectedIndex = 0;
return;
}
var tab = this.tabControl.Items.Cast<TabItem>().FirstOrDefault(t => t.Name == tabId);
if (tab != null)
{
this.tabControl.SelectedItem = tab;
}
}
/// <summary>
/// Handles changes of the selected tab index.
/// </summary>
/// <param name="e">
/// The event arguments.
/// </param>
private void SelectedTabIndexChanged(DependencyPropertyChangedEventArgs e)
{
if (this.tabControl == null)
{
return;
}
int tabIndex;
int.TryParse(e.NewValue.ToString(), out tabIndex);
if (tabIndex >= 0)
{
var tabItems = this.tabControl.Items.Cast<TabItem>().ToArray();
if (tabIndex < tabItems.Length)
{
this.SelectedTabId = tabItems[tabIndex].Name;
}
}
}
}
}
| 36.024665 | 187 | 0.514497 | [
"MIT"
] | NhatNguyenBlue/PropertyTools | Source/PropertyTools.Wpf/PropertyGrid/PropertyGrid.cs | 67,188 | C# |
using System;
using UnityEngine;
using SA.iOS.Foundation;
namespace SA.iOS.AuthenticationServices
{
/// <summary>
/// A credential that results from a successful Apple ID authentication.
/// </summary>
[Serializable]
public class ISN_ASAuthorizationAppleIDCredential
{
[SerializeField]
string m_User = string.Empty;
[SerializeField]
string m_State = string.Empty;
[SerializeField]
string m_AuthorizationCode = string.Empty;
[SerializeField]
string m_IdentityToken = string.Empty;
[SerializeField]
string m_Email = string.Empty;
[SerializeField]
ISN_NSPersonNameComponents m_FullName = null;
byte[] m_IdentityTokenData;
byte[] m_AuthorizationData;
/// <summary>
/// An identifier associated with the authenticated user.
/// </summary>
public string User => m_User;
/// <summary>
/// An arbitrary string that your app provided to the request that generated the credential.
/// </summary>
public string State => m_State;
/// <summary>
/// A short-lived token used by your app for proof of authorization when interacting with the app’s server counterpart.
/// </summary>
public byte[] AuthorizationCode
{
get
{
if (string.IsNullOrEmpty(m_AuthorizationCode))
return null;
if (m_AuthorizationData == null)
m_AuthorizationData = Convert.FromBase64String(m_AuthorizationCode);
return m_AuthorizationData;
}
}
/// <summary>
/// A JSON Web Token (JWT) that securely communicates information about the user to your app.
/// </summary>
public byte[] IdentityToken
{
get
{
if (string.IsNullOrEmpty(m_IdentityToken))
return null;
if (m_IdentityTokenData == null)
m_IdentityTokenData = Convert.FromBase64String(m_IdentityToken);
return m_IdentityTokenData;
}
}
/// <summary>
/// The user’s email address.
/// </summary>
public string Email => m_Email;
/// <summary>
/// The user’s name.
/// </summary>
public ISN_NSPersonNameComponents FullName => m_FullName;
}
}
| 29.440476 | 127 | 0.572584 | [
"MIT"
] | Alnirel/com.stansassets.running-dinosaur-clone | Assets/Plugins/StansAssets/NativePlugins/IOSNativePro/Runtime/API/AuthenticationServices/Models/ISN_ASAuthorizationAppleIDCredential.cs | 2,479 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Text.RegularExpressions;
namespace ProxyTool.ProxyFindingParser
{
class rosinstrument : NaiveParsingClass
{
public rosinstrument()
{
}
Regex textreg = new Regex(@"hideTxt\(\s*'(.*)'\);");
Regex mathreg = new Regex(@"var x=Math.round\(Math.sqrt\((\d+)\)");
Regex lastpagereg = new Regex(@"href='\?(\d+)' title='to last");
public override Proxy[] Parse(string source, IWebPageDownloader wc)
{
string decoded = decodePage(source);
var match = lastpagereg.Match(decoded);
int maxPage = int.Parse(match.Groups[1].Value);
List<Proxy> results = new List<Proxy>();
results.AddRange(base.Parse(decoded, wc));
// Iterate all pages for the proxies
for (int i = 1; i <= maxPage; i++)
{
var src = decodePage(wc.Download("http://tools.rosinstrument.com/raw_free_db.htm?" + i));
var resuls = base.Parse(src, wc);
results.AddRange(resuls);
}
return results.ToArray();
}
private string decodePage(string source)
{
var code = textreg.Match(source);
var math = mathreg.Match(source);
//match.Captures
var s = Uri.UnescapeDataString(code.Groups[1].Value);
var x = (int)Math.Round(Math.Sqrt(int.Parse(math.Groups[1].Value)));
var t = new StringBuilder();
for (var i = 0; i < s.Length; i++) t.Append(Convert.ToChar((int)((int)s[i] ^ (int)(i % 2 != 0 ? x : 0))));
return System.Net.WebUtility.HtmlDecode(t.ToString());
}
}
}
| 28.904762 | 118 | 0.559583 | [
"MIT"
] | dabbers/ProxyScanner | ProxyTool/ProxyFindingParser/rosinstrument.com.cs | 1,823 | C# |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Task6")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Task6")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("2326399f-18cf-4ab6-bbff-985982c8bfbf")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
| 37.378378 | 84 | 0.742589 | [
"MIT"
] | BoyanDimitrov77/DataStructure | Recursion/Task6/Properties/AssemblyInfo.cs | 1,386 | C# |
using System;
using PokeD.Core.Data.PokeApi;
namespace PokeD.Core.Test
{
public static class PokeApiV2Class
{
private const int MaxPokemon = 721;
private const int MaxType = 18;
private const int MaxGender = 3;
private const int MaxAbility = 190;
private const int MaxEgggroup = 15;
private const int MaxItem = 749;
private const int MaxMove = 621;
private const int MaxEvolutionTrigger = 4;
public static void GetPokemon() { /* PokeApiV2.GetPokemon(new ResourceUri($"api/v2/pokemon/{new Random().Next(1, MaxPokemon)}", true)).Wait(); */ }
public static void GetPokemonSpecies() { /* PokeApiV2.GetPokemonSpecies(new ResourceUri($"api/v2/pokemon-species/{new Random().Next(1, MaxPokemon)}", true)).Wait(); */ }
public static void GetTypes() { /* PokeApiV2.GetTypes(new ResourceUri($"api/v2/type/{new Random().Next(1, MaxType)}", true)).Wait(); */ }
public static void GetGender() { /* PokeApiV2.GetGender(new ResourceUri($"api/v2/gender/{new Random().Next(1, MaxGender)}", true)).Wait(); */ }
public static void GetAbilities() { /* PokeApiV2.GetAbilities(new ResourceUri($"api/v2/ability/{new Random().Next(1, MaxAbility)}", true)).Wait(); */ }
public static void GetEggGroups() { /* PokeApiV2.GetEggGroups(new ResourceUri($"api/v2/egg-group/{new Random().Next(1, MaxEgggroup)}", true)).Wait(); */ }
public static void GetItems() { /* PokeApiV2.GetItems(new ResourceUri($"api/v2/item/{new Random().Next(1, MaxItem)}", true)).Wait(); */ }
public static void GetMoves() { /* PokeApiV2.GetMoves(new ResourceUri($"api/v2/move/{new Random().Next(1, MaxMove)}", true)).Wait(); */ }
public static void GetEvolutionTriggers() { /* PokeApiV2.GetEvolutionTriggers(new ResourceUri($"api/v2/evolution-trigger/{new Random().Next(1, MaxEvolutionTrigger)}", true)).Wait(); */ }
}
}
| 66.9 | 194 | 0.632287 | [
"MIT"
] | Aragas/PokeD.Core | PokeD.Core.Test/PokeApiV2Class.cs | 2,009 | C# |
// The MIT License (MIT)
//
// Copyright (c) 2014-2017, Institute for Software & Systems Engineering
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
namespace SafetySharp.CaseStudies.PillProduction.Modeling
{
using System;
using System.Collections.Generic;
using System.Linq;
using ISSE.SafetyChecking.Modeling;
using SafetySharp.Modeling;
/// <summary>
/// A production station that modifies containers.
/// </summary>
public abstract class Station : Component
{
private static int _instanceCounter;
public readonly Fault CompleteStationFailure = new PermanentFault();
protected readonly string Name;
private readonly List<ResourceRequest> _resourceRequests = new List<ResourceRequest>(Model.MaximumResourceCount);
protected Station()
{
Name = $"Station#{++_instanceCounter}";
FaultHelper.PrefixFaultNames(this, Name);
}
/// <summary>
/// The resource currently located at the station.
/// </summary>
public PillContainer Container { get; protected set; }
/// <summary>
/// The list of station that can send containers.
/// </summary>
[Hidden(HideElements = true)]
public List<Station> Inputs { get; } = new List<Station>();
/// <summary>
/// The list of stations processed containers can be sent to.
/// </summary>
[Hidden(HideElements = true)]
public List<Station> Outputs { get; } = new List<Station>();
/// <summary>
/// The roles the station must apply to containers.
/// </summary>
public List<Role> AllocatedRoles { get; } = new List<Role>(Model.MaximumRoleCount);
/// <summary>
/// The capabilities the station has.
/// </summary>
public abstract Capability[] AvailableCapabilities { get; }
public virtual bool IsAlive => true;
[Hidden]
internal ObserverController ObserverController { get; set; }
public override void Update()
{
CheckConfigurationConsistency();
// see Fig. 7, How To Design and Implement Self-Organising Resource-Flow Systems (simplified version)
if (Container == null && _resourceRequests.Count > 0)
{
var request = _resourceRequests[0];
var role = ChooseRole(request.Source, request.Condition);
if (role != null)
{
Container = request.Source.TransferResource();
_resourceRequests.Remove(request);
ExecuteRole(role.Value);
role?.PostCondition.Port?.ResourceReady(source: this, condition: role.Value.PostCondition);
}
}
}
protected Role? ChooseRole(Station source, Condition condition)
{
foreach (var role in AllocatedRoles)
{
// there should be at most one such role
if (role.PreCondition.Matches(condition) && role.PreCondition.Port == source)
return role;
}
return null;
}
/// <summary>
/// Informs the station a container is available.
/// </summary>
/// <param name="source">The station currently holding the container.</param>
/// <param name="condition">The container's current condition.</param>
public void ResourceReady(Station source, Condition condition)
{
var request = new ResourceRequest(source, condition);
if (!_resourceRequests.Contains(request))
_resourceRequests.Add(request);
}
public void BeforeReconfiguration(Recipe recipe)
{
// if the current resource's recipe was reconfigured, drop it from production
//
// TODO: try to fix it, i.e. check if the reconfiguration even affected
// currentRole.PostCondition.Port or removed currentRole, and if so,
// where to send the resource next
if (Container != null && Container.Recipe == recipe)
{
Container.Recipe.DropContainer(Container);
Container = null;
}
_resourceRequests.RemoveAll(request => request.Condition.Recipe == recipe);
}
/// <summary>
/// Instructs the station to hand over its current container to the caller.
/// </summary>
/// <returns>The station's current container.</returns>
public PillContainer TransferResource()
{
if (Container == null)
throw new InvalidOperationException("No container available");
var resource = Container;
Container = null;
return resource;
}
/// <summary>
/// Checks if all required capabilities are available and
/// the output station is alive, and reconfigures recipes
/// for which this is not the case.
/// </summary>
protected void CheckConfigurationConsistency()
{
var inconsistentRecipes = (from role in AllocatedRoles
where !Capability.IsSatisfiable(role.CapabilitiesToApply.ToArray(), AvailableCapabilities)
|| !(role.PostCondition.Port?.IsAlive ?? true)
select role.Recipe)
.Distinct()
// in an array, as AllocatedRoles may be modified by reconfiguration below
.ToArray();
if (inconsistentRecipes.Length > 0)
ObserverController.Configure(inconsistentRecipes);
}
/// <summary>
/// Removes all configuration related to a recipe and propagates
/// this change to neighbouring stations.
/// </summary>
/// <param name="recipe"></param>
protected void RemoveRecipeConfigurations(Recipe recipe)
{
var obsoleteRoles = (from role in AllocatedRoles where role.Recipe == recipe select role)
.ToArray(); // collect roles before underlying collection is modified
var affectedNeighbours = (from role in obsoleteRoles select role.PreCondition.Port)
.Concat(from role in obsoleteRoles select role.PostCondition.Port)
.Distinct()
.Where(neighbour => neighbour != null);
foreach (var role in obsoleteRoles)
AllocatedRoles.Remove(role);
foreach (var neighbour in affectedNeighbours)
neighbour.RemoveRecipeConfigurations(recipe);
}
/// <summary>
/// Executes the specified role on the current <see cref="Container" />.
/// When this method is called, <see cref="Container" /> must not be null.
/// </summary>
protected abstract void ExecuteRole(Role role);
private struct ResourceRequest
{
public ResourceRequest(Station source, Condition condition)
{
Source = source;
Condition = condition;
}
public Station Source { get; }
public Condition Condition { get; }
}
/*[FaultEffect(Fault = nameof(CompleteStationFailure))]
public abstract class CompleteStationFailureEffect : Station
{
public override bool IsAlive => false;
public override void Update() { }
}*/
// thus this is duplicated in each concrete subclass.
// S# seems not to support abstract fault effects,
}
} | 33.846154 | 115 | 0.705615 | [
"MIT"
] | isse-augsburg/ssharp | Models/Pill Production/Modeling/Station.cs | 7,482 | C# |
using System.IO.Compression;
using System.Linq;
using System.Reactive.Linq;
using akarnokd.reactive_extensions;
using NUnit.Framework;
using Shouldly;
using Xpand.Extensions.Reactive.Transform;
using Xpand.TestsLib;
namespace Xpand.Extensions.Tests{
public class RoundRobinTests:BaseTest{
[Test]
public void Observe_Unseen_values(){
var source = Observable.Range(1, 100).Publish();
var dist = source.RoundRobin();
var testObserver1 = dist.Test();
var testObserver2 = dist.Test();
testObserver2.Items.Intersect(testObserver1.Items).Count().ShouldBe(0);
}
}
} | 24.375 | 74 | 0.758974 | [
"Apache-2.0"
] | mbogaerts/DevExpress.XAF | src/Tests/Extensions/RoundRobinTests.cs | 587 | C# |
namespace Steam.Net.GameCoordinators
{
public enum GameCoordinatorMessageType
{
SystemMessage = 4001,
ReplicateConVars,
ConVarUpdated,
ClientWelcome,
ServerWelcome,
ClientHello,
ServerHello,
ClientConnectionStatus = 4009,
ServerConnectionStatus,
InviteToParty = 4501,
InvitationCreated,
PartyInviteResponse,
KickFromParty,
LeaveParty,
ServerAvailable,
ClientConnectToServer,
GameServerInfo,
Error,
LANServerAvailable = 4511,
}
}
| 22.846154 | 42 | 0.612795 | [
"MIT"
] | ObsidianMinor/SteamStandard | src/Steam.Net/GameCoordinators/GameCoordinatorMessageType.cs | 596 | C# |
// <auto-generated />
// Built from: hl7.fhir.r5.core version: 4.6.0
// Option: "NAMESPACE" = "fhirCsR5"
using fhirCsR5.Models;
namespace fhirCsR5.ValueSets
{
/// <summary>
/// This value set includes concept codes for specific substances/pharmaceutical products, allergy or intolerance conditions, and negation/exclusion codes to specify the absence of specific types of allergies or intolerances.
/// </summary>
public static class AllergyintoleranceCodeCodes
{
/// <summary>
///
/// </summary>
public static readonly Coding Mannotetraose2AlphaNAcetylglucosaminyltransferase = new Coding
{
Code = "1002007",
Display = "Mannotetraose 2-alpha-N-acetylglucosaminyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NAcetylneuraminateMonooxygenase = new Coding
{
Code = "1010008",
Display = "N-Acetylneuraminate monooxygenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Nornicotine = new Coding
{
Code = "1018001",
Display = "Nornicotine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinOkaloosa = new Coding
{
Code = "102002",
Display = "Hemoglobin Okaloosa",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Molybdenum93 = new Coding
{
Code = "1025008",
Display = "Molybdenum-93",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GuanineDeaminase = new Coding
{
Code = "1047008",
Display = "Guanine deaminase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Melilotate3Monooxygenase = new Coding
{
Code = "1050006",
Display = "Melilotate 3-monooxygenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Substance = new Coding
{
Code = "105590001",
Display = "Substance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EColiPeriplasmicProteinase = new Coding
{
Code = "1065007",
Display = "E. coli periplasmic proteinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL202Tl = new Coding
{
Code = "1080001",
Display = "202-Tl",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorInhibitor = new Coding
{
Code = "1091008",
Display = "Coagulation factor inhibitor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMPowerAPower = new Coding
{
Code = "1097007",
Display = "Blood group antigen M^A^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsochorismateSynthase = new Coding
{
Code = "1105007",
Display = "Isochorismate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PancreaticRibonuclease = new Coding
{
Code = "1113008",
Display = "Pancreatic ribonuclease",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL240U = new Coding
{
Code = "1137008",
Display = "240-U",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinBarcelona = new Coding
{
Code = "1149009",
Display = "Hemoglobin Barcelona",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyLutheran = new Coding
{
Code = "1160000",
Display = "Blood group antibody Lutheran",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Titanium = new Coding
{
Code = "1166006",
Display = "Titanium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinGower2 = new Coding
{
Code = "1169004",
Display = "Hemoglobin Gower-2",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenKawaguchi = new Coding
{
Code = "1171004",
Display = "Fibrinogen Kawaguchi",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinRoseauPointePitre = new Coding
{
Code = "1185009",
Display = "Hemoglobin Roseau-Pointe à Pitre",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinFMOsaka = new Coding
{
Code = "1189003",
Display = "Hemoglobin F-M-Osaka",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Mephenoxalone = new Coding
{
Code = "1190007",
Display = "Mephenoxalone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OrnithineRacemase = new Coding
{
Code = "120006",
Display = "Ornithine racemase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiethylXanthogenDisulfide = new Coding
{
Code = "1219001",
Display = "Diethyl xanthogen disulfide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMarks = new Coding
{
Code = "1223009",
Display = "Blood group antigen Marks",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenMadridI = new Coding
{
Code = "1244009",
Display = "Fibrinogen Madrid I",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LeucostomaNeutralProteinase = new Coding
{
Code = "1248007",
Display = "Leucostoma neutral proteinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ferrous59FeSulfate = new Coding
{
Code = "125001",
Display = "Ferrous (59-Fe) sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GalactosylNAcetylglucosaminylgalactosylglucosylceramideAlphaGalactosyltransferase = new Coding
{
Code = "126000",
Display = "Galactosyl-N-acetylglucosaminylgalactosylglucosylceramide alpha-galactosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmikacinSulfate = new Coding
{
Code = "1269009",
Display = "Amikacin sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PteridineOxidase = new Coding
{
Code = "1272002",
Display = "Pteridine oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyEvelyn = new Coding
{
Code = "1273007",
Display = "Blood group antibody Evelyn",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinHopkinsII = new Coding
{
Code = "130002",
Display = "Hemoglobin Hopkins-II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DolichylPhosphateMannosyltransferase = new Coding
{
Code = "131003",
Display = "Dolichyl-phosphate mannosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrateReductaseCytochrome = new Coding
{
Code = "1313002",
Display = "Nitrate reductase (cytochrome)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyK18 = new Coding
{
Code = "1319003",
Display = "Blood group antibody K18",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinManitoba = new Coding
{
Code = "1320009",
Display = "Hemoglobin Manitoba",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetocurineIodide = new Coding
{
Code = "1325004",
Display = "Metocurine iodide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Methamidophos = new Coding
{
Code = "1331001",
Display = "Methamidophos",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EstradiolReceptor = new Coding
{
Code = "1334009",
Display = "Estradiol receptor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Deoxycortone = new Coding
{
Code = "1336006",
Display = "Deoxycortone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinTaLi = new Coding
{
Code = "1341003",
Display = "Hemoglobin Ta-li",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BlueShadeEosin = new Coding
{
Code = "1346008",
Display = "Blue shade eosin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntihemophilicFactorBOxford3Variant = new Coding
{
Code = "1355006",
Display = "Antihemophilic factor B Oxford 3 variant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Iodine131 = new Coding
{
Code = "1368003",
Display = "Iodine-131",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenBig = new Coding
{
Code = "1371006",
Display = "Blood group antigen Big",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Zirconium93 = new Coding
{
Code = "1373009",
Display = "Zirconium-93",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL126I = new Coding
{
Code = "1381005",
Display = "126-I",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IronPentacarbonyl = new Coding
{
Code = "1394007",
Display = "Iron pentacarbonyl",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Actinium = new Coding
{
Code = "1396009",
Display = "Actinium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyMPowerEPower = new Coding
{
Code = "1405004",
Display = "Blood group antibody M^e^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibody1123K = new Coding
{
Code = "1408002",
Display = "Blood group antibody 1123K",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RadiumCompound = new Coding
{
Code = "1416006",
Display = "Radium compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Methylparafynol = new Coding
{
Code = "1450002",
Display = "Methylparafynol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cyclomaltodextrinase = new Coding
{
Code = "1466000",
Display = "Cyclomaltodextrinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Elastin = new Coding
{
Code = "1471007",
Display = "Elastin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AdenosinePhosphateDeaminase = new Coding
{
Code = "1472000",
Display = "Adenosine-phosphate deaminase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CodeineSulfate = new Coding
{
Code = "1476002",
Display = "Codeine sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinYatsushiro = new Coding
{
Code = "1477006",
Display = "Hemoglobin Yatsushiro",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProtoOncogene = new Coding
{
Code = "1496005",
Display = "Proto-oncogene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenChPowerAPower = new Coding
{
Code = "1506001",
Display = "Blood group antigen Ch^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLAB21Antigen = new Coding
{
Code = "1517000",
Display = "HLA-B21 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL6CarboxyhexanoateCoALigase = new Coding
{
Code = "1530004",
Display = "6-carboxyhexanoate-CoA ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrogenFluoride = new Coding
{
Code = "1535009",
Display = "Nitrogen fluoride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PargylineHydrochloride = new Coding
{
Code = "1536005",
Display = "Pargyline hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TelluriumRadioisotope = new Coding
{
Code = "1540001",
Display = "Tellurium radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UridinePhosphorylase = new Coding
{
Code = "1545006",
Display = "Uridine phosphorylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Talc = new Coding
{
Code = "1557002",
Display = "Talc",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyBuckalew = new Coding
{
Code = "1565004",
Display = "Blood group antibody Buckalew",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MaltoseTetrapalmitate = new Coding
{
Code = "1575001",
Display = "Maltose tetrapalmitate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FerrocyanideSalt = new Coding
{
Code = "159002",
Display = "Ferrocyanide salt",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CobaltIsotope = new Coding
{
Code = "1603001",
Display = "Cobalt isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HomoserineKinase = new Coding
{
Code = "1607000",
Display = "Homoserine kinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NOctylIsosafroleSulfoxide = new Coding
{
Code = "1609002",
Display = "N-octyl isosafrole sulfoxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenVen = new Coding
{
Code = "1634002",
Display = "Blood group antigen Ven",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhosphoenolpyruvateProteinPhosphotransferase = new Coding
{
Code = "164003",
Display = "Phosphoenolpyruvate-protein phosphotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenSul = new Coding
{
Code = "1649005",
Display = "Blood group antigen Sul",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinShaareZedek = new Coding
{
Code = "1656004",
Display = "Hemoglobin Shaare Zedek",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlantSeeds = new Coding
{
Code = "1660001",
Display = "Plant seeds",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ceforanide = new Coding
{
Code = "1668008",
Display = "Ceforanide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ligase = new Coding
{
Code = "1672007",
Display = "Ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Xylenol = new Coding
{
Code = "1673002",
Display = "Xylenol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL86Rb = new Coding
{
Code = "1675009",
Display = "86-Rb",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyLWPowerAbPower = new Coding
{
Code = "1676005",
Display = "Blood group antibody LW^ab^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyBLePowerBPower = new Coding
{
Code = "1681001",
Display = "Blood group antibody BLe^b^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL12HPETE = new Coding
{
Code = "1696002",
Display = "12-HPETE",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gold191 = new Coding
{
Code = "1701009",
Display = "Gold-191",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UricAcid = new Coding
{
Code = "1710001",
Display = "Uric acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Diamond = new Coding
{
Code = "1726000",
Display = "Diamond",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DeoxylimonateARingLactonase = new Coding
{
Code = "1727009",
Display = "Deoxylimonate A-ring-lactonase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DeoxyCytidineTriphosphate = new Coding
{
Code = "1740004",
Display = "Deoxy cytidine triphosphate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SaccharopineDehydrogenaseNADPPowerPlusPowerLGlutamateForming = new Coding
{
Code = "1764003",
Display = "Saccharopine dehydrogenase (NADP^+^,L-glutamate-forming)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SucrosePhosphorylase = new Coding
{
Code = "1768000",
Display = "Sucrose phosphorylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UridineDiphosphateGalactose = new Coding
{
Code = "178002",
Display = "Uridine diphosphate galactose",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LeucineTRNALigase = new Coding
{
Code = "1786002",
Display = "Leucine-tRNA ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumTrichloroacetate = new Coding
{
Code = "1793003",
Display = "Sodium trichloroacetate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Glyodin = new Coding
{
Code = "1795005",
Display = "Glyodin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinHammersmith = new Coding
{
Code = "1798007",
Display = "Hemoglobin Hammersmith",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LLysineOxidase = new Coding
{
Code = "1799004",
Display = "L-Lysine oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinTochigi = new Coding
{
Code = "1823002",
Display = "Hemoglobin Tochigi",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RibonucleaseTGreaterThan1LessThan = new Coding
{
Code = "1827001",
Display = "Ribonuclease T>1<",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLACw9Antigen = new Coding
{
Code = "186002",
Display = "HLA-Cw9 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cyanocobalamin57Co = new Coding
{
Code = "187006",
Display = "Cyanocobalamin (57-Co)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LaboratoryAnimalDanderAllergy = new Coding
{
Code = "188336009",
Display = "Laboratory animal dander allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Verdohemoglobin = new Coding
{
Code = "1886008",
Display = "Verdohemoglobin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Galactoside3Fucosyltransferase = new Coding
{
Code = "1904005",
Display = "Galactoside 3-fucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrimaryLactoseIntolerance = new Coding
{
Code = "190751001",
Display = "Primary lactose intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SucroseIntolerance = new Coding
{
Code = "190753003",
Display = "Sucrose intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VonWillebrandFactorInhibitor = new Coding
{
Code = "1914001",
Display = "von Willebrand factor inhibitor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Boroglycerin = new Coding
{
Code = "1916004",
Display = "Boroglycerin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinGMGreaterThan21LessThanAllotype = new Coding
{
Code = "1940007",
Display = "Immunoglobulin, GM>21< allotype",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorXPatientVariant = new Coding
{
Code = "1944003",
Display = "Coagulation factor X Patient variant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BuclizineHydrochloride = new Coding
{
Code = "1956002",
Display = "Buclizine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LoxapineHydrochloride = new Coding
{
Code = "1971003",
Display = "Loxapine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyNiemetz = new Coding
{
Code = "1975007",
Display = "Blood group antibody Niemetz",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SiteSpecificMethyltransferaseCytosineSpecific = new Coding
{
Code = "1978009",
Display = "Site-specific methyltransferase (cytosine-specific)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Vomitus = new Coding
{
Code = "1985008",
Display = "Vomitus",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Lignins = new Coding
{
Code = "1991005",
Display = "Lignins",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HeavyNitrogen = new Coding
{
Code = "2000001",
Display = "Heavy nitrogen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Berberine = new Coding
{
Code = "200001",
Display = "Berberine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InosineDiphosphate = new Coding
{
Code = "2006007",
Display = "Inosine diphosphate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gallium67 = new Coding
{
Code = "2008008",
Display = "Gallium-67",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CobaltCarbonyl = new Coding
{
Code = "2009000",
Display = "Cobalt carbonyl",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DNATopoisomerase = new Coding
{
Code = "2017008",
Display = "DNA topoisomerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlternariaSerineProteinase = new Coding
{
Code = "2027002",
Display = "Alternaria serine proteinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenOsloII = new Coding
{
Code = "2029004",
Display = "Fibrinogen Oslo II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyBgPowerBPower = new Coding
{
Code = "2038002",
Display = "Blood group antibody Bg^b^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SymNorspermidineSynthase = new Coding
{
Code = "2039005",
Display = "sym-Norspermidine synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CholoylglycineHydrolase = new Coding
{
Code = "2050008",
Display = "Choloylglycine hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LXylulokinase = new Coding
{
Code = "2064008",
Display = "L-Xylulokinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD51 = new Coding
{
Code = "2082006",
Display = "Lymphocyte antigen CD51",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinTCL = new Coding
{
Code = "2085008",
Display = "Oncogene protein TCL",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PageBlueG90 = new Coding
{
Code = "2088005",
Display = "Page blue G-90",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NADPowerPlusPowerADPRibosyltransferase = new Coding
{
Code = "2096000",
Display = "NAD^+^ ADP-ribosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sulfonethylmethane = new Coding
{
Code = "2100004",
Display = "Sulfonethylmethane",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding YeastProteinaseB = new Coding
{
Code = "2101000",
Display = "Yeast proteinase B",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Betazole = new Coding
{
Code = "2125008",
Display = "Betazole",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cyclohexane12DiolDehydrogenase = new Coding
{
Code = "2130007",
Display = "Cyclohexane-1,2-diol dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EggProteinAllergy = new Coding
{
Code = "213020009",
Display = "Egg protein allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Hydrogen = new Coding
{
Code = "2141009",
Display = "Hydrogen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenPaular = new Coding
{
Code = "2147008",
Display = "Blood group antigen Paular",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyridoxaminePyruvateAminotransferase = new Coding
{
Code = "2151005",
Display = "Pyridoxamine-pyruvate aminotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TagaturonateReductase = new Coding
{
Code = "2154002",
Display = "Tagaturonate reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzorubinS = new Coding
{
Code = "2159007",
Display = "Azorubin S",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Dicofol = new Coding
{
Code = "2163000",
Display = "Dicofol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BisphosphoglycerateMutase = new Coding
{
Code = "2168009",
Display = "Bisphosphoglycerate mutase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenIH = new Coding
{
Code = "217008",
Display = "Blood group antigen IH",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MalonateSemialdehydeDehydratase = new Coding
{
Code = "2179004",
Display = "Malonate-semialdehyde dehydratase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinFDammam = new Coding
{
Code = "2189000",
Display = "Hemoglobin F-Dammam",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Rhodium101 = new Coding
{
Code = "2194000",
Display = "Rhodium-101",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TocainideHydrochloride = new Coding
{
Code = "2195004",
Display = "Tocainide hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Bacteriopurpurin = new Coding
{
Code = "2201007",
Display = "Bacteriopurpurin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenylserineAldolase = new Coding
{
Code = "2208001",
Display = "Phenylserine aldolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenBethesdaII = new Coding
{
Code = "2212007",
Display = "Fibrinogen Bethesda II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Azuresin = new Coding
{
Code = "2215009",
Display = "Azuresin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Guanidinobutyrase = new Coding
{
Code = "2240002",
Display = "Guanidinobutyrase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GentamicinSulfate = new Coding
{
Code = "2249001",
Display = "Gentamicin sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OroticAcid = new Coding
{
Code = "2254005",
Display = "Orotic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADRw18Antigen = new Coding
{
Code = "2260005",
Display = "HLA-DRw18 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CellulosePolysulfatase = new Coding
{
Code = "2262002",
Display = "Cellulose polysulfatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SeleniumIsotope = new Coding
{
Code = "2264001",
Display = "Selenium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gold = new Coding
{
Code = "2309006",
Display = "Gold",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3HydroxyisobutyrateDehydrogenase = new Coding
{
Code = "231008",
Display = "3-hydroxyisobutyrate dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProstacyclinSynthase = new Coding
{
Code = "2311002",
Display = "Prostacyclin synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CatAllergy = new Coding
{
Code = "232346004",
Display = "Cat allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnimalDanderAllergy = new Coding
{
Code = "232347008",
Display = "Animal dander allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FeatherAllergy = new Coding
{
Code = "232348003",
Display = "Feather allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HouseDustAllergy = new Coding
{
Code = "232349006",
Display = "House dust allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HouseDustMiteAllergy = new Coding
{
Code = "232350006",
Display = "House dust mite allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyVel = new Coding
{
Code = "2329007",
Display = "Blood group antibody Vel",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Carbohydrate = new Coding
{
Code = "2331003",
Display = "Carbohydrate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlantRoots = new Coding
{
Code = "2338009",
Display = "Plant roots",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Guthion = new Coding
{
Code = "2343002",
Display = "Guthion",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Vascormone = new Coding
{
Code = "2346005",
Display = "Vascormone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3QuoteNucleotidase = new Coding
{
Code = "2354007",
Display = "3'-nucleotidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FoodIntolerance = new Coding
{
Code = "235719002",
Display = "Food intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlassFragment = new Coding
{
Code = "2358005",
Display = "Glass fragment",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Indole3AcetateBetaGlucosyltransferase = new Coding
{
Code = "2369008",
Display = "Indole-3-acetate beta-glucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UDPNAcetylmuramateAlanineLigase = new Coding
{
Code = "2370009",
Display = "UDP-N-acetylmuramate-alanine ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercuryCompound = new Coding
{
Code = "2376003",
Display = "Mercury compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlycerolIntoleranceSyndrome = new Coding
{
Code = "237978005",
Display = "Glycerol intolerance syndrome",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Heptachlor = new Coding
{
Code = "238002",
Display = "Heptachlor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL230U = new Coding
{
Code = "2384004",
Display = "230-U",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyStPowerAPower = new Coding
{
Code = "2404002",
Display = "Blood group antibody St^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Oxetanone = new Coding
{
Code = "2405001",
Display = "Oxetanone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProlactinReceptor = new Coding
{
Code = "2414006",
Display = "Prolactin receptor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SiliconRadioisotope = new Coding
{
Code = "2430003",
Display = "Silicon radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyFriedberg = new Coding
{
Code = "2431004",
Display = "Blood group antibody Friedberg",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercuryRadioisotope = new Coding
{
Code = "2441001",
Display = "Mercury radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADw25Antigen = new Coding
{
Code = "2444009",
Display = "HLA-Dw25 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Mannosamine = new Coding
{
Code = "2450004",
Display = "Mannosamine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlucoseDehydrogenaseNADPPowerPlusPower = new Coding
{
Code = "2462000",
Display = "Glucose dehydrogenase (NADP^+^)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChloridePeroxidase = new Coding
{
Code = "2466002",
Display = "Chloride peroxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCDw41b = new Coding
{
Code = "2500009",
Display = "Lymphocyte antigen CDw41b",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DGlutamicAcidOxidase = new Coding
{
Code = "2509005",
Display = "D-glutamic acid oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ExtravascularBlood = new Coding
{
Code = "2522002",
Display = "Extravascular blood",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinWood = new Coding
{
Code = "2529006",
Display = "Hemoglobin Wood",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntituberculosisAgent = new Coding
{
Code = "2537003",
Display = "Antituberculosis agent",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMcAuley = new Coding
{
Code = "2568004",
Display = "Blood group antigen McAuley",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinGMGreaterThan13LessThanAllotype = new Coding
{
Code = "2573005",
Display = "Immunoglobulin, GM>13< allotype",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HereditaryGastrogenicLactoseIntolerance = new Coding
{
Code = "25744000",
Display = "Hereditary gastrogenic lactose intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZincAlphaGreaterThan2LessThanGlycoprotein = new Coding
{
Code = "2575003",
Display = "Zinc alpha>2< glycoprotein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Tellurium119m = new Coding
{
Code = "2595009",
Display = "Tellurium-119m",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Alpha1Globulin = new Coding
{
Code = "2597001",
Display = "Alpha-1 globulin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CodeinePhosphate = new Coding
{
Code = "261000",
Display = "Codeine phosphate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyLaFave = new Coding
{
Code = "2611008",
Display = "Blood group antibody La Fave",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IndiumIsotope = new Coding
{
Code = "2637006",
Display = "Indium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BileVomitus = new Coding
{
Code = "2648004",
Display = "Bile vomitus",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzoDye = new Coding
{
Code = "2649007",
Display = "Azo dye",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumDehydrocholate = new Coding
{
Code = "2660003",
Display = "Sodium dehydrocholate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DehydropantoateHydroxymethyltransferase = new Coding
{
Code = "2671002",
Display = "Dehydropantoate hydroxymethyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cesium128 = new Coding
{
Code = "2674005",
Display = "Cesium-128",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LactoseIntolerance = new Coding
{
Code = "267425008",
Display = "Lactose intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding C3H20 = new Coding
{
Code = "2676007",
Display = "C3(H20)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinNewMexico = new Coding
{
Code = "2678008",
Display = "Hemoglobin New Mexico",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntiFactorXIII = new Coding
{
Code = "2680002",
Display = "Anti-factor XIII",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NaturalGas = new Coding
{
Code = "2698003",
Display = "Natural gas",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL72As = new Coding
{
Code = "2705002",
Display = "72-As",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenVennera = new Coding
{
Code = "2706001",
Display = "Blood group antigen Vennera",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TartrateDehydratase = new Coding
{
Code = "2719002",
Display = "Tartrate dehydratase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMcCPowerFPower = new Coding
{
Code = "2721007",
Display = "Blood group antigen McC^f^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntigenInLewisLeBloodGroupSystem = new Coding
{
Code = "2728001",
Display = "Antigen in Lewis (Le) blood group system",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyMGreaterThan1LessThan = new Coding
{
Code = "2753003",
Display = "Blood group antibody M>1<",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinFKennestone = new Coding
{
Code = "2754009",
Display = "Hemoglobin F-Kennestone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenSc3 = new Coding
{
Code = "2765004",
Display = "Blood group antigen Sc3",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PleuralFluid = new Coding
{
Code = "2778004",
Display = "Pleural fluid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Methanthelinium = new Coding
{
Code = "2796008",
Display = "Methanthelinium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylbenzethoniumChloride = new Coding
{
Code = "2799001",
Display = "Methylbenzethonium chloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinBristol = new Coding
{
Code = "2823004",
Display = "Hemoglobin Bristol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MolybdenumCompound = new Coding
{
Code = "2832002",
Display = "Molybdenum compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinSaitama = new Coding
{
Code = "2846002",
Display = "Hemoglobin Saitama",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EthanoicAcid = new Coding
{
Code = "2869004",
Display = "Ethanoic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsonipecaineHydrochloride = new Coding
{
Code = "2878005",
Display = "Isonipecaine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalciumSulfate = new Coding
{
Code = "2880004",
Display = "Calcium sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ExopolygalacturonateLyase = new Coding
{
Code = "2883002",
Display = "Exopolygalacturonate lyase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinEHChain = new Coding
{
Code = "2913009",
Display = "Immunoglobulin E, H chain",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL22Ne = new Coding
{
Code = "2916001",
Display = "22-Ne",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Fluorometholone = new Coding
{
Code = "2925007",
Display = "Fluorometholone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Rescinnamine = new Coding
{
Code = "2927004",
Display = "Rescinnamine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnalgesicAllergy = new Coding
{
Code = "293582004",
Display = "Analgesic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcetaminophenAllergy = new Coding
{
Code = "293584003",
Display = "Acetaminophen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SalicylateAllergy = new Coding
{
Code = "293585002",
Display = "Salicylate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AspirinAllergy = new Coding
{
Code = "293586001",
Display = "Aspirin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PentazocineAllergy = new Coding
{
Code = "293588000",
Display = "Pentazocine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenazocineAllergy = new Coding
{
Code = "293589008",
Display = "Phenazocine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethadoneAnalogAllergy = new Coding
{
Code = "293590004",
Display = "Methadone analog allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DextromoramideAllergy = new Coding
{
Code = "293591000",
Display = "Dextromoramide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DextropropoxypheneAllergy = new Coding
{
Code = "293592007",
Display = "Dextropropoxyphene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DipipanoneAllergy = new Coding
{
Code = "293593002",
Display = "Dipipanone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethadoneAllergy = new Coding
{
Code = "293594008",
Display = "Methadone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MorphinanOpioidAllergy = new Coding
{
Code = "293595009",
Display = "Morphinan opioid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BuprenorphineAllergy = new Coding
{
Code = "293596005",
Display = "Buprenorphine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CodeineAllergy = new Coding
{
Code = "293597001",
Display = "Codeine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiamorphineAllergy = new Coding
{
Code = "293598006",
Display = "Diamorphine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DihydrocodeineAllergy = new Coding
{
Code = "293599003",
Display = "Dihydrocodeine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NalbuphineAllergy = new Coding
{
Code = "293600000",
Display = "Nalbuphine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MorphineAllergy = new Coding
{
Code = "293601001",
Display = "Morphine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OpiumAlkaloidAllergy = new Coding
{
Code = "293602008",
Display = "Opium alkaloid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PethidineAnalogAllergy = new Coding
{
Code = "293603003",
Display = "Pethidine analog allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlfentanilAllergy = new Coding
{
Code = "293604009",
Display = "Alfentanil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FentanylAllergy = new Coding
{
Code = "293605005",
Display = "Fentanyl allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PethidineAllergy = new Coding
{
Code = "293606006",
Display = "Pethidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenoperidineAllergy = new Coding
{
Code = "293607002",
Display = "Phenoperidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MeptazinolAllergy = new Coding
{
Code = "293608007",
Display = "Meptazinol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LevorphanolAllergy = new Coding
{
Code = "293609004",
Display = "Levorphanol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NonSteroidalAntiInflammatoryDrugAllergy = new Coding
{
Code = "293610009",
Display = "Non-steroidal anti-inflammatory drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcemetacinAllergy = new Coding
{
Code = "293611008",
Display = "Acemetacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzapropazoneAllergy = new Coding
{
Code = "293612001",
Display = "Azapropazone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiclofenacAllergy = new Coding
{
Code = "293613006",
Display = "Diclofenac allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EtodolacAllergy = new Coding
{
Code = "293614000",
Display = "Etodolac allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FelbinacAllergy = new Coding
{
Code = "293615004",
Display = "Felbinac allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FenbufenAllergy = new Coding
{
Code = "293616003",
Display = "Fenbufen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FenoprofenAllergy = new Coding
{
Code = "293617007",
Display = "Fenoprofen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlurbiprofenAllergy = new Coding
{
Code = "293618002",
Display = "Flurbiprofen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IbuprofenAllergy = new Coding
{
Code = "293619005",
Display = "Ibuprofen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IndomethacinAllergy = new Coding
{
Code = "293620004",
Display = "Indomethacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KetoprofenAllergy = new Coding
{
Code = "293621000",
Display = "Ketoprofen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KetorolacAllergy = new Coding
{
Code = "293622007",
Display = "Ketorolac allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MefenamicAcidAllergy = new Coding
{
Code = "293623002",
Display = "Mefenamic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NabumetoneAllergy = new Coding
{
Code = "293624008",
Display = "Nabumetone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NaproxenAllergy = new Coding
{
Code = "293625009",
Display = "Naproxen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NefopamAllergy = new Coding
{
Code = "293626005",
Display = "Nefopam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxyphenbutazoneAllergy = new Coding
{
Code = "293627001",
Display = "Oxyphenbutazone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenylbutazoneAllergy = new Coding
{
Code = "293628006",
Display = "Phenylbutazone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PiroxicamAllergy = new Coding
{
Code = "293629003",
Display = "Piroxicam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulindacAllergy = new Coding
{
Code = "293630008",
Display = "Sulindac allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TenoxicamAllergy = new Coding
{
Code = "293631007",
Display = "Tenoxicam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TiaprofenicAcidAllergy = new Coding
{
Code = "293632000",
Display = "Tiaprofenic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TolmetinAllergy = new Coding
{
Code = "293633005",
Display = "Tolmetin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiagnosticAgentAllergy = new Coding
{
Code = "293634004",
Display = "Diagnostic agent allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TuberculinAllergy = new Coding
{
Code = "293635003",
Display = "Tuberculin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RadiopharmaceuticalAllergy = new Coding
{
Code = "293636002",
Display = "Radiopharmaceutical allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ContrastMediaAllergy = new Coding
{
Code = "293637006",
Display = "Contrast media allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding XRayContrastMediaAllergy = new Coding
{
Code = "293638001",
Display = "X-ray contrast media allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagneticResonanceImagingContrastMediaAllergy = new Coding
{
Code = "293639009",
Display = "Magnetic resonance imaging contrast media allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BismuthChelateAllergy = new Coding
{
Code = "293645001",
Display = "Bismuth chelate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SucralfateAllergy = new Coding
{
Code = "293646000",
Display = "Sucralfate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LiquoriceAllergy = new Coding
{
Code = "293647009",
Display = "Liquorice allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MisoprostolAllergy = new Coding
{
Code = "293648004",
Display = "Misoprostol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding H2ReceptorAntagonistAllergy = new Coding
{
Code = "293649007",
Display = "H2 receptor antagonist allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CimetidineAllergy = new Coding
{
Code = "293650007",
Display = "Cimetidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FamotidineAllergy = new Coding
{
Code = "293651006",
Display = "Famotidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NizatidineAllergy = new Coding
{
Code = "293652004",
Display = "Nizatidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RanitidineAllergy = new Coding
{
Code = "293653009",
Display = "Ranitidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProtonPumpInhibitorAllergy = new Coding
{
Code = "293654003",
Display = "Proton pump inhibitor allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OmeprazoleAllergy = new Coding
{
Code = "293655002",
Display = "Omeprazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LansoprazoleAllergy = new Coding
{
Code = "293656001",
Display = "Lansoprazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbenoxoloneAllergy = new Coding
{
Code = "293657005",
Display = "Carbenoxolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PirenzepineAllergy = new Coding
{
Code = "293658000",
Display = "Pirenzepine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PancreatinAllergy = new Coding
{
Code = "293659008",
Display = "Pancreatin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL5AminosalicylicAcidAllergy = new Coding
{
Code = "293660003",
Display = "5-aminosalicylic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OlsalazineAllergy = new Coding
{
Code = "293662006",
Display = "Olsalazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfasalazineAllergy = new Coding
{
Code = "293663001",
Display = "Sulfasalazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntacidAllergy = new Coding
{
Code = "293664007",
Display = "Antacid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagnesiumTrisilicateAllergy = new Coding
{
Code = "293665008",
Display = "Magnesium trisilicate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AluminumHydroxideAllergy = new Coding
{
Code = "293666009",
Display = "Aluminum hydroxide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LoperamideAllergy = new Coding
{
Code = "293668005",
Display = "Loperamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KaolinAllergy = new Coding
{
Code = "293669002",
Display = "Kaolin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MotilityStimulantAllergy = new Coding
{
Code = "293670001",
Display = "Motility stimulant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CisaprideAllergy = new Coding
{
Code = "293671002",
Display = "Cisapride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NabiloneAllergy = new Coding
{
Code = "293673004",
Display = "Nabilone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DomperidoneAllergy = new Coding
{
Code = "293674005",
Display = "Domperidone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetoclopramideAllergy = new Coding
{
Code = "293675006",
Display = "Metoclopramide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL5HT3ReceptorAntagonistAllergy = new Coding
{
Code = "293676007",
Display = "5-HT3-receptor antagonist allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BisacodylAllergy = new Coding
{
Code = "293678008",
Display = "Bisacodyl allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DanthronAllergy = new Coding
{
Code = "293679000",
Display = "Danthron allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumPicosulfateAllergy = new Coding
{
Code = "293680002",
Display = "Sodium picosulfate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LactuloseAllergy = new Coding
{
Code = "293681003",
Display = "Lactulose allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagnesiumSulfateAllergy = new Coding
{
Code = "293682005",
Display = "Magnesium sulfate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnthraquinoneLaxativeAllergy = new Coding
{
Code = "293684006",
Display = "Anthraquinone laxative allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CascaraAllergy = new Coding
{
Code = "293685007",
Display = "Cascara allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SennaAllergy = new Coding
{
Code = "293686008",
Display = "Senna allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DocusateAllergy = new Coding
{
Code = "293687004",
Display = "Docusate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntispasmodicAllergy = new Coding
{
Code = "293688009",
Display = "Antispasmodic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PeppermintOilAllergy = new Coding
{
Code = "293690005",
Display = "Peppermint oil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlverineAllergy = new Coding
{
Code = "293691009",
Display = "Alverine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MebeverineAllergy = new Coding
{
Code = "293692002",
Display = "Mebeverine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DicyclomineAllergy = new Coding
{
Code = "293693007",
Display = "Dicyclomine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MepenzolateAllergy = new Coding
{
Code = "293694001",
Display = "Mepenzolate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PipenzolateAllergy = new Coding
{
Code = "293695000",
Display = "Pipenzolate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PoldineAllergy = new Coding
{
Code = "293696004",
Display = "Poldine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropanthelineAllergy = new Coding
{
Code = "293697008",
Display = "Propantheline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChenodeoxycholicAcidAllergy = new Coding
{
Code = "293699006",
Display = "Chenodeoxycholic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DehydrocholicAcidAllergy = new Coding
{
Code = "293700007",
Display = "Dehydrocholic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UrsodeoxycholicAcidAllergy = new Coding
{
Code = "293701006",
Display = "Ursodeoxycholic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToChenodeoxycholicAcidPlusUrsodeoxycholicAcid = new Coding
{
Code = "293702004",
Display = "Allergy to chenodeoxycholic acid + ursodeoxycholic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EtomidateAllergy = new Coding
{
Code = "293706001",
Display = "Etomidate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KetamineAllergy = new Coding
{
Code = "293707005",
Display = "Ketamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropofolAllergy = new Coding
{
Code = "293708000",
Display = "Propofol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThiopentoneAllergy = new Coding
{
Code = "293709008",
Display = "Thiopentone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethohexitoneAllergy = new Coding
{
Code = "293710003",
Display = "Methohexitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EnfluraneAllergy = new Coding
{
Code = "293712006",
Display = "Enflurane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HalothaneAllergy = new Coding
{
Code = "293714007",
Display = "Halothane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsofluraneAllergy = new Coding
{
Code = "293715008",
Display = "Isoflurane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrichloroethyleneAllergy = new Coding
{
Code = "293716009",
Display = "Trichloroethylene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DesfluraneAllergy = new Coding
{
Code = "293717000",
Display = "Desflurane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LocalAnestheticDrugAllergy = new Coding
{
Code = "293718005",
Display = "Local anesthetic drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BupivacaineAllergy = new Coding
{
Code = "293719002",
Display = "Bupivacaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CinchocaineAllergy = new Coding
{
Code = "293720008",
Display = "Cinchocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrilocaineAllergy = new Coding
{
Code = "293721007",
Display = "Prilocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LignocaineAllergy = new Coding
{
Code = "293722000",
Display = "Lignocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CocaineAllergy = new Coding
{
Code = "293723005",
Display = "Cocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzocaineAllergy = new Coding
{
Code = "293724004",
Display = "Benzocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmethocaineAllergy = new Coding
{
Code = "293725003",
Display = "Amethocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxybuprocaineAllergy = new Coding
{
Code = "293726002",
Display = "Oxybuprocaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProcaineAllergy = new Coding
{
Code = "293727006",
Display = "Procaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProxymetacaineAllergy = new Coding
{
Code = "293728001",
Display = "Proxymetacaine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmifostineAllergy = new Coding
{
Code = "293732007",
Display = "Amifostine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AldesleukinAllergy = new Coding
{
Code = "293733002",
Display = "Aldesleukin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MolgramostimAllergy = new Coding
{
Code = "293735009",
Display = "Molgramostim allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LenograstimAllergy = new Coding
{
Code = "293736005",
Display = "Lenograstim allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FilgrastimAllergy = new Coding
{
Code = "293737001",
Display = "Filgrastim allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LevamisoleAllergy = new Coding
{
Code = "293738006",
Display = "Levamisole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntineoplasticAllergy = new Coding
{
Code = "293739003",
Display = "Antineoplastic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlkylatingDrugAllergy = new Coding
{
Code = "293740001",
Display = "Alkylating drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MitobronitolAllergy = new Coding
{
Code = "293741002",
Display = "Mitobronitol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BusulfanAllergy = new Coding
{
Code = "293742009",
Display = "Busulfan allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TreosulfanAllergy = new Coding
{
Code = "293743004",
Display = "Treosulfan allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThiotepaAllergy = new Coding
{
Code = "293745006",
Display = "Thiotepa allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrogenMustardDerivativeAllergy = new Coding
{
Code = "293746007",
Display = "Nitrogen mustard derivative allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorambucilAllergy = new Coding
{
Code = "293747003",
Display = "Chlorambucil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclophosphamideAllergy = new Coding
{
Code = "293748008",
Display = "Cyclophosphamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EthoglucidAllergy = new Coding
{
Code = "293749000",
Display = "Ethoglucid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IfosfamideAllergy = new Coding
{
Code = "293750000",
Display = "Ifosfamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MelphalanAllergy = new Coding
{
Code = "293751001",
Display = "Melphalan allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EstramustineAllergy = new Coding
{
Code = "293752008",
Display = "Estramustine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MustineAllergy = new Coding
{
Code = "293753003",
Display = "Mustine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrosureaAllergy = new Coding
{
Code = "293754009",
Display = "Nitrosurea allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarmustineAllergy = new Coding
{
Code = "293755005",
Display = "Carmustine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LomustineAllergy = new Coding
{
Code = "293756006",
Display = "Lomustine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriazeneAntineoplasticAllergy = new Coding
{
Code = "293757002",
Display = "Triazene antineoplastic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DacarbazineAllergy = new Coding
{
Code = "293758007",
Display = "Dacarbazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CytotoxicAntibioticAllergy = new Coding
{
Code = "293759004",
Display = "Cytotoxic antibiotic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DactinomycinAllergy = new Coding
{
Code = "293760009",
Display = "Dactinomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BleomycinAllergy = new Coding
{
Code = "293761008",
Display = "Bleomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MitomycinAllergy = new Coding
{
Code = "293762001",
Display = "Mitomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlicamycinAllergy = new Coding
{
Code = "293763006",
Display = "Plicamycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AclarubicinAllergy = new Coding
{
Code = "293764000",
Display = "Aclarubicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MitozantroneAllergy = new Coding
{
Code = "293765004",
Display = "Mitozantrone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DoxorubicinAllergy = new Coding
{
Code = "293766003",
Display = "Doxorubicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EpirubicinAllergy = new Coding
{
Code = "293767007",
Display = "Epirubicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IdarubicinAllergy = new Coding
{
Code = "293768002",
Display = "Idarubicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercuricOxideAllergy = new Coding
{
Code = "293770006",
Display = "Mercuric oxide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethotrexateAllergy = new Coding
{
Code = "293771005",
Display = "Methotrexate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercaptopurineAllergy = new Coding
{
Code = "293772003",
Display = "Mercaptopurine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThioguanineAllergy = new Coding
{
Code = "293773008",
Display = "Thioguanine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PentostatinAllergy = new Coding
{
Code = "293774002",
Display = "Pentostatin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CytarabineAllergy = new Coding
{
Code = "293775001",
Display = "Cytarabine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluorouracilAllergy = new Coding
{
Code = "293776000",
Display = "Fluorouracil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EtoposideAllergy = new Coding
{
Code = "293777009",
Display = "Etoposide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmsacrineAllergy = new Coding
{
Code = "293778004",
Display = "Amsacrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarboplatinAllergy = new Coding
{
Code = "293779007",
Display = "Carboplatin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CisplatinAllergy = new Coding
{
Code = "293780005",
Display = "Cisplatin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxyureaAllergy = new Coding
{
Code = "293781009",
Display = "Hydroxyurea allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProcarbazineAllergy = new Coding
{
Code = "293782002",
Display = "Procarbazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RazoxaneAllergy = new Coding
{
Code = "293783007",
Display = "Razoxane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CrisantaspaseAllergy = new Coding
{
Code = "293784001",
Display = "Crisantaspase allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PaclitaxelAllergy = new Coding
{
Code = "293785000",
Display = "Paclitaxel allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FludarabineAllergy = new Coding
{
Code = "293786004",
Display = "Fludarabine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AminoglutethimideAllergy = new Coding
{
Code = "293787008",
Display = "Aminoglutethimide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EstrogenAntagonistAllergy = new Coding
{
Code = "293788003",
Display = "Estrogen antagonist allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrilostaneAllergy = new Coding
{
Code = "293789006",
Display = "Trilostane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TamoxifenAllergy = new Coding
{
Code = "293790002",
Display = "Tamoxifen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FormestaneAllergy = new Coding
{
Code = "293791003",
Display = "Formestane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VincaAlkaloidAllergy = new Coding
{
Code = "293792005",
Display = "Vinca alkaloid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VinblastineAllergy = new Coding
{
Code = "293793000",
Display = "Vinblastine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VincristineAllergy = new Coding
{
Code = "293794006",
Display = "Vincristine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VindesineAllergy = new Coding
{
Code = "293795007",
Display = "Vindesine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DimethylSulfoxideAllergy = new Coding
{
Code = "293796008",
Display = "Dimethyl sulfoxide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclosporinAllergy = new Coding
{
Code = "293798009",
Display = "Cyclosporin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzathioprineAllergy = new Coding
{
Code = "293799001",
Display = "Azathioprine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Pyrazole = new Coding
{
Code = "2938004",
Display = "Pyrazole",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CentrallyActingAppetiteSuppressantAllergy = new Coding
{
Code = "293801003",
Display = "Centrally acting appetite suppressant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MazindolAllergy = new Coding
{
Code = "293802005",
Display = "Mazindol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhentermineAllergy = new Coding
{
Code = "293803000",
Display = "Phentermine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DexfenfluramineAllergy = new Coding
{
Code = "293804006",
Display = "Dexfenfluramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiethylpropionAllergy = new Coding
{
Code = "293805007",
Display = "Diethylpropion allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FenfluramineAllergy = new Coding
{
Code = "293806008",
Display = "Fenfluramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LevodopaAllergy = new Coding
{
Code = "293808009",
Display = "Levodopa allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenserazidePlusLevodopaAllergy = new Coding
{
Code = "293809001",
Display = "Benserazide + levodopa allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbidopaPlusLevodopaAllergy = new Coding
{
Code = "293810006",
Display = "Carbidopa + levodopa allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmantadineAllergy = new Coding
{
Code = "293811005",
Display = "Amantadine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ApomorphineAllergy = new Coding
{
Code = "293812003",
Display = "Apomorphine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LysurideAllergy = new Coding
{
Code = "293813008",
Display = "Lysuride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PergolideAllergy = new Coding
{
Code = "293814002",
Display = "Pergolide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BromocriptineAllergy = new Coding
{
Code = "293815001",
Display = "Bromocriptine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LithiumCarbonateAllergy = new Coding
{
Code = "293818004",
Display = "Lithium carbonate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LithiumCitrateAllergy = new Coding
{
Code = "293819007",
Display = "Lithium citrate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ButriptylineAllergy = new Coding
{
Code = "293822009",
Display = "Butriptyline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DoxepinAllergy = new Coding
{
Code = "293823004",
Display = "Doxepin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IprindoleAllergy = new Coding
{
Code = "293824005",
Display = "Iprindole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LofepramineAllergy = new Coding
{
Code = "293825006",
Display = "Lofepramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NortriptylineAllergy = new Coding
{
Code = "293826007",
Display = "Nortriptyline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrimipramineAllergy = new Coding
{
Code = "293827003",
Display = "Trimipramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmoxapineAllergy = new Coding
{
Code = "293828008",
Display = "Amoxapine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmitriptylineAllergy = new Coding
{
Code = "293829000",
Display = "Amitriptyline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClomipramineAllergy = new Coding
{
Code = "293830005",
Display = "Clomipramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DesipramineAllergy = new Coding
{
Code = "293831009",
Display = "Desipramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DothiepinAllergy = new Coding
{
Code = "293832002",
Display = "Dothiepin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImipramineAllergy = new Coding
{
Code = "293833007",
Display = "Imipramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProtriptylineAllergy = new Coding
{
Code = "293834001",
Display = "Protriptyline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MonoamineOxidaseInhibitorAllergy = new Coding
{
Code = "293835000",
Display = "Monoamine oxidase inhibitor allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenelzineAllergy = new Coding
{
Code = "293836004",
Display = "Phenelzine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IproniazidAllergy = new Coding
{
Code = "293837008",
Display = "Iproniazid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsocarboxazidAllergy = new Coding
{
Code = "293838003",
Display = "Isocarboxazid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TranylcypromineAllergy = new Coding
{
Code = "293839006",
Display = "Tranylcypromine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MoclobemideAllergy = new Coding
{
Code = "293840008",
Display = "Moclobemide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TryptophanAllergy = new Coding
{
Code = "293842000",
Display = "Tryptophan allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VenlafaxineAllergy = new Coding
{
Code = "293843005",
Display = "Venlafaxine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SelectiveSerotoninReUptakeInhibitorAllergy = new Coding
{
Code = "293844004",
Display = "Selective serotonin re-uptake inhibitor allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SertralineAllergy = new Coding
{
Code = "293845003",
Display = "Sertraline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ParoxetineAllergy = new Coding
{
Code = "293847006",
Display = "Paroxetine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NefazodoneAllergy = new Coding
{
Code = "293848001",
Display = "Nefazodone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CitalopramAllergy = new Coding
{
Code = "293849009",
Display = "Citalopram allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluoxetineAllergy = new Coding
{
Code = "293850009",
Display = "Fluoxetine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluvoxamineAllergy = new Coding
{
Code = "293851008",
Display = "Fluvoxamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MaprotilineAllergy = new Coding
{
Code = "293853006",
Display = "Maprotiline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MianserinAllergy = new Coding
{
Code = "293854000",
Display = "Mianserin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrazodoneAllergy = new Coding
{
Code = "293855004",
Display = "Trazodone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ViloxazineAllergy = new Coding
{
Code = "293856003",
Display = "Viloxazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntiepilepticAllergy = new Coding
{
Code = "293857007",
Display = "Antiepileptic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BeclamideAllergy = new Coding
{
Code = "293858002",
Display = "Beclamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LamotrigineAllergy = new Coding
{
Code = "293859005",
Display = "Lamotrigine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PiracetamAllergy = new Coding
{
Code = "293860000",
Display = "Piracetam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GabapentinAllergy = new Coding
{
Code = "293861001",
Display = "Gabapentin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumValproateAllergy = new Coding
{
Code = "293862008",
Display = "Sodium valproate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BarbiturateAntiepilepticAllergy = new Coding
{
Code = "293863003",
Display = "Barbiturate antiepileptic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylphenobarbitoneAllergy = new Coding
{
Code = "293864009",
Display = "Methylphenobarbitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenobarbitoneAllergy = new Coding
{
Code = "293865005",
Display = "Phenobarbitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrimidoneAllergy = new Coding
{
Code = "293866006",
Display = "Primidone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbamazepineAllergy = new Coding
{
Code = "293867002",
Display = "Carbamazepine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VigabatrinAllergy = new Coding
{
Code = "293868007",
Display = "Vigabatrin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenytoinAllergy = new Coding
{
Code = "293869004",
Display = "Phenytoin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EthosuximideAllergy = new Coding
{
Code = "293870003",
Display = "Ethosuximide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClonazepamAllergy = new Coding
{
Code = "293871004",
Display = "Clonazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZopicloneAllergy = new Coding
{
Code = "293874007",
Display = "Zopiclone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZolpidemAllergy = new Coding
{
Code = "293875008",
Display = "Zolpidem allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlormezanoneAllergy = new Coding
{
Code = "293876009",
Display = "Chlormezanone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethypryloneAllergy = new Coding
{
Code = "293877000",
Display = "Methyprylone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ParaldehydeAllergy = new Coding
{
Code = "293878005",
Display = "Paraldehyde allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BarbiturateSedativeAllergy = new Coding
{
Code = "293879002",
Display = "Barbiturate sedative allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmylobarbitoneAllergy = new Coding
{
Code = "293880004",
Display = "Amylobarbitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ButobarbitoneAllergy = new Coding
{
Code = "293881000",
Display = "Butobarbitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclobarbitoneAllergy = new Coding
{
Code = "293882007",
Display = "Cyclobarbitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuinalbarbitoneAllergy = new Coding
{
Code = "293884008",
Display = "Quinalbarbitone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlunitrazepamAllergy = new Coding
{
Code = "293886005",
Display = "Flunitrazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlurazepamAllergy = new Coding
{
Code = "293887001",
Display = "Flurazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LoprazolamAllergy = new Coding
{
Code = "293888006",
Display = "Loprazolam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LormetazepamAllergy = new Coding
{
Code = "293889003",
Display = "Lormetazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrazepamAllergy = new Coding
{
Code = "293890007",
Display = "Nitrazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriazolamAllergy = new Coding
{
Code = "293891006",
Display = "Triazolam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlprazolamAllergy = new Coding
{
Code = "293892004",
Display = "Alprazolam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BromazepamAllergy = new Coding
{
Code = "293893009",
Display = "Bromazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlordiazepoxideAllergy = new Coding
{
Code = "293894003",
Display = "Chlordiazepoxide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClobazamAllergy = new Coding
{
Code = "293895002",
Display = "Clobazam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KetazolamAllergy = new Coding
{
Code = "293897005",
Display = "Ketazolam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MedazepamAllergy = new Coding
{
Code = "293898000",
Display = "Medazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxazepamAllergy = new Coding
{
Code = "293899008",
Display = "Oxazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrazepamAllergy = new Coding
{
Code = "293900003",
Display = "Prazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MidazolamAllergy = new Coding
{
Code = "293901004",
Display = "Midazolam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiazepamAllergy = new Coding
{
Code = "293902006",
Display = "Diazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LorazepamAllergy = new Coding
{
Code = "293903001",
Display = "Lorazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TemazepamAllergy = new Coding
{
Code = "293904007",
Display = "Temazepam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbamateSedativeAllergy = new Coding
{
Code = "293905008",
Display = "Carbamate sedative allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MeprobamateAllergy = new Coding
{
Code = "293906009",
Display = "Meprobamate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChloralHydrateAllergy = new Coding
{
Code = "293908005",
Display = "Chloral hydrate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DichloralphenazoneAllergy = new Coding
{
Code = "293909002",
Display = "Dichloralphenazone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BuspironeAllergy = new Coding
{
Code = "293911006",
Display = "Buspirone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlormethiazoleAllergy = new Coding
{
Code = "293912004",
Display = "Chlormethiazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulpirideAllergy = new Coding
{
Code = "293914003",
Display = "Sulpiride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LoxapineAllergy = new Coding
{
Code = "293915002",
Display = "Loxapine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClozapineAllergy = new Coding
{
Code = "293916001",
Display = "Clozapine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RisperidoneAllergy = new Coding
{
Code = "293917005",
Display = "Risperidone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TetrabenazineAllergy = new Coding
{
Code = "293918000",
Display = "Tetrabenazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ButyrophenoneAllergy = new Coding
{
Code = "293919008",
Display = "Butyrophenone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenperidolAllergy = new Coding
{
Code = "293920002",
Display = "Benperidol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrifluperidolAllergy = new Coding
{
Code = "293921003",
Display = "Trifluperidol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HaloperidolDecanoateAllergy = new Coding
{
Code = "293922005",
Display = "Haloperidol decanoate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DroperidolAllergy = new Coding
{
Code = "293923000",
Display = "Droperidol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HaloperidolAllergy = new Coding
{
Code = "293924006",
Display = "Haloperidol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphenylbutylpiperidineAllergy = new Coding
{
Code = "293925007",
Display = "Diphenylbutylpiperidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PimozideAllergy = new Coding
{
Code = "293926008",
Display = "Pimozide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluspirileneAllergy = new Coding
{
Code = "293927004",
Display = "Fluspirilene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenothiazineAllergy = new Coding
{
Code = "293928009",
Display = "Phenothiazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethotrimeprazineAllergy = new Coding
{
Code = "293929001",
Display = "Methotrimeprazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PericyazineAllergy = new Coding
{
Code = "293930006",
Display = "Pericyazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThiethylperazineAllergy = new Coding
{
Code = "293933008",
Display = "Thiethylperazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluphenazineAllergy = new Coding
{
Code = "293934002",
Display = "Fluphenazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorpromazineAllergy = new Coding
{
Code = "293935001",
Display = "Chlorpromazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PipothiazineAllergy = new Coding
{
Code = "293936000",
Display = "Pipothiazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PromazineAllergy = new Coding
{
Code = "293937009",
Display = "Promazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThioridazineAllergy = new Coding
{
Code = "293938004",
Display = "Thioridazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PerphenazineAllergy = new Coding
{
Code = "293939007",
Display = "Perphenazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProchlorperazineAllergy = new Coding
{
Code = "293940009",
Display = "Prochlorperazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrifluoperazineAllergy = new Coding
{
Code = "293941008",
Display = "Trifluoperazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThioxantheneAllergy = new Coding
{
Code = "293942001",
Display = "Thioxanthene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorprothixeneAllergy = new Coding
{
Code = "293943006",
Display = "Chlorprothixene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZuclopenthixolAllergy = new Coding
{
Code = "293946003",
Display = "Zuclopenthixol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlupenthixolAllergy = new Coding
{
Code = "293948002",
Display = "Flupenthixol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxypertineAllergy = new Coding
{
Code = "293949005",
Display = "Oxypertine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RemoxiprideAllergy = new Coding
{
Code = "293950005",
Display = "Remoxipride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SelegilineAllergy = new Coding
{
Code = "293952002",
Display = "Selegiline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CentralStimulantAllergy = new Coding
{
Code = "293953007",
Display = "Central stimulant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PemolineAllergy = new Coding
{
Code = "293954001",
Display = "Pemoline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylphenidateAllergy = new Coding
{
Code = "293955000",
Display = "Methylphenidate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProlintaneAllergy = new Coding
{
Code = "293956004",
Display = "Prolintane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmphetamineGroupAllergy = new Coding
{
Code = "293957008",
Display = "Amphetamine group allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DexamphetamineAllergy = new Coding
{
Code = "293958003",
Display = "Dexamphetamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlcoholMetabolismModifierAllergy = new Coding
{
Code = "293959006",
Display = "Alcohol metabolism modifier allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DisulfiramAllergy = new Coding
{
Code = "293960001",
Display = "Disulfiram allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaAdrenoceptorBlockingDrugAllergy = new Coding
{
Code = "293962009",
Display = "Beta-adrenoceptor blocking drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CardioselectiveBetaBlockerAllergy = new Coding
{
Code = "293963004",
Display = "Cardioselective beta-blocker allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcebutololAllergy = new Coding
{
Code = "293964005",
Display = "Acebutolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AtenololAllergy = new Coding
{
Code = "293965006",
Display = "Atenolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaxololAllergy = new Coding
{
Code = "293966007",
Display = "Betaxolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BisoprololAllergy = new Coding
{
Code = "293967003",
Display = "Bisoprolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CeliprololAllergy = new Coding
{
Code = "293968008",
Display = "Celiprolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EsmololAllergy = new Coding
{
Code = "293969000",
Display = "Esmolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetoprololAllergy = new Coding
{
Code = "293970004",
Display = "Metoprolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NadololAllergy = new Coding
{
Code = "293972007",
Display = "Nadolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PindololAllergy = new Coding
{
Code = "293973002",
Display = "Pindolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarvedilolAllergy = new Coding
{
Code = "293974008",
Display = "Carvedilol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetipranololAllergy = new Coding
{
Code = "293975009",
Display = "Metipranolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarteololAllergy = new Coding
{
Code = "293976005",
Display = "Carteolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LabetalolAllergy = new Coding
{
Code = "293977001",
Display = "Labetalol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LevobunololAllergy = new Coding
{
Code = "293978006",
Display = "Levobunolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxprenololAllergy = new Coding
{
Code = "293979003",
Display = "Oxprenolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PenbutololAllergy = new Coding
{
Code = "293980000",
Display = "Penbutolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PractololAllergy = new Coding
{
Code = "293981001",
Display = "Practolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropranololAllergy = new Coding
{
Code = "293982008",
Display = "Propranolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SotalolAllergy = new Coding
{
Code = "293983003",
Display = "Sotalol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TimololAllergy = new Coding
{
Code = "293984009",
Display = "Timolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlphaAdrenoceptorBlockingDrugAllergy = new Coding
{
Code = "293985005",
Display = "Alpha-adrenoceptor blocking drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlfuzosinAllergy = new Coding
{
Code = "293986006",
Display = "Alfuzosin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DoxazosinAllergy = new Coding
{
Code = "293987002",
Display = "Doxazosin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IndoraminAllergy = new Coding
{
Code = "293988007",
Display = "Indoramin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenoxybenzamineAllergy = new Coding
{
Code = "293989004",
Display = "Phenoxybenzamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhentolamineAllergy = new Coding
{
Code = "293990008",
Display = "Phentolamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrazosinAllergy = new Coding
{
Code = "293991007",
Display = "Prazosin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TerazosinAllergy = new Coding
{
Code = "293992000",
Display = "Terazosin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NicotineAllergy = new Coding
{
Code = "293993005",
Display = "Nicotine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalciumChannelBlockerAllergy = new Coding
{
Code = "293994004",
Display = "Calcium-channel blocker allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LidoflazineAllergy = new Coding
{
Code = "293995003",
Display = "Lidoflazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NifedipineAllergy = new Coding
{
Code = "293996002",
Display = "Nifedipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrenylamineAllergy = new Coding
{
Code = "293997006",
Display = "Prenylamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsradipineAllergy = new Coding
{
Code = "293998001",
Display = "Isradipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FelodipineAllergy = new Coding
{
Code = "293999009",
Display = "Felodipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LacidipineAllergy = new Coding
{
Code = "294000006",
Display = "Lacidipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NimodipineAllergy = new Coding
{
Code = "294001005",
Display = "Nimodipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmlodipineAllergy = new Coding
{
Code = "294002003",
Display = "Amlodipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiltiazemAllergy = new Coding
{
Code = "294003008",
Display = "Diltiazem allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NicardipineAllergy = new Coding
{
Code = "294004002",
Display = "Nicardipine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VerapamilAllergy = new Coding
{
Code = "294005001",
Display = "Verapamil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ParasympathomimeticAllergy = new Coding
{
Code = "294006000",
Display = "Parasympathomimetic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PilocarpineAllergy = new Coding
{
Code = "294007009",
Display = "Pilocarpine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethacholineAllergy = new Coding
{
Code = "294009007",
Display = "Methacholine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhysostigmineAllergy = new Coding
{
Code = "294011003",
Display = "Physostigmine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DemecariumAllergy = new Coding
{
Code = "294012005",
Display = "Demecarium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DistigmineAllergy = new Coding
{
Code = "294013000",
Display = "Distigmine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EcothiopateAllergy = new Coding
{
Code = "294014006",
Display = "Ecothiopate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EdrophoniumAllergy = new Coding
{
Code = "294015007",
Display = "Edrophonium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyridostigmineAllergy = new Coding
{
Code = "294016008",
Display = "Pyridostigmine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NeostigmineAllergy = new Coding
{
Code = "294017004",
Display = "Neostigmine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BethanecholAllergy = new Coding
{
Code = "294018009",
Display = "Bethanechol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbacholAllergy = new Coding
{
Code = "294019001",
Display = "Carbachol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsoetharineHydrochlorideAllergy = new Coding
{
Code = "294021006",
Display = "Isoetharine hydrochloride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PseudoephedrineAllergy = new Coding
{
Code = "294023009",
Display = "Pseudoephedrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlphaAdrenoceptorAgonistAllergy = new Coding
{
Code = "294024003",
Display = "Alpha-adrenoceptor agonist allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxedrineTartrateAllergy = new Coding
{
Code = "294025002",
Display = "Oxedrine tartrate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetaraminolAllergy = new Coding
{
Code = "294026001",
Display = "Metaraminol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethoxamineAllergy = new Coding
{
Code = "294027005",
Display = "Methoxamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NaphazolineAllergy = new Coding
{
Code = "294028000",
Display = "Naphazoline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NorepinephrineAllergy = new Coding
{
Code = "294029008",
Display = "Norepinephrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenylephrineAllergy = new Coding
{
Code = "294030003",
Display = "Phenylephrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding XylometazolineAllergy = new Coding
{
Code = "294031004",
Display = "Xylometazoline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SelectiveBeta2AdrenoceptorStimulantsAllergy = new Coding
{
Code = "294033001",
Display = "Selective beta-2 adrenoceptor stimulants allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PirbuterolAllergy = new Coding
{
Code = "294035008",
Display = "Pirbuterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SalmeterolAllergy = new Coding
{
Code = "294036009",
Display = "Salmeterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SalbutamolAllergy = new Coding
{
Code = "294037000",
Display = "Salbutamol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BambuterolAllergy = new Coding
{
Code = "294038005",
Display = "Bambuterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FenoterolAllergy = new Coding
{
Code = "294039002",
Display = "Fenoterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OrciprenalineAllergy = new Coding
{
Code = "294040000",
Display = "Orciprenaline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ReproterolAllergy = new Coding
{
Code = "294041001",
Display = "Reproterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RimiterolAllergy = new Coding
{
Code = "294042008",
Display = "Rimiterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RitodrineAllergy = new Coding
{
Code = "294043003",
Display = "Ritodrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TerbutalineAllergy = new Coding
{
Code = "294044009",
Display = "Terbutaline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TulobuterolAllergy = new Coding
{
Code = "294045005",
Display = "Tulobuterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DobutamineAllergy = new Coding
{
Code = "294047002",
Display = "Dobutamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DopexamineAllergy = new Coding
{
Code = "294048007",
Display = "Dopexamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsoprenalineAllergy = new Coding
{
Code = "294050004",
Display = "Isoprenaline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethyldopaAllergy = new Coding
{
Code = "294055009",
Display = "Methyldopa allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethyldopaAndDiureticAllergy = new Coding
{
Code = "294056005",
Display = "Methyldopa and diuretic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ApraclonidineAllergy = new Coding
{
Code = "294057001",
Display = "Apraclonidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClonidineAllergy = new Coding
{
Code = "294058006",
Display = "Clonidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LofexidineAllergy = new Coding
{
Code = "294059003",
Display = "Lofexidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DipivefrineAllergy = new Coding
{
Code = "294060008",
Display = "Dipivefrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DopamineAllergy = new Coding
{
Code = "294061007",
Display = "Dopamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EphedrineAllergy = new Coding
{
Code = "294062000",
Display = "Ephedrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxymetazolineAllergy = new Coding
{
Code = "294063005",
Display = "Oxymetazoline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding XamoterolAllergy = new Coding
{
Code = "294064004",
Display = "Xamoterol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BelladonnaAlkaloidsAllergy = new Coding
{
Code = "294067006",
Display = "Belladonna alkaloids allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PiperidolateHydrochlorideAllergy = new Coding
{
Code = "294068001",
Display = "Piperidolate hydrochloride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BiperidenAllergy = new Coding
{
Code = "294069009",
Display = "Biperiden allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TerodilineHydrochlorideAllergy = new Coding
{
Code = "294071009",
Display = "Terodiline hydrochloride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LachesineChlorideAllergy = new Coding
{
Code = "294072002",
Display = "Lachesine chloride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TropicamideAllergy = new Coding
{
Code = "294073007",
Display = "Tropicamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HyoscineAllergy = new Coding
{
Code = "294074001",
Display = "Hyoscine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AtropineAllergy = new Coding
{
Code = "294076004",
Display = "Atropine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzhexolAllergy = new Coding
{
Code = "294077008",
Display = "Benzhexol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenztropineAllergy = new Coding
{
Code = "294078003",
Display = "Benztropine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclopentolateAllergy = new Coding
{
Code = "294079006",
Display = "Cyclopentolate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlycopyrroniumAllergy = new Coding
{
Code = "294080009",
Display = "Glycopyrronium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HomatropineAllergy = new Coding
{
Code = "294081008",
Display = "Homatropine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IpratropiumAllergy = new Coding
{
Code = "294082001",
Display = "Ipratropium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethixeneAllergy = new Coding
{
Code = "294083006",
Display = "Methixene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OrphenadrineAllergy = new Coding
{
Code = "294084000",
Display = "Orphenadrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxitropiumAllergy = new Coding
{
Code = "294087007",
Display = "Oxitropium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxybutyninAllergy = new Coding
{
Code = "294088002",
Display = "Oxybutynin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProcyclidineAllergy = new Coding
{
Code = "294089005",
Display = "Procyclidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DornaseAlfaAllergy = new Coding
{
Code = "294091002",
Display = "Dornase alfa allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MucolyticsAllergy = new Coding
{
Code = "294092009",
Display = "Mucolytics allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TyloxapolAllergy = new Coding
{
Code = "294093004",
Display = "Tyloxapol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BromhexineHydrochlorideAllergy = new Coding
{
Code = "294094005",
Display = "Bromhexine hydrochloride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbocisteineAllergy = new Coding
{
Code = "294095006",
Display = "Carbocisteine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylcysteineAllergy = new Coding
{
Code = "294096007",
Display = "Methylcysteine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcetylcysteineAllergy = new Coding
{
Code = "294097003",
Display = "Acetylcysteine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RespiratoryStimulantAllergy = new Coding
{
Code = "294098008",
Display = "Respiratory stimulant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NikethamideAllergy = new Coding
{
Code = "294099000",
Display = "Nikethamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EthamivanAllergy = new Coding
{
Code = "294100008",
Display = "Ethamivan allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DoxapramAllergy = new Coding
{
Code = "294101007",
Display = "Doxapram allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RespiratorySurfactantAllergy = new Coding
{
Code = "294102000",
Display = "Respiratory surfactant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BeractantAllergy = new Coding
{
Code = "294103005",
Display = "Beractant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PumactantAllergy = new Coding
{
Code = "294105003",
Display = "Pumactant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ColfoscerilAllergy = new Coding
{
Code = "294106002",
Display = "Colfosceril allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding H1AntihistamineAllergy = new Coding
{
Code = "294109009",
Display = "H1 antihistamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AstemizoleAllergy = new Coding
{
Code = "294111000",
Display = "Astemizole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TerfenadineAllergy = new Coding
{
Code = "294112007",
Display = "Terfenadine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcrivastineAllergy = new Coding
{
Code = "294113002",
Display = "Acrivastine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LoratadineAllergy = new Coding
{
Code = "294114008",
Display = "Loratadine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzelastineAllergy = new Coding
{
Code = "294115009",
Display = "Azelastine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CetirizineAllergy = new Coding
{
Code = "294116005",
Display = "Cetirizine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClemastineAllergy = new Coding
{
Code = "294118006",
Display = "Clemastine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MebhydrolinAllergy = new Coding
{
Code = "294119003",
Display = "Mebhydrolin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MequitazineAllergy = new Coding
{
Code = "294120009",
Display = "Mequitazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxatomideAllergy = new Coding
{
Code = "294121008",
Display = "Oxatomide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclizineAllergy = new Coding
{
Code = "294122001",
Display = "Cyclizine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DimenhydrinateAllergy = new Coding
{
Code = "294123006",
Display = "Dimenhydrinate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntazolineAllergy = new Coding
{
Code = "294125004",
Display = "Antazoline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PromethazineAllergy = new Coding
{
Code = "294126003",
Display = "Promethazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzatadineAllergy = new Coding
{
Code = "294127007",
Display = "Azatadine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BrompheniramineAllergy = new Coding
{
Code = "294128002",
Display = "Brompheniramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorpheniramineAllergy = new Coding
{
Code = "294129005",
Display = "Chlorpheniramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CinnarizineAllergy = new Coding
{
Code = "294130000",
Display = "Cinnarizine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyproheptadineAllergy = new Coding
{
Code = "294131001",
Display = "Cyproheptadine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DimethindeneAllergy = new Coding
{
Code = "294132008",
Display = "Dimethindene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphenhydramineAllergy = new Coding
{
Code = "294133003",
Display = "Diphenhydramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphenylpyralineAllergy = new Coding
{
Code = "294134009",
Display = "Diphenylpyraline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxyzineAllergy = new Coding
{
Code = "294135005",
Display = "Hydroxyzine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MepyramineAllergy = new Coding
{
Code = "294136006",
Display = "Mepyramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenindamineAllergy = new Coding
{
Code = "294137002",
Display = "Phenindamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PheniramineAllergy = new Coding
{
Code = "294138007",
Display = "Pheniramine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriprolidineAllergy = new Coding
{
Code = "294139004",
Display = "Triprolidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrimeprazineAllergy = new Coding
{
Code = "294140002",
Display = "Trimeprazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NedocromilAllergy = new Coding
{
Code = "294142005",
Display = "Nedocromil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KetotifenAllergy = new Coding
{
Code = "294144006",
Display = "Ketotifen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LodoxamideAllergy = new Coding
{
Code = "294145007",
Display = "Lodoxamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsoaminileAllergy = new Coding
{
Code = "294148009",
Display = "Isoaminile allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoscapineAllergy = new Coding
{
Code = "294152009",
Display = "Noscapine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PholcodineAllergy = new Coding
{
Code = "294153004",
Display = "Pholcodine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding XanthineAllergy = new Coding
{
Code = "294157003",
Display = "Xanthine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AminophyllineAllergy = new Coding
{
Code = "294158008",
Display = "Aminophylline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TheophyllineAllergy = new Coding
{
Code = "294160005",
Display = "Theophylline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalamineAllergy = new Coding
{
Code = "294168003",
Display = "Calamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoalTarAllergy = new Coding
{
Code = "294169006",
Display = "Coal tar allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BufexamacAllergy = new Coding
{
Code = "294172004",
Display = "Bufexamac allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DithranolAllergy = new Coding
{
Code = "294173009",
Display = "Dithranol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IchthammolAllergy = new Coding
{
Code = "294177005",
Display = "Ichthammol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalcipotriolAllergy = new Coding
{
Code = "294178000",
Display = "Calcipotriol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzelaicAcidAllergy = new Coding
{
Code = "294180006",
Display = "Azelaic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BromineComplexesAllergy = new Coding
{
Code = "294181005",
Display = "Bromine complexes allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PodophyllumResinAllergy = new Coding
{
Code = "294182003",
Display = "Podophyllum resin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PodophyllotoxinAllergy = new Coding
{
Code = "294183008",
Display = "Podophyllotoxin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SunscreeningPreparationAllergy = new Coding
{
Code = "294184002",
Display = "Sunscreening preparation allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SurgicalTissueAdhesiveAllergy = new Coding
{
Code = "294189007",
Display = "Surgical tissue adhesive allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EnbucrilateAllergy = new Coding
{
Code = "294190003",
Display = "Enbucrilate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CollodionAllergy = new Coding
{
Code = "294191004",
Display = "Collodion allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToCounterIrritant = new Coding
{
Code = "294192006",
Display = "Allergy to counter irritant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EmollientAllergy = new Coding
{
Code = "294193001",
Display = "Emollient allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PoulticeAllergy = new Coding
{
Code = "294194007",
Display = "Poultice allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlkaliMetalSoapAllergy = new Coding
{
Code = "294196009",
Display = "Alkali metal soap allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AstringentAllergy = new Coding
{
Code = "294197000",
Display = "Astringent allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CrotamitonAllergy = new Coding
{
Code = "294200004",
Display = "Crotamiton allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Carbon14CXylose = new Coding
{
Code = "2942001",
Display = "Carbon (14-C) xylose",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TopicalAbrasiveAgentAllergy = new Coding
{
Code = "294202007",
Display = "Topical abrasive agent allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzoylPeroxideAllergy = new Coding
{
Code = "294203002",
Display = "Benzoyl peroxide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SilverNitrateAllergy = new Coding
{
Code = "294204008",
Display = "Silver nitrate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GamolenicAcidAllergy = new Coding
{
Code = "294206005",
Display = "Gamolenic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RetinoidAllergy = new Coding
{
Code = "294207001",
Display = "Retinoid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EtretinateAllergy = new Coding
{
Code = "294208006",
Display = "Etretinate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcitretinAllergy = new Coding
{
Code = "294209003",
Display = "Acitretin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TretinoinAllergy = new Coding
{
Code = "294210008",
Display = "Tretinoin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsotretinoinAllergy = new Coding
{
Code = "294211007",
Display = "Isotretinoin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ColchicumAlkaloidAllergy = new Coding
{
Code = "294214004",
Display = "Colchicum alkaloid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ColchicineAllergy = new Coding
{
Code = "294215003",
Display = "Colchicine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProbenecidAllergy = new Coding
{
Code = "294217006",
Display = "Probenecid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfinpyrazoneAllergy = new Coding
{
Code = "294218001",
Display = "Sulfinpyrazone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding XanthineOxidaseInhibitorAllergy = new Coding
{
Code = "294219009",
Display = "Xanthine oxidase inhibitor allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllopurinolAllergy = new Coding
{
Code = "294220003",
Display = "Allopurinol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SkeletalMuscleRelaxantAllergy = new Coding
{
Code = "294221004",
Display = "Skeletal muscle relaxant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SuxamethoniumAllergy = new Coding
{
Code = "294224007",
Display = "Suxamethonium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NonDepolarizingMuscleRelaxantAllergy = new Coding
{
Code = "294225008",
Display = "Non-depolarizing muscle relaxant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MivacuriumAllergy = new Coding
{
Code = "294226009",
Display = "Mivacurium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlcuroniumAllergy = new Coding
{
Code = "294227000",
Display = "Alcuronium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AtracuriumAllergy = new Coding
{
Code = "294228005",
Display = "Atracurium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GallamineAllergy = new Coding
{
Code = "294229002",
Display = "Gallamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PancuroniumAllergy = new Coding
{
Code = "294230007",
Display = "Pancuronium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TubocurarineAllergy = new Coding
{
Code = "294231006",
Display = "Tubocurarine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VecuroniumAllergy = new Coding
{
Code = "294232004",
Display = "Vecuronium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RocuroniumAllergy = new Coding
{
Code = "294233009",
Display = "Rocuronium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BaclofenAllergy = new Coding
{
Code = "294234003",
Display = "Baclofen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarisoprodolAllergy = new Coding
{
Code = "294235002",
Display = "Carisoprodol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethocarbamolAllergy = new Coding
{
Code = "294236001",
Display = "Methocarbamol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DantroleneAllergy = new Coding
{
Code = "294237005",
Display = "Dantrolene allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GoldAllergy = new Coding
{
Code = "294238000",
Display = "Gold allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumAurothiomalateAllergy = new Coding
{
Code = "294239008",
Display = "Sodium aurothiomalate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AuranofinAllergy = new Coding
{
Code = "294240005",
Display = "Auranofin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PapaverineAllergy = new Coding
{
Code = "294242002",
Display = "Papaverine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlavoxateAllergy = new Coding
{
Code = "294243007",
Display = "Flavoxate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MifepristoneAllergy = new Coding
{
Code = "294245000",
Display = "Mifepristone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NonIonicSurfactantAllergy = new Coding
{
Code = "294246004",
Display = "Non-ionic surfactant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NonoxinolAllergy = new Coding
{
Code = "294247008",
Display = "Nonoxinol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OctoxinolAllergy = new Coding
{
Code = "294248003",
Display = "Octoxinol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProstaglandinAllergy = new Coding
{
Code = "294249006",
Display = "Prostaglandin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ASeriesProstaglandinAllergy = new Coding
{
Code = "294250006",
Display = "A series prostaglandin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ESeriesProstaglandinAllergy = new Coding
{
Code = "294252003",
Display = "E series prostaglandin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DinoprostoneAllergy = new Coding
{
Code = "294253008",
Display = "Dinoprostone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GemeprostAllergy = new Coding
{
Code = "294254002",
Display = "Gemeprost allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlprostadilAllergy = new Coding
{
Code = "294255001",
Display = "Alprostadil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FSeriesProstaglandinAllergy = new Coding
{
Code = "294256000",
Display = "F series prostaglandin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DinoprostAllergy = new Coding
{
Code = "294257009",
Display = "Dinoprost allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarboprostAllergy = new Coding
{
Code = "294258004",
Display = "Carboprost allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ISeriesProstaglandinAllergy = new Coding
{
Code = "294259007",
Display = "I series prostaglandin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EpoprostenolAllergy = new Coding
{
Code = "294260002",
Display = "Epoprostenol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TerpenesAllergy = new Coding
{
Code = "294261003",
Display = "Terpenes allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntidoteAllergy = new Coding
{
Code = "294263000",
Display = "Antidote allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IpecacuanhaAllergy = new Coding
{
Code = "294264006",
Display = "Ipecacuanha allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CharcoalActivatedAllergy = new Coding
{
Code = "294265007",
Display = "Charcoal-activated allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumNitriteAllergy = new Coding
{
Code = "294266008",
Display = "Sodium nitrite allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DigoxinSpecificAntibodyAllergy = new Coding
{
Code = "294268009",
Display = "Digoxin-specific-antibody allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MesnaAllergy = new Coding
{
Code = "294269001",
Display = "Mesna allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzodiazepineAntagonistAllergy = new Coding
{
Code = "294270000",
Display = "Benzodiazepine antagonist allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlumazenilAllergy = new Coding
{
Code = "294271001",
Display = "Flumazenil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PralidoximeAllergy = new Coding
{
Code = "294273003",
Display = "Pralidoxime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OpioidAntagonistAllergy = new Coding
{
Code = "294275005",
Display = "Opioid antagonist allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NaltrexoneAllergy = new Coding
{
Code = "294276006",
Display = "Naltrexone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NaloxoneAllergy = new Coding
{
Code = "294277002",
Display = "Naloxone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProtamineAllergy = new Coding
{
Code = "294278007",
Display = "Protamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FullersEarthPowderAllergy = new Coding
{
Code = "294280001",
Display = "Fullers earth powder allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToBentonite = new Coding
{
Code = "294281002",
Display = "Allergy to bentonite",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChelatingAgentAllergy = new Coding
{
Code = "294282009",
Display = "Chelating agent allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DimercaprolAllergy = new Coding
{
Code = "294283004",
Display = "Dimercaprol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DesferrioxamineAllergy = new Coding
{
Code = "294284005",
Display = "Desferrioxamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EdetateAllergy = new Coding
{
Code = "294285006",
Display = "Edetate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrientineAllergy = new Coding
{
Code = "294290009",
Display = "Trientine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PenicillamineAllergy = new Coding
{
Code = "294291008",
Display = "Penicillamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlycineAllergy = new Coding
{
Code = "294298002",
Display = "Glycine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DialysisFluidAllergy = new Coding
{
Code = "294299005",
Display = "Dialysis fluid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DimethylEtherPropaneAllergy = new Coding
{
Code = "294306008",
Display = "Dimethyl-ether propane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FixedOilAllergy = new Coding
{
Code = "294315001",
Display = "Fixed oil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OliveOilAllergy = new Coding
{
Code = "294316000",
Display = "Olive oil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ArachisOilAllergy = new Coding
{
Code = "294317009",
Display = "Arachis oil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CastorOilAllergy = new Coding
{
Code = "294318004",
Display = "Castor oil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlycerolAllergy = new Coding
{
Code = "294320001",
Display = "Glycerol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ParaffinAllergy = new Coding
{
Code = "294324005",
Display = "Paraffin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LiquidParaffinAllergy = new Coding
{
Code = "294327003",
Display = "Liquid paraffin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SiliconeAllergy = new Coding
{
Code = "294328008",
Display = "Silicone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DimethiconeAllergy = new Coding
{
Code = "294329000",
Display = "Dimethicone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding WoolAlcoholAllergy = new Coding
{
Code = "294330005",
Display = "Wool alcohol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PolyvinylAlcoholAllergy = new Coding
{
Code = "294332002",
Display = "Polyvinyl alcohol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Carbomer940Allergy = new Coding
{
Code = "294333007",
Display = "Carbomer-940 allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CelluloseDerivedViscosityModifierAllergy = new Coding
{
Code = "294334001",
Display = "Cellulose-derived viscosity modifier allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HypromelloseAllergy = new Coding
{
Code = "294335000",
Display = "Hypromellose allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxyethylcelluloseAllergy = new Coding
{
Code = "294337008",
Display = "Hydroxyethylcellulose allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarmelloseAllergy = new Coding
{
Code = "294339006",
Display = "Carmellose allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntifungalDrugAllergy = new Coding
{
Code = "294340008",
Display = "Antifungal drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlucytosineAllergy = new Coding
{
Code = "294341007",
Display = "Flucytosine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TerbinafineAllergy = new Coding
{
Code = "294342000",
Display = "Terbinafine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrophenolAllergy = new Coding
{
Code = "294343005",
Display = "Nitrophenol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TolnaftateAllergy = new Coding
{
Code = "294344004",
Display = "Tolnaftate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmorolfineAllergy = new Coding
{
Code = "294346002",
Display = "Amorolfine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GriseofulvinAllergy = new Coding
{
Code = "294348001",
Display = "Griseofulvin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmphotericinAllergy = new Coding
{
Code = "294349009",
Display = "Amphotericin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NatamycinAllergy = new Coding
{
Code = "294350009",
Display = "Natamycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NystatinAllergy = new Coding
{
Code = "294351008",
Display = "Nystatin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzoleAntifungalAllergy = new Coding
{
Code = "294352001",
Display = "Azole antifungal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToUndecenoate = new Coding
{
Code = "294354000",
Display = "Allergy to undecenoate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImidazoleAntifungalAllergy = new Coding
{
Code = "294355004",
Display = "Imidazole antifungal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClotrimazoleAllergy = new Coding
{
Code = "294356003",
Display = "Clotrimazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FenticonazoleAllergy = new Coding
{
Code = "294357007",
Display = "Fenticonazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TioconazoleAllergy = new Coding
{
Code = "294358002",
Display = "Tioconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EconazoleAllergy = new Coding
{
Code = "294359005",
Display = "Econazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsoconazoleAllergy = new Coding
{
Code = "294360000",
Display = "Isoconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulconazoleAllergy = new Coding
{
Code = "294361001",
Display = "Sulconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KetoconazoleAllergy = new Coding
{
Code = "294362008",
Display = "Ketoconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MiconazoleAllergy = new Coding
{
Code = "294363003",
Display = "Miconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriazoleAntifungalsAllergy = new Coding
{
Code = "294364009",
Display = "Triazole antifungals allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluconazoleAllergy = new Coding
{
Code = "294365005",
Display = "Fluconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ItraconazoleAllergy = new Coding
{
Code = "294366006",
Display = "Itraconazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntiviralDrugAllergy = new Coding
{
Code = "294367002",
Display = "Antiviral drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InosinePranobexAllergy = new Coding
{
Code = "294368007",
Display = "Inosine pranobex allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZidovudineAllergy = new Coding
{
Code = "294369004",
Display = "Zidovudine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GanciclovirAllergy = new Coding
{
Code = "294370003",
Display = "Ganciclovir allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FamciclovirAllergy = new Coding
{
Code = "294371004",
Display = "Famciclovir allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DidanosineAllergy = new Coding
{
Code = "294372006",
Display = "Didanosine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZalcitabineAllergy = new Coding
{
Code = "294373001",
Display = "Zalcitabine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ValaciclovirAllergy = new Coding
{
Code = "294374007",
Display = "Valaciclovir allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InterferonsAllergy = new Coding
{
Code = "294375008",
Display = "Interferons allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HumanInterferonGamma1bAllergy = new Coding
{
Code = "294376009",
Display = "Human interferon gamma-1b allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InterferonA2aAllergy = new Coding
{
Code = "294377000",
Display = "Interferon-A-2a allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InterferonA2bAllergy = new Coding
{
Code = "294378005",
Display = "Interferon-A-2b allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InterferonAN1Allergy = new Coding
{
Code = "294379002",
Display = "Interferon-A-N1 allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TribavirinAllergy = new Coding
{
Code = "294380004",
Display = "Tribavirin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrifluorothymidineAllergy = new Coding
{
Code = "294381000",
Display = "Trifluorothymidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FoscarnetAllergy = new Coding
{
Code = "294382007",
Display = "Foscarnet allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VidarabineAllergy = new Coding
{
Code = "294383002",
Display = "Vidarabine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AciclovirAllergy = new Coding
{
Code = "294384008",
Display = "Aciclovir allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IdoxuridineAllergy = new Coding
{
Code = "294385009",
Display = "Idoxuridine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntimalarialDrugAllergy = new Coding
{
Code = "294387001",
Display = "Antimalarial drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyrimethamineAllergy = new Coding
{
Code = "294388006",
Display = "Pyrimethamine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AminoquinolineAntimalarialAllergy = new Coding
{
Code = "294389003",
Display = "Aminoquinoline antimalarial allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmodiaquineAllergy = new Coding
{
Code = "294390007",
Display = "Amodiaquine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrimaquineAllergy = new Coding
{
Code = "294391006",
Display = "Primaquine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MefloquineAllergy = new Coding
{
Code = "294392004",
Display = "Mefloquine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxychloroquineAllergy = new Coding
{
Code = "294393009",
Display = "Hydroxychloroquine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChloroquineAllergy = new Coding
{
Code = "294394003",
Display = "Chloroquine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BiguanideAntimalarialAllergy = new Coding
{
Code = "294395002",
Display = "Biguanide antimalarial allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProguanilAllergy = new Coding
{
Code = "294396001",
Display = "Proguanil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CinchonaAntimalarialAllergy = new Coding
{
Code = "294397005",
Display = "Cinchona antimalarial allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuinineAllergy = new Coding
{
Code = "294398000",
Display = "Quinine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HalofantrineAllergy = new Coding
{
Code = "294399008",
Display = "Halofantrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MepacrineAllergy = new Coding
{
Code = "294400001",
Display = "Mepacrine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AceticAcidAllergy = new Coding
{
Code = "294404005",
Display = "Acetic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydrargaphenAllergy = new Coding
{
Code = "294405006",
Display = "Hydrargaphen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PolynoxylinAllergy = new Coding
{
Code = "294406007",
Display = "Polynoxylin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HexetidineAllergy = new Coding
{
Code = "294407003",
Display = "Hexetidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumPerborateAllergy = new Coding
{
Code = "294408008",
Display = "Sodium perborate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PotassiumPermanganateAllergy = new Coding
{
Code = "294410005",
Display = "Potassium permanganate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BismuthSubnitrateAndIodoformPasteImpregnatedGauzeAllergy = new Coding
{
Code = "294411009",
Display = "Bismuth subnitrate and iodoform paste impregnated gauze allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThymolAllergy = new Coding
{
Code = "294413007",
Display = "Thymol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChloroxylenolAllergy = new Coding
{
Code = "294415000",
Display = "Chloroxylenol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HexachlorophaneAllergy = new Coding
{
Code = "294416004",
Display = "Hexachlorophane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriclosanAllergy = new Coding
{
Code = "294417008",
Display = "Triclosan allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenolAllergy = new Coding
{
Code = "294418003",
Display = "Phenol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IndustrialMethylatedSpiritAllergy = new Coding
{
Code = "294421001",
Display = "Industrial methylated spirit allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlutaraldehydeAllergy = new Coding
{
Code = "294423003",
Display = "Glutaraldehyde allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoxythiolinAllergy = new Coding
{
Code = "294425005",
Display = "Noxythiolin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FormaldehydeAllergy = new Coding
{
Code = "294426006",
Display = "Formaldehyde allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmidineDisinfectantAllergy = new Coding
{
Code = "294427002",
Display = "Amidine disinfectant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BiguanideDisinfectantAllergy = new Coding
{
Code = "294430009",
Display = "Biguanide disinfectant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorhexidineAllergy = new Coding
{
Code = "294431008",
Display = "Chlorhexidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorhexidineHydrochlorideAndNeomycinSulfateAllergy = new Coding
{
Code = "294432001",
Display = "Chlorhexidine hydrochloride and neomycin sulfate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BorateAllergy = new Coding
{
Code = "294433006",
Display = "Borate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BoricAcidAllergy = new Coding
{
Code = "294434000",
Display = "Boric acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuaternaryAmmoniumSurfactantAllergy = new Coding
{
Code = "294436003",
Display = "Quaternary ammonium surfactant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CetrimideAllergy = new Coding
{
Code = "294437007",
Display = "Cetrimide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzalkoniumAllergy = new Coding
{
Code = "294438002",
Display = "Benzalkonium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DomiphenAllergy = new Coding
{
Code = "294439005",
Display = "Domiphen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuaternaryPyridiniumSurfactantAllergy = new Coding
{
Code = "294440007",
Display = "Quaternary pyridinium surfactant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CetylpyridiniumAllergy = new Coding
{
Code = "294441006",
Display = "Cetylpyridinium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuaternaryQuinoliniumSurfactantAllergy = new Coding
{
Code = "294442004",
Display = "Quaternary quinolinium surfactant allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DequaliniumAllergy = new Coding
{
Code = "294443009",
Display = "Dequalinium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CrystalVioletAllergy = new Coding
{
Code = "294447005",
Display = "Crystal violet allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BrilliantGreenAllergy = new Coding
{
Code = "294448000",
Display = "Brilliant green allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydrogenPeroxideAllergy = new Coding
{
Code = "294449008",
Display = "Hydrogen peroxide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnthelminticsAllergy = new Coding
{
Code = "294450008",
Display = "Anthelmintics allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PiperazineAllergy = new Coding
{
Code = "294451007",
Display = "Piperazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyrantelAllergy = new Coding
{
Code = "294452000",
Display = "Pyrantel allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NiclosamideAllergy = new Coding
{
Code = "294453005",
Display = "Niclosamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BepheniumAllergy = new Coding
{
Code = "294455003",
Display = "Bephenium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiethylcarbamazineAllergy = new Coding
{
Code = "294456002",
Display = "Diethylcarbamazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzimidazoleAnthelminticAllergy = new Coding
{
Code = "294457006",
Display = "Benzimidazole anthelmintic allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MebendazoleAllergy = new Coding
{
Code = "294458001",
Display = "Mebendazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlbendazoleAllergy = new Coding
{
Code = "294459009",
Display = "Albendazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThiabendazoleAllergy = new Coding
{
Code = "294460004",
Display = "Thiabendazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntibacterialDrugAllergy = new Coding
{
Code = "294461000",
Display = "Antibacterial drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AminoglycosidesAllergy = new Coding
{
Code = "294462007",
Display = "Aminoglycosides allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmikacinAllergy = new Coding
{
Code = "294463002",
Display = "Amikacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KanamycinAllergy = new Coding
{
Code = "294464008",
Display = "Kanamycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NetilmicinAllergy = new Coding
{
Code = "294465009",
Display = "Netilmicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding StreptomycinAllergy = new Coding
{
Code = "294466005",
Display = "Streptomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FramycetinAllergy = new Coding
{
Code = "294467001",
Display = "Framycetin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NeomycinAllergy = new Coding
{
Code = "294468006",
Display = "Neomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GentamicinAllergy = new Coding
{
Code = "294469003",
Display = "Gentamicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TobramycinAllergy = new Coding
{
Code = "294470002",
Display = "Tobramycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClarithromycinAllergy = new Coding
{
Code = "294471003",
Display = "Clarithromycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzithromycinAllergy = new Coding
{
Code = "294472005",
Display = "Azithromycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SpectinomycinAllergy = new Coding
{
Code = "294474006",
Display = "Spectinomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VancomycinAllergy = new Coding
{
Code = "294475007",
Display = "Vancomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TeicoplaninAllergy = new Coding
{
Code = "294476008",
Display = "Teicoplanin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrimethoprimAllergy = new Coding
{
Code = "294477004",
Display = "Trimethoprim allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrofurantoinAllergy = new Coding
{
Code = "294478009",
Display = "Nitrofurantoin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HexamineHippurateAllergy = new Coding
{
Code = "294479001",
Display = "Hexamine hippurate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MupirocinAllergy = new Coding
{
Code = "294480003",
Display = "Mupirocin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrofurazoneAllergy = new Coding
{
Code = "294481004",
Display = "Nitrofurazone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FusidicAcidAllergy = new Coding
{
Code = "294482006",
Display = "Fusidic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL4QuinolonesAllergy = new Coding
{
Code = "294483001",
Display = "4-quinolones allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcrosoxacinAllergy = new Coding
{
Code = "294484007",
Display = "Acrosoxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CinoxacinAllergy = new Coding
{
Code = "294485008",
Display = "Cinoxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NalidixicAcidAllergy = new Coding
{
Code = "294486009",
Display = "Nalidixic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CiprofloxacinAllergy = new Coding
{
Code = "294487000",
Display = "Ciprofloxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EnoxacinAllergy = new Coding
{
Code = "294488005",
Display = "Enoxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OfloxacinAllergy = new Coding
{
Code = "294489002",
Display = "Ofloxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NorfloxacinAllergy = new Coding
{
Code = "294490006",
Display = "Norfloxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TemafloxacinAllergy = new Coding
{
Code = "294491005",
Display = "Temafloxacin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PenicillinaseSensitivePenicillinsAllergy = new Coding
{
Code = "294492003",
Display = "Penicillinase-sensitive penicillins allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenethaminePenicillinAllergy = new Coding
{
Code = "294494002",
Display = "Benethamine penicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenethicillinAllergy = new Coding
{
Code = "294496000",
Display = "Phenethicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenoxymethylpenicillinAllergy = new Coding
{
Code = "294497009",
Display = "Phenoxymethylpenicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzylpenicillinAllergy = new Coding
{
Code = "294499007",
Display = "Benzylpenicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PenicillinaseResistantPenicillinsAllergy = new Coding
{
Code = "294500003",
Display = "Penicillinase-resistant penicillins allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CloxacillinAllergy = new Coding
{
Code = "294501004",
Display = "Cloxacillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlucloxacillinAllergy = new Coding
{
Code = "294502006",
Display = "Flucloxacillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethicillinAllergy = new Coding
{
Code = "294503001",
Display = "Methicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BroadSpectrumPenicillinsAllergy = new Coding
{
Code = "294504007",
Display = "Broad spectrum penicillins allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmoxycillinAllergy = new Coding
{
Code = "294505008",
Display = "Amoxycillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmpicillinAllergy = new Coding
{
Code = "294506009",
Display = "Ampicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CiclacillinAllergy = new Coding
{
Code = "294507000",
Display = "Ciclacillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MezlocillinAllergy = new Coding
{
Code = "294508005",
Display = "Mezlocillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PivampicillinAllergy = new Coding
{
Code = "294509002",
Display = "Pivampicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbenicillinAllergy = new Coding
{
Code = "294510007",
Display = "Carbenicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BacampicillinAllergy = new Coding
{
Code = "294511006",
Display = "Bacampicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TalampicillinAllergy = new Coding
{
Code = "294512004",
Display = "Talampicillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntipseudomonalPenicillinsAllergy = new Coding
{
Code = "294513009",
Display = "Antipseudomonal penicillins allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TemocillinAllergy = new Coding
{
Code = "294514003",
Display = "Temocillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PiperacillinAllergy = new Coding
{
Code = "294515002",
Display = "Piperacillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzlocillinAllergy = new Coding
{
Code = "294516001",
Display = "Azlocillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TicarcillinAllergy = new Coding
{
Code = "294517005",
Display = "Ticarcillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarfecillinAllergy = new Coding
{
Code = "294518000",
Display = "Carfecillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MecillinamAllergy = new Coding
{
Code = "294519008",
Display = "Mecillinam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PivmecillinamAllergy = new Coding
{
Code = "294520002",
Display = "Pivmecillinam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmpicillinAndCloxacillinAllergy = new Coding
{
Code = "294522005",
Display = "Ampicillin and cloxacillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmoxicillinPlusClavulanatePotassiumAllergy = new Coding
{
Code = "294523000",
Display = "Amoxicillin + clavulanate potassium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmpicillinPlusFloxacillinAllergy = new Coding
{
Code = "294524006",
Display = "Ampicillin + floxacillin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PiperacillinAndTazobactamAllergy = new Coding
{
Code = "294525007",
Display = "Piperacillin and tazobactam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PivampicillinAndPivmecillinamAllergy = new Coding
{
Code = "294526008",
Display = "Pivampicillin and pivmecillinam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TicarcillinAndClavulanicAcidAllergy = new Coding
{
Code = "294527004",
Display = "Ticarcillin and clavulanic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PolymyxinsAllergy = new Coding
{
Code = "294528009",
Display = "Polymyxins allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ColistinAllergy = new Coding
{
Code = "294529001",
Display = "Colistin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PolymyxinBAllergy = new Coding
{
Code = "294530006",
Display = "Polymyxin B allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbapenemAllergy = new Coding
{
Code = "294531005",
Display = "Carbapenem allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephalosporinAllergy = new Coding
{
Code = "294532003",
Display = "Cephalosporin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FirstGenerationCephalosporinAllergy = new Coding
{
Code = "294533008",
Display = "First generation cephalosporin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefadroxilAllergy = new Coding
{
Code = "294534002",
Display = "Cefadroxil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephalexinAllergy = new Coding
{
Code = "294535001",
Display = "Cephalexin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephalothinAllergy = new Coding
{
Code = "294536000",
Display = "Cephalothin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephazolinAllergy = new Coding
{
Code = "294537009",
Display = "Cephazolin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephradineAllergy = new Coding
{
Code = "294538004",
Display = "Cephradine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LatamoxefAllergy = new Coding
{
Code = "294539007",
Display = "Latamoxef allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SecondGenerationCephalosporinAllergy = new Coding
{
Code = "294540009",
Display = "Second generation cephalosporin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefaclorAllergy = new Coding
{
Code = "294541008",
Display = "Cefaclor allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefuroximeAllergy = new Coding
{
Code = "294542001",
Display = "Cefuroxime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephamandoleAllergy = new Coding
{
Code = "294543006",
Display = "Cephamandole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefotaximeAllergy = new Coding
{
Code = "294545004",
Display = "Cefotaxime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CeftazidimeAllergy = new Coding
{
Code = "294546003",
Display = "Ceftazidime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CeftizoximeAllergy = new Coding
{
Code = "294547007",
Display = "Ceftizoxime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefiximeAllergy = new Coding
{
Code = "294548002",
Display = "Cefixime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefodizimeAllergy = new Coding
{
Code = "294549005",
Display = "Cefodizime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefpodoximeAllergy = new Coding
{
Code = "294550005",
Display = "Cefpodoxime allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CeftriaxoneAllergy = new Coding
{
Code = "294551009",
Display = "Ceftriaxone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CeftibutenAllergy = new Coding
{
Code = "294552002",
Display = "Ceftibuten allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefsulodinAllergy = new Coding
{
Code = "294554001",
Display = "Cefsulodin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FourthGenerationCephalosporinAllergy = new Coding
{
Code = "294555000",
Display = "Fourth generation cephalosporin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefpiromeAllergy = new Coding
{
Code = "294556004",
Display = "Cefpirome allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CephamycinAllergy = new Coding
{
Code = "294557008",
Display = "Cephamycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefoxitinAllergy = new Coding
{
Code = "294558003",
Display = "Cefoxitin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FosfomycinAllergy = new Coding
{
Code = "294559006",
Display = "Fosfomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClindamycinAllergy = new Coding
{
Code = "294561002",
Display = "Clindamycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LincomycinAllergy = new Coding
{
Code = "294562009",
Display = "Lincomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MandelicAcidAllergy = new Coding
{
Code = "294563004",
Display = "Mandelic acid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MonobactamAllergy = new Coding
{
Code = "294564005",
Display = "Monobactam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AztreonamAllergy = new Coding
{
Code = "294565006",
Display = "Aztreonam allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitroimidazoleAllergy = new Coding
{
Code = "294566007",
Display = "Nitroimidazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetronidazoleAllergy = new Coding
{
Code = "294567003",
Display = "Metronidazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TinidazoleAllergy = new Coding
{
Code = "294568008",
Display = "Tinidazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NimorazoleAllergy = new Coding
{
Code = "294569000",
Display = "Nimorazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalciumSulfaloxateAllergy = new Coding
{
Code = "294570004",
Display = "Calcium sulfaloxate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhthalylsulfathiazoleAllergy = new Coding
{
Code = "294571000",
Display = "Phthalylsulfathiazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfametopyrazineAllergy = new Coding
{
Code = "294572007",
Display = "Sulfametopyrazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfadiazineAllergy = new Coding
{
Code = "294573002",
Display = "Sulfadiazine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfadimethoxineAllergy = new Coding
{
Code = "294574008",
Display = "Sulfadimethoxine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfadimidineAllergy = new Coding
{
Code = "294575009",
Display = "Sulfadimidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfafurazoleAllergy = new Coding
{
Code = "294576005",
Display = "Sulfafurazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfaguanidineAllergy = new Coding
{
Code = "294577001",
Display = "Sulfaguanidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfaureaAllergy = new Coding
{
Code = "294578006",
Display = "Sulfaurea allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MafenideAllergy = new Coding
{
Code = "294579003",
Display = "Mafenide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfacetamideAllergy = new Coding
{
Code = "294582008",
Display = "Sulfacetamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClomocyclineSodiumAllergy = new Coding
{
Code = "294584009",
Display = "Clomocycline sodium allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DoxycyclineAllergy = new Coding
{
Code = "294585005",
Display = "Doxycycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymecyclineAllergy = new Coding
{
Code = "294586006",
Display = "Lymecycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MinocyclineAllergy = new Coding
{
Code = "294587002",
Display = "Minocycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxytetracyclineAllergy = new Coding
{
Code = "294588007",
Display = "Oxytetracycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlortetracyclineAllergy = new Coding
{
Code = "294590008",
Display = "Chlortetracycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DemeclocyclineAllergy = new Coding
{
Code = "294591007",
Display = "Demeclocycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TetracyclineAllergy = new Coding
{
Code = "294592000",
Display = "Tetracycline allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChloramphenicolAllergy = new Coding
{
Code = "294593005",
Display = "Chloramphenicol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfamethoxazoleAndTrimethoprimAllergy = new Coding
{
Code = "294594004",
Display = "Sulfamethoxazole and trimethoprim allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntiprotozoalDrugAllergy = new Coding
{
Code = "294595003",
Display = "Antiprotozoal drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AtovaquoneAllergy = new Coding
{
Code = "294596002",
Display = "Atovaquone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntimonyAntiprotozoalAllergy = new Coding
{
Code = "294597006",
Display = "Antimony antiprotozoal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumStibogluconateAllergy = new Coding
{
Code = "294598001",
Display = "Sodium stibogluconate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiamidineAntiprotozoalAllergy = new Coding
{
Code = "294599009",
Display = "Diamidine antiprotozoal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PentamidineAllergy = new Coding
{
Code = "294600007",
Display = "Pentamidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DichloroacetamideAntiprotozoalAllergy = new Coding
{
Code = "294601006",
Display = "Dichloroacetamide antiprotozoal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiloxanideAllergy = new Coding
{
Code = "294602004",
Display = "Diloxanide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxyquinolineAntiprotozoalAllergy = new Coding
{
Code = "294603009",
Display = "Hydroxyquinoline antiprotozoal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClioquinolAllergy = new Coding
{
Code = "294604003",
Display = "Clioquinol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntimycobacterialAgentAllergy = new Coding
{
Code = "294605002",
Display = "Antimycobacterial agent allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntituberculousDrugAllergy = new Coding
{
Code = "294606001",
Display = "Antituberculous drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyrazinamideAllergy = new Coding
{
Code = "294607005",
Display = "Pyrazinamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CapreomycinAllergy = new Coding
{
Code = "294609008",
Display = "Capreomycin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CycloserineAllergy = new Coding
{
Code = "294610003",
Display = "Cycloserine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RifampicinAllergy = new Coding
{
Code = "294611004",
Display = "Rifampicin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RifabutinAllergy = new Coding
{
Code = "294612006",
Display = "Rifabutin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsoniazidAllergy = new Coding
{
Code = "294614007",
Display = "Isoniazid allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EthambutololAllergy = new Coding
{
Code = "294615008",
Display = "Ethambutolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntileproticDrugAllergy = new Coding
{
Code = "294616009",
Display = "Antileprotic drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DapsoneAllergy = new Coding
{
Code = "294617000",
Display = "Dapsone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClofazimineAllergy = new Coding
{
Code = "294618005",
Display = "Clofazimine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzylBenzoateAllergy = new Coding
{
Code = "294620008",
Display = "Benzyl benzoate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MonosulfiramAllergy = new Coding
{
Code = "294621007",
Display = "Monosulfiram allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbamatePesticideAllergy = new Coding
{
Code = "294622000",
Display = "Carbamate pesticide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbarylAllergy = new Coding
{
Code = "294623005",
Display = "Carbaryl allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorinatedPesticideAllergy = new Coding
{
Code = "294624004",
Display = "Chlorinated pesticide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LindaneAllergy = new Coding
{
Code = "294625003",
Display = "Lindane allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MalathionAllergy = new Coding
{
Code = "294627006",
Display = "Malathion allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenothrinAllergy = new Coding
{
Code = "294629009",
Display = "Phenothrin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PermethrinAllergy = new Coding
{
Code = "294630004",
Display = "Permethrin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinProductsAllergy = new Coding
{
Code = "294632007",
Display = "Immunoglobulin products allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HumanImmunoglobulinAllergy = new Coding
{
Code = "294633002",
Display = "Human immunoglobulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IntravenousImmunoglobulinAllergy = new Coding
{
Code = "294635009",
Display = "Intravenous immunoglobulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntiDRhImmunoglobulinAllergy = new Coding
{
Code = "294636005",
Display = "Anti-D (Rh) immunoglobulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TetanusImmunoglobulinAllergy = new Coding
{
Code = "294638006",
Display = "Tetanus immunoglobulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VaricellaZosterImmunoglobulinAllergy = new Coding
{
Code = "294639003",
Display = "Varicella-zoster immunoglobulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnthraxVaccineAllergy = new Coding
{
Code = "294641002",
Display = "Anthrax vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphtheriaVaccinesAllergy = new Coding
{
Code = "294642009",
Display = "Diphtheria vaccines allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphtheriaSingleAntigenVaccineAllergy = new Coding
{
Code = "294643004",
Display = "Diphtheria single antigen vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphtheriaAndTetanusVaccineAllergy = new Coding
{
Code = "294644005",
Display = "Diphtheria and tetanus vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphtheriaAndTetanusAndPertussisVaccineAllergy = new Coding
{
Code = "294645006",
Display = "Diphtheria and tetanus and pertussis vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HepatitisBVaccineAllergy = new Coding
{
Code = "294646007",
Display = "Hepatitis B vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InfluenzaVaccineAllergy = new Coding
{
Code = "294647003",
Display = "Influenza vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InfluenzaSplitVirionVaccineAllergy = new Coding
{
Code = "294648008",
Display = "Influenza split virion vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InfluenzaSurfaceAntigenVaccineAllergy = new Coding
{
Code = "294649000",
Display = "Influenza surface antigen vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MumpsVaccineAllergy = new Coding
{
Code = "294650000",
Display = "Mumps vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PertussisVaccineAllergy = new Coding
{
Code = "294651001",
Display = "Pertussis vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PneumococcalVaccineAllergy = new Coding
{
Code = "294652008",
Display = "Pneumococcal vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PoliomyelitisVaccineAllergy = new Coding
{
Code = "294654009",
Display = "Poliomyelitis vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RabiesVaccineAllergy = new Coding
{
Code = "294655005",
Display = "Rabies vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RubellaVaccineAllergy = new Coding
{
Code = "294656006",
Display = "Rubella vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SmallpoxVaccineAllergy = new Coding
{
Code = "294657002",
Display = "Smallpox vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TetanusVaccineAllergy = new Coding
{
Code = "294658007",
Display = "Tetanus vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TyphoidVaccineAllergy = new Coding
{
Code = "294659004",
Display = "Typhoid vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TyphoidPolysaccharideVaccineAllergy = new Coding
{
Code = "294660009",
Display = "Typhoid polysaccharide vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TyphoidWholeCellVaccineAllergy = new Coding
{
Code = "294661008",
Display = "Typhoid whole cell vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MeaslesMumpsRubellaVaccineAllergy = new Coding
{
Code = "294662001",
Display = "Measles/mumps/rubella vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HepatitisAVaccineAllergy = new Coding
{
Code = "294663006",
Display = "Hepatitis A vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HaemophilusInfluenzaeTypeBVaccineAllergy = new Coding
{
Code = "294664000",
Display = "Haemophilus influenzae type B vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MeningococcalPolysaccharideVaccineAllergy = new Coding
{
Code = "294665004",
Display = "Meningococcal polysaccharide vaccine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClostridiumBotulinumToxinAllergy = new Coding
{
Code = "294667007",
Display = "Clostridium botulinum toxin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BotulismAntitoxinAllergy = new Coding
{
Code = "294668002",
Display = "Botulism antitoxin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiphtheriaAntitoxinAllergy = new Coding
{
Code = "294669005",
Display = "Diphtheria antitoxin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HormonesSyntheticSubstitutesAndAntagonistsAllergy = new Coding
{
Code = "294670006",
Display = "Hormones, synthetic substitutes and antagonists allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlucagonAllergy = new Coding
{
Code = "294671005",
Display = "Glucagon allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbimazoleAllergy = new Coding
{
Code = "294674002",
Display = "Carbimazole allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropylthiouracilAllergy = new Coding
{
Code = "294676000",
Display = "Propylthiouracil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CorticosteroidsAllergy = new Coding
{
Code = "294677009",
Display = "Corticosteroids allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetamethasoneAllergy = new Coding
{
Code = "294678004",
Display = "Betamethasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydrocortisoneAllergy = new Coding
{
Code = "294679007",
Display = "Hydrocortisone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrednisoneAllergy = new Coding
{
Code = "294682002",
Display = "Prednisone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluorometholoneAllergy = new Coding
{
Code = "294683007",
Display = "Fluorometholone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlunisolideAllergy = new Coding
{
Code = "294684001",
Display = "Flunisolide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DesonideAllergy = new Coding
{
Code = "294685000",
Display = "Desonide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DesoxymethasoneAllergy = new Coding
{
Code = "294686004",
Display = "Desoxymethasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluocinonideAllergy = new Coding
{
Code = "294687008",
Display = "Fluocinonide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluocortoloneAllergy = new Coding
{
Code = "294688003",
Display = "Fluocortolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlurandrenoloneAllergy = new Coding
{
Code = "294689006",
Display = "Flurandrenolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HalcinonideAllergy = new Coding
{
Code = "294690002",
Display = "Halcinonide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlclometasoneAllergy = new Coding
{
Code = "294691003",
Display = "Alclometasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BeclomethasoneAllergy = new Coding
{
Code = "294692005",
Display = "Beclomethasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClobetasolAllergy = new Coding
{
Code = "294693000",
Display = "Clobetasol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ClobetasoneAllergy = new Coding
{
Code = "294694006",
Display = "Clobetasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CortisoneAllergy = new Coding
{
Code = "294695007",
Display = "Cortisone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiflucortoloneAllergy = new Coding
{
Code = "294696008",
Display = "Diflucortolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlucloroloneAllergy = new Coding
{
Code = "294697004",
Display = "Fluclorolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FludrocortisoneAllergy = new Coding
{
Code = "294698009",
Display = "Fludrocortisone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluocinoloneAllergy = new Coding
{
Code = "294699001",
Display = "Fluocinolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluticasoneAllergy = new Coding
{
Code = "294700000",
Display = "Fluticasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MometasoneAllergy = new Coding
{
Code = "294701001",
Display = "Mometasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DexamethasoneAllergy = new Coding
{
Code = "294702008",
Display = "Dexamethasone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylprednisoloneAllergy = new Coding
{
Code = "294706006",
Display = "Methylprednisolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PrednisoloneAllergy = new Coding
{
Code = "294707002",
Display = "Prednisolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriamcinoloneAllergy = new Coding
{
Code = "294711008",
Display = "Triamcinolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BudesonideAllergy = new Coding
{
Code = "294712001",
Display = "Budesonide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InsulinAllergy = new Coding
{
Code = "294714000",
Display = "Insulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InsulinZincSuspensionAllergy = new Coding
{
Code = "294717007",
Display = "Insulin zinc suspension allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsophaneInsulinAllergy = new Coding
{
Code = "294720004",
Display = "Isophane insulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProtamineZincInsulinAllergy = new Coding
{
Code = "294721000",
Display = "Protamine zinc insulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HumulinInsulinAllergy = new Coding
{
Code = "294723002",
Display = "Humulin insulin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfonylureaAllergy = new Coding
{
Code = "294728006",
Display = "Sulfonylurea allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcetohexamideAllergy = new Coding
{
Code = "294729003",
Display = "Acetohexamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorpropamideAllergy = new Coding
{
Code = "294730008",
Display = "Chlorpropamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlibenclamideAllergy = new Coding
{
Code = "294731007",
Display = "Glibenclamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlibornurideAllergy = new Coding
{
Code = "294732000",
Display = "Glibornuride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GliclazideAllergy = new Coding
{
Code = "294733005",
Display = "Gliclazide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlipizideAllergy = new Coding
{
Code = "294734004",
Display = "Glipizide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GliquidoneAllergy = new Coding
{
Code = "294735003",
Display = "Gliquidone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlymidineAllergy = new Coding
{
Code = "294736002",
Display = "Glymidine allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TolazamideAllergy = new Coding
{
Code = "294737006",
Display = "Tolazamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TolbutamideAllergy = new Coding
{
Code = "294738001",
Display = "Tolbutamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BiguanideAllergy = new Coding
{
Code = "294739009",
Display = "Biguanide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetforminAllergy = new Coding
{
Code = "294740006",
Display = "Metformin allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GuarGumAllergy = new Coding
{
Code = "294741005",
Display = "Guar gum allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcarboseAllergy = new Coding
{
Code = "294742003",
Display = "Acarbose allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProgestogenAllergy = new Coding
{
Code = "294745001",
Display = "Progestogen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllylestrenolAllergy = new Coding
{
Code = "294746000",
Display = "Allylestrenol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DydrogesteroneAllergy = new Coding
{
Code = "294747009",
Display = "Dydrogesterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProgesteroneAllergy = new Coding
{
Code = "294748004",
Display = "Progesterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GestronolAllergy = new Coding
{
Code = "294749007",
Display = "Gestronol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxyprogesteroneAllergy = new Coding
{
Code = "294750007",
Display = "Hydroxyprogesterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MegestrolAllergy = new Coding
{
Code = "294751006",
Display = "Megestrol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NorethisteroneAllergy = new Coding
{
Code = "294752004",
Display = "Norethisterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LevonorgestrelAllergy = new Coding
{
Code = "294754003",
Display = "Levonorgestrel allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MedroxyprogesteroneAllergy = new Coding
{
Code = "294755002",
Display = "Medroxyprogesterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnabolicSteroidsAllergy = new Coding
{
Code = "294757005",
Display = "Anabolic steroids allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TiboloneAllergy = new Coding
{
Code = "294758000",
Display = "Tibolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxymetholoneAllergy = new Coding
{
Code = "294760003",
Display = "Oxymetholone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NandroloneAllergy = new Coding
{
Code = "294761004",
Display = "Nandrolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding StanozololAllergy = new Coding
{
Code = "294762006",
Display = "Stanozolol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclofenilAllergy = new Coding
{
Code = "294763001",
Display = "Cyclofenil allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DanazolAllergy = new Coding
{
Code = "294764007",
Display = "Danazol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GestrinoneAllergy = new Coding
{
Code = "294765008",
Display = "Gestrinone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FinasterideAllergy = new Coding
{
Code = "294767000",
Display = "Finasteride allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlutamideAllergy = new Coding
{
Code = "294768005",
Display = "Flutamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BicalutamideAllergy = new Coding
{
Code = "294769002",
Display = "Bicalutamide allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyproteroneAcetateAndEthinylestradiolAllergy = new Coding
{
Code = "294770001",
Display = "Cyproterone acetate and ethinylestradiol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyproteroneAllergy = new Coding
{
Code = "294771002",
Display = "Cyproterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AndrogenAllergy = new Coding
{
Code = "294773004",
Display = "Androgen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MesteroloneAllergy = new Coding
{
Code = "294774005",
Display = "Mesterolone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethyltestosteroneAllergy = new Coding
{
Code = "294775006",
Display = "Methyltestosterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TestosteroneAllergy = new Coding
{
Code = "294776007",
Display = "Testosterone allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EstrogenAllergy = new Coding
{
Code = "294781003",
Display = "Estrogen allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EstradiolAllergy = new Coding
{
Code = "294782005",
Display = "Estradiol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuinestradolAllergy = new Coding
{
Code = "294787004",
Display = "Quinestradol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuinestrolAllergy = new Coding
{
Code = "294788009",
Display = "Quinestrol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DienestrolAllergy = new Coding
{
Code = "294789001",
Display = "Dienestrol allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PolyestradiolPhosphateAllergy = new Coding
{
Code = "294790005",
Display = "Polyestradiol phosphate allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinLPersianGulf = new Coding
{
Code = "2950005",
Display = "Hemoglobin L-Persian Gulf",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LactaseDeficiencyInDiseasesOtherThanOfTheSmallIntestine = new Coding
{
Code = "29512005",
Display = "Lactase deficiency in diseases other than of the small intestine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZincCaprylate = new Coding
{
Code = "2958003",
Display = "Zinc caprylate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Coumachlor = new Coding
{
Code = "296000",
Display = "Coumachlor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Dimethoxyamphetamine = new Coding
{
Code = "2964005",
Display = "Dimethoxyamphetamine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SyndromeOfCarbohydrateIntolerance = new Coding
{
Code = "29736007",
Display = "Syndrome of carbohydrate intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TrichophytonSchoenleiniiCollagenase = new Coding
{
Code = "2974008",
Display = "Trichophyton schoenleinii collagenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLAAwAntigen = new Coding
{
Code = "2988007",
Display = "HLA-Aw antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MecamylamineHydrochloride = new Coding
{
Code = "2991007",
Display = "Mecamylamine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Arecoline = new Coding
{
Code = "2995003",
Display = "Arecoline",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Barium133 = new Coding
{
Code = "3027009",
Display = "Barium-133",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DihydroxyaluminumSodiumCarbonate = new Coding
{
Code = "3031003",
Display = "Dihydroxyaluminum sodium carbonate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Technetium99mTcDisofenin = new Coding
{
Code = "3040004",
Display = "Technetium (99m-Tc) disofenin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Nitrochlorobenzene = new Coding
{
Code = "3045009",
Display = "Nitrochlorobenzene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OrnithineOxoAcidAminotransferase = new Coding
{
Code = "3052006",
Display = "Ornithine-oxo-acid aminotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriiodothyroaceticAcid = new Coding
{
Code = "3066001",
Display = "Triiodothyroacetic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AspartateAmmoniaLigase = new Coding
{
Code = "3070009",
Display = "Aspartate-ammonia ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OilOfMaleFern = new Coding
{
Code = "3087006",
Display = "Oil of male fern",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinShuangfeng = new Coding
{
Code = "3107005",
Display = "Hemoglobin Shuangfeng",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AspergillusDeoxyribonucleaseKGreaterThan1LessThan = new Coding
{
Code = "3108000",
Display = "Aspergillus deoxyribonuclease K>1<",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMiddel = new Coding
{
Code = "3131000",
Display = "Blood group antigen Middel",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefoperazoneSodium = new Coding
{
Code = "3136005",
Display = "Cefoperazone sodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Azacyclonol = new Coding
{
Code = "3142009",
Display = "Azacyclonol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PenicillicAcid = new Coding
{
Code = "3145006",
Display = "Penicillic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SialateOAcetylesterase = new Coding
{
Code = "3150000",
Display = "Sialate O-acetylesterase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LeftUpperLobeMucus = new Coding
{
Code = "3151001",
Display = "Left upper lobe mucus",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3PhosphoglyceroylPhosphatePolyphosphatePhosphotransferase = new Coding
{
Code = "3155005",
Display = "3-phosphoglyceroyl-phosphate-polyphosphate phosphotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3MethylHistidine = new Coding
{
Code = "3161008",
Display = "3-methyl histidine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HardCoal = new Coding
{
Code = "3167007",
Display = "Hard coal",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenNielsen = new Coding
{
Code = "3187008",
Display = "Blood group antigen Nielsen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Alpha14GlucanProteinSynthaseUridineDiphosphateForming = new Coding
{
Code = "3193000",
Display = "Alpha-1,4-glucan-protein synthase (uridine diphosphate-forming)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InosineMonophosphate = new Coding
{
Code = "3197004",
Display = "Inosine monophosphate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PancuroniumSodium = new Coding
{
Code = "3209002",
Display = "Pancuronium sodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ManganeseSulfate = new Coding
{
Code = "3212004",
Display = "Manganese sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OctylphenoxyPHEthanol = new Coding
{
Code = "322006",
Display = "Octylphenoxy P.H. ethanol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenSeattleI = new Coding
{
Code = "3225007",
Display = "Fibrinogen Seattle I",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OBenzylParachlorophenol = new Coding
{
Code = "3232003",
Display = "O-benzyl-parachlorophenol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Arsenic76 = new Coding
{
Code = "327000",
Display = "Arsenic-76",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinSouthampton = new Coding
{
Code = "3271000",
Display = "Hemoglobin Southampton",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TyrosineEsterSulfotransferase = new Coding
{
Code = "3273002",
Display = "Tyrosine-ester sulfotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Antimony127 = new Coding
{
Code = "329002",
Display = "Antimony-127",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Euphorbain = new Coding
{
Code = "3300001",
Display = "Euphorbain",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VaginalSecretion = new Coding
{
Code = "3318003",
Display = "Vaginal secretion",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Lipopolysaccharide = new Coding
{
Code = "3325005",
Display = "Lipopolysaccharide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding R20HydroxysteroidDehydrogenase = new Coding
{
Code = "3339005",
Display = "(R)-20-Hydroxysteroid dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlphaAmylase = new Coding
{
Code = "3340007",
Display = "Alpha-amylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CopperIsotope = new Coding
{
Code = "3342004",
Display = "Copper isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinBrest = new Coding
{
Code = "3346001",
Display = "Hemoglobin Brest",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenTokyoII = new Coding
{
Code = "336001",
Display = "Fibrinogen Tokyo II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImipramineHydrochloride = new Coding
{
Code = "3378009",
Display = "Imipramine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Thimerosal = new Coding
{
Code = "3379001",
Display = "Thimerosal",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AldehydeDehydrogenaseAcceptor = new Coding
{
Code = "3392003",
Display = "Aldehyde dehydrogenase (acceptor)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EnzymeVariant = new Coding
{
Code = "340005",
Display = "Enzyme variant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL2Hydroxy3OxoadipateSynthase = new Coding
{
Code = "3405005",
Display = "2-hydroxy-3-oxoadipate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LysineIntolerance = new Coding
{
Code = "340519003",
Display = "Lysine intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BisDimethylthiocarbamylDisulfide = new Coding
{
Code = "3411008",
Display = "bis-(Dimethylthiocarbamyl) disulfide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxymethylglutarylCoAHydrolase = new Coding
{
Code = "3437006",
Display = "Hydroxymethylglutaryl-CoA hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BiotinCarboxylase = new Coding
{
Code = "3440006",
Display = "Biotin carboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiscontinuedPesticide = new Coding
{
Code = "3455002",
Display = "Discontinued pesticide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LAminoAcidDehydrogenase = new Coding
{
Code = "3463001",
Display = "L-amino-acid dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DNATopoisomeraseATPHydrolysing = new Coding
{
Code = "3465008",
Display = "DNA topoisomerase (ATP-hydrolysing)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Dimethylamine = new Coding
{
Code = "3466009",
Display = "Dimethylamine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GalactinolSucroseGalactosyltransferase = new Coding
{
Code = "3492002",
Display = "Galactinol-sucrose galactosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SmegmaClitoridis = new Coding
{
Code = "3493007",
Display = "Smegma clitoridis",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CystylAminopeptidase = new Coding
{
Code = "3495000",
Display = "Cystyl-aminopeptidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsoxsuprineHydrochloride = new Coding
{
Code = "3501003",
Display = "Isoxsuprine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinQIndia = new Coding
{
Code = "3523004",
Display = "Hemoglobin Q-India",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LaryngealMucus = new Coding
{
Code = "3532002",
Display = "Laryngeal mucus",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMorrison = new Coding
{
Code = "3555004",
Display = "Blood group antigen Morrison",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cesium129 = new Coding
{
Code = "3579002",
Display = "Cesium-129",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Glucose6Phosphatase = new Coding
{
Code = "3581000",
Display = "Glucose-6-phosphatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MalateDehydrogenaseDecarboxylating = new Coding
{
Code = "3587001",
Display = "Malate dehydrogenase (decarboxylating)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ComplementEnzyme = new Coding
{
Code = "3588006",
Display = "Complement enzyme",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcebutololHydrochloride = new Coding
{
Code = "3597005",
Display = "Acebutolol hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ether = new Coding
{
Code = "3601005",
Display = "Ether",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding WarmAntibody = new Coding
{
Code = "3602003",
Display = "Warm antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EpoxideHydrolase = new Coding
{
Code = "3610002",
Display = "Epoxide hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Selenium79 = new Coding
{
Code = "3617004",
Display = "Selenium-79",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenSanJuan = new Coding
{
Code = "363000",
Display = "Fibrinogen San Juan",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlucocorticoidReceptor = new Coding
{
Code = "3648007",
Display = "Glucocorticoid receptor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinConstantSprings = new Coding
{
Code = "3655009",
Display = "Hemoglobin Constant Springs",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenCaracas = new Coding
{
Code = "3672002",
Display = "Fibrinogen Caracas",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenylaceticAcid = new Coding
{
Code = "3684000",
Display = "Phenylacetic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinMizushi = new Coding
{
Code = "3689005",
Display = "Hemoglobin Mizushi",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumSulfite = new Coding
{
Code = "3692009",
Display = "Sodium sulfite",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenDusard = new Coding
{
Code = "3693004",
Display = "Fibrinogen Dusard",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaGreaterThan2SLessThanGlycoprotein = new Coding
{
Code = "370000",
Display = "Beta>2S< glycoprotein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CDPglycerolGlycerophosphotransferase = new Coding
{
Code = "3702007",
Display = "CDPglycerol glycerophosphotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProstaglandinSynthase = new Coding
{
Code = "3710008",
Display = "Prostaglandin synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcylcarnitineHydrolase = new Coding
{
Code = "371001",
Display = "Acylcarnitine hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CowQuoteSMilk = new Coding
{
Code = "3718001",
Display = "Cow's milk",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ValineTRNALigase = new Coding
{
Code = "3726009",
Display = "Valine-tRNA ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinFPortRoyal = new Coding
{
Code = "3727000",
Display = "Hemoglobin F-Port Royal",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenTrPowerAPower = new Coding
{
Code = "3730007",
Display = "Blood group antigen Tr^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrateReductaseNADH = new Coding
{
Code = "3737005",
Display = "Nitrate reductase (NADH)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ExtracellularCrystal = new Coding
{
Code = "3742002",
Display = "Extracellular crystal",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gossypol = new Coding
{
Code = "3757009",
Display = "Gossypol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sparteine = new Coding
{
Code = "377002",
Display = "Sparteine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Neuromelanin = new Coding
{
Code = "3771001",
Display = "Neuromelanin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CholineDehydrogenase = new Coding
{
Code = "3775005",
Display = "Choline dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding XanthineDehydrogenase = new Coding
{
Code = "3776006",
Display = "Xanthine dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ArachidonicAcid = new Coding
{
Code = "3792001",
Display = "Arachidonic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcetateKinase = new Coding
{
Code = "3800009",
Display = "Acetate kinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenC = new Coding
{
Code = "3807007",
Display = "Blood group antigen c",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagnesiumProtoporphyrinMethyltransferase = new Coding
{
Code = "3811001",
Display = "Magnesium-protoporphyrin methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BerylliumIsotope = new Coding
{
Code = "3812008",
Display = "Beryllium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VanadiumIsotope = new Coding
{
Code = "3816006",
Display = "Vanadium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProchlorperazineEdisylate = new Coding
{
Code = "3823007",
Display = "Prochlorperazine edisylate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Iron = new Coding
{
Code = "3829006",
Display = "Iron",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CMPNAcetylneuraminateAlphaNAcetylNeuraminyl23BetaGalactosyl13NAcetylGalactosaminideAlpha26Sialyltransferase = new Coding
{
Code = "3834005",
Display = "CMP-N-acetylneuraminate-(alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetyl-galactosaminide alpha-2,6-sialyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Glutaminase = new Coding
{
Code = "3836007",
Display = "Glutaminase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProtoaphinAgluconeDehydrataseCyclizing = new Coding
{
Code = "3844007",
Display = "Protoaphin-aglucone dehydratase (cyclizing)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Nitrotoluene = new Coding
{
Code = "3848005",
Display = "Nitrotoluene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbonBlack = new Coding
{
Code = "3849002",
Display = "Carbon black",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BisChloroMethylEther = new Coding
{
Code = "3854006",
Display = "Bis-chloro methyl ether",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydrocodoneBitartrate = new Coding
{
Code = "3874004",
Display = "Hydrocodone bitartrate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Thymidine = new Coding
{
Code = "3892007",
Display = "Thymidine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PHydroxybenzoateEster = new Coding
{
Code = "3896005",
Display = "p-Hydroxybenzoate ester",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenQuoteNQuote = new Coding
{
Code = "3897001",
Display = "Blood group antigen 'N'",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RectifiedBirchTarOil = new Coding
{
Code = "3906002",
Display = "Rectified birch tar oil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinAtago = new Coding
{
Code = "3920009",
Display = "Hemoglobin Atago",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL151Gd = new Coding
{
Code = "392001",
Display = "151-Gd",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ManufacturedGas = new Coding
{
Code = "3930000",
Display = "Manufactured gas",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Copper64 = new Coding
{
Code = "3932008",
Display = "Copper-64",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetronidazoleHydrochloride = new Coding
{
Code = "3941003",
Display = "Metronidazole hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TinIsotope = new Coding
{
Code = "3945007",
Display = "Tin isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinPentamer = new Coding
{
Code = "395004",
Display = "Immunoglobulin pentamer",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL245Cf = new Coding
{
Code = "3958008",
Display = "245-Cf",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenRitherford = new Coding
{
Code = "3961009",
Display = "Blood group antigen Ritherford",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenHEMPAS = new Coding
{
Code = "3976001",
Display = "Blood group antigen HEMPAS",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxaloacetateDecarboxylase = new Coding
{
Code = "3982003",
Display = "Oxaloacetate decarboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NNDimethyltryptamine = new Coding
{
Code = "3983008",
Display = "N,-N-dimethyltryptamine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlkalinePhosphataseIsoenzymeBoneFraction = new Coding
{
Code = "3990003",
Display = "Alkaline phosphatase isoenzyme, bone fraction",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinTampa = new Coding
{
Code = "3994007",
Display = "Hemoglobin Tampa",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sulfisomidine = new Coding
{
Code = "4014000",
Display = "Sulfisomidine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SoftMetal = new Coding
{
Code = "4024008",
Display = "Soft metal",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Captodiamine = new Coding
{
Code = "4025009",
Display = "Captodiamine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EtidocaineHydrochloride = new Coding
{
Code = "4043008",
Display = "Etidocaine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cis12Dihydrobenzene12DiolDehydrogenase = new Coding
{
Code = "4047009",
Display = "cis-1,2-Dihydrobenzene-1,2-diol dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL1122Tetrachloro12Difluoroethane = new Coding
{
Code = "4048004",
Display = "1,1,2,2-tetrachloro-1,2- difluoroethane",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChorismateMutase = new Coding
{
Code = "4067000",
Display = "Chorismate mutase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ParathyroidHormone = new Coding
{
Code = "4076007",
Display = "Parathyroid hormone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DihydrolipoamideSuccinyltransferase = new Coding
{
Code = "4077003",
Display = "Dihydrolipoamide succinyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinGradyDakar = new Coding
{
Code = "4080002",
Display = "Hemoglobin Grady, Dakar",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Enteropeptidase = new Coding
{
Code = "4091009",
Display = "Enteropeptidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownHistoryOfDrugAllergy = new Coding
{
Code = "409137002",
Display = "No known history of drug allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ApoSAAComplex = new Coding
{
Code = "4097008",
Display = "Apo-SAA complex",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChondroitinSulfate = new Coding
{
Code = "4104007",
Display = "Chondroitin sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AdenylateCyclase = new Coding
{
Code = "4105008",
Display = "Adenylate cyclase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyNorlander = new Coding
{
Code = "4115002",
Display = "Blood group antibody Norlander",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ribose5PhosphateIsomerase = new Coding
{
Code = "412004",
Display = "Ribose-5-phosphate isomerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcquiredFructoseIntolerance = new Coding
{
Code = "413427002",
Display = "Acquired fructose intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SecButylAcetate = new Coding
{
Code = "4137009",
Display = "sec-Butyl acetate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LongChainEnoylCoAHydratase = new Coding
{
Code = "4153007",
Display = "Long-chain-enoyl-CoA hydratase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD31 = new Coding
{
Code = "4167003",
Display = "Lymphocyte antigen CD31",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyLePowerBHPower = new Coding
{
Code = "4169000",
Display = "Blood group antibody Le^bH^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinLongIslandMarseille = new Coding
{
Code = "4177001",
Display = "Hemoglobin Long Island-Marseille",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropensityToAdverseReactionsToSubstance = new Coding
{
Code = "418038007",
Display = "Propensity to adverse reactions to substance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CDPdiacylglycerolSerineOPhosphatidylTransferase = new Coding
{
Code = "4182008",
Display = "CDPdiacylglycerol-serine O-phosphatidyl-transferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenSydneyII = new Coding
{
Code = "4188007",
Display = "Fibrinogen Sydney II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Neriifolin = new Coding
{
Code = "4200007",
Display = "Neriifolin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL6AminohexanoateDimerHydrolase = new Coding
{
Code = "4201006",
Display = "6-aminohexanoate-dimer hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImipraminePamoate = new Coding
{
Code = "4203009",
Display = "Imipramine pamoate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CortisoneBetaReductase = new Coding
{
Code = "4207005",
Display = "Cortisone beta-reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FluorosilicateSalt = new Coding
{
Code = "4217000",
Display = "Fluorosilicate salt",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinGMGreaterThan23LessThanAllotype = new Coding
{
Code = "4218005",
Display = "Immunoglobulin, GM>23< allotype",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GalliumIsotope = new Coding
{
Code = "4231000",
Display = "Gallium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlycerolDehydrogenase = new Coding
{
Code = "4239003",
Display = "Glycerol dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CitramalylCoALyase = new Coding
{
Code = "424006",
Display = "Citramalyl-CoA lyase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinNagoya = new Coding
{
Code = "425007",
Display = "Hemoglobin Nagoya",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Americium241 = new Coding
{
Code = "4255005",
Display = "Americium-241",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownInsectAllergy = new Coding
{
Code = "428197003",
Display = "No known insect allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownEnvironmentalAllergy = new Coding
{
Code = "428607008",
Display = "No known environmental allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KeyholeLimpetHemocyanin = new Coding
{
Code = "4289006",
Display = "Keyhole-limpet hemocyanin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LinamarinSynthase = new Coding
{
Code = "4290002",
Display = "Linamarin synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownFoodAllergy = new Coding
{
Code = "429625007",
Display = "No known food allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyAllchurch = new Coding
{
Code = "4314009",
Display = "Blood group antibody Allchurch",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarminicAcid = new Coding
{
Code = "432003",
Display = "Carminic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TarOil = new Coding
{
Code = "4334005",
Display = "Tar oil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL2Aminopyridine = new Coding
{
Code = "4342006",
Display = "2-aminopyridine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DibutylPhthalate = new Coding
{
Code = "4353000",
Display = "Dibutyl phthalate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorIXSanDimasVariant = new Coding
{
Code = "4355007",
Display = "Coagulation factor IX San Dimas variant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL4CoumarateCoALigase = new Coding
{
Code = "4362003",
Display = "4-coumarate-CoA ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Acetone = new Coding
{
Code = "4370008",
Display = "Acetone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL2HydroxyglutarateDehydrogenase = new Coding
{
Code = "438004",
Display = "2-hydroxyglutarate dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenFedor = new Coding
{
Code = "4393002",
Display = "Blood group antigen Fedor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyHGreaterThanTLessThan = new Coding
{
Code = "4401009",
Display = "Blood group antibody H>T<",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Benzypyrinium = new Coding
{
Code = "4413004",
Display = "Benzypyrinium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigen = new Coding
{
Code = "4422003",
Display = "Blood group antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenNewYorkII = new Coding
{
Code = "4423008",
Display = "Fibrinogen New York II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyBinge = new Coding
{
Code = "4425001",
Display = "Blood group antibody Binge",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfurylFluoride = new Coding
{
Code = "4435007",
Display = "Sulfuryl fluoride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL127Cs = new Coding
{
Code = "4437004",
Display = "127-Cs",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Californium244 = new Coding
{
Code = "4471008",
Display = "Californium-244",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinBrockton = new Coding
{
Code = "4479005",
Display = "Hemoglobin Brockton",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sulfaethidole = new Coding
{
Code = "4480008",
Display = "Sulfaethidole",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlantPhenanthreneToxin = new Coding
{
Code = "4509009",
Display = "Plant phenanthrene toxin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL208Bi = new Coding
{
Code = "4534009",
Display = "208-Bi",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ADPDeaminase = new Coding
{
Code = "4540002",
Display = "ADP deaminase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AliphaticCarboxylicAcidC140 = new Coding
{
Code = "4546008",
Display = "Aliphatic carboxylic acid, C14:0",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyRils = new Coding
{
Code = "4555006",
Display = "Blood group antibody Rils",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinMizuho = new Coding
{
Code = "4560005",
Display = "Hemoglobin Mizuho",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ArginineDecarboxylase = new Coding
{
Code = "4561009",
Display = "Arginine decarboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodySisson = new Coding
{
Code = "4564001",
Display = "Blood group antibody Sisson",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Galactose1PhosphateThymidylyltransferase = new Coding
{
Code = "4567008",
Display = "Galactose-1-phosphate thymidylyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenNPowerAPower = new Coding
{
Code = "4582003",
Display = "Blood group antigen N^A^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenKam = new Coding
{
Code = "4591004",
Display = "Blood group antigen Kam",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SenileCardiacProtein = new Coding
{
Code = "4610008",
Display = "Senile cardiac protein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriclobisoniumChloride = new Coding
{
Code = "4616002",
Display = "Triclobisonium chloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UreaseATPHydrolysing = new Coding
{
Code = "462009",
Display = "Urease (ATP-hydrolysing)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HypoglycinB = new Coding
{
Code = "4629002",
Display = "Hypoglycin B",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ArterialBlood = new Coding
{
Code = "4635002",
Display = "Arterial blood",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalfThymusRibonucleaseH = new Coding
{
Code = "4643007",
Display = "Calf thymus ribonuclease H",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AlcianBlue8GX = new Coding
{
Code = "4656000",
Display = "Alcian blue 8GX",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL23DihydroxybenzoateSerineLigase = new Coding
{
Code = "4674009",
Display = "2,3-dihydroxybenzoate serine ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PotassiumPermanganate = new Coding
{
Code = "4681002",
Display = "Potassium permanganate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chromium51CrAlbumin = new Coding
{
Code = "4693006",
Display = "Chromium (51-Cr) albumin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BeefInsulin = new Coding
{
Code = "4700006",
Display = "Beef insulin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorineMonoxide = new Coding
{
Code = "4706000",
Display = "Chlorine monoxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Osmium183m = new Coding
{
Code = "4714006",
Display = "Osmium-183m",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VegetableTextileFiber = new Coding
{
Code = "472007",
Display = "Vegetable textile fiber",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ScopulariopsisProteinase = new Coding
{
Code = "4728000",
Display = "Scopulariopsis proteinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinP55VMYC = new Coding
{
Code = "4732006",
Display = "Oncogene protein P55, V-MYC",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinMito = new Coding
{
Code = "4746006",
Display = "Hemoglobin Mito",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD1b = new Coding
{
Code = "476005",
Display = "Lymphocyte antigen CD1b",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD30 = new Coding
{
Code = "4761007",
Display = "Lymphocyte antigen CD30",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlateletAntigenHPA3b = new Coding
{
Code = "4762000",
Display = "Platelet antigen HPA-3b",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Fluroxene = new Coding
{
Code = "4777008",
Display = "Fluroxene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SecbutabarbitalSodium = new Coding
{
Code = "4780009",
Display = "Secbutabarbital sodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Beta14MannosylGlycoproteinBeta14NAcetylglucosaminyltransferase = new Coding
{
Code = "4786003",
Display = "Beta-1,4-mannosyl-glycoprotein beta-1,4-N-acetylglucosaminyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyBultar = new Coding
{
Code = "4789005",
Display = "Blood group antibody Bultar",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzobenzeneReductase = new Coding
{
Code = "4793004",
Display = "Azobenzene reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Valethamate = new Coding
{
Code = "4814001",
Display = "Valethamate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmineOxidaseFlavinContaining = new Coding
{
Code = "4824009",
Display = "Amine oxidase (flavin-containing)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PeptidylGlycinamidase = new Coding
{
Code = "4825005",
Display = "Peptidyl-glycinamidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Arabinose5PhosphateIsomerase = new Coding
{
Code = "4831008",
Display = "Arabinose-5-phosphate isomerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Technetium99mTcMebrofenin = new Coding
{
Code = "4832001",
Display = "Technetium (99m-Tc) mebrofenin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlucanEndo13AlphaGlucosidase = new Coding
{
Code = "4833006",
Display = "Glucan endo-1,3-alpha-glucosidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL33QuoteTGreaterThan2LessThan = new Coding
{
Code = "4844003",
Display = "3,3' T>2<",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AdenylicAcid = new Coding
{
Code = "4864008",
Display = "Adenylic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Glucosulfone = new Coding
{
Code = "4872005",
Display = "Glucosulfone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADw3Antigen = new Coding
{
Code = "4878009",
Display = "HLA-Dw3 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ichthyoallyeinotoxin = new Coding
{
Code = "4882006",
Display = "Ichthyoallyeinotoxin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Xylulokinase = new Coding
{
Code = "4889002",
Display = "Xylulokinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyruvateOxidaseCoAAcetylating = new Coding
{
Code = "4901003",
Display = "Pyruvate oxidase (CoA-acetylating)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinVABC = new Coding
{
Code = "4925006",
Display = "Oncogene protein V-ABC",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD15 = new Coding
{
Code = "4933007",
Display = "Lymphocyte antigen CD15",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TattooDye = new Coding
{
Code = "4940008",
Display = "Tattoo dye",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NeoplasticStructuralGene = new Coding
{
Code = "4955004",
Display = "Neoplastic structural gene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TreeBark = new Coding
{
Code = "4962008",
Display = "Tree bark",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NeutralAminoAcid = new Coding
{
Code = "4963003",
Display = "Neutral amino acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GlutathioneReductaseNADPH = new Coding
{
Code = "4965005",
Display = "Glutathione reductase (NAD(P)H)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Acumentin = new Coding
{
Code = "4968007",
Display = "Acumentin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Nitrilase = new Coding
{
Code = "498001",
Display = "Nitrilase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagnesiumBorate = new Coding
{
Code = "4986005",
Display = "Magnesium borate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinSwanRiver = new Coding
{
Code = "5003005",
Display = "Hemoglobin Swan River",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyPanzar = new Coding
{
Code = "5004004",
Display = "Blood group antibody Panzar",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Papain = new Coding
{
Code = "5007006",
Display = "Papain",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodySfPowerAPower = new Coding
{
Code = "501001",
Display = "Blood group antibody Sf^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FreshWater = new Coding
{
Code = "5024000",
Display = "Fresh water",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL33QuoteDichlorobenzidine = new Coding
{
Code = "5031001",
Display = "3-3'dichlorobenzidine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cesium = new Coding
{
Code = "5040002",
Display = "Cesium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ErythrosinY = new Coding
{
Code = "5043000",
Display = "Erythrosin Y",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinTCL4 = new Coding
{
Code = "5045007",
Display = "Oncogene protein TCL4",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyMQuote = new Coding
{
Code = "505005",
Display = "Blood group antibody M'",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL97Tc = new Coding
{
Code = "5059000",
Display = "97-Tc",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cesium132 = new Coding
{
Code = "5060005",
Display = "Cesium-132",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3OxosteroidDeltaPower1PowerDehydrogenase = new Coding
{
Code = "506006",
Display = "3-oxosteroid delta^1^-dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProteinMethionineSOxideReductase = new Coding
{
Code = "5061009",
Display = "Protein-methionine-S-oxide reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyD1276 = new Coding
{
Code = "5064001",
Display = "Blood group antibody D 1276",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenHrPowerBPower = new Coding
{
Code = "5081005",
Display = "Blood group antigen hr^B^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gelsolin = new Coding
{
Code = "5086000",
Display = "Gelsolin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenRios = new Coding
{
Code = "5094007",
Display = "Blood group antigen Rios",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FennelOil = new Coding
{
Code = "5098005",
Display = "Fennel oil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylatedDNAProteinCysteineMethyltransferase = new Coding
{
Code = "5109006",
Display = "Methylated-DNA-protein-cysteine methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorIIHoustonVariant = new Coding
{
Code = "5142007",
Display = "Coagulation factor II Houston variant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenGiaigue = new Coding
{
Code = "515004",
Display = "Blood group antigen Giaigue",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MetallicCompound = new Coding
{
Code = "5160007",
Display = "Metallic compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Scombrotoxin = new Coding
{
Code = "5163009",
Display = "Scombrotoxin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ZincChlorideFumes = new Coding
{
Code = "5167005",
Display = "Zinc chloride fumes",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorXa = new Coding
{
Code = "5172001",
Display = "Coagulation factor Xa",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ConnectiveTissueFiber = new Coding
{
Code = "5179005",
Display = "Connective tissue fiber",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FreeProteinS = new Coding
{
Code = "519005",
Display = "Free protein S",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TransEpoxysuccinateHydrolase = new Coding
{
Code = "5200001",
Display = "trans-Epoxysuccinate hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyanateCompound = new Coding
{
Code = "5206007",
Display = "Cyanate compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcquiredMonosaccharideMalabsorption = new Coding
{
Code = "52070001",
Display = "Acquired monosaccharide malabsorption",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Mercury197 = new Coding
{
Code = "521000",
Display = "Mercury-197",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Bacitracin = new Coding
{
Code = "5220000",
Display = "Bacitracin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlavoneOPower7PowerBetaGlucosyltransferase = new Coding
{
Code = "5226006",
Display = "Flavone O^7^-beta-glucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThymusIndependentAntigen = new Coding
{
Code = "5250008",
Display = "Thymus-independent antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HafniumRadioisotope = new Coding
{
Code = "5252000",
Display = "Hafnium radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinWoodville = new Coding
{
Code = "5253005",
Display = "Hemoglobin Woodville",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenBraden = new Coding
{
Code = "5259009",
Display = "Blood group antigen Braden",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Scilliroside = new Coding
{
Code = "5289002",
Display = "Scilliroside",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Guanosine = new Coding
{
Code = "529003",
Display = "Guanosine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinHoshida = new Coding
{
Code = "5303002",
Display = "Hemoglobin Hoshida",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Polynucleotide = new Coding
{
Code = "5305009",
Display = "Polynucleotide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenHamet = new Coding
{
Code = "5307001",
Display = "Blood group antigen Hamet",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Zinc65 = new Coding
{
Code = "5312000",
Display = "Zinc-65",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UridineDiphosphateGlucuronicAcid = new Coding
{
Code = "5323001",
Display = "Uridine diphosphate glucuronic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ActinBindingProtein = new Coding
{
Code = "5330007",
Display = "Actin-binding protein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LGlycolDehydrogenase = new Coding
{
Code = "5339008",
Display = "L-glycol dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenSwietlik = new Coding
{
Code = "5340005",
Display = "Blood group antigen Swietlik",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL23Dihydroxybenzoate34Dioxygenase = new Coding
{
Code = "538001",
Display = "2,3-dihydroxybenzoate 3,4-dioxygenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropyleneGlycolMonomethylEther = new Coding
{
Code = "5392001",
Display = "Propylene glycol monomethyl ether",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyridoxaminePhosphateOxidase = new Coding
{
Code = "5395004",
Display = "Pyridoxamine-phosphate oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD45RA = new Coding
{
Code = "5404007",
Display = "Lymphocyte antigen CD45RA",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL60Co = new Coding
{
Code = "5405008",
Display = "60-Co",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaLArabinosidase = new Coding
{
Code = "5406009",
Display = "Beta-L-arabinosidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AccessorySinusMucus = new Coding
{
Code = "5420002",
Display = "Accessory sinus mucus",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LactoseIntoleranceInChildrenWithoutLactaseDeficiency = new Coding
{
Code = "54250004",
Display = "Lactose intolerance in children without lactase deficiency",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyDoPowerAPower = new Coding
{
Code = "5439007",
Display = "Blood group antibody Do^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PageBlue83 = new Coding
{
Code = "5442001",
Display = "Page blue 83",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IridiumIsotope = new Coding
{
Code = "5453007",
Display = "Iridium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinGCoushatta = new Coding
{
Code = "5471000",
Display = "Hemoglobin G-Coushatta",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PropionateCoALigase = new Coding
{
Code = "5474008",
Display = "Propionate-CoA ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FerricSubsulfate = new Coding
{
Code = "5477001",
Display = "Ferric subsulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxalateCoATransferase = new Coding
{
Code = "5483003",
Display = "Oxalate CoA-transferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenFuerhart = new Coding
{
Code = "5504009",
Display = "Blood group antigen Fuerhart",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding InosinateNucleosidase = new Coding
{
Code = "5511008",
Display = "Inosinate nucleosidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinAHChain = new Coding
{
Code = "5513006",
Display = "Immunoglobulin A, H chain",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RhodiumFumes = new Coding
{
Code = "5515004",
Display = "Rhodium fumes",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyKpPowerAPower = new Coding
{
Code = "5533005",
Display = "Blood group antibody Kp^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinDHChain = new Coding
{
Code = "5537006",
Display = "Immunoglobulin D, H chain",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Calcium = new Coding
{
Code = "5540006",
Display = "Calcium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL233Pu = new Coding
{
Code = "5547009",
Display = "233-Pu",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL2Dehydro3DeoxyDPentonateAldolase = new Coding
{
Code = "5548004",
Display = "2-dehydro-3-deoxy-D-pentonate aldolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinHijiyama = new Coding
{
Code = "5568005",
Display = "Hemoglobin Hijiyama",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenOca = new Coding
{
Code = "5573004",
Display = "Blood group antigen Oca",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LicodioneOPower2QuotePowerMethyltransferase = new Coding
{
Code = "5589001",
Display = "Licodione O^2'^-methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BerylliumRadioisotope = new Coding
{
Code = "5590005",
Display = "Beryllium radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinIHighWycombe = new Coding
{
Code = "5628003",
Display = "Hemoglobin I-High Wycombe",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CytidylicAcid = new Coding
{
Code = "5629006",
Display = "Cytidylic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADQw6Antigen = new Coding
{
Code = "5637003",
Display = "HLA-DQw6 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ValproateSemisodium = new Coding
{
Code = "5641004",
Display = "Valproate semisodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GriseofulvinUltramicrosize = new Coding
{
Code = "5647000",
Display = "Griseofulvin ultramicrosize",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Antimony116m = new Coding
{
Code = "5656008",
Display = "Antimony-116m",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinJTongariki = new Coding
{
Code = "5659001",
Display = "Hemoglobin J-Tongariki",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Acrosin = new Coding
{
Code = "566009",
Display = "Acrosin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GoldIsotope = new Coding
{
Code = "5670008",
Display = "Gold isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CeftizoximeSodium = new Coding
{
Code = "5681006",
Display = "Ceftizoxime sodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AbsorbableGelatinSponge = new Coding
{
Code = "5691000",
Display = "Absorbable gelatin sponge",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cyanocobalamin58Co = new Coding
{
Code = "5692007",
Display = "Cyanocobalamin (58-Co)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SomatomedinC = new Coding
{
Code = "5699003",
Display = "Somatomedin C",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyGomez = new Coding
{
Code = "5700002",
Display = "Blood group antibody Gomez",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL106mAg = new Coding
{
Code = "5702005",
Display = "106m-Ag",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Galactokinase = new Coding
{
Code = "5704006",
Display = "Galactokinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3HydroxypropionAldehydeReductase = new Coding
{
Code = "5705007",
Display = "3-hydroxypropion-aldehyde reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Stramonium = new Coding
{
Code = "5739006",
Display = "Stramonium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL118mSb = new Coding
{
Code = "5746002",
Display = "118m-Sb",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLACw8Antigen = new Coding
{
Code = "5757007",
Display = "HLA-Cw8 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyDuck = new Coding
{
Code = "576007",
Display = "Blood group antibody Duck",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HeterogeneousNuclearRNA = new Coding
{
Code = "5762008",
Display = "Heterogeneous nuclear RNA",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL242Pu = new Coding
{
Code = "5764009",
Display = "242-Pu",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sulfamerazine = new Coding
{
Code = "5767002",
Display = "Sulfamerazine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding WhitePetrolatum = new Coding
{
Code = "5774007",
Display = "White petrolatum",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinJianghua = new Coding
{
Code = "578008",
Display = "Hemoglobin Jianghua",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TRNA5Methylaminomethyl2ThiouridylateMethyltransferase = new Coding
{
Code = "5800007",
Display = "tRNA (5-methylaminomethyl-2-thiouridylate)-methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MalateDehydrogenase = new Coding
{
Code = "5813001",
Display = "Malate dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ethyl4BisHydroxypropyl1Aminobenzoate = new Coding
{
Code = "5826002",
Display = "Ethyl-4-bis-(hydroxypropyl)-1-aminobenzoate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Crotonaldehyde = new Coding
{
Code = "5827006",
Display = "Crotonaldehyde",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinVaasa = new Coding
{
Code = "5829009",
Display = "Hemoglobin Vaasa",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinBart = new Coding
{
Code = "5830004",
Display = "Hemoglobin Bart",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyWj = new Coding
{
Code = "5840001",
Display = "Blood group antibody Wj",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyWrPowerBPower = new Coding
{
Code = "584006",
Display = "Blood group antibody Wr^b^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SubstanceP = new Coding
{
Code = "585007",
Display = "Substance P",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Indium110m = new Coding
{
Code = "5858007",
Display = "Indium-110m",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VitexinBetaGlucosyltransferase = new Coding
{
Code = "5863006",
Display = "Vitexin beta-glucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Hellebrin = new Coding
{
Code = "5896008",
Display = "Hellebrin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BacterialStructuralGene = new Coding
{
Code = "5899001",
Display = "Bacterial structural gene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DrugIntolerance = new Coding
{
Code = "59037007",
Display = "Drug intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding QuinidinePolygalacturonate = new Coding
{
Code = "5907009",
Display = "Quinidine polygalacturonate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinPP60VSRC = new Coding
{
Code = "5910002",
Display = "Oncogene protein PP60, V-SRC",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL2OxoisovalerateDehydrogenaseAcylating = new Coding
{
Code = "591009",
Display = "2-oxoisovalerate dehydrogenase (acylating)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenGladding = new Coding
{
Code = "5915007",
Display = "Blood group antigen Gladding",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LactaldehydeDehydrogenase = new Coding
{
Code = "5927005",
Display = "Lactaldehyde dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyHolmes = new Coding
{
Code = "593007",
Display = "Blood group antibody Holmes",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Technetium99mTcSulfurColloid = new Coding
{
Code = "5931004",
Display = "Technetium (99m-Tc) sulfur colloid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cysteine = new Coding
{
Code = "5932006",
Display = "Cysteine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL2OxoglutarateSynthase = new Coding
{
Code = "594001",
Display = "2-oxoglutarate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3Quote5QuoteCyclicNucleotidePhosphodiesterase = new Coding
{
Code = "5950004",
Display = "3',5'-cyclic-nucleotide phosphodiesterase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiethyleneGlycol = new Coding
{
Code = "5955009",
Display = "Diethylene glycol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL247Cf = new Coding
{
Code = "597008",
Display = "247-Cf",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenBullock = new Coding
{
Code = "5977008",
Display = "Blood group antigen Bullock",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinGMGreaterThan17LessThanAllotype = new Coding
{
Code = "5989005",
Display = "Immunoglobulin, GM>17< allotype",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DFuconateDehydratase = new Coding
{
Code = "5991002",
Display = "D-fuconate dehydratase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL88Y = new Coding
{
Code = "6021003",
Display = "88-Y",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxygenRadioisotope = new Coding
{
Code = "6038004",
Display = "Oxygen radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlantSapogeninGlycoside = new Coding
{
Code = "604000",
Display = "Plant sapogenin glycoside",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BoneCement = new Coding
{
Code = "6043006",
Display = "Bone cement",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbonDisulfide = new Coding
{
Code = "6044000",
Display = "Carbon disulfide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DoxylamineSuccinate = new Coding
{
Code = "6054001",
Display = "Doxylamine succinate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyWkPowerAPower = new Coding
{
Code = "6056004",
Display = "Blood group antibody Wk^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMil = new Coding
{
Code = "6068008",
Display = "Blood group antigen Mil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Hydroxylysine = new Coding
{
Code = "6083003",
Display = "Hydroxylysine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SynovialFluid = new Coding
{
Code = "6085005",
Display = "Synovial fluid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BenzfetamineHydrochloride = new Coding
{
Code = "6088007",
Display = "Benzfetamine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LochiaAlba = new Coding
{
Code = "6089004",
Display = "Lochia alba",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyLHarris = new Coding
{
Code = "6091007",
Display = "Blood group antibody L Harris",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AsparagusateReductaseNADH = new Coding
{
Code = "6107003",
Display = "Asparagusate reductase (NADH)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AromaticAminoAcidAminotransferase = new Coding
{
Code = "6109000",
Display = "Aromatic-amino-acid aminotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HippurateHydrolase = new Coding
{
Code = "611001",
Display = "Hippurate hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyAnuszewska = new Coding
{
Code = "6115000",
Display = "Blood group antibody Anuszewska",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenDuck = new Coding
{
Code = "6135004",
Display = "Blood group antigen Duck",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenLeProvost = new Coding
{
Code = "6138002",
Display = "Blood group antigen Le Provost",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Meclocycline = new Coding
{
Code = "6162007",
Display = "Meclocycline",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HeatLabileAntibody = new Coding
{
Code = "6170002",
Display = "Heat labile antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TransientGlutenSensitivity = new Coding
{
Code = "61712006",
Display = "Transient gluten sensitivity",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FattyAcidMethyltransferase = new Coding
{
Code = "6172005",
Display = "Fatty-acid methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD63 = new Coding
{
Code = "6178009",
Display = "Lymphocyte antigen CD63",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OMethylBufotenine = new Coding
{
Code = "6179001",
Display = "O-methyl-bufotenine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chloroacetone = new Coding
{
Code = "6182006",
Display = "Chloroacetone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenZd = new Coding
{
Code = "6197009",
Display = "Blood group antigen Zd",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Trichlorophenol = new Coding
{
Code = "620005",
Display = "Trichlorophenol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Bemegride = new Coding
{
Code = "6237004",
Display = "Bemegride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PotassiumMetabisulfite = new Coding
{
Code = "6249003",
Display = "Potassium metabisulfite",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RiboseIsomerase = new Coding
{
Code = "6256009",
Display = "Ribose isomerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sodium22NaChloride = new Coding
{
Code = "6257000",
Display = "Sodium (22-Na) chloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Protokylol = new Coding
{
Code = "6260007",
Display = "Protokylol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Indoklon = new Coding
{
Code = "6261006",
Display = "Indoklon",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlantResidue = new Coding
{
Code = "6263009",
Display = "Plant residue",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Diazinon = new Coding
{
Code = "6264003",
Display = "Diazinon",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Methidathion = new Coding
{
Code = "6287006",
Display = "Methidathion",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LysosomalAlphaNAcetylglucosaminidase = new Coding
{
Code = "6291001",
Display = "Lysosomal alpha-N-acetylglucosaminidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Tantalum178 = new Coding
{
Code = "6301006",
Display = "Tantalum-178",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ParticulateAntigen = new Coding
{
Code = "6310003",
Display = "Particulate antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhenolBetaGlucosyltransferase = new Coding
{
Code = "6314007",
Display = "Phenol beta-glucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SquillExtract = new Coding
{
Code = "6333002",
Display = "Squill extract",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Imidazolonepropionase = new Coding
{
Code = "6338006",
Display = "Imidazolonepropionase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chlorodiallylacetamide = new Coding
{
Code = "6356006",
Display = "Chlorodiallylacetamide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KallidinII = new Coding
{
Code = "6360009",
Display = "Kallidin II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL95mTc = new Coding
{
Code = "6367007",
Display = "95m-Tc",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NAcetylneuraminateOPower4PowerAcetyltransferase = new Coding
{
Code = "6386004",
Display = "N-Acetylneuraminate O^4^-acetyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhentermineHydrochloride = new Coding
{
Code = "6394006",
Display = "Phentermine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Lichenase = new Coding
{
Code = "6401007",
Display = "Lichenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Morpholine = new Coding
{
Code = "6409009",
Display = "Morpholine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Interleukin12 = new Coding
{
Code = "6411000",
Display = "Interleukin-12",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADRw14Antigen = new Coding
{
Code = "6422001",
Display = "HLA-DRw14 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chlorobenzilate = new Coding
{
Code = "6451002",
Display = "Chlorobenzilate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chloroprene = new Coding
{
Code = "6455006",
Display = "Chloroprene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL12DidehydropipecolateReductase = new Coding
{
Code = "6469006",
Display = "1,2-didehydropipecolate reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Phosphohexokinase = new Coding
{
Code = "6478000",
Display = "Phosphohexokinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OilOfCalamus = new Coding
{
Code = "648005",
Display = "Oil of calamus",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenMontrealII = new Coding
{
Code = "6495008",
Display = "Fibrinogen Montreal II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMuch = new Coding
{
Code = "6507009",
Display = "Blood group antigen Much",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Flumethiazide = new Coding
{
Code = "6513000",
Display = "Flumethiazide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Indium111InFerricHydroxide = new Coding
{
Code = "6516008",
Display = "Indium (111-In) ferric hydroxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DistilledSpirits = new Coding
{
Code = "6524003",
Display = "Distilled spirits",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenClPowerAPower = new Coding
{
Code = "6529008",
Display = "Blood group antigen Cl^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MacrophageActivatingFactor = new Coding
{
Code = "6532006",
Display = "Macrophage activating factor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Galactosylceramidase = new Coding
{
Code = "6590001",
Display = "Galactosylceramidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADw12Antigen = new Coding
{
Code = "6592009",
Display = "HLA-Dw12 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Aminoacridine = new Coding
{
Code = "6602005",
Display = "Aminoacridine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Diethylaminoethanol = new Coding
{
Code = "6611005",
Display = "Diethylaminoethanol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChloramphenicolSodiumSuccinate = new Coding
{
Code = "6612003",
Display = "Chloramphenicol sodium succinate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BilirubinYTransportProtein = new Coding
{
Code = "6619007",
Display = "Bilirubin Y transport protein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AeromonasProteolyticaAminopeptidase = new Coding
{
Code = "662003",
Display = "Aeromonas proteolytica aminopeptidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Opsonin = new Coding
{
Code = "6642000",
Display = "Opsonin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HomoserineDehydrogenase = new Coding
{
Code = "6644004",
Display = "Homoserine dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenCaw = new Coding
{
Code = "6671004",
Display = "Blood group antigen Caw",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Phosphoadenylate3QuoteNucleotidase = new Coding
{
Code = "6672006",
Display = "Phosphoadenylate 3'-nucleotidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL185Os = new Coding
{
Code = "668004",
Display = "185-Os",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TitaniumRadioisotope = new Coding
{
Code = "6699008",
Display = "Titanium radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LissamineFastRedB = new Coding
{
Code = "6701008",
Display = "Lissamine fast red B",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding EthylMercaptoethylDiethylThiophosphate = new Coding
{
Code = "6702001",
Display = "Ethyl mercaptoethyl diethyl thiophosphate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gentamicin2DoubleQuoteNucleotidyltransferase = new Coding
{
Code = "6709005",
Display = "Gentamicin 2''-nucleotidyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitricOxide = new Coding
{
Code = "6710000",
Display = "Nitric oxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL91Y = new Coding
{
Code = "6713003",
Display = "91-Y",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Nifuroxime = new Coding
{
Code = "6717002",
Display = "Nifuroxime",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethyleneBlue = new Coding
{
Code = "6725000",
Display = "Methylene blue",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL234U = new Coding
{
Code = "6730001",
Display = "234-U",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntiDNAAntibody = new Coding
{
Code = "6741004",
Display = "Anti DNA antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TLAntigen = new Coding
{
Code = "6755007",
Display = "TL antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SilverDifluoride = new Coding
{
Code = "6786001",
Display = "Silver difluoride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Aminopterin = new Coding
{
Code = "6790004",
Display = "Aminopterin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Veratrine = new Coding
{
Code = "6792007",
Display = "Veratrine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FerrousIronCompound = new Coding
{
Code = "6808006",
Display = "Ferrous iron compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Phomopsin = new Coding
{
Code = "6809003",
Display = "Phomopsin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiscadenineSynthase = new Coding
{
Code = "6814004",
Display = "Discadenine synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxidizedGlutathione = new Coding
{
Code = "6817006",
Display = "Oxidized glutathione",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SterolHormone = new Coding
{
Code = "6826009",
Display = "Sterol hormone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercuricAcetate = new Coding
{
Code = "683009",
Display = "Mercuric acetate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DextropropoxypheneNapsylate = new Coding
{
Code = "6837005",
Display = "Dextropropoxyphene napsylate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL188Pt = new Coding
{
Code = "6854002",
Display = "188-Pt",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlastoquinolPlastocyaninReductase = new Coding
{
Code = "686001",
Display = "Plastoquinol-plastocyanin reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TheophyllineCalciumSalicylate = new Coding
{
Code = "6865007",
Display = "Theophylline calcium salicylate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CefapirinSodium = new Coding
{
Code = "6873003",
Display = "Cefapirin sodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MeadAcid = new Coding
{
Code = "6879004",
Display = "Mead acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagnesiumFumes = new Coding
{
Code = "6881002",
Display = "Magnesium fumes",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding S3Amino2MethylpropionateAminotransferase = new Coding
{
Code = "6884005",
Display = "(S)-3-Amino-2-methylpropionate aminotransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3DeoxyMannoOctulosonate8Phosphatase = new Coding
{
Code = "6890009",
Display = "3-deoxy-manno-octulosonate-8-phosphatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThiopurineMethyltransferase = new Coding
{
Code = "6896003",
Display = "Thiopurine methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumFluoride = new Coding
{
Code = "6910009",
Display = "Sodium fluoride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DeoxycytidylateMethyltransferase = new Coding
{
Code = "6911008",
Display = "Deoxycytidylate methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Bowieine = new Coding
{
Code = "6916003",
Display = "Bowieine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Exopolyphosphatase = new Coding
{
Code = "6924008",
Display = "Exopolyphosphatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LeucineAcetyltransferase = new Coding
{
Code = "6925009",
Display = "Leucine acetyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL121Sn = new Coding
{
Code = "6927001",
Display = "121-Sn",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Trichothecenes = new Coding
{
Code = "693002",
Display = "Trichothecenes",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThymidylateSynthase = new Coding
{
Code = "6937006",
Display = "Thymidylate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenLePowerBHPower = new Coding
{
Code = "6945001",
Display = "Blood group antigen Le^bH^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Tin121m = new Coding
{
Code = "6952004",
Display = "Tin-121m",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyFrando = new Coding
{
Code = "6958000",
Display = "Blood group antibody Frando",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LysolecithinAcylmutase = new Coding
{
Code = "6961004",
Display = "Lysolecithin acylmutase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL4HydroxyprolineEpimerase = new Coding
{
Code = "6970001",
Display = "4-hydroxyproline epimerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chromium51CrChloride = new Coding
{
Code = "6973004",
Display = "Chromium (51-Cr) chloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ErythromycinLactobionate = new Coding
{
Code = "698006",
Display = "Erythromycin lactobionate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Acrylamide = new Coding
{
Code = "6983000",
Display = "Acrylamide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoalTarExtract = new Coding
{
Code = "699003",
Display = "Coal tar extract",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriflupromazineHydrochloride = new Coding
{
Code = "6992002",
Display = "Triflupromazine hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SeminalFluid = new Coding
{
Code = "6993007",
Display = "Seminal fluid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AmmoniumCompound = new Coding
{
Code = "6999006",
Display = "Ammonium compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaCarotene1515QuoteDioxygenase = new Coding
{
Code = "7008002",
Display = "Beta-carotene 15,15'-dioxygenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MalateCoALigase = new Coding
{
Code = "7018007",
Display = "Malate-CoA ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenGreenlee = new Coding
{
Code = "7029006",
Display = "Blood group antigen Greenlee",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Globoside = new Coding
{
Code = "7030001",
Display = "Globoside",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Diclofenac = new Coding
{
Code = "7034005",
Display = "Diclofenac",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenRx = new Coding
{
Code = "704006",
Display = "Blood group antigen Rx",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Lycorine = new Coding
{
Code = "7045008",
Display = "Lycorine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AsphyxiantAtmosphere = new Coding
{
Code = "7047000",
Display = "Asphyxiant atmosphere",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PyruvateCarboxylase = new Coding
{
Code = "7049002",
Display = "Pyruvate carboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinPoissy = new Coding
{
Code = "7054006",
Display = "Hemoglobin Poissy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3PropylmalateSynthase = new Coding
{
Code = "7056008",
Display = "3-propylmalate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NAcylneuraminate9Phosphatase = new Coding
{
Code = "7059001",
Display = "N-Acylneuraminate-9-phosphatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AnthocyanidinOPower3PowerGlucosyltransferase = new Coding
{
Code = "7061005",
Display = "Anthocyanidin O^3^-glucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Convallamarin = new Coding
{
Code = "7070008",
Display = "Convallamarin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenBuenosAiresII = new Coding
{
Code = "7084003",
Display = "Fibrinogen Buenos Aires II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Germanium69 = new Coding
{
Code = "7110002",
Display = "Germanium-69",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Antigen = new Coding
{
Code = "7120007",
Display = "Antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gallium73 = new Coding
{
Code = "7132006",
Display = "Gallium-73",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcidCoALigaseGDPForming = new Coding
{
Code = "7139002",
Display = "Acid-CoA ligase (GDP-forming)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclohexeneOxide = new Coding
{
Code = "7146006",
Display = "Cyclohexene oxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chlorthion = new Coding
{
Code = "7152007",
Display = "Chlorthion",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhosphorusIsotope = new Coding
{
Code = "7156005",
Display = "Phosphorus isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADw19Antigen = new Coding
{
Code = "7158006",
Display = "HLA-Dw19 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ComplementComponentC2a = new Coding
{
Code = "7161007",
Display = "Complement component C2a",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownLatexAllergy = new Coding
{
Code = "716184000",
Display = "No known latex allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownAllergy = new Coding
{
Code = "716186003",
Display = "No known allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NoKnownAnimalAllergy = new Coding
{
Code = "716220001",
Display = "No known animal allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Prekallikrein = new Coding
{
Code = "7179006",
Display = "Prekallikrein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethenyltetrahydrofolateCyclohydrolase = new Coding
{
Code = "7191002",
Display = "Methenyltetrahydrofolate cyclohydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ThiolOxidase = new Coding
{
Code = "7208009",
Display = "Thiol oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyHaakestad = new Coding
{
Code = "7211005",
Display = "Blood group antibody Haakestad",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OralContraceptiveIntolerance = new Coding
{
Code = "72354005",
Display = "Oral contraceptive intolerance",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GalactonateDehydratase = new Coding
{
Code = "7237008",
Display = "Galactonate dehydratase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylIsocyanate = new Coding
{
Code = "7243005",
Display = "Methyl isocyanate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Thorium = new Coding
{
Code = "7269004",
Display = "Thorium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MixedDust = new Coding
{
Code = "7271004",
Display = "Mixed dust",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DTDP4DehydrorhamnoseReductase = new Coding
{
Code = "7280004",
Display = "dTDP4-dehydrorhamnose reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Technetium99mTcLidofenin = new Coding
{
Code = "7281000",
Display = "Technetium (99m-Tc) lidofenin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercaptanCompound = new Coding
{
Code = "7284008",
Display = "Mercaptan compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AceticAcidTertButylEster = new Coding
{
Code = "7294003",
Display = "Acetic acid tert-butyl ester",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ambuphylline = new Coding
{
Code = "7302008",
Display = "Ambuphylline",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Bacteriochlorophyll = new Coding
{
Code = "7318002",
Display = "Bacteriochlorophyll",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NValeraldehyde = new Coding
{
Code = "732002",
Display = "N-valeraldehyde",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Pyrimidine = new Coding
{
Code = "7321000",
Display = "Pyrimidine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CalciumHydroxide = new Coding
{
Code = "7325009",
Display = "Calcium hydroxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfurousAcid = new Coding
{
Code = "7327001",
Display = "Sulfurous acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RedPetrolatum = new Coding
{
Code = "7328006",
Display = "Red petrolatum",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Shellac = new Coding
{
Code = "7330008",
Display = "Shellac",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyTrPowerAPower = new Coding
{
Code = "7337006",
Display = "Blood group antibody Tr^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorII = new Coding
{
Code = "7348004",
Display = "Coagulation factor II",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenJobbins = new Coding
{
Code = "735000",
Display = "Blood group antigen Jobbins",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AminoalcoholEster = new Coding
{
Code = "7382005",
Display = "Aminoalcohol ester",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemeHemopexinComplex = new Coding
{
Code = "7401000",
Display = "Heme-hemopexin complex",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyHLAB8 = new Coding
{
Code = "7411007",
Display = "Blood group antibody HLA-B8",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SepiapterinReductase = new Coding
{
Code = "7427000",
Display = "Sepiapterin reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ErythrosinB = new Coding
{
Code = "7434003",
Display = "Erythrosin B",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ruthenium = new Coding
{
Code = "7446004",
Display = "Ruthenium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL127Te = new Coding
{
Code = "7460002",
Display = "127-Te",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PTertButyltoluene = new Coding
{
Code = "7470000",
Display = "p-tert-butyltoluene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Oxamniquine = new Coding
{
Code = "747006",
Display = "Oxamniquine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HomocytotropicAntibody = new Coding
{
Code = "7489000",
Display = "Homocytotropic antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL72Ga = new Coding
{
Code = "7503004",
Display = "72-Ga",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MannitolHexanitrate = new Coding
{
Code = "7509000",
Display = "Mannitol hexanitrate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HepatotoxicMycotoxin = new Coding
{
Code = "7515000",
Display = "Hepatotoxic mycotoxin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding StizolobinateSynthase = new Coding
{
Code = "7537007",
Display = "Stizolobinate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinLincolnPark = new Coding
{
Code = "7547005",
Display = "Hemoglobin Lincoln Park",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenBethesdaI = new Coding
{
Code = "7549008",
Display = "Fibrinogen Bethesda I",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodySkPowerAPower = new Coding
{
Code = "7588005",
Display = "Blood group antibody Sk^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriethyleneGlycol = new Coding
{
Code = "7608003",
Display = "Triethylene glycol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyPruitt = new Coding
{
Code = "7616007",
Display = "Blood group antibody Pruitt",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLABw70Antigen = new Coding
{
Code = "7648006",
Display = "HLA-Bw70 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FishBone = new Coding
{
Code = "7661006",
Display = "Fish bone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AminobutyraldehydeDehydrogenase = new Coding
{
Code = "7670009",
Display = "Aminobutyraldehyde dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenTowey = new Coding
{
Code = "7675004",
Display = "Blood group antigen Towey",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyBgPowerCPower = new Coding
{
Code = "7685003",
Display = "Blood group antibody Bg^c^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FerrovanadiumDust = new Coding
{
Code = "7696006",
Display = "Ferrovanadium dust",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsovalerylCoADehydrogenase = new Coding
{
Code = "7716001",
Display = "Isovaleryl-CoA dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinMIwate = new Coding
{
Code = "773001",
Display = "Hemoglobin M-Iwate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlortetracyclineHydrochloride = new Coding
{
Code = "7737009",
Display = "Chlortetracycline hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLAB49Antigen = new Coding
{
Code = "7738004",
Display = "HLA-B49 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL111Ag = new Coding
{
Code = "7761002",
Display = "111-Ag",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Strontium89 = new Coding
{
Code = "7770004",
Display = "Strontium-89",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NeoBVitaminA1 = new Coding
{
Code = "7774008",
Display = "Neo-b-vitamin A1",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL103Ru = new Coding
{
Code = "7779003",
Display = "103-Ru",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SphingomyelinPhosphodiesteraseD = new Coding
{
Code = "7785005",
Display = "Sphingomyelin phosphodiesterase D",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL1Monoacylglycerol = new Coding
{
Code = "7790008",
Display = "1-Monoacylglycerol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SoyProtein = new Coding
{
Code = "7791007",
Display = "Soy protein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OxalateOxidase = new Coding
{
Code = "7795003",
Display = "Oxalate oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TetrahydroxypteridineCycloisomerase = new Coding
{
Code = "7801007",
Display = "Tetrahydroxypteridine cycloisomerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AntazolineHydrochloride = new Coding
{
Code = "7816005",
Display = "Antazoline hydrochloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcetylDigitoxin = new Coding
{
Code = "7834009",
Display = "Acetyl digitoxin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SphingomyelinPhosphodiesterase = new Coding
{
Code = "7846008",
Display = "Sphingomyelin phosphodiesterase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MonophosphatidylinositolPhosphodiesterase = new Coding
{
Code = "7848009",
Display = "Monophosphatidylinositol phosphodiesterase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Dextranase = new Coding
{
Code = "785009",
Display = "Dextranase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaCyclopiazonateOxidocyclase = new Coding
{
Code = "7868003",
Display = "Beta-cyclopiazonate oxidocyclase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL218Rn = new Coding
{
Code = "7879008",
Display = "218-Rn",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinPresbyterian = new Coding
{
Code = "7900007",
Display = "Hemoglobin Presbyterian",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Deanol = new Coding
{
Code = "7904003",
Display = "Deanol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ArginineCarboxypeptidase = new Coding
{
Code = "7909008",
Display = "Arginine carboxypeptidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Diflorasone = new Coding
{
Code = "7924004",
Display = "Diflorasone",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DArabitolDehydrogenase = new Coding
{
Code = "7938006",
Display = "D-arabitol dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OrsellinateDepsideHydrolase = new Coding
{
Code = "7945006",
Display = "Orsellinate-depside hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ReedSternbergAntibody = new Coding
{
Code = "7948008",
Display = "Reed-Sternberg antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Thioneb = new Coding
{
Code = "7953003",
Display = "Thioneb",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhosphatidateCytidylyltransferase = new Coding
{
Code = "7957002",
Display = "Phosphatidate cytidylyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinFShanghai = new Coding
{
Code = "7961008",
Display = "Hemoglobin F-Shanghai",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Allograft = new Coding
{
Code = "7970006",
Display = "Allograft",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyDalman = new Coding
{
Code = "7974002",
Display = "Blood group antibody Dalman",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Amiphenazole = new Coding
{
Code = "7975001",
Display = "Amiphenazole",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3QuotePhosphoadenylylsulfate3QuotePhosphatase = new Coding
{
Code = "7979007",
Display = "3'-phosphoadenylylsulfate 3'-phosphatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumRhodanide = new Coding
{
Code = "7983007",
Display = "Sodium rhodanide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SulfurIsotope = new Coding
{
Code = "7985000",
Display = "Sulfur isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ButylMercaptan = new Coding
{
Code = "7997004",
Display = "Butyl mercaptan",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CucurbitacinDeltaPower23PowerReductase = new Coding
{
Code = "8000007",
Display = "Cucurbitacin delta^23^-reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyFleming = new Coding
{
Code = "8002004",
Display = "Blood group antibody Fleming",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyGibson = new Coding
{
Code = "8025003",
Display = "Blood group antibody Gibson",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllylGlycidylEther = new Coding
{
Code = "8029009",
Display = "Allyl glycidyl ether",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PolyethyleneGlycol = new Coding
{
Code = "8030004",
Display = "Polyethylene glycol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CholestenolDeltaIsomerase = new Coding
{
Code = "8035009",
Display = "Cholestenol delta-isomerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CreosoticAcid = new Coding
{
Code = "804003",
Display = "Creosotic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenTh = new Coding
{
Code = "8048008",
Display = "Blood group antigen Th",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OrotateReductaseNADPH = new Coding
{
Code = "8054009",
Display = "Orotate reductase (NADPH)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GalactosideAcetyltransferase = new Coding
{
Code = "8055005",
Display = "Galactoside acetyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinLeiden = new Coding
{
Code = "8105004",
Display = "Hemoglobin Leiden",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UndecaprenylDiphosphatase = new Coding
{
Code = "8108002",
Display = "Undecaprenyl-diphosphatase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodySchuppenhauer = new Coding
{
Code = "8123007",
Display = "Blood group antibody Schuppenhauer",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MagnesiumAcetylsalicylate = new Coding
{
Code = "8132009",
Display = "Magnesium acetylsalicylate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Diosmin = new Coding
{
Code = "8143001",
Display = "Diosmin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Homoproline = new Coding
{
Code = "8153000",
Display = "Homoproline",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinFdFragment = new Coding
{
Code = "8156008",
Display = "Immunoglobulin, Fd fragment",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LymphocyteAntigenCD67 = new Coding
{
Code = "8164002",
Display = "Lymphocyte antigen CD67",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Uracil5CarboxylateDecarboxylase = new Coding
{
Code = "8168004",
Display = "Uracil-5-carboxylate decarboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cevadilline = new Coding
{
Code = "8179009",
Display = "Cevadilline",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Convallamarogenin = new Coding
{
Code = "8184003",
Display = "Convallamarogenin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DiaminopimelateEpimerase = new Coding
{
Code = "8190004",
Display = "Diaminopimelate epimerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LyticAntibody = new Coding
{
Code = "819002",
Display = "Lytic antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL43K = new Coding
{
Code = "8202008",
Display = "43-K",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HumanMenopausalGonadotropin = new Coding
{
Code = "8203003",
Display = "Human menopausal gonadotropin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Polyester = new Coding
{
Code = "8204009",
Display = "Polyester",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CoagulationFactorIIPaduaVariant = new Coding
{
Code = "8222007",
Display = "Coagulation factor II Padua variant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL106Ru = new Coding
{
Code = "8227001",
Display = "106-Ru",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding StreptococcalCysteineProteinase = new Coding
{
Code = "8230008",
Display = "Streptococcal cysteine proteinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Strobane = new Coding
{
Code = "8237006",
Display = "Strobane",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorothiazideSodium = new Coding
{
Code = "8252004",
Display = "Chlorothiazide sodium",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AbnormalHemoglobin = new Coding
{
Code = "8257005",
Display = "Abnormal hemoglobin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PotassiumThiosulfate = new Coding
{
Code = "8261004",
Display = "Potassium thiosulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyHildebrandt = new Coding
{
Code = "8268005",
Display = "Blood group antibody Hildebrandt",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TRNAAdenylyltransferase = new Coding
{
Code = "8270001",
Display = "tRNA adenylyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethionineSOxideReductase = new Coding
{
Code = "8275006",
Display = "Methionine-S-oxide reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UromucoidProtein = new Coding
{
Code = "8295000",
Display = "Uromucoid protein",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cyclohexanol = new Coding
{
Code = "8300003",
Display = "Cyclohexanol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinMadrid = new Coding
{
Code = "8310007",
Display = "Hemoglobin Madrid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RNADirectedDNAPolymerase = new Coding
{
Code = "8313009",
Display = "RNA-directed DNA polymerase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ProcollagenLysine2Oxoglutarate5Dioxygenase = new Coding
{
Code = "8340009",
Display = "Procollagen-lysine,2-oxoglutarate 5-dioxygenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BrilliantCresylBlue = new Coding
{
Code = "8342001",
Display = "Brilliant cresyl blue",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyRePowerAPower = new Coding
{
Code = "8343006",
Display = "Blood group antibody Re^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ManganeseEthyleneBisDithiocarbamate = new Coding
{
Code = "8354001",
Display = "Manganese ethylene bis-dithiocarbamate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HafniumIsotope = new Coding
{
Code = "8355000",
Display = "Hafnium isotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyC = new Coding
{
Code = "8362009",
Display = "Blood group antibody c",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OilOfPennyroyalEuropean = new Coding
{
Code = "8365006",
Display = "Oil of pennyroyal-European",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Xylobiase = new Coding
{
Code = "8368008",
Display = "Xylobiase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DuffyBloodGroupAntibody = new Coding
{
Code = "8376005",
Display = "Duffy blood group antibody",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Glucan14AlphaGlucosidase = new Coding
{
Code = "8385005",
Display = "Glucan 1,4-alpha-glucosidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NicotineResinComplex = new Coding
{
Code = "8397006",
Display = "Nicotine resin complex",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitroethaneOxidase = new Coding
{
Code = "8406008",
Display = "Nitroethane oxidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BrilliantOrange = new Coding
{
Code = "8429000",
Display = "Brilliant orange",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OilOfLemonGrass = new Coding
{
Code = "8450009",
Display = "Oil of lemon grass",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenSisson = new Coding
{
Code = "8452001",
Display = "Blood group antigen Sisson",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylEthylKetonePeroxide = new Coding
{
Code = "8456003",
Display = "Methyl ethyl ketone peroxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyVgPowerAPower = new Coding
{
Code = "8460000",
Display = "Blood group antibody Vg^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HomocysteineMethyltransferase = new Coding
{
Code = "8473001",
Display = "Homocysteine methyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LeadOleate = new Coding
{
Code = "8474007",
Display = "Lead oleate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenMur = new Coding
{
Code = "8484008",
Display = "Blood group antigen Mur",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinP210BCRABL = new Coding
{
Code = "8485009",
Display = "Oncogene protein P210, BCR-ABL",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADRw15Antigen = new Coding
{
Code = "8486005",
Display = "HLA-DRw15 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL48V = new Coding
{
Code = "8487001",
Display = "48-V",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ComplementInhibitor = new Coding
{
Code = "8491006",
Display = "Complement inhibitor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Allantoicase = new Coding
{
Code = "8492004",
Display = "Allantoicase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ShortNeurotoxinVenom = new Coding
{
Code = "8498000",
Display = "Short neurotoxin venom",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding StizolobateSynthase = new Coding
{
Code = "850000",
Display = "Stizolobate synthase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Cyclohexane = new Coding
{
Code = "8507001",
Display = "Cyclohexane",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ornithine = new Coding
{
Code = "8514004",
Display = "Ornithine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinMachida = new Coding
{
Code = "8520003",
Display = "Hemoglobin Machida",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Osmium183 = new Coding
{
Code = "8525008",
Display = "Osmium-183",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding UrinaryProteinOfLowMolecularWeight = new Coding
{
Code = "8529002",
Display = "Urinary protein of low molecular weight",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Tin110 = new Coding
{
Code = "8534003",
Display = "Tin-110",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Solution = new Coding
{
Code = "8537005",
Display = "Solution",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PotassiumCyanate = new Coding
{
Code = "8578007",
Display = "Potassium cyanate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PeptideNPower4PowerNAcetylBGlucosaminylAsparagineAmidase = new Coding
{
Code = "859004",
Display = "Peptide-N^4^-(N-acetyl-b-glucosaminyl) asparagine amidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Dichlorodifluoromethane = new Coding
{
Code = "8591008",
Display = "Dichlorodifluoromethane",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinAggregated = new Coding
{
Code = "860009",
Display = "Immunoglobulin, aggregated",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TumorNecrosisFactor = new Coding
{
Code = "8612007",
Display = "Tumor necrosis factor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OncogeneProteinTCL6 = new Coding
{
Code = "8620009",
Display = "Oncogene protein TCL6",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PotassiumChloride = new Coding
{
Code = "8631001",
Display = "Potassium chloride",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Rubijervine = new Coding
{
Code = "8653004",
Display = "Rubijervine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ComplementComponentC3c = new Coding
{
Code = "8660005",
Display = "Complement component C3c",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GumArabic = new Coding
{
Code = "8687009",
Display = "Gum arabic",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding KanamycinSulfate = new Coding
{
Code = "8689007",
Display = "Kanamycin sulfate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sulfachlorpyridazine = new Coding
{
Code = "8701002",
Display = "Sulfachlorpyridazine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL4HydroxybenzoateDecarboxylase = new Coding
{
Code = "8705006",
Display = "4-hydroxybenzoate decarboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Urethan = new Coding
{
Code = "873008",
Display = "Urethan",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyAustin = new Coding
{
Code = "8731008",
Display = "Blood group antibody Austin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding C3H20Bb = new Coding
{
Code = "8740007",
Display = "C3(H20)Bb",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenD = new Coding
{
Code = "876000",
Display = "Blood group antigen D",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AdenylylsulfateKinase = new Coding
{
Code = "8761000",
Display = "Adenylylsulfate kinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Santonin = new Coding
{
Code = "8767001",
Display = "Santonin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarboxypeptidaseA = new Coding
{
Code = "877009",
Display = "Carboxypeptidase A",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ChlorineDioxide = new Coding
{
Code = "8785008",
Display = "Chlorine dioxide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenWdPowerAPower = new Coding
{
Code = "8786009",
Display = "Blood group antigen Wd^a^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinF = new Coding
{
Code = "8795001",
Display = "Hemoglobin F",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LHReceptorSite = new Coding
{
Code = "8817004",
Display = "LH receptor site",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyTriW = new Coding
{
Code = "8818009",
Display = "Blood group antibody Tri W",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LinoleicAcid = new Coding
{
Code = "8822004",
Display = "Linoleic acid",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NitrateReductaseNADPH = new Coding
{
Code = "8830003",
Display = "Nitrate reductase (NAD(P)H)",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Gallocyanine = new Coding
{
Code = "8836009",
Display = "Gallocyanine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HydroxybutyrateDimerHydrolase = new Coding
{
Code = "8844009",
Display = "Hydroxybutyrate-dimer hydrolase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Strontium85SrNitrate = new Coding
{
Code = "8858006",
Display = "Strontium (85-Sr) nitrate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NaturalGraphite = new Coding
{
Code = "8865003",
Display = "Natural graphite",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenEvelyn = new Coding
{
Code = "8878003",
Display = "Blood group antigen Evelyn",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL3Hydroxybenzoate6Hydroxylase = new Coding
{
Code = "8882001",
Display = "3-hydroxybenzoate 6-hydroxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FlecainideAcetate = new Coding
{
Code = "8886003",
Display = "Flecainide acetate",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AcetylCoACarboxylaseKinase = new Coding
{
Code = "889006",
Display = "[acetyl-CoA carboxylase] kinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyIPowerTPower = new Coding
{
Code = "8908003",
Display = "Blood group antibody I^T^",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Endolymph = new Coding
{
Code = "8914005",
Display = "Endolymph",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Biotin = new Coding
{
Code = "8919000",
Display = "Biotin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AzurB = new Coding
{
Code = "8926000",
Display = "Azur B",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PhosphopantothenateCysteineLigase = new Coding
{
Code = "8945009",
Display = "Phosphopantothenate-cysteine ligase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding VAL23Dihydroxyindole23Dioxygenase = new Coding
{
Code = "8953001",
Display = "2,3-dihydroxyindole 2,3-dioxygenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ice = new Coding
{
Code = "896008",
Display = "Ice",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NAcetylmuramoylLAlanineAmidase = new Coding
{
Code = "8963009",
Display = "N-Acetylmuramoyl-L-alanine amidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BulbourethralSecretions = new Coding
{
Code = "8969008",
Display = "Bulbourethral secretions",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyTarplee = new Coding
{
Code = "8977007",
Display = "Blood group antibody Tarplee",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding OleateHydratase = new Coding
{
Code = "8982000",
Display = "Oleate hydratase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CyclePhaseSpecificAgent = new Coding
{
Code = "8987006",
Display = "Cycle-phase specific agent",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Ribulokinase = new Coding
{
Code = "8991001",
Display = "Ribulokinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MethylBlue = new Coding
{
Code = "9010006",
Display = "Methyl blue",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding DephosphoCoAKinase = new Coding
{
Code = "9013008",
Display = "Dephospho-CoA kinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Carbaryl = new Coding
{
Code = "9021002",
Display = "Carbaryl",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Glucose6PhosphateDehydrogenase = new Coding
{
Code = "9024005",
Display = "Glucose-6-phosphate dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RadonRadioisotope = new Coding
{
Code = "9045003",
Display = "Radon radioisotope",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ODihydroxycoumarinOPower7PowerGlucosyltransferase = new Coding
{
Code = "905001",
Display = "o-Dihydroxycoumarin O^7^-glucosyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllspiceOil = new Coding
{
Code = "9052001",
Display = "Allspice oil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntigenHLAB15 = new Coding
{
Code = "9054000",
Display = "Blood group antigen HLA-B15",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding RetinolFattyAcyltransferase = new Coding
{
Code = "9103003",
Display = "Retinol fatty-acyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding MercuricCompound = new Coding
{
Code = "9110009",
Display = "Mercuric compound",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Sempervirine = new Coding
{
Code = "9125009",
Display = "Sempervirine",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding TriacetateLactonase = new Coding
{
Code = "9159008",
Display = "Triacetate-lactonase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyAlda = new Coding
{
Code = "9172009",
Display = "Blood group antibody Alda",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenPoitiers = new Coding
{
Code = "9174005",
Display = "Fibrinogen Poitiers",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BetaNAcetylgalactosaminidase = new Coding
{
Code = "9183000",
Display = "Beta-N-acetylgalactosaminidase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CMPNAcetylneuraminateLactosylceramideAlpha23Sialyltransferase = new Coding
{
Code = "9189001",
Display = "CMP-N-acetylneuraminate-lactosylceramide alpha-2,3-sialyltransferase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToEggs = new Coding
{
Code = "91930004",
Display = "Allergy to eggs",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToErythromycin = new Coding
{
Code = "91931000",
Display = "Allergy to erythromycin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToFruit = new Coding
{
Code = "91932007",
Display = "Allergy to fruit",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToMacrolideAntibiotic = new Coding
{
Code = "91933002",
Display = "Allergy to macrolide antibiotic",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding NutAllergy = new Coding
{
Code = "91934008",
Display = "Nut allergy",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToPeanuts = new Coding
{
Code = "91935009",
Display = "Allergy to peanuts",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToPenicillin = new Coding
{
Code = "91936005",
Display = "Allergy to penicillin",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToSeafood = new Coding
{
Code = "91937001",
Display = "Allergy to seafood",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToStrawberries = new Coding
{
Code = "91938006",
Display = "Allergy to strawberries",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToSulfonamides = new Coding
{
Code = "91939003",
Display = "Allergy to sulfonamides",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AllergyToWalnut = new Coding
{
Code = "91940001",
Display = "Allergy to walnut",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ImmunoglobulinGeneINVAllotype = new Coding
{
Code = "9195000",
Display = "Immunoglobulin gene INV allotype",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ApioseReductase = new Coding
{
Code = "9197008",
Display = "Apiose reductase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinTarrant = new Coding
{
Code = "9205004",
Display = "Hemoglobin Tarrant",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PlantPhenolOil = new Coding
{
Code = "9220005",
Display = "Plant phenol oil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BorneolDehydrogenase = new Coding
{
Code = "9223007",
Display = "Borneol dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding ComplementComponentC2 = new Coding
{
Code = "923009",
Display = "Complement component C2",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Chlorobutanol = new Coding
{
Code = "9234005",
Display = "Chlorobutanol",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Tellurium118 = new Coding
{
Code = "9246009",
Display = "Tellurium-118",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SodiumIodipamide = new Coding
{
Code = "925002",
Display = "Sodium iodipamide",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HLADRw16Antigen = new Coding
{
Code = "9253000",
Display = "HLA-DRw16 antigen",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CatecholamineReceptor = new Coding
{
Code = "9270008",
Display = "Catecholamine receptor",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding FibrinogenPontoise = new Coding
{
Code = "9271007",
Display = "Fibrinogen Pontoise",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding LensNeutralProteinase = new Coding
{
Code = "9301005",
Display = "Lens neutral proteinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding GentisateDecarboxylase = new Coding
{
Code = "9302003",
Display = "Gentisate decarboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding SpearmintOil = new Coding
{
Code = "9315007",
Display = "Spearmint oil",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyVennera = new Coding
{
Code = "9319001",
Display = "Blood group antibody Vennera",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding IsopropylGlycidylEther = new Coding
{
Code = "9334007",
Display = "Isopropyl glycidyl ether",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Nitrobenzene = new Coding
{
Code = "9349004",
Display = "Nitrobenzene",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Palladium103 = new Coding
{
Code = "9351000",
Display = "Palladium-103",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding HemoglobinFAlexandra = new Coding
{
Code = "9355009",
Display = "Hemoglobin F-Alexandra",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding BloodGroupAntibodyPollio = new Coding
{
Code = "9392009",
Display = "Blood group antibody Pollio",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding Pyridoxine4Dehydrogenase = new Coding
{
Code = "963005",
Display = "Pyridoxine 4-dehydrogenase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding AdenosylmethionineDecarboxylase = new Coding
{
Code = "974001",
Display = "Adenosylmethionine decarboxylase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding CarbamateKinase = new Coding
{
Code = "979006",
Display = "Carbamate kinase",
System = "http://snomed.info/sct"
};
/// <summary>
///
/// </summary>
public static readonly Coding PalladiumCompound = new Coding
{
Code = "993004",
Display = "Palladium compound",
System = "http://snomed.info/sct"
};
/// <summary>
/// Literal for code: Mannotetraose2AlphaNAcetylglucosaminyltransferase
/// </summary>
public const string LiteralMannotetraose2AlphaNAcetylglucosaminyltransferase = "1002007";
/// <summary>
/// Literal for code: NAcetylneuraminateMonooxygenase
/// </summary>
public const string LiteralNAcetylneuraminateMonooxygenase = "1010008";
/// <summary>
/// Literal for code: Nornicotine
/// </summary>
public const string LiteralNornicotine = "1018001";
/// <summary>
/// Literal for code: HemoglobinOkaloosa
/// </summary>
public const string LiteralHemoglobinOkaloosa = "102002";
/// <summary>
/// Literal for code: Molybdenum93
/// </summary>
public const string LiteralMolybdenum93 = "1025008";
/// <summary>
/// Literal for code: GuanineDeaminase
/// </summary>
public const string LiteralGuanineDeaminase = "1047008";
/// <summary>
/// Literal for code: Melilotate3Monooxygenase
/// </summary>
public const string LiteralMelilotate3Monooxygenase = "1050006";
/// <summary>
/// Literal for code: Substance
/// </summary>
public const string LiteralSubstance = "105590001";
/// <summary>
/// Literal for code: EColiPeriplasmicProteinase
/// </summary>
public const string LiteralEColiPeriplasmicProteinase = "1065007";
/// <summary>
/// Literal for code: VAL202Tl
/// </summary>
public const string LiteralVAL202Tl = "1080001";
/// <summary>
/// Literal for code: CoagulationFactorInhibitor
/// </summary>
public const string LiteralCoagulationFactorInhibitor = "1091008";
/// <summary>
/// Literal for code: BloodGroupAntigenMPowerAPower
/// </summary>
public const string LiteralBloodGroupAntigenMPowerAPower = "1097007";
/// <summary>
/// Literal for code: IsochorismateSynthase
/// </summary>
public const string LiteralIsochorismateSynthase = "1105007";
/// <summary>
/// Literal for code: PancreaticRibonuclease
/// </summary>
public const string LiteralPancreaticRibonuclease = "1113008";
/// <summary>
/// Literal for code: VAL240U
/// </summary>
public const string LiteralVAL240U = "1137008";
/// <summary>
/// Literal for code: HemoglobinBarcelona
/// </summary>
public const string LiteralHemoglobinBarcelona = "1149009";
/// <summary>
/// Literal for code: BloodGroupAntibodyLutheran
/// </summary>
public const string LiteralBloodGroupAntibodyLutheran = "1160000";
/// <summary>
/// Literal for code: Titanium
/// </summary>
public const string LiteralTitanium = "1166006";
/// <summary>
/// Literal for code: HemoglobinGower2
/// </summary>
public const string LiteralHemoglobinGower2 = "1169004";
/// <summary>
/// Literal for code: FibrinogenKawaguchi
/// </summary>
public const string LiteralFibrinogenKawaguchi = "1171004";
/// <summary>
/// Literal for code: HemoglobinRoseauPointePitre
/// </summary>
public const string LiteralHemoglobinRoseauPointePitre = "1185009";
/// <summary>
/// Literal for code: HemoglobinFMOsaka
/// </summary>
public const string LiteralHemoglobinFMOsaka = "1189003";
/// <summary>
/// Literal for code: Mephenoxalone
/// </summary>
public const string LiteralMephenoxalone = "1190007";
/// <summary>
/// Literal for code: OrnithineRacemase
/// </summary>
public const string LiteralOrnithineRacemase = "120006";
/// <summary>
/// Literal for code: DiethylXanthogenDisulfide
/// </summary>
public const string LiteralDiethylXanthogenDisulfide = "1219001";
/// <summary>
/// Literal for code: BloodGroupAntigenMarks
/// </summary>
public const string LiteralBloodGroupAntigenMarks = "1223009";
/// <summary>
/// Literal for code: FibrinogenMadridI
/// </summary>
public const string LiteralFibrinogenMadridI = "1244009";
/// <summary>
/// Literal for code: LeucostomaNeutralProteinase
/// </summary>
public const string LiteralLeucostomaNeutralProteinase = "1248007";
/// <summary>
/// Literal for code: Ferrous59FeSulfate
/// </summary>
public const string LiteralFerrous59FeSulfate = "125001";
/// <summary>
/// Literal for code: GalactosylNAcetylglucosaminylgalactosylglucosylceramideAlphaGalactosyltransferase
/// </summary>
public const string LiteralGalactosylNAcetylglucosaminylgalactosylglucosylceramideAlphaGalactosyltransferase = "126000";
/// <summary>
/// Literal for code: AmikacinSulfate
/// </summary>
public const string LiteralAmikacinSulfate = "1269009";
/// <summary>
/// Literal for code: PteridineOxidase
/// </summary>
public const string LiteralPteridineOxidase = "1272002";
/// <summary>
/// Literal for code: BloodGroupAntibodyEvelyn
/// </summary>
public const string LiteralBloodGroupAntibodyEvelyn = "1273007";
/// <summary>
/// Literal for code: HemoglobinHopkinsII
/// </summary>
public const string LiteralHemoglobinHopkinsII = "130002";
/// <summary>
/// Literal for code: DolichylPhosphateMannosyltransferase
/// </summary>
public const string LiteralDolichylPhosphateMannosyltransferase = "131003";
/// <summary>
/// Literal for code: NitrateReductaseCytochrome
/// </summary>
public const string LiteralNitrateReductaseCytochrome = "1313002";
/// <summary>
/// Literal for code: BloodGroupAntibodyK18
/// </summary>
public const string LiteralBloodGroupAntibodyK18 = "1319003";
/// <summary>
/// Literal for code: HemoglobinManitoba
/// </summary>
public const string LiteralHemoglobinManitoba = "1320009";
/// <summary>
/// Literal for code: MetocurineIodide
/// </summary>
public const string LiteralMetocurineIodide = "1325004";
/// <summary>
/// Literal for code: Methamidophos
/// </summary>
public const string LiteralMethamidophos = "1331001";
/// <summary>
/// Literal for code: EstradiolReceptor
/// </summary>
public const string LiteralEstradiolReceptor = "1334009";
/// <summary>
/// Literal for code: Deoxycortone
/// </summary>
public const string LiteralDeoxycortone = "1336006";
/// <summary>
/// Literal for code: HemoglobinTaLi
/// </summary>
public const string LiteralHemoglobinTaLi = "1341003";
/// <summary>
/// Literal for code: BlueShadeEosin
/// </summary>
public const string LiteralBlueShadeEosin = "1346008";
/// <summary>
/// Literal for code: AntihemophilicFactorBOxford3Variant
/// </summary>
public const string LiteralAntihemophilicFactorBOxford3Variant = "1355006";
/// <summary>
/// Literal for code: Iodine131
/// </summary>
public const string LiteralIodine131 = "1368003";
/// <summary>
/// Literal for code: BloodGroupAntigenBig
/// </summary>
public const string LiteralBloodGroupAntigenBig = "1371006";
/// <summary>
/// Literal for code: Zirconium93
/// </summary>
public const string LiteralZirconium93 = "1373009";
/// <summary>
/// Literal for code: VAL126I
/// </summary>
public const string LiteralVAL126I = "1381005";
/// <summary>
/// Literal for code: IronPentacarbonyl
/// </summary>
public const string LiteralIronPentacarbonyl = "1394007";
/// <summary>
/// Literal for code: Actinium
/// </summary>
public const string LiteralActinium = "1396009";
/// <summary>
/// Literal for code: BloodGroupAntibodyMPowerEPower
/// </summary>
public const string LiteralBloodGroupAntibodyMPowerEPower = "1405004";
/// <summary>
/// Literal for code: BloodGroupAntibody1123K
/// </summary>
public const string LiteralBloodGroupAntibody1123K = "1408002";
/// <summary>
/// Literal for code: RadiumCompound
/// </summary>
public const string LiteralRadiumCompound = "1416006";
/// <summary>
/// Literal for code: Methylparafynol
/// </summary>
public const string LiteralMethylparafynol = "1450002";
/// <summary>
/// Literal for code: Cyclomaltodextrinase
/// </summary>
public const string LiteralCyclomaltodextrinase = "1466000";
/// <summary>
/// Literal for code: Elastin
/// </summary>
public const string LiteralElastin = "1471007";
/// <summary>
/// Literal for code: AdenosinePhosphateDeaminase
/// </summary>
public const string LiteralAdenosinePhosphateDeaminase = "1472000";
/// <summary>
/// Literal for code: CodeineSulfate
/// </summary>
public const string LiteralCodeineSulfate = "1476002";
/// <summary>
/// Literal for code: HemoglobinYatsushiro
/// </summary>
public const string LiteralHemoglobinYatsushiro = "1477006";
/// <summary>
/// Literal for code: ProtoOncogene
/// </summary>
public const string LiteralProtoOncogene = "1496005";
/// <summary>
/// Literal for code: BloodGroupAntigenChPowerAPower
/// </summary>
public const string LiteralBloodGroupAntigenChPowerAPower = "1506001";
/// <summary>
/// Literal for code: HLAB21Antigen
/// </summary>
public const string LiteralHLAB21Antigen = "1517000";
/// <summary>
/// Literal for code: VAL6CarboxyhexanoateCoALigase
/// </summary>
public const string LiteralVAL6CarboxyhexanoateCoALigase = "1530004";
/// <summary>
/// Literal for code: NitrogenFluoride
/// </summary>
public const string LiteralNitrogenFluoride = "1535009";
/// <summary>
/// Literal for code: PargylineHydrochloride
/// </summary>
public const string LiteralPargylineHydrochloride = "1536005";
/// <summary>
/// Literal for code: TelluriumRadioisotope
/// </summary>
public const string LiteralTelluriumRadioisotope = "1540001";
/// <summary>
/// Literal for code: UridinePhosphorylase
/// </summary>
public const string LiteralUridinePhosphorylase = "1545006";
/// <summary>
/// Literal for code: Talc
/// </summary>
public const string LiteralTalc = "1557002";
/// <summary>
/// Literal for code: BloodGroupAntibodyBuckalew
/// </summary>
public const string LiteralBloodGroupAntibodyBuckalew = "1565004";
/// <summary>
/// Literal for code: MaltoseTetrapalmitate
/// </summary>
public const string LiteralMaltoseTetrapalmitate = "1575001";
/// <summary>
/// Literal for code: FerrocyanideSalt
/// </summary>
public const string LiteralFerrocyanideSalt = "159002";
/// <summary>
/// Literal for code: CobaltIsotope
/// </summary>
public const string LiteralCobaltIsotope = "1603001";
/// <summary>
/// Literal for code: HomoserineKinase
/// </summary>
public const string LiteralHomoserineKinase = "1607000";
/// <summary>
/// Literal for code: NOctylIsosafroleSulfoxide
/// </summary>
public const string LiteralNOctylIsosafroleSulfoxide = "1609002";
/// <summary>
/// Literal for code: BloodGroupAntigenVen
/// </summary>
public const string LiteralBloodGroupAntigenVen = "1634002";
/// <summary>
/// Literal for code: PhosphoenolpyruvateProteinPhosphotransferase
/// </summary>
public const string LiteralPhosphoenolpyruvateProteinPhosphotransferase = "164003";
/// <summary>
/// Literal for code: BloodGroupAntigenSul
/// </summary>
public const string LiteralBloodGroupAntigenSul = "1649005";
/// <summary>
/// Literal for code: HemoglobinShaareZedek
/// </summary>
public const string LiteralHemoglobinShaareZedek = "1656004";
/// <summary>
/// Literal for code: PlantSeeds
/// </summary>
public const string LiteralPlantSeeds = "1660001";
/// <summary>
/// Literal for code: Ceforanide
/// </summary>
public const string LiteralCeforanide = "1668008";
/// <summary>
/// Literal for code: Ligase
/// </summary>
public const string LiteralLigase = "1672007";
/// <summary>
/// Literal for code: Xylenol
/// </summary>
public const string LiteralXylenol = "1673002";
/// <summary>
/// Literal for code: VAL86Rb
/// </summary>
public const string LiteralVAL86Rb = "1675009";
/// <summary>
/// Literal for code: BloodGroupAntibodyLWPowerAbPower
/// </summary>
public const string LiteralBloodGroupAntibodyLWPowerAbPower = "1676005";
/// <summary>
/// Literal for code: BloodGroupAntibodyBLePowerBPower
/// </summary>
public const string LiteralBloodGroupAntibodyBLePowerBPower = "1681001";
/// <summary>
/// Literal for code: VAL12HPETE
/// </summary>
public const string LiteralVAL12HPETE = "1696002";
/// <summary>
/// Literal for code: Gold191
/// </summary>
public const string LiteralGold191 = "1701009";
/// <summary>
/// Literal for code: UricAcid
/// </summary>
public const string LiteralUricAcid = "1710001";
/// <summary>
/// Literal for code: Diamond
/// </summary>
public const string LiteralDiamond = "1726000";
/// <summary>
/// Literal for code: DeoxylimonateARingLactonase
/// </summary>
public const string LiteralDeoxylimonateARingLactonase = "1727009";
/// <summary>
/// Literal for code: DeoxyCytidineTriphosphate
/// </summary>
public const string LiteralDeoxyCytidineTriphosphate = "1740004";
/// <summary>
/// Literal for code: SaccharopineDehydrogenaseNADPPowerPlusPowerLGlutamateForming
/// </summary>
public const string LiteralSaccharopineDehydrogenaseNADPPowerPlusPowerLGlutamateForming = "1764003";
/// <summary>
/// Literal for code: SucrosePhosphorylase
/// </summary>
public const string LiteralSucrosePhosphorylase = "1768000";
/// <summary>
/// Literal for code: UridineDiphosphateGalactose
/// </summary>
public const string LiteralUridineDiphosphateGalactose = "178002";
/// <summary>
/// Literal for code: LeucineTRNALigase
/// </summary>
public const string LiteralLeucineTRNALigase = "1786002";
/// <summary>
/// Literal for code: SodiumTrichloroacetate
/// </summary>
public const string LiteralSodiumTrichloroacetate = "1793003";
/// <summary>
/// Literal for code: Glyodin
/// </summary>
public const string LiteralGlyodin = "1795005";
/// <summary>
/// Literal for code: HemoglobinHammersmith
/// </summary>
public const string LiteralHemoglobinHammersmith = "1798007";
/// <summary>
/// Literal for code: LLysineOxidase
/// </summary>
public const string LiteralLLysineOxidase = "1799004";
/// <summary>
/// Literal for code: HemoglobinTochigi
/// </summary>
public const string LiteralHemoglobinTochigi = "1823002";
/// <summary>
/// Literal for code: RibonucleaseTGreaterThan1LessThan
/// </summary>
public const string LiteralRibonucleaseTGreaterThan1LessThan = "1827001";
/// <summary>
/// Literal for code: HLACw9Antigen
/// </summary>
public const string LiteralHLACw9Antigen = "186002";
/// <summary>
/// Literal for code: Cyanocobalamin57Co
/// </summary>
public const string LiteralCyanocobalamin57Co = "187006";
/// <summary>
/// Literal for code: LaboratoryAnimalDanderAllergy
/// </summary>
public const string LiteralLaboratoryAnimalDanderAllergy = "188336009";
/// <summary>
/// Literal for code: Verdohemoglobin
/// </summary>
public const string LiteralVerdohemoglobin = "1886008";
/// <summary>
/// Literal for code: Galactoside3Fucosyltransferase
/// </summary>
public const string LiteralGalactoside3Fucosyltransferase = "1904005";
/// <summary>
/// Literal for code: PrimaryLactoseIntolerance
/// </summary>
public const string LiteralPrimaryLactoseIntolerance = "190751001";
/// <summary>
/// Literal for code: SucroseIntolerance
/// </summary>
public const string LiteralSucroseIntolerance = "190753003";
/// <summary>
/// Literal for code: VonWillebrandFactorInhibitor
/// </summary>
public const string LiteralVonWillebrandFactorInhibitor = "1914001";
/// <summary>
/// Literal for code: Boroglycerin
/// </summary>
public const string LiteralBoroglycerin = "1916004";
/// <summary>
/// Literal for code: ImmunoglobulinGMGreaterThan21LessThanAllotype
/// </summary>
public const string LiteralImmunoglobulinGMGreaterThan21LessThanAllotype = "1940007";
/// <summary>
/// Literal for code: CoagulationFactorXPatientVariant
/// </summary>
public const string LiteralCoagulationFactorXPatientVariant = "1944003";
/// <summary>
/// Literal for code: BuclizineHydrochloride
/// </summary>
public const string LiteralBuclizineHydrochloride = "1956002";
/// <summary>
/// Literal for code: LoxapineHydrochloride
/// </summary>
public const string LiteralLoxapineHydrochloride = "1971003";
/// <summary>
/// Literal for code: BloodGroupAntibodyNiemetz
/// </summary>
public const string LiteralBloodGroupAntibodyNiemetz = "1975007";
/// <summary>
/// Literal for code: SiteSpecificMethyltransferaseCytosineSpecific
/// </summary>
public const string LiteralSiteSpecificMethyltransferaseCytosineSpecific = "1978009";
/// <summary>
/// Literal for code: Vomitus
/// </summary>
public const string LiteralVomitus = "1985008";
/// <summary>
/// Literal for code: Lignins
/// </summary>
public const string LiteralLignins = "1991005";
/// <summary>
/// Literal for code: HeavyNitrogen
/// </summary>
public const string LiteralHeavyNitrogen = "2000001";
/// <summary>
/// Literal for code: Berberine
/// </summary>
public const string LiteralBerberine = "200001";
/// <summary>
/// Literal for code: InosineDiphosphate
/// </summary>
public const string LiteralInosineDiphosphate = "2006007";
/// <summary>
/// Literal for code: Gallium67
/// </summary>
public const string LiteralGallium67 = "2008008";
/// <summary>
/// Literal for code: CobaltCarbonyl
/// </summary>
public const string LiteralCobaltCarbonyl = "2009000";
/// <summary>
/// Literal for code: DNATopoisomerase
/// </summary>
public const string LiteralDNATopoisomerase = "2017008";
/// <summary>
/// Literal for code: AlternariaSerineProteinase
/// </summary>
public const string LiteralAlternariaSerineProteinase = "2027002";
/// <summary>
/// Literal for code: FibrinogenOsloII
/// </summary>
public const string LiteralFibrinogenOsloII = "2029004";
/// <summary>
/// Literal for code: BloodGroupAntibodyBgPowerBPower
/// </summary>
public const string LiteralBloodGroupAntibodyBgPowerBPower = "2038002";
/// <summary>
/// Literal for code: SymNorspermidineSynthase
/// </summary>
public const string LiteralSymNorspermidineSynthase = "2039005";
/// <summary>
/// Literal for code: CholoylglycineHydrolase
/// </summary>
public const string LiteralCholoylglycineHydrolase = "2050008";
/// <summary>
/// Literal for code: LXylulokinase
/// </summary>
public const string LiteralLXylulokinase = "2064008";
/// <summary>
/// Literal for code: LymphocyteAntigenCD51
/// </summary>
public const string LiteralLymphocyteAntigenCD51 = "2082006";
/// <summary>
/// Literal for code: OncogeneProteinTCL
/// </summary>
public const string LiteralOncogeneProteinTCL = "2085008";
/// <summary>
/// Literal for code: PageBlueG90
/// </summary>
public const string LiteralPageBlueG90 = "2088005";
/// <summary>
/// Literal for code: NADPowerPlusPowerADPRibosyltransferase
/// </summary>
public const string LiteralNADPowerPlusPowerADPRibosyltransferase = "2096000";
/// <summary>
/// Literal for code: Sulfonethylmethane
/// </summary>
public const string LiteralSulfonethylmethane = "2100004";
/// <summary>
/// Literal for code: YeastProteinaseB
/// </summary>
public const string LiteralYeastProteinaseB = "2101000";
/// <summary>
/// Literal for code: Betazole
/// </summary>
public const string LiteralBetazole = "2125008";
/// <summary>
/// Literal for code: Cyclohexane12DiolDehydrogenase
/// </summary>
public const string LiteralCyclohexane12DiolDehydrogenase = "2130007";
/// <summary>
/// Literal for code: EggProteinAllergy
/// </summary>
public const string LiteralEggProteinAllergy = "213020009";
/// <summary>
/// Literal for code: Hydrogen
/// </summary>
public const string LiteralHydrogen = "2141009";
/// <summary>
/// Literal for code: BloodGroupAntigenPaular
/// </summary>
public const string LiteralBloodGroupAntigenPaular = "2147008";
/// <summary>
/// Literal for code: PyridoxaminePyruvateAminotransferase
/// </summary>
public const string LiteralPyridoxaminePyruvateAminotransferase = "2151005";
/// <summary>
/// Literal for code: TagaturonateReductase
/// </summary>
public const string LiteralTagaturonateReductase = "2154002";
/// <summary>
/// Literal for code: AzorubinS
/// </summary>
public const string LiteralAzorubinS = "2159007";
/// <summary>
/// Literal for code: Dicofol
/// </summary>
public const string LiteralDicofol = "2163000";
/// <summary>
/// Literal for code: BisphosphoglycerateMutase
/// </summary>
public const string LiteralBisphosphoglycerateMutase = "2168009";
/// <summary>
/// Literal for code: BloodGroupAntigenIH
/// </summary>
public const string LiteralBloodGroupAntigenIH = "217008";
/// <summary>
/// Literal for code: MalonateSemialdehydeDehydratase
/// </summary>
public const string LiteralMalonateSemialdehydeDehydratase = "2179004";
/// <summary>
/// Literal for code: HemoglobinFDammam
/// </summary>
public const string LiteralHemoglobinFDammam = "2189000";
/// <summary>
/// Literal for code: Rhodium101
/// </summary>
public const string LiteralRhodium101 = "2194000";
/// <summary>
/// Literal for code: TocainideHydrochloride
/// </summary>
public const string LiteralTocainideHydrochloride = "2195004";
/// <summary>
/// Literal for code: Bacteriopurpurin
/// </summary>
public const string LiteralBacteriopurpurin = "2201007";
/// <summary>
/// Literal for code: PhenylserineAldolase
/// </summary>
public const string LiteralPhenylserineAldolase = "2208001";
/// <summary>
/// Literal for code: FibrinogenBethesdaII
/// </summary>
public const string LiteralFibrinogenBethesdaII = "2212007";
/// <summary>
/// Literal for code: Azuresin
/// </summary>
public const string LiteralAzuresin = "2215009";
/// <summary>
/// Literal for code: Guanidinobutyrase
/// </summary>
public const string LiteralGuanidinobutyrase = "2240002";
/// <summary>
/// Literal for code: GentamicinSulfate
/// </summary>
public const string LiteralGentamicinSulfate = "2249001";
/// <summary>
/// Literal for code: OroticAcid
/// </summary>
public const string LiteralOroticAcid = "2254005";
/// <summary>
/// Literal for code: HLADRw18Antigen
/// </summary>
public const string LiteralHLADRw18Antigen = "2260005";
/// <summary>
/// Literal for code: CellulosePolysulfatase
/// </summary>
public const string LiteralCellulosePolysulfatase = "2262002";
/// <summary>
/// Literal for code: SeleniumIsotope
/// </summary>
public const string LiteralSeleniumIsotope = "2264001";
/// <summary>
/// Literal for code: Gold
/// </summary>
public const string LiteralGold = "2309006";
/// <summary>
/// Literal for code: VAL3HydroxyisobutyrateDehydrogenase
/// </summary>
public const string LiteralVAL3HydroxyisobutyrateDehydrogenase = "231008";
/// <summary>
/// Literal for code: ProstacyclinSynthase
/// </summary>
public const string LiteralProstacyclinSynthase = "2311002";
/// <summary>
/// Literal for code: CatAllergy
/// </summary>
public const string LiteralCatAllergy = "232346004";
/// <summary>
/// Literal for code: AnimalDanderAllergy
/// </summary>
public const string LiteralAnimalDanderAllergy = "232347008";
/// <summary>
/// Literal for code: FeatherAllergy
/// </summary>
public const string LiteralFeatherAllergy = "232348003";
/// <summary>
/// Literal for code: HouseDustAllergy
/// </summary>
public const string LiteralHouseDustAllergy = "232349006";
/// <summary>
/// Literal for code: HouseDustMiteAllergy
/// </summary>
public const string LiteralHouseDustMiteAllergy = "232350006";
/// <summary>
/// Literal for code: BloodGroupAntibodyVel
/// </summary>
public const string LiteralBloodGroupAntibodyVel = "2329007";
/// <summary>
/// Literal for code: Carbohydrate
/// </summary>
public const string LiteralCarbohydrate = "2331003";
/// <summary>
/// Literal for code: PlantRoots
/// </summary>
public const string LiteralPlantRoots = "2338009";
/// <summary>
/// Literal for code: Guthion
/// </summary>
public const string LiteralGuthion = "2343002";
/// <summary>
/// Literal for code: Vascormone
/// </summary>
public const string LiteralVascormone = "2346005";
/// <summary>
/// Literal for code: VAL3QuoteNucleotidase
/// </summary>
public const string LiteralVAL3QuoteNucleotidase = "2354007";
/// <summary>
/// Literal for code: FoodIntolerance
/// </summary>
public const string LiteralFoodIntolerance = "235719002";
/// <summary>
/// Literal for code: GlassFragment
/// </summary>
public const string LiteralGlassFragment = "2358005";
/// <summary>
/// Literal for code: Indole3AcetateBetaGlucosyltransferase
/// </summary>
public const string LiteralIndole3AcetateBetaGlucosyltransferase = "2369008";
/// <summary>
/// Literal for code: UDPNAcetylmuramateAlanineLigase
/// </summary>
public const string LiteralUDPNAcetylmuramateAlanineLigase = "2370009";
/// <summary>
/// Literal for code: MercuryCompound
/// </summary>
public const string LiteralMercuryCompound = "2376003";
/// <summary>
/// Literal for code: GlycerolIntoleranceSyndrome
/// </summary>
public const string LiteralGlycerolIntoleranceSyndrome = "237978005";
/// <summary>
/// Literal for code: Heptachlor
/// </summary>
public const string LiteralHeptachlor = "238002";
/// <summary>
/// Literal for code: VAL230U
/// </summary>
public const string LiteralVAL230U = "2384004";
/// <summary>
/// Literal for code: BloodGroupAntibodyStPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyStPowerAPower = "2404002";
/// <summary>
/// Literal for code: Oxetanone
/// </summary>
public const string LiteralOxetanone = "2405001";
/// <summary>
/// Literal for code: ProlactinReceptor
/// </summary>
public const string LiteralProlactinReceptor = "2414006";
/// <summary>
/// Literal for code: SiliconRadioisotope
/// </summary>
public const string LiteralSiliconRadioisotope = "2430003";
/// <summary>
/// Literal for code: BloodGroupAntibodyFriedberg
/// </summary>
public const string LiteralBloodGroupAntibodyFriedberg = "2431004";
/// <summary>
/// Literal for code: MercuryRadioisotope
/// </summary>
public const string LiteralMercuryRadioisotope = "2441001";
/// <summary>
/// Literal for code: HLADw25Antigen
/// </summary>
public const string LiteralHLADw25Antigen = "2444009";
/// <summary>
/// Literal for code: Mannosamine
/// </summary>
public const string LiteralMannosamine = "2450004";
/// <summary>
/// Literal for code: GlucoseDehydrogenaseNADPPowerPlusPower
/// </summary>
public const string LiteralGlucoseDehydrogenaseNADPPowerPlusPower = "2462000";
/// <summary>
/// Literal for code: ChloridePeroxidase
/// </summary>
public const string LiteralChloridePeroxidase = "2466002";
/// <summary>
/// Literal for code: LymphocyteAntigenCDw41b
/// </summary>
public const string LiteralLymphocyteAntigenCDw41b = "2500009";
/// <summary>
/// Literal for code: DGlutamicAcidOxidase
/// </summary>
public const string LiteralDGlutamicAcidOxidase = "2509005";
/// <summary>
/// Literal for code: ExtravascularBlood
/// </summary>
public const string LiteralExtravascularBlood = "2522002";
/// <summary>
/// Literal for code: HemoglobinWood
/// </summary>
public const string LiteralHemoglobinWood = "2529006";
/// <summary>
/// Literal for code: AntituberculosisAgent
/// </summary>
public const string LiteralAntituberculosisAgent = "2537003";
/// <summary>
/// Literal for code: BloodGroupAntigenMcAuley
/// </summary>
public const string LiteralBloodGroupAntigenMcAuley = "2568004";
/// <summary>
/// Literal for code: ImmunoglobulinGMGreaterThan13LessThanAllotype
/// </summary>
public const string LiteralImmunoglobulinGMGreaterThan13LessThanAllotype = "2573005";
/// <summary>
/// Literal for code: HereditaryGastrogenicLactoseIntolerance
/// </summary>
public const string LiteralHereditaryGastrogenicLactoseIntolerance = "25744000";
/// <summary>
/// Literal for code: ZincAlphaGreaterThan2LessThanGlycoprotein
/// </summary>
public const string LiteralZincAlphaGreaterThan2LessThanGlycoprotein = "2575003";
/// <summary>
/// Literal for code: Tellurium119m
/// </summary>
public const string LiteralTellurium119m = "2595009";
/// <summary>
/// Literal for code: Alpha1Globulin
/// </summary>
public const string LiteralAlpha1Globulin = "2597001";
/// <summary>
/// Literal for code: CodeinePhosphate
/// </summary>
public const string LiteralCodeinePhosphate = "261000";
/// <summary>
/// Literal for code: BloodGroupAntibodyLaFave
/// </summary>
public const string LiteralBloodGroupAntibodyLaFave = "2611008";
/// <summary>
/// Literal for code: IndiumIsotope
/// </summary>
public const string LiteralIndiumIsotope = "2637006";
/// <summary>
/// Literal for code: BileVomitus
/// </summary>
public const string LiteralBileVomitus = "2648004";
/// <summary>
/// Literal for code: AzoDye
/// </summary>
public const string LiteralAzoDye = "2649007";
/// <summary>
/// Literal for code: SodiumDehydrocholate
/// </summary>
public const string LiteralSodiumDehydrocholate = "2660003";
/// <summary>
/// Literal for code: DehydropantoateHydroxymethyltransferase
/// </summary>
public const string LiteralDehydropantoateHydroxymethyltransferase = "2671002";
/// <summary>
/// Literal for code: Cesium128
/// </summary>
public const string LiteralCesium128 = "2674005";
/// <summary>
/// Literal for code: LactoseIntolerance
/// </summary>
public const string LiteralLactoseIntolerance = "267425008";
/// <summary>
/// Literal for code: C3H20
/// </summary>
public const string LiteralC3H20 = "2676007";
/// <summary>
/// Literal for code: HemoglobinNewMexico
/// </summary>
public const string LiteralHemoglobinNewMexico = "2678008";
/// <summary>
/// Literal for code: AntiFactorXIII
/// </summary>
public const string LiteralAntiFactorXIII = "2680002";
/// <summary>
/// Literal for code: NaturalGas
/// </summary>
public const string LiteralNaturalGas = "2698003";
/// <summary>
/// Literal for code: VAL72As
/// </summary>
public const string LiteralVAL72As = "2705002";
/// <summary>
/// Literal for code: BloodGroupAntigenVennera
/// </summary>
public const string LiteralBloodGroupAntigenVennera = "2706001";
/// <summary>
/// Literal for code: TartrateDehydratase
/// </summary>
public const string LiteralTartrateDehydratase = "2719002";
/// <summary>
/// Literal for code: BloodGroupAntigenMcCPowerFPower
/// </summary>
public const string LiteralBloodGroupAntigenMcCPowerFPower = "2721007";
/// <summary>
/// Literal for code: AntigenInLewisLeBloodGroupSystem
/// </summary>
public const string LiteralAntigenInLewisLeBloodGroupSystem = "2728001";
/// <summary>
/// Literal for code: BloodGroupAntibodyMGreaterThan1LessThan
/// </summary>
public const string LiteralBloodGroupAntibodyMGreaterThan1LessThan = "2753003";
/// <summary>
/// Literal for code: HemoglobinFKennestone
/// </summary>
public const string LiteralHemoglobinFKennestone = "2754009";
/// <summary>
/// Literal for code: BloodGroupAntigenSc3
/// </summary>
public const string LiteralBloodGroupAntigenSc3 = "2765004";
/// <summary>
/// Literal for code: PleuralFluid
/// </summary>
public const string LiteralPleuralFluid = "2778004";
/// <summary>
/// Literal for code: Methanthelinium
/// </summary>
public const string LiteralMethanthelinium = "2796008";
/// <summary>
/// Literal for code: MethylbenzethoniumChloride
/// </summary>
public const string LiteralMethylbenzethoniumChloride = "2799001";
/// <summary>
/// Literal for code: HemoglobinBristol
/// </summary>
public const string LiteralHemoglobinBristol = "2823004";
/// <summary>
/// Literal for code: MolybdenumCompound
/// </summary>
public const string LiteralMolybdenumCompound = "2832002";
/// <summary>
/// Literal for code: HemoglobinSaitama
/// </summary>
public const string LiteralHemoglobinSaitama = "2846002";
/// <summary>
/// Literal for code: EthanoicAcid
/// </summary>
public const string LiteralEthanoicAcid = "2869004";
/// <summary>
/// Literal for code: IsonipecaineHydrochloride
/// </summary>
public const string LiteralIsonipecaineHydrochloride = "2878005";
/// <summary>
/// Literal for code: CalciumSulfate
/// </summary>
public const string LiteralCalciumSulfate = "2880004";
/// <summary>
/// Literal for code: ExopolygalacturonateLyase
/// </summary>
public const string LiteralExopolygalacturonateLyase = "2883002";
/// <summary>
/// Literal for code: ImmunoglobulinEHChain
/// </summary>
public const string LiteralImmunoglobulinEHChain = "2913009";
/// <summary>
/// Literal for code: VAL22Ne
/// </summary>
public const string LiteralVAL22Ne = "2916001";
/// <summary>
/// Literal for code: Fluorometholone
/// </summary>
public const string LiteralFluorometholone = "2925007";
/// <summary>
/// Literal for code: Rescinnamine
/// </summary>
public const string LiteralRescinnamine = "2927004";
/// <summary>
/// Literal for code: AnalgesicAllergy
/// </summary>
public const string LiteralAnalgesicAllergy = "293582004";
/// <summary>
/// Literal for code: AcetaminophenAllergy
/// </summary>
public const string LiteralAcetaminophenAllergy = "293584003";
/// <summary>
/// Literal for code: SalicylateAllergy
/// </summary>
public const string LiteralSalicylateAllergy = "293585002";
/// <summary>
/// Literal for code: AspirinAllergy
/// </summary>
public const string LiteralAspirinAllergy = "293586001";
/// <summary>
/// Literal for code: PentazocineAllergy
/// </summary>
public const string LiteralPentazocineAllergy = "293588000";
/// <summary>
/// Literal for code: PhenazocineAllergy
/// </summary>
public const string LiteralPhenazocineAllergy = "293589008";
/// <summary>
/// Literal for code: MethadoneAnalogAllergy
/// </summary>
public const string LiteralMethadoneAnalogAllergy = "293590004";
/// <summary>
/// Literal for code: DextromoramideAllergy
/// </summary>
public const string LiteralDextromoramideAllergy = "293591000";
/// <summary>
/// Literal for code: DextropropoxypheneAllergy
/// </summary>
public const string LiteralDextropropoxypheneAllergy = "293592007";
/// <summary>
/// Literal for code: DipipanoneAllergy
/// </summary>
public const string LiteralDipipanoneAllergy = "293593002";
/// <summary>
/// Literal for code: MethadoneAllergy
/// </summary>
public const string LiteralMethadoneAllergy = "293594008";
/// <summary>
/// Literal for code: MorphinanOpioidAllergy
/// </summary>
public const string LiteralMorphinanOpioidAllergy = "293595009";
/// <summary>
/// Literal for code: BuprenorphineAllergy
/// </summary>
public const string LiteralBuprenorphineAllergy = "293596005";
/// <summary>
/// Literal for code: CodeineAllergy
/// </summary>
public const string LiteralCodeineAllergy = "293597001";
/// <summary>
/// Literal for code: DiamorphineAllergy
/// </summary>
public const string LiteralDiamorphineAllergy = "293598006";
/// <summary>
/// Literal for code: DihydrocodeineAllergy
/// </summary>
public const string LiteralDihydrocodeineAllergy = "293599003";
/// <summary>
/// Literal for code: NalbuphineAllergy
/// </summary>
public const string LiteralNalbuphineAllergy = "293600000";
/// <summary>
/// Literal for code: MorphineAllergy
/// </summary>
public const string LiteralMorphineAllergy = "293601001";
/// <summary>
/// Literal for code: OpiumAlkaloidAllergy
/// </summary>
public const string LiteralOpiumAlkaloidAllergy = "293602008";
/// <summary>
/// Literal for code: PethidineAnalogAllergy
/// </summary>
public const string LiteralPethidineAnalogAllergy = "293603003";
/// <summary>
/// Literal for code: AlfentanilAllergy
/// </summary>
public const string LiteralAlfentanilAllergy = "293604009";
/// <summary>
/// Literal for code: FentanylAllergy
/// </summary>
public const string LiteralFentanylAllergy = "293605005";
/// <summary>
/// Literal for code: PethidineAllergy
/// </summary>
public const string LiteralPethidineAllergy = "293606006";
/// <summary>
/// Literal for code: PhenoperidineAllergy
/// </summary>
public const string LiteralPhenoperidineAllergy = "293607002";
/// <summary>
/// Literal for code: MeptazinolAllergy
/// </summary>
public const string LiteralMeptazinolAllergy = "293608007";
/// <summary>
/// Literal for code: LevorphanolAllergy
/// </summary>
public const string LiteralLevorphanolAllergy = "293609004";
/// <summary>
/// Literal for code: NonSteroidalAntiInflammatoryDrugAllergy
/// </summary>
public const string LiteralNonSteroidalAntiInflammatoryDrugAllergy = "293610009";
/// <summary>
/// Literal for code: AcemetacinAllergy
/// </summary>
public const string LiteralAcemetacinAllergy = "293611008";
/// <summary>
/// Literal for code: AzapropazoneAllergy
/// </summary>
public const string LiteralAzapropazoneAllergy = "293612001";
/// <summary>
/// Literal for code: DiclofenacAllergy
/// </summary>
public const string LiteralDiclofenacAllergy = "293613006";
/// <summary>
/// Literal for code: EtodolacAllergy
/// </summary>
public const string LiteralEtodolacAllergy = "293614000";
/// <summary>
/// Literal for code: FelbinacAllergy
/// </summary>
public const string LiteralFelbinacAllergy = "293615004";
/// <summary>
/// Literal for code: FenbufenAllergy
/// </summary>
public const string LiteralFenbufenAllergy = "293616003";
/// <summary>
/// Literal for code: FenoprofenAllergy
/// </summary>
public const string LiteralFenoprofenAllergy = "293617007";
/// <summary>
/// Literal for code: FlurbiprofenAllergy
/// </summary>
public const string LiteralFlurbiprofenAllergy = "293618002";
/// <summary>
/// Literal for code: IbuprofenAllergy
/// </summary>
public const string LiteralIbuprofenAllergy = "293619005";
/// <summary>
/// Literal for code: IndomethacinAllergy
/// </summary>
public const string LiteralIndomethacinAllergy = "293620004";
/// <summary>
/// Literal for code: KetoprofenAllergy
/// </summary>
public const string LiteralKetoprofenAllergy = "293621000";
/// <summary>
/// Literal for code: KetorolacAllergy
/// </summary>
public const string LiteralKetorolacAllergy = "293622007";
/// <summary>
/// Literal for code: MefenamicAcidAllergy
/// </summary>
public const string LiteralMefenamicAcidAllergy = "293623002";
/// <summary>
/// Literal for code: NabumetoneAllergy
/// </summary>
public const string LiteralNabumetoneAllergy = "293624008";
/// <summary>
/// Literal for code: NaproxenAllergy
/// </summary>
public const string LiteralNaproxenAllergy = "293625009";
/// <summary>
/// Literal for code: NefopamAllergy
/// </summary>
public const string LiteralNefopamAllergy = "293626005";
/// <summary>
/// Literal for code: OxyphenbutazoneAllergy
/// </summary>
public const string LiteralOxyphenbutazoneAllergy = "293627001";
/// <summary>
/// Literal for code: PhenylbutazoneAllergy
/// </summary>
public const string LiteralPhenylbutazoneAllergy = "293628006";
/// <summary>
/// Literal for code: PiroxicamAllergy
/// </summary>
public const string LiteralPiroxicamAllergy = "293629003";
/// <summary>
/// Literal for code: SulindacAllergy
/// </summary>
public const string LiteralSulindacAllergy = "293630008";
/// <summary>
/// Literal for code: TenoxicamAllergy
/// </summary>
public const string LiteralTenoxicamAllergy = "293631007";
/// <summary>
/// Literal for code: TiaprofenicAcidAllergy
/// </summary>
public const string LiteralTiaprofenicAcidAllergy = "293632000";
/// <summary>
/// Literal for code: TolmetinAllergy
/// </summary>
public const string LiteralTolmetinAllergy = "293633005";
/// <summary>
/// Literal for code: DiagnosticAgentAllergy
/// </summary>
public const string LiteralDiagnosticAgentAllergy = "293634004";
/// <summary>
/// Literal for code: TuberculinAllergy
/// </summary>
public const string LiteralTuberculinAllergy = "293635003";
/// <summary>
/// Literal for code: RadiopharmaceuticalAllergy
/// </summary>
public const string LiteralRadiopharmaceuticalAllergy = "293636002";
/// <summary>
/// Literal for code: ContrastMediaAllergy
/// </summary>
public const string LiteralContrastMediaAllergy = "293637006";
/// <summary>
/// Literal for code: XRayContrastMediaAllergy
/// </summary>
public const string LiteralXRayContrastMediaAllergy = "293638001";
/// <summary>
/// Literal for code: MagneticResonanceImagingContrastMediaAllergy
/// </summary>
public const string LiteralMagneticResonanceImagingContrastMediaAllergy = "293639009";
/// <summary>
/// Literal for code: BismuthChelateAllergy
/// </summary>
public const string LiteralBismuthChelateAllergy = "293645001";
/// <summary>
/// Literal for code: SucralfateAllergy
/// </summary>
public const string LiteralSucralfateAllergy = "293646000";
/// <summary>
/// Literal for code: LiquoriceAllergy
/// </summary>
public const string LiteralLiquoriceAllergy = "293647009";
/// <summary>
/// Literal for code: MisoprostolAllergy
/// </summary>
public const string LiteralMisoprostolAllergy = "293648004";
/// <summary>
/// Literal for code: H2ReceptorAntagonistAllergy
/// </summary>
public const string LiteralH2ReceptorAntagonistAllergy = "293649007";
/// <summary>
/// Literal for code: CimetidineAllergy
/// </summary>
public const string LiteralCimetidineAllergy = "293650007";
/// <summary>
/// Literal for code: FamotidineAllergy
/// </summary>
public const string LiteralFamotidineAllergy = "293651006";
/// <summary>
/// Literal for code: NizatidineAllergy
/// </summary>
public const string LiteralNizatidineAllergy = "293652004";
/// <summary>
/// Literal for code: RanitidineAllergy
/// </summary>
public const string LiteralRanitidineAllergy = "293653009";
/// <summary>
/// Literal for code: ProtonPumpInhibitorAllergy
/// </summary>
public const string LiteralProtonPumpInhibitorAllergy = "293654003";
/// <summary>
/// Literal for code: OmeprazoleAllergy
/// </summary>
public const string LiteralOmeprazoleAllergy = "293655002";
/// <summary>
/// Literal for code: LansoprazoleAllergy
/// </summary>
public const string LiteralLansoprazoleAllergy = "293656001";
/// <summary>
/// Literal for code: CarbenoxoloneAllergy
/// </summary>
public const string LiteralCarbenoxoloneAllergy = "293657005";
/// <summary>
/// Literal for code: PirenzepineAllergy
/// </summary>
public const string LiteralPirenzepineAllergy = "293658000";
/// <summary>
/// Literal for code: PancreatinAllergy
/// </summary>
public const string LiteralPancreatinAllergy = "293659008";
/// <summary>
/// Literal for code: VAL5AminosalicylicAcidAllergy
/// </summary>
public const string LiteralVAL5AminosalicylicAcidAllergy = "293660003";
/// <summary>
/// Literal for code: OlsalazineAllergy
/// </summary>
public const string LiteralOlsalazineAllergy = "293662006";
/// <summary>
/// Literal for code: SulfasalazineAllergy
/// </summary>
public const string LiteralSulfasalazineAllergy = "293663001";
/// <summary>
/// Literal for code: AntacidAllergy
/// </summary>
public const string LiteralAntacidAllergy = "293664007";
/// <summary>
/// Literal for code: MagnesiumTrisilicateAllergy
/// </summary>
public const string LiteralMagnesiumTrisilicateAllergy = "293665008";
/// <summary>
/// Literal for code: AluminumHydroxideAllergy
/// </summary>
public const string LiteralAluminumHydroxideAllergy = "293666009";
/// <summary>
/// Literal for code: LoperamideAllergy
/// </summary>
public const string LiteralLoperamideAllergy = "293668005";
/// <summary>
/// Literal for code: KaolinAllergy
/// </summary>
public const string LiteralKaolinAllergy = "293669002";
/// <summary>
/// Literal for code: MotilityStimulantAllergy
/// </summary>
public const string LiteralMotilityStimulantAllergy = "293670001";
/// <summary>
/// Literal for code: CisaprideAllergy
/// </summary>
public const string LiteralCisaprideAllergy = "293671002";
/// <summary>
/// Literal for code: NabiloneAllergy
/// </summary>
public const string LiteralNabiloneAllergy = "293673004";
/// <summary>
/// Literal for code: DomperidoneAllergy
/// </summary>
public const string LiteralDomperidoneAllergy = "293674005";
/// <summary>
/// Literal for code: MetoclopramideAllergy
/// </summary>
public const string LiteralMetoclopramideAllergy = "293675006";
/// <summary>
/// Literal for code: VAL5HT3ReceptorAntagonistAllergy
/// </summary>
public const string LiteralVAL5HT3ReceptorAntagonistAllergy = "293676007";
/// <summary>
/// Literal for code: BisacodylAllergy
/// </summary>
public const string LiteralBisacodylAllergy = "293678008";
/// <summary>
/// Literal for code: DanthronAllergy
/// </summary>
public const string LiteralDanthronAllergy = "293679000";
/// <summary>
/// Literal for code: SodiumPicosulfateAllergy
/// </summary>
public const string LiteralSodiumPicosulfateAllergy = "293680002";
/// <summary>
/// Literal for code: LactuloseAllergy
/// </summary>
public const string LiteralLactuloseAllergy = "293681003";
/// <summary>
/// Literal for code: MagnesiumSulfateAllergy
/// </summary>
public const string LiteralMagnesiumSulfateAllergy = "293682005";
/// <summary>
/// Literal for code: AnthraquinoneLaxativeAllergy
/// </summary>
public const string LiteralAnthraquinoneLaxativeAllergy = "293684006";
/// <summary>
/// Literal for code: CascaraAllergy
/// </summary>
public const string LiteralCascaraAllergy = "293685007";
/// <summary>
/// Literal for code: SennaAllergy
/// </summary>
public const string LiteralSennaAllergy = "293686008";
/// <summary>
/// Literal for code: DocusateAllergy
/// </summary>
public const string LiteralDocusateAllergy = "293687004";
/// <summary>
/// Literal for code: AntispasmodicAllergy
/// </summary>
public const string LiteralAntispasmodicAllergy = "293688009";
/// <summary>
/// Literal for code: PeppermintOilAllergy
/// </summary>
public const string LiteralPeppermintOilAllergy = "293690005";
/// <summary>
/// Literal for code: AlverineAllergy
/// </summary>
public const string LiteralAlverineAllergy = "293691009";
/// <summary>
/// Literal for code: MebeverineAllergy
/// </summary>
public const string LiteralMebeverineAllergy = "293692002";
/// <summary>
/// Literal for code: DicyclomineAllergy
/// </summary>
public const string LiteralDicyclomineAllergy = "293693007";
/// <summary>
/// Literal for code: MepenzolateAllergy
/// </summary>
public const string LiteralMepenzolateAllergy = "293694001";
/// <summary>
/// Literal for code: PipenzolateAllergy
/// </summary>
public const string LiteralPipenzolateAllergy = "293695000";
/// <summary>
/// Literal for code: PoldineAllergy
/// </summary>
public const string LiteralPoldineAllergy = "293696004";
/// <summary>
/// Literal for code: PropanthelineAllergy
/// </summary>
public const string LiteralPropanthelineAllergy = "293697008";
/// <summary>
/// Literal for code: ChenodeoxycholicAcidAllergy
/// </summary>
public const string LiteralChenodeoxycholicAcidAllergy = "293699006";
/// <summary>
/// Literal for code: DehydrocholicAcidAllergy
/// </summary>
public const string LiteralDehydrocholicAcidAllergy = "293700007";
/// <summary>
/// Literal for code: UrsodeoxycholicAcidAllergy
/// </summary>
public const string LiteralUrsodeoxycholicAcidAllergy = "293701006";
/// <summary>
/// Literal for code: AllergyToChenodeoxycholicAcidPlusUrsodeoxycholicAcid
/// </summary>
public const string LiteralAllergyToChenodeoxycholicAcidPlusUrsodeoxycholicAcid = "293702004";
/// <summary>
/// Literal for code: EtomidateAllergy
/// </summary>
public const string LiteralEtomidateAllergy = "293706001";
/// <summary>
/// Literal for code: KetamineAllergy
/// </summary>
public const string LiteralKetamineAllergy = "293707005";
/// <summary>
/// Literal for code: PropofolAllergy
/// </summary>
public const string LiteralPropofolAllergy = "293708000";
/// <summary>
/// Literal for code: ThiopentoneAllergy
/// </summary>
public const string LiteralThiopentoneAllergy = "293709008";
/// <summary>
/// Literal for code: MethohexitoneAllergy
/// </summary>
public const string LiteralMethohexitoneAllergy = "293710003";
/// <summary>
/// Literal for code: EnfluraneAllergy
/// </summary>
public const string LiteralEnfluraneAllergy = "293712006";
/// <summary>
/// Literal for code: HalothaneAllergy
/// </summary>
public const string LiteralHalothaneAllergy = "293714007";
/// <summary>
/// Literal for code: IsofluraneAllergy
/// </summary>
public const string LiteralIsofluraneAllergy = "293715008";
/// <summary>
/// Literal for code: TrichloroethyleneAllergy
/// </summary>
public const string LiteralTrichloroethyleneAllergy = "293716009";
/// <summary>
/// Literal for code: DesfluraneAllergy
/// </summary>
public const string LiteralDesfluraneAllergy = "293717000";
/// <summary>
/// Literal for code: LocalAnestheticDrugAllergy
/// </summary>
public const string LiteralLocalAnestheticDrugAllergy = "293718005";
/// <summary>
/// Literal for code: BupivacaineAllergy
/// </summary>
public const string LiteralBupivacaineAllergy = "293719002";
/// <summary>
/// Literal for code: CinchocaineAllergy
/// </summary>
public const string LiteralCinchocaineAllergy = "293720008";
/// <summary>
/// Literal for code: PrilocaineAllergy
/// </summary>
public const string LiteralPrilocaineAllergy = "293721007";
/// <summary>
/// Literal for code: LignocaineAllergy
/// </summary>
public const string LiteralLignocaineAllergy = "293722000";
/// <summary>
/// Literal for code: CocaineAllergy
/// </summary>
public const string LiteralCocaineAllergy = "293723005";
/// <summary>
/// Literal for code: BenzocaineAllergy
/// </summary>
public const string LiteralBenzocaineAllergy = "293724004";
/// <summary>
/// Literal for code: AmethocaineAllergy
/// </summary>
public const string LiteralAmethocaineAllergy = "293725003";
/// <summary>
/// Literal for code: OxybuprocaineAllergy
/// </summary>
public const string LiteralOxybuprocaineAllergy = "293726002";
/// <summary>
/// Literal for code: ProcaineAllergy
/// </summary>
public const string LiteralProcaineAllergy = "293727006";
/// <summary>
/// Literal for code: ProxymetacaineAllergy
/// </summary>
public const string LiteralProxymetacaineAllergy = "293728001";
/// <summary>
/// Literal for code: AmifostineAllergy
/// </summary>
public const string LiteralAmifostineAllergy = "293732007";
/// <summary>
/// Literal for code: AldesleukinAllergy
/// </summary>
public const string LiteralAldesleukinAllergy = "293733002";
/// <summary>
/// Literal for code: MolgramostimAllergy
/// </summary>
public const string LiteralMolgramostimAllergy = "293735009";
/// <summary>
/// Literal for code: LenograstimAllergy
/// </summary>
public const string LiteralLenograstimAllergy = "293736005";
/// <summary>
/// Literal for code: FilgrastimAllergy
/// </summary>
public const string LiteralFilgrastimAllergy = "293737001";
/// <summary>
/// Literal for code: LevamisoleAllergy
/// </summary>
public const string LiteralLevamisoleAllergy = "293738006";
/// <summary>
/// Literal for code: AntineoplasticAllergy
/// </summary>
public const string LiteralAntineoplasticAllergy = "293739003";
/// <summary>
/// Literal for code: AlkylatingDrugAllergy
/// </summary>
public const string LiteralAlkylatingDrugAllergy = "293740001";
/// <summary>
/// Literal for code: MitobronitolAllergy
/// </summary>
public const string LiteralMitobronitolAllergy = "293741002";
/// <summary>
/// Literal for code: BusulfanAllergy
/// </summary>
public const string LiteralBusulfanAllergy = "293742009";
/// <summary>
/// Literal for code: TreosulfanAllergy
/// </summary>
public const string LiteralTreosulfanAllergy = "293743004";
/// <summary>
/// Literal for code: ThiotepaAllergy
/// </summary>
public const string LiteralThiotepaAllergy = "293745006";
/// <summary>
/// Literal for code: NitrogenMustardDerivativeAllergy
/// </summary>
public const string LiteralNitrogenMustardDerivativeAllergy = "293746007";
/// <summary>
/// Literal for code: ChlorambucilAllergy
/// </summary>
public const string LiteralChlorambucilAllergy = "293747003";
/// <summary>
/// Literal for code: CyclophosphamideAllergy
/// </summary>
public const string LiteralCyclophosphamideAllergy = "293748008";
/// <summary>
/// Literal for code: EthoglucidAllergy
/// </summary>
public const string LiteralEthoglucidAllergy = "293749000";
/// <summary>
/// Literal for code: IfosfamideAllergy
/// </summary>
public const string LiteralIfosfamideAllergy = "293750000";
/// <summary>
/// Literal for code: MelphalanAllergy
/// </summary>
public const string LiteralMelphalanAllergy = "293751001";
/// <summary>
/// Literal for code: EstramustineAllergy
/// </summary>
public const string LiteralEstramustineAllergy = "293752008";
/// <summary>
/// Literal for code: MustineAllergy
/// </summary>
public const string LiteralMustineAllergy = "293753003";
/// <summary>
/// Literal for code: NitrosureaAllergy
/// </summary>
public const string LiteralNitrosureaAllergy = "293754009";
/// <summary>
/// Literal for code: CarmustineAllergy
/// </summary>
public const string LiteralCarmustineAllergy = "293755005";
/// <summary>
/// Literal for code: LomustineAllergy
/// </summary>
public const string LiteralLomustineAllergy = "293756006";
/// <summary>
/// Literal for code: TriazeneAntineoplasticAllergy
/// </summary>
public const string LiteralTriazeneAntineoplasticAllergy = "293757002";
/// <summary>
/// Literal for code: DacarbazineAllergy
/// </summary>
public const string LiteralDacarbazineAllergy = "293758007";
/// <summary>
/// Literal for code: CytotoxicAntibioticAllergy
/// </summary>
public const string LiteralCytotoxicAntibioticAllergy = "293759004";
/// <summary>
/// Literal for code: DactinomycinAllergy
/// </summary>
public const string LiteralDactinomycinAllergy = "293760009";
/// <summary>
/// Literal for code: BleomycinAllergy
/// </summary>
public const string LiteralBleomycinAllergy = "293761008";
/// <summary>
/// Literal for code: MitomycinAllergy
/// </summary>
public const string LiteralMitomycinAllergy = "293762001";
/// <summary>
/// Literal for code: PlicamycinAllergy
/// </summary>
public const string LiteralPlicamycinAllergy = "293763006";
/// <summary>
/// Literal for code: AclarubicinAllergy
/// </summary>
public const string LiteralAclarubicinAllergy = "293764000";
/// <summary>
/// Literal for code: MitozantroneAllergy
/// </summary>
public const string LiteralMitozantroneAllergy = "293765004";
/// <summary>
/// Literal for code: DoxorubicinAllergy
/// </summary>
public const string LiteralDoxorubicinAllergy = "293766003";
/// <summary>
/// Literal for code: EpirubicinAllergy
/// </summary>
public const string LiteralEpirubicinAllergy = "293767007";
/// <summary>
/// Literal for code: IdarubicinAllergy
/// </summary>
public const string LiteralIdarubicinAllergy = "293768002";
/// <summary>
/// Literal for code: MercuricOxideAllergy
/// </summary>
public const string LiteralMercuricOxideAllergy = "293770006";
/// <summary>
/// Literal for code: MethotrexateAllergy
/// </summary>
public const string LiteralMethotrexateAllergy = "293771005";
/// <summary>
/// Literal for code: MercaptopurineAllergy
/// </summary>
public const string LiteralMercaptopurineAllergy = "293772003";
/// <summary>
/// Literal for code: ThioguanineAllergy
/// </summary>
public const string LiteralThioguanineAllergy = "293773008";
/// <summary>
/// Literal for code: PentostatinAllergy
/// </summary>
public const string LiteralPentostatinAllergy = "293774002";
/// <summary>
/// Literal for code: CytarabineAllergy
/// </summary>
public const string LiteralCytarabineAllergy = "293775001";
/// <summary>
/// Literal for code: FluorouracilAllergy
/// </summary>
public const string LiteralFluorouracilAllergy = "293776000";
/// <summary>
/// Literal for code: EtoposideAllergy
/// </summary>
public const string LiteralEtoposideAllergy = "293777009";
/// <summary>
/// Literal for code: AmsacrineAllergy
/// </summary>
public const string LiteralAmsacrineAllergy = "293778004";
/// <summary>
/// Literal for code: CarboplatinAllergy
/// </summary>
public const string LiteralCarboplatinAllergy = "293779007";
/// <summary>
/// Literal for code: CisplatinAllergy
/// </summary>
public const string LiteralCisplatinAllergy = "293780005";
/// <summary>
/// Literal for code: HydroxyureaAllergy
/// </summary>
public const string LiteralHydroxyureaAllergy = "293781009";
/// <summary>
/// Literal for code: ProcarbazineAllergy
/// </summary>
public const string LiteralProcarbazineAllergy = "293782002";
/// <summary>
/// Literal for code: RazoxaneAllergy
/// </summary>
public const string LiteralRazoxaneAllergy = "293783007";
/// <summary>
/// Literal for code: CrisantaspaseAllergy
/// </summary>
public const string LiteralCrisantaspaseAllergy = "293784001";
/// <summary>
/// Literal for code: PaclitaxelAllergy
/// </summary>
public const string LiteralPaclitaxelAllergy = "293785000";
/// <summary>
/// Literal for code: FludarabineAllergy
/// </summary>
public const string LiteralFludarabineAllergy = "293786004";
/// <summary>
/// Literal for code: AminoglutethimideAllergy
/// </summary>
public const string LiteralAminoglutethimideAllergy = "293787008";
/// <summary>
/// Literal for code: EstrogenAntagonistAllergy
/// </summary>
public const string LiteralEstrogenAntagonistAllergy = "293788003";
/// <summary>
/// Literal for code: TrilostaneAllergy
/// </summary>
public const string LiteralTrilostaneAllergy = "293789006";
/// <summary>
/// Literal for code: TamoxifenAllergy
/// </summary>
public const string LiteralTamoxifenAllergy = "293790002";
/// <summary>
/// Literal for code: FormestaneAllergy
/// </summary>
public const string LiteralFormestaneAllergy = "293791003";
/// <summary>
/// Literal for code: VincaAlkaloidAllergy
/// </summary>
public const string LiteralVincaAlkaloidAllergy = "293792005";
/// <summary>
/// Literal for code: VinblastineAllergy
/// </summary>
public const string LiteralVinblastineAllergy = "293793000";
/// <summary>
/// Literal for code: VincristineAllergy
/// </summary>
public const string LiteralVincristineAllergy = "293794006";
/// <summary>
/// Literal for code: VindesineAllergy
/// </summary>
public const string LiteralVindesineAllergy = "293795007";
/// <summary>
/// Literal for code: DimethylSulfoxideAllergy
/// </summary>
public const string LiteralDimethylSulfoxideAllergy = "293796008";
/// <summary>
/// Literal for code: CyclosporinAllergy
/// </summary>
public const string LiteralCyclosporinAllergy = "293798009";
/// <summary>
/// Literal for code: AzathioprineAllergy
/// </summary>
public const string LiteralAzathioprineAllergy = "293799001";
/// <summary>
/// Literal for code: Pyrazole
/// </summary>
public const string LiteralPyrazole = "2938004";
/// <summary>
/// Literal for code: CentrallyActingAppetiteSuppressantAllergy
/// </summary>
public const string LiteralCentrallyActingAppetiteSuppressantAllergy = "293801003";
/// <summary>
/// Literal for code: MazindolAllergy
/// </summary>
public const string LiteralMazindolAllergy = "293802005";
/// <summary>
/// Literal for code: PhentermineAllergy
/// </summary>
public const string LiteralPhentermineAllergy = "293803000";
/// <summary>
/// Literal for code: DexfenfluramineAllergy
/// </summary>
public const string LiteralDexfenfluramineAllergy = "293804006";
/// <summary>
/// Literal for code: DiethylpropionAllergy
/// </summary>
public const string LiteralDiethylpropionAllergy = "293805007";
/// <summary>
/// Literal for code: FenfluramineAllergy
/// </summary>
public const string LiteralFenfluramineAllergy = "293806008";
/// <summary>
/// Literal for code: LevodopaAllergy
/// </summary>
public const string LiteralLevodopaAllergy = "293808009";
/// <summary>
/// Literal for code: BenserazidePlusLevodopaAllergy
/// </summary>
public const string LiteralBenserazidePlusLevodopaAllergy = "293809001";
/// <summary>
/// Literal for code: CarbidopaPlusLevodopaAllergy
/// </summary>
public const string LiteralCarbidopaPlusLevodopaAllergy = "293810006";
/// <summary>
/// Literal for code: AmantadineAllergy
/// </summary>
public const string LiteralAmantadineAllergy = "293811005";
/// <summary>
/// Literal for code: ApomorphineAllergy
/// </summary>
public const string LiteralApomorphineAllergy = "293812003";
/// <summary>
/// Literal for code: LysurideAllergy
/// </summary>
public const string LiteralLysurideAllergy = "293813008";
/// <summary>
/// Literal for code: PergolideAllergy
/// </summary>
public const string LiteralPergolideAllergy = "293814002";
/// <summary>
/// Literal for code: BromocriptineAllergy
/// </summary>
public const string LiteralBromocriptineAllergy = "293815001";
/// <summary>
/// Literal for code: LithiumCarbonateAllergy
/// </summary>
public const string LiteralLithiumCarbonateAllergy = "293818004";
/// <summary>
/// Literal for code: LithiumCitrateAllergy
/// </summary>
public const string LiteralLithiumCitrateAllergy = "293819007";
/// <summary>
/// Literal for code: ButriptylineAllergy
/// </summary>
public const string LiteralButriptylineAllergy = "293822009";
/// <summary>
/// Literal for code: DoxepinAllergy
/// </summary>
public const string LiteralDoxepinAllergy = "293823004";
/// <summary>
/// Literal for code: IprindoleAllergy
/// </summary>
public const string LiteralIprindoleAllergy = "293824005";
/// <summary>
/// Literal for code: LofepramineAllergy
/// </summary>
public const string LiteralLofepramineAllergy = "293825006";
/// <summary>
/// Literal for code: NortriptylineAllergy
/// </summary>
public const string LiteralNortriptylineAllergy = "293826007";
/// <summary>
/// Literal for code: TrimipramineAllergy
/// </summary>
public const string LiteralTrimipramineAllergy = "293827003";
/// <summary>
/// Literal for code: AmoxapineAllergy
/// </summary>
public const string LiteralAmoxapineAllergy = "293828008";
/// <summary>
/// Literal for code: AmitriptylineAllergy
/// </summary>
public const string LiteralAmitriptylineAllergy = "293829000";
/// <summary>
/// Literal for code: ClomipramineAllergy
/// </summary>
public const string LiteralClomipramineAllergy = "293830005";
/// <summary>
/// Literal for code: DesipramineAllergy
/// </summary>
public const string LiteralDesipramineAllergy = "293831009";
/// <summary>
/// Literal for code: DothiepinAllergy
/// </summary>
public const string LiteralDothiepinAllergy = "293832002";
/// <summary>
/// Literal for code: ImipramineAllergy
/// </summary>
public const string LiteralImipramineAllergy = "293833007";
/// <summary>
/// Literal for code: ProtriptylineAllergy
/// </summary>
public const string LiteralProtriptylineAllergy = "293834001";
/// <summary>
/// Literal for code: MonoamineOxidaseInhibitorAllergy
/// </summary>
public const string LiteralMonoamineOxidaseInhibitorAllergy = "293835000";
/// <summary>
/// Literal for code: PhenelzineAllergy
/// </summary>
public const string LiteralPhenelzineAllergy = "293836004";
/// <summary>
/// Literal for code: IproniazidAllergy
/// </summary>
public const string LiteralIproniazidAllergy = "293837008";
/// <summary>
/// Literal for code: IsocarboxazidAllergy
/// </summary>
public const string LiteralIsocarboxazidAllergy = "293838003";
/// <summary>
/// Literal for code: TranylcypromineAllergy
/// </summary>
public const string LiteralTranylcypromineAllergy = "293839006";
/// <summary>
/// Literal for code: MoclobemideAllergy
/// </summary>
public const string LiteralMoclobemideAllergy = "293840008";
/// <summary>
/// Literal for code: TryptophanAllergy
/// </summary>
public const string LiteralTryptophanAllergy = "293842000";
/// <summary>
/// Literal for code: VenlafaxineAllergy
/// </summary>
public const string LiteralVenlafaxineAllergy = "293843005";
/// <summary>
/// Literal for code: SelectiveSerotoninReUptakeInhibitorAllergy
/// </summary>
public const string LiteralSelectiveSerotoninReUptakeInhibitorAllergy = "293844004";
/// <summary>
/// Literal for code: SertralineAllergy
/// </summary>
public const string LiteralSertralineAllergy = "293845003";
/// <summary>
/// Literal for code: ParoxetineAllergy
/// </summary>
public const string LiteralParoxetineAllergy = "293847006";
/// <summary>
/// Literal for code: NefazodoneAllergy
/// </summary>
public const string LiteralNefazodoneAllergy = "293848001";
/// <summary>
/// Literal for code: CitalopramAllergy
/// </summary>
public const string LiteralCitalopramAllergy = "293849009";
/// <summary>
/// Literal for code: FluoxetineAllergy
/// </summary>
public const string LiteralFluoxetineAllergy = "293850009";
/// <summary>
/// Literal for code: FluvoxamineAllergy
/// </summary>
public const string LiteralFluvoxamineAllergy = "293851008";
/// <summary>
/// Literal for code: MaprotilineAllergy
/// </summary>
public const string LiteralMaprotilineAllergy = "293853006";
/// <summary>
/// Literal for code: MianserinAllergy
/// </summary>
public const string LiteralMianserinAllergy = "293854000";
/// <summary>
/// Literal for code: TrazodoneAllergy
/// </summary>
public const string LiteralTrazodoneAllergy = "293855004";
/// <summary>
/// Literal for code: ViloxazineAllergy
/// </summary>
public const string LiteralViloxazineAllergy = "293856003";
/// <summary>
/// Literal for code: AntiepilepticAllergy
/// </summary>
public const string LiteralAntiepilepticAllergy = "293857007";
/// <summary>
/// Literal for code: BeclamideAllergy
/// </summary>
public const string LiteralBeclamideAllergy = "293858002";
/// <summary>
/// Literal for code: LamotrigineAllergy
/// </summary>
public const string LiteralLamotrigineAllergy = "293859005";
/// <summary>
/// Literal for code: PiracetamAllergy
/// </summary>
public const string LiteralPiracetamAllergy = "293860000";
/// <summary>
/// Literal for code: GabapentinAllergy
/// </summary>
public const string LiteralGabapentinAllergy = "293861001";
/// <summary>
/// Literal for code: SodiumValproateAllergy
/// </summary>
public const string LiteralSodiumValproateAllergy = "293862008";
/// <summary>
/// Literal for code: BarbiturateAntiepilepticAllergy
/// </summary>
public const string LiteralBarbiturateAntiepilepticAllergy = "293863003";
/// <summary>
/// Literal for code: MethylphenobarbitoneAllergy
/// </summary>
public const string LiteralMethylphenobarbitoneAllergy = "293864009";
/// <summary>
/// Literal for code: PhenobarbitoneAllergy
/// </summary>
public const string LiteralPhenobarbitoneAllergy = "293865005";
/// <summary>
/// Literal for code: PrimidoneAllergy
/// </summary>
public const string LiteralPrimidoneAllergy = "293866006";
/// <summary>
/// Literal for code: CarbamazepineAllergy
/// </summary>
public const string LiteralCarbamazepineAllergy = "293867002";
/// <summary>
/// Literal for code: VigabatrinAllergy
/// </summary>
public const string LiteralVigabatrinAllergy = "293868007";
/// <summary>
/// Literal for code: PhenytoinAllergy
/// </summary>
public const string LiteralPhenytoinAllergy = "293869004";
/// <summary>
/// Literal for code: EthosuximideAllergy
/// </summary>
public const string LiteralEthosuximideAllergy = "293870003";
/// <summary>
/// Literal for code: ClonazepamAllergy
/// </summary>
public const string LiteralClonazepamAllergy = "293871004";
/// <summary>
/// Literal for code: ZopicloneAllergy
/// </summary>
public const string LiteralZopicloneAllergy = "293874007";
/// <summary>
/// Literal for code: ZolpidemAllergy
/// </summary>
public const string LiteralZolpidemAllergy = "293875008";
/// <summary>
/// Literal for code: ChlormezanoneAllergy
/// </summary>
public const string LiteralChlormezanoneAllergy = "293876009";
/// <summary>
/// Literal for code: MethypryloneAllergy
/// </summary>
public const string LiteralMethypryloneAllergy = "293877000";
/// <summary>
/// Literal for code: ParaldehydeAllergy
/// </summary>
public const string LiteralParaldehydeAllergy = "293878005";
/// <summary>
/// Literal for code: BarbiturateSedativeAllergy
/// </summary>
public const string LiteralBarbiturateSedativeAllergy = "293879002";
/// <summary>
/// Literal for code: AmylobarbitoneAllergy
/// </summary>
public const string LiteralAmylobarbitoneAllergy = "293880004";
/// <summary>
/// Literal for code: ButobarbitoneAllergy
/// </summary>
public const string LiteralButobarbitoneAllergy = "293881000";
/// <summary>
/// Literal for code: CyclobarbitoneAllergy
/// </summary>
public const string LiteralCyclobarbitoneAllergy = "293882007";
/// <summary>
/// Literal for code: QuinalbarbitoneAllergy
/// </summary>
public const string LiteralQuinalbarbitoneAllergy = "293884008";
/// <summary>
/// Literal for code: FlunitrazepamAllergy
/// </summary>
public const string LiteralFlunitrazepamAllergy = "293886005";
/// <summary>
/// Literal for code: FlurazepamAllergy
/// </summary>
public const string LiteralFlurazepamAllergy = "293887001";
/// <summary>
/// Literal for code: LoprazolamAllergy
/// </summary>
public const string LiteralLoprazolamAllergy = "293888006";
/// <summary>
/// Literal for code: LormetazepamAllergy
/// </summary>
public const string LiteralLormetazepamAllergy = "293889003";
/// <summary>
/// Literal for code: NitrazepamAllergy
/// </summary>
public const string LiteralNitrazepamAllergy = "293890007";
/// <summary>
/// Literal for code: TriazolamAllergy
/// </summary>
public const string LiteralTriazolamAllergy = "293891006";
/// <summary>
/// Literal for code: AlprazolamAllergy
/// </summary>
public const string LiteralAlprazolamAllergy = "293892004";
/// <summary>
/// Literal for code: BromazepamAllergy
/// </summary>
public const string LiteralBromazepamAllergy = "293893009";
/// <summary>
/// Literal for code: ChlordiazepoxideAllergy
/// </summary>
public const string LiteralChlordiazepoxideAllergy = "293894003";
/// <summary>
/// Literal for code: ClobazamAllergy
/// </summary>
public const string LiteralClobazamAllergy = "293895002";
/// <summary>
/// Literal for code: KetazolamAllergy
/// </summary>
public const string LiteralKetazolamAllergy = "293897005";
/// <summary>
/// Literal for code: MedazepamAllergy
/// </summary>
public const string LiteralMedazepamAllergy = "293898000";
/// <summary>
/// Literal for code: OxazepamAllergy
/// </summary>
public const string LiteralOxazepamAllergy = "293899008";
/// <summary>
/// Literal for code: PrazepamAllergy
/// </summary>
public const string LiteralPrazepamAllergy = "293900003";
/// <summary>
/// Literal for code: MidazolamAllergy
/// </summary>
public const string LiteralMidazolamAllergy = "293901004";
/// <summary>
/// Literal for code: DiazepamAllergy
/// </summary>
public const string LiteralDiazepamAllergy = "293902006";
/// <summary>
/// Literal for code: LorazepamAllergy
/// </summary>
public const string LiteralLorazepamAllergy = "293903001";
/// <summary>
/// Literal for code: TemazepamAllergy
/// </summary>
public const string LiteralTemazepamAllergy = "293904007";
/// <summary>
/// Literal for code: CarbamateSedativeAllergy
/// </summary>
public const string LiteralCarbamateSedativeAllergy = "293905008";
/// <summary>
/// Literal for code: MeprobamateAllergy
/// </summary>
public const string LiteralMeprobamateAllergy = "293906009";
/// <summary>
/// Literal for code: ChloralHydrateAllergy
/// </summary>
public const string LiteralChloralHydrateAllergy = "293908005";
/// <summary>
/// Literal for code: DichloralphenazoneAllergy
/// </summary>
public const string LiteralDichloralphenazoneAllergy = "293909002";
/// <summary>
/// Literal for code: BuspironeAllergy
/// </summary>
public const string LiteralBuspironeAllergy = "293911006";
/// <summary>
/// Literal for code: ChlormethiazoleAllergy
/// </summary>
public const string LiteralChlormethiazoleAllergy = "293912004";
/// <summary>
/// Literal for code: SulpirideAllergy
/// </summary>
public const string LiteralSulpirideAllergy = "293914003";
/// <summary>
/// Literal for code: LoxapineAllergy
/// </summary>
public const string LiteralLoxapineAllergy = "293915002";
/// <summary>
/// Literal for code: ClozapineAllergy
/// </summary>
public const string LiteralClozapineAllergy = "293916001";
/// <summary>
/// Literal for code: RisperidoneAllergy
/// </summary>
public const string LiteralRisperidoneAllergy = "293917005";
/// <summary>
/// Literal for code: TetrabenazineAllergy
/// </summary>
public const string LiteralTetrabenazineAllergy = "293918000";
/// <summary>
/// Literal for code: ButyrophenoneAllergy
/// </summary>
public const string LiteralButyrophenoneAllergy = "293919008";
/// <summary>
/// Literal for code: BenperidolAllergy
/// </summary>
public const string LiteralBenperidolAllergy = "293920002";
/// <summary>
/// Literal for code: TrifluperidolAllergy
/// </summary>
public const string LiteralTrifluperidolAllergy = "293921003";
/// <summary>
/// Literal for code: HaloperidolDecanoateAllergy
/// </summary>
public const string LiteralHaloperidolDecanoateAllergy = "293922005";
/// <summary>
/// Literal for code: DroperidolAllergy
/// </summary>
public const string LiteralDroperidolAllergy = "293923000";
/// <summary>
/// Literal for code: HaloperidolAllergy
/// </summary>
public const string LiteralHaloperidolAllergy = "293924006";
/// <summary>
/// Literal for code: DiphenylbutylpiperidineAllergy
/// </summary>
public const string LiteralDiphenylbutylpiperidineAllergy = "293925007";
/// <summary>
/// Literal for code: PimozideAllergy
/// </summary>
public const string LiteralPimozideAllergy = "293926008";
/// <summary>
/// Literal for code: FluspirileneAllergy
/// </summary>
public const string LiteralFluspirileneAllergy = "293927004";
/// <summary>
/// Literal for code: PhenothiazineAllergy
/// </summary>
public const string LiteralPhenothiazineAllergy = "293928009";
/// <summary>
/// Literal for code: MethotrimeprazineAllergy
/// </summary>
public const string LiteralMethotrimeprazineAllergy = "293929001";
/// <summary>
/// Literal for code: PericyazineAllergy
/// </summary>
public const string LiteralPericyazineAllergy = "293930006";
/// <summary>
/// Literal for code: ThiethylperazineAllergy
/// </summary>
public const string LiteralThiethylperazineAllergy = "293933008";
/// <summary>
/// Literal for code: FluphenazineAllergy
/// </summary>
public const string LiteralFluphenazineAllergy = "293934002";
/// <summary>
/// Literal for code: ChlorpromazineAllergy
/// </summary>
public const string LiteralChlorpromazineAllergy = "293935001";
/// <summary>
/// Literal for code: PipothiazineAllergy
/// </summary>
public const string LiteralPipothiazineAllergy = "293936000";
/// <summary>
/// Literal for code: PromazineAllergy
/// </summary>
public const string LiteralPromazineAllergy = "293937009";
/// <summary>
/// Literal for code: ThioridazineAllergy
/// </summary>
public const string LiteralThioridazineAllergy = "293938004";
/// <summary>
/// Literal for code: PerphenazineAllergy
/// </summary>
public const string LiteralPerphenazineAllergy = "293939007";
/// <summary>
/// Literal for code: ProchlorperazineAllergy
/// </summary>
public const string LiteralProchlorperazineAllergy = "293940009";
/// <summary>
/// Literal for code: TrifluoperazineAllergy
/// </summary>
public const string LiteralTrifluoperazineAllergy = "293941008";
/// <summary>
/// Literal for code: ThioxantheneAllergy
/// </summary>
public const string LiteralThioxantheneAllergy = "293942001";
/// <summary>
/// Literal for code: ChlorprothixeneAllergy
/// </summary>
public const string LiteralChlorprothixeneAllergy = "293943006";
/// <summary>
/// Literal for code: ZuclopenthixolAllergy
/// </summary>
public const string LiteralZuclopenthixolAllergy = "293946003";
/// <summary>
/// Literal for code: FlupenthixolAllergy
/// </summary>
public const string LiteralFlupenthixolAllergy = "293948002";
/// <summary>
/// Literal for code: OxypertineAllergy
/// </summary>
public const string LiteralOxypertineAllergy = "293949005";
/// <summary>
/// Literal for code: RemoxiprideAllergy
/// </summary>
public const string LiteralRemoxiprideAllergy = "293950005";
/// <summary>
/// Literal for code: SelegilineAllergy
/// </summary>
public const string LiteralSelegilineAllergy = "293952002";
/// <summary>
/// Literal for code: CentralStimulantAllergy
/// </summary>
public const string LiteralCentralStimulantAllergy = "293953007";
/// <summary>
/// Literal for code: PemolineAllergy
/// </summary>
public const string LiteralPemolineAllergy = "293954001";
/// <summary>
/// Literal for code: MethylphenidateAllergy
/// </summary>
public const string LiteralMethylphenidateAllergy = "293955000";
/// <summary>
/// Literal for code: ProlintaneAllergy
/// </summary>
public const string LiteralProlintaneAllergy = "293956004";
/// <summary>
/// Literal for code: AmphetamineGroupAllergy
/// </summary>
public const string LiteralAmphetamineGroupAllergy = "293957008";
/// <summary>
/// Literal for code: DexamphetamineAllergy
/// </summary>
public const string LiteralDexamphetamineAllergy = "293958003";
/// <summary>
/// Literal for code: AlcoholMetabolismModifierAllergy
/// </summary>
public const string LiteralAlcoholMetabolismModifierAllergy = "293959006";
/// <summary>
/// Literal for code: DisulfiramAllergy
/// </summary>
public const string LiteralDisulfiramAllergy = "293960001";
/// <summary>
/// Literal for code: BetaAdrenoceptorBlockingDrugAllergy
/// </summary>
public const string LiteralBetaAdrenoceptorBlockingDrugAllergy = "293962009";
/// <summary>
/// Literal for code: CardioselectiveBetaBlockerAllergy
/// </summary>
public const string LiteralCardioselectiveBetaBlockerAllergy = "293963004";
/// <summary>
/// Literal for code: AcebutololAllergy
/// </summary>
public const string LiteralAcebutololAllergy = "293964005";
/// <summary>
/// Literal for code: AtenololAllergy
/// </summary>
public const string LiteralAtenololAllergy = "293965006";
/// <summary>
/// Literal for code: BetaxololAllergy
/// </summary>
public const string LiteralBetaxololAllergy = "293966007";
/// <summary>
/// Literal for code: BisoprololAllergy
/// </summary>
public const string LiteralBisoprololAllergy = "293967003";
/// <summary>
/// Literal for code: CeliprololAllergy
/// </summary>
public const string LiteralCeliprololAllergy = "293968008";
/// <summary>
/// Literal for code: EsmololAllergy
/// </summary>
public const string LiteralEsmololAllergy = "293969000";
/// <summary>
/// Literal for code: MetoprololAllergy
/// </summary>
public const string LiteralMetoprololAllergy = "293970004";
/// <summary>
/// Literal for code: NadololAllergy
/// </summary>
public const string LiteralNadololAllergy = "293972007";
/// <summary>
/// Literal for code: PindololAllergy
/// </summary>
public const string LiteralPindololAllergy = "293973002";
/// <summary>
/// Literal for code: CarvedilolAllergy
/// </summary>
public const string LiteralCarvedilolAllergy = "293974008";
/// <summary>
/// Literal for code: MetipranololAllergy
/// </summary>
public const string LiteralMetipranololAllergy = "293975009";
/// <summary>
/// Literal for code: CarteololAllergy
/// </summary>
public const string LiteralCarteololAllergy = "293976005";
/// <summary>
/// Literal for code: LabetalolAllergy
/// </summary>
public const string LiteralLabetalolAllergy = "293977001";
/// <summary>
/// Literal for code: LevobunololAllergy
/// </summary>
public const string LiteralLevobunololAllergy = "293978006";
/// <summary>
/// Literal for code: OxprenololAllergy
/// </summary>
public const string LiteralOxprenololAllergy = "293979003";
/// <summary>
/// Literal for code: PenbutololAllergy
/// </summary>
public const string LiteralPenbutololAllergy = "293980000";
/// <summary>
/// Literal for code: PractololAllergy
/// </summary>
public const string LiteralPractololAllergy = "293981001";
/// <summary>
/// Literal for code: PropranololAllergy
/// </summary>
public const string LiteralPropranololAllergy = "293982008";
/// <summary>
/// Literal for code: SotalolAllergy
/// </summary>
public const string LiteralSotalolAllergy = "293983003";
/// <summary>
/// Literal for code: TimololAllergy
/// </summary>
public const string LiteralTimololAllergy = "293984009";
/// <summary>
/// Literal for code: AlphaAdrenoceptorBlockingDrugAllergy
/// </summary>
public const string LiteralAlphaAdrenoceptorBlockingDrugAllergy = "293985005";
/// <summary>
/// Literal for code: AlfuzosinAllergy
/// </summary>
public const string LiteralAlfuzosinAllergy = "293986006";
/// <summary>
/// Literal for code: DoxazosinAllergy
/// </summary>
public const string LiteralDoxazosinAllergy = "293987002";
/// <summary>
/// Literal for code: IndoraminAllergy
/// </summary>
public const string LiteralIndoraminAllergy = "293988007";
/// <summary>
/// Literal for code: PhenoxybenzamineAllergy
/// </summary>
public const string LiteralPhenoxybenzamineAllergy = "293989004";
/// <summary>
/// Literal for code: PhentolamineAllergy
/// </summary>
public const string LiteralPhentolamineAllergy = "293990008";
/// <summary>
/// Literal for code: PrazosinAllergy
/// </summary>
public const string LiteralPrazosinAllergy = "293991007";
/// <summary>
/// Literal for code: TerazosinAllergy
/// </summary>
public const string LiteralTerazosinAllergy = "293992000";
/// <summary>
/// Literal for code: NicotineAllergy
/// </summary>
public const string LiteralNicotineAllergy = "293993005";
/// <summary>
/// Literal for code: CalciumChannelBlockerAllergy
/// </summary>
public const string LiteralCalciumChannelBlockerAllergy = "293994004";
/// <summary>
/// Literal for code: LidoflazineAllergy
/// </summary>
public const string LiteralLidoflazineAllergy = "293995003";
/// <summary>
/// Literal for code: NifedipineAllergy
/// </summary>
public const string LiteralNifedipineAllergy = "293996002";
/// <summary>
/// Literal for code: PrenylamineAllergy
/// </summary>
public const string LiteralPrenylamineAllergy = "293997006";
/// <summary>
/// Literal for code: IsradipineAllergy
/// </summary>
public const string LiteralIsradipineAllergy = "293998001";
/// <summary>
/// Literal for code: FelodipineAllergy
/// </summary>
public const string LiteralFelodipineAllergy = "293999009";
/// <summary>
/// Literal for code: LacidipineAllergy
/// </summary>
public const string LiteralLacidipineAllergy = "294000006";
/// <summary>
/// Literal for code: NimodipineAllergy
/// </summary>
public const string LiteralNimodipineAllergy = "294001005";
/// <summary>
/// Literal for code: AmlodipineAllergy
/// </summary>
public const string LiteralAmlodipineAllergy = "294002003";
/// <summary>
/// Literal for code: DiltiazemAllergy
/// </summary>
public const string LiteralDiltiazemAllergy = "294003008";
/// <summary>
/// Literal for code: NicardipineAllergy
/// </summary>
public const string LiteralNicardipineAllergy = "294004002";
/// <summary>
/// Literal for code: VerapamilAllergy
/// </summary>
public const string LiteralVerapamilAllergy = "294005001";
/// <summary>
/// Literal for code: ParasympathomimeticAllergy
/// </summary>
public const string LiteralParasympathomimeticAllergy = "294006000";
/// <summary>
/// Literal for code: PilocarpineAllergy
/// </summary>
public const string LiteralPilocarpineAllergy = "294007009";
/// <summary>
/// Literal for code: MethacholineAllergy
/// </summary>
public const string LiteralMethacholineAllergy = "294009007";
/// <summary>
/// Literal for code: PhysostigmineAllergy
/// </summary>
public const string LiteralPhysostigmineAllergy = "294011003";
/// <summary>
/// Literal for code: DemecariumAllergy
/// </summary>
public const string LiteralDemecariumAllergy = "294012005";
/// <summary>
/// Literal for code: DistigmineAllergy
/// </summary>
public const string LiteralDistigmineAllergy = "294013000";
/// <summary>
/// Literal for code: EcothiopateAllergy
/// </summary>
public const string LiteralEcothiopateAllergy = "294014006";
/// <summary>
/// Literal for code: EdrophoniumAllergy
/// </summary>
public const string LiteralEdrophoniumAllergy = "294015007";
/// <summary>
/// Literal for code: PyridostigmineAllergy
/// </summary>
public const string LiteralPyridostigmineAllergy = "294016008";
/// <summary>
/// Literal for code: NeostigmineAllergy
/// </summary>
public const string LiteralNeostigmineAllergy = "294017004";
/// <summary>
/// Literal for code: BethanecholAllergy
/// </summary>
public const string LiteralBethanecholAllergy = "294018009";
/// <summary>
/// Literal for code: CarbacholAllergy
/// </summary>
public const string LiteralCarbacholAllergy = "294019001";
/// <summary>
/// Literal for code: IsoetharineHydrochlorideAllergy
/// </summary>
public const string LiteralIsoetharineHydrochlorideAllergy = "294021006";
/// <summary>
/// Literal for code: PseudoephedrineAllergy
/// </summary>
public const string LiteralPseudoephedrineAllergy = "294023009";
/// <summary>
/// Literal for code: AlphaAdrenoceptorAgonistAllergy
/// </summary>
public const string LiteralAlphaAdrenoceptorAgonistAllergy = "294024003";
/// <summary>
/// Literal for code: OxedrineTartrateAllergy
/// </summary>
public const string LiteralOxedrineTartrateAllergy = "294025002";
/// <summary>
/// Literal for code: MetaraminolAllergy
/// </summary>
public const string LiteralMetaraminolAllergy = "294026001";
/// <summary>
/// Literal for code: MethoxamineAllergy
/// </summary>
public const string LiteralMethoxamineAllergy = "294027005";
/// <summary>
/// Literal for code: NaphazolineAllergy
/// </summary>
public const string LiteralNaphazolineAllergy = "294028000";
/// <summary>
/// Literal for code: NorepinephrineAllergy
/// </summary>
public const string LiteralNorepinephrineAllergy = "294029008";
/// <summary>
/// Literal for code: PhenylephrineAllergy
/// </summary>
public const string LiteralPhenylephrineAllergy = "294030003";
/// <summary>
/// Literal for code: XylometazolineAllergy
/// </summary>
public const string LiteralXylometazolineAllergy = "294031004";
/// <summary>
/// Literal for code: SelectiveBeta2AdrenoceptorStimulantsAllergy
/// </summary>
public const string LiteralSelectiveBeta2AdrenoceptorStimulantsAllergy = "294033001";
/// <summary>
/// Literal for code: PirbuterolAllergy
/// </summary>
public const string LiteralPirbuterolAllergy = "294035008";
/// <summary>
/// Literal for code: SalmeterolAllergy
/// </summary>
public const string LiteralSalmeterolAllergy = "294036009";
/// <summary>
/// Literal for code: SalbutamolAllergy
/// </summary>
public const string LiteralSalbutamolAllergy = "294037000";
/// <summary>
/// Literal for code: BambuterolAllergy
/// </summary>
public const string LiteralBambuterolAllergy = "294038005";
/// <summary>
/// Literal for code: FenoterolAllergy
/// </summary>
public const string LiteralFenoterolAllergy = "294039002";
/// <summary>
/// Literal for code: OrciprenalineAllergy
/// </summary>
public const string LiteralOrciprenalineAllergy = "294040000";
/// <summary>
/// Literal for code: ReproterolAllergy
/// </summary>
public const string LiteralReproterolAllergy = "294041001";
/// <summary>
/// Literal for code: RimiterolAllergy
/// </summary>
public const string LiteralRimiterolAllergy = "294042008";
/// <summary>
/// Literal for code: RitodrineAllergy
/// </summary>
public const string LiteralRitodrineAllergy = "294043003";
/// <summary>
/// Literal for code: TerbutalineAllergy
/// </summary>
public const string LiteralTerbutalineAllergy = "294044009";
/// <summary>
/// Literal for code: TulobuterolAllergy
/// </summary>
public const string LiteralTulobuterolAllergy = "294045005";
/// <summary>
/// Literal for code: DobutamineAllergy
/// </summary>
public const string LiteralDobutamineAllergy = "294047002";
/// <summary>
/// Literal for code: DopexamineAllergy
/// </summary>
public const string LiteralDopexamineAllergy = "294048007";
/// <summary>
/// Literal for code: IsoprenalineAllergy
/// </summary>
public const string LiteralIsoprenalineAllergy = "294050004";
/// <summary>
/// Literal for code: MethyldopaAllergy
/// </summary>
public const string LiteralMethyldopaAllergy = "294055009";
/// <summary>
/// Literal for code: MethyldopaAndDiureticAllergy
/// </summary>
public const string LiteralMethyldopaAndDiureticAllergy = "294056005";
/// <summary>
/// Literal for code: ApraclonidineAllergy
/// </summary>
public const string LiteralApraclonidineAllergy = "294057001";
/// <summary>
/// Literal for code: ClonidineAllergy
/// </summary>
public const string LiteralClonidineAllergy = "294058006";
/// <summary>
/// Literal for code: LofexidineAllergy
/// </summary>
public const string LiteralLofexidineAllergy = "294059003";
/// <summary>
/// Literal for code: DipivefrineAllergy
/// </summary>
public const string LiteralDipivefrineAllergy = "294060008";
/// <summary>
/// Literal for code: DopamineAllergy
/// </summary>
public const string LiteralDopamineAllergy = "294061007";
/// <summary>
/// Literal for code: EphedrineAllergy
/// </summary>
public const string LiteralEphedrineAllergy = "294062000";
/// <summary>
/// Literal for code: OxymetazolineAllergy
/// </summary>
public const string LiteralOxymetazolineAllergy = "294063005";
/// <summary>
/// Literal for code: XamoterolAllergy
/// </summary>
public const string LiteralXamoterolAllergy = "294064004";
/// <summary>
/// Literal for code: BelladonnaAlkaloidsAllergy
/// </summary>
public const string LiteralBelladonnaAlkaloidsAllergy = "294067006";
/// <summary>
/// Literal for code: PiperidolateHydrochlorideAllergy
/// </summary>
public const string LiteralPiperidolateHydrochlorideAllergy = "294068001";
/// <summary>
/// Literal for code: BiperidenAllergy
/// </summary>
public const string LiteralBiperidenAllergy = "294069009";
/// <summary>
/// Literal for code: TerodilineHydrochlorideAllergy
/// </summary>
public const string LiteralTerodilineHydrochlorideAllergy = "294071009";
/// <summary>
/// Literal for code: LachesineChlorideAllergy
/// </summary>
public const string LiteralLachesineChlorideAllergy = "294072002";
/// <summary>
/// Literal for code: TropicamideAllergy
/// </summary>
public const string LiteralTropicamideAllergy = "294073007";
/// <summary>
/// Literal for code: HyoscineAllergy
/// </summary>
public const string LiteralHyoscineAllergy = "294074001";
/// <summary>
/// Literal for code: AtropineAllergy
/// </summary>
public const string LiteralAtropineAllergy = "294076004";
/// <summary>
/// Literal for code: BenzhexolAllergy
/// </summary>
public const string LiteralBenzhexolAllergy = "294077008";
/// <summary>
/// Literal for code: BenztropineAllergy
/// </summary>
public const string LiteralBenztropineAllergy = "294078003";
/// <summary>
/// Literal for code: CyclopentolateAllergy
/// </summary>
public const string LiteralCyclopentolateAllergy = "294079006";
/// <summary>
/// Literal for code: GlycopyrroniumAllergy
/// </summary>
public const string LiteralGlycopyrroniumAllergy = "294080009";
/// <summary>
/// Literal for code: HomatropineAllergy
/// </summary>
public const string LiteralHomatropineAllergy = "294081008";
/// <summary>
/// Literal for code: IpratropiumAllergy
/// </summary>
public const string LiteralIpratropiumAllergy = "294082001";
/// <summary>
/// Literal for code: MethixeneAllergy
/// </summary>
public const string LiteralMethixeneAllergy = "294083006";
/// <summary>
/// Literal for code: OrphenadrineAllergy
/// </summary>
public const string LiteralOrphenadrineAllergy = "294084000";
/// <summary>
/// Literal for code: OxitropiumAllergy
/// </summary>
public const string LiteralOxitropiumAllergy = "294087007";
/// <summary>
/// Literal for code: OxybutyninAllergy
/// </summary>
public const string LiteralOxybutyninAllergy = "294088002";
/// <summary>
/// Literal for code: ProcyclidineAllergy
/// </summary>
public const string LiteralProcyclidineAllergy = "294089005";
/// <summary>
/// Literal for code: DornaseAlfaAllergy
/// </summary>
public const string LiteralDornaseAlfaAllergy = "294091002";
/// <summary>
/// Literal for code: MucolyticsAllergy
/// </summary>
public const string LiteralMucolyticsAllergy = "294092009";
/// <summary>
/// Literal for code: TyloxapolAllergy
/// </summary>
public const string LiteralTyloxapolAllergy = "294093004";
/// <summary>
/// Literal for code: BromhexineHydrochlorideAllergy
/// </summary>
public const string LiteralBromhexineHydrochlorideAllergy = "294094005";
/// <summary>
/// Literal for code: CarbocisteineAllergy
/// </summary>
public const string LiteralCarbocisteineAllergy = "294095006";
/// <summary>
/// Literal for code: MethylcysteineAllergy
/// </summary>
public const string LiteralMethylcysteineAllergy = "294096007";
/// <summary>
/// Literal for code: AcetylcysteineAllergy
/// </summary>
public const string LiteralAcetylcysteineAllergy = "294097003";
/// <summary>
/// Literal for code: RespiratoryStimulantAllergy
/// </summary>
public const string LiteralRespiratoryStimulantAllergy = "294098008";
/// <summary>
/// Literal for code: NikethamideAllergy
/// </summary>
public const string LiteralNikethamideAllergy = "294099000";
/// <summary>
/// Literal for code: EthamivanAllergy
/// </summary>
public const string LiteralEthamivanAllergy = "294100008";
/// <summary>
/// Literal for code: DoxapramAllergy
/// </summary>
public const string LiteralDoxapramAllergy = "294101007";
/// <summary>
/// Literal for code: RespiratorySurfactantAllergy
/// </summary>
public const string LiteralRespiratorySurfactantAllergy = "294102000";
/// <summary>
/// Literal for code: BeractantAllergy
/// </summary>
public const string LiteralBeractantAllergy = "294103005";
/// <summary>
/// Literal for code: PumactantAllergy
/// </summary>
public const string LiteralPumactantAllergy = "294105003";
/// <summary>
/// Literal for code: ColfoscerilAllergy
/// </summary>
public const string LiteralColfoscerilAllergy = "294106002";
/// <summary>
/// Literal for code: H1AntihistamineAllergy
/// </summary>
public const string LiteralH1AntihistamineAllergy = "294109009";
/// <summary>
/// Literal for code: AstemizoleAllergy
/// </summary>
public const string LiteralAstemizoleAllergy = "294111000";
/// <summary>
/// Literal for code: TerfenadineAllergy
/// </summary>
public const string LiteralTerfenadineAllergy = "294112007";
/// <summary>
/// Literal for code: AcrivastineAllergy
/// </summary>
public const string LiteralAcrivastineAllergy = "294113002";
/// <summary>
/// Literal for code: LoratadineAllergy
/// </summary>
public const string LiteralLoratadineAllergy = "294114008";
/// <summary>
/// Literal for code: AzelastineAllergy
/// </summary>
public const string LiteralAzelastineAllergy = "294115009";
/// <summary>
/// Literal for code: CetirizineAllergy
/// </summary>
public const string LiteralCetirizineAllergy = "294116005";
/// <summary>
/// Literal for code: ClemastineAllergy
/// </summary>
public const string LiteralClemastineAllergy = "294118006";
/// <summary>
/// Literal for code: MebhydrolinAllergy
/// </summary>
public const string LiteralMebhydrolinAllergy = "294119003";
/// <summary>
/// Literal for code: MequitazineAllergy
/// </summary>
public const string LiteralMequitazineAllergy = "294120009";
/// <summary>
/// Literal for code: OxatomideAllergy
/// </summary>
public const string LiteralOxatomideAllergy = "294121008";
/// <summary>
/// Literal for code: CyclizineAllergy
/// </summary>
public const string LiteralCyclizineAllergy = "294122001";
/// <summary>
/// Literal for code: DimenhydrinateAllergy
/// </summary>
public const string LiteralDimenhydrinateAllergy = "294123006";
/// <summary>
/// Literal for code: AntazolineAllergy
/// </summary>
public const string LiteralAntazolineAllergy = "294125004";
/// <summary>
/// Literal for code: PromethazineAllergy
/// </summary>
public const string LiteralPromethazineAllergy = "294126003";
/// <summary>
/// Literal for code: AzatadineAllergy
/// </summary>
public const string LiteralAzatadineAllergy = "294127007";
/// <summary>
/// Literal for code: BrompheniramineAllergy
/// </summary>
public const string LiteralBrompheniramineAllergy = "294128002";
/// <summary>
/// Literal for code: ChlorpheniramineAllergy
/// </summary>
public const string LiteralChlorpheniramineAllergy = "294129005";
/// <summary>
/// Literal for code: CinnarizineAllergy
/// </summary>
public const string LiteralCinnarizineAllergy = "294130000";
/// <summary>
/// Literal for code: CyproheptadineAllergy
/// </summary>
public const string LiteralCyproheptadineAllergy = "294131001";
/// <summary>
/// Literal for code: DimethindeneAllergy
/// </summary>
public const string LiteralDimethindeneAllergy = "294132008";
/// <summary>
/// Literal for code: DiphenhydramineAllergy
/// </summary>
public const string LiteralDiphenhydramineAllergy = "294133003";
/// <summary>
/// Literal for code: DiphenylpyralineAllergy
/// </summary>
public const string LiteralDiphenylpyralineAllergy = "294134009";
/// <summary>
/// Literal for code: HydroxyzineAllergy
/// </summary>
public const string LiteralHydroxyzineAllergy = "294135005";
/// <summary>
/// Literal for code: MepyramineAllergy
/// </summary>
public const string LiteralMepyramineAllergy = "294136006";
/// <summary>
/// Literal for code: PhenindamineAllergy
/// </summary>
public const string LiteralPhenindamineAllergy = "294137002";
/// <summary>
/// Literal for code: PheniramineAllergy
/// </summary>
public const string LiteralPheniramineAllergy = "294138007";
/// <summary>
/// Literal for code: TriprolidineAllergy
/// </summary>
public const string LiteralTriprolidineAllergy = "294139004";
/// <summary>
/// Literal for code: TrimeprazineAllergy
/// </summary>
public const string LiteralTrimeprazineAllergy = "294140002";
/// <summary>
/// Literal for code: NedocromilAllergy
/// </summary>
public const string LiteralNedocromilAllergy = "294142005";
/// <summary>
/// Literal for code: KetotifenAllergy
/// </summary>
public const string LiteralKetotifenAllergy = "294144006";
/// <summary>
/// Literal for code: LodoxamideAllergy
/// </summary>
public const string LiteralLodoxamideAllergy = "294145007";
/// <summary>
/// Literal for code: IsoaminileAllergy
/// </summary>
public const string LiteralIsoaminileAllergy = "294148009";
/// <summary>
/// Literal for code: NoscapineAllergy
/// </summary>
public const string LiteralNoscapineAllergy = "294152009";
/// <summary>
/// Literal for code: PholcodineAllergy
/// </summary>
public const string LiteralPholcodineAllergy = "294153004";
/// <summary>
/// Literal for code: XanthineAllergy
/// </summary>
public const string LiteralXanthineAllergy = "294157003";
/// <summary>
/// Literal for code: AminophyllineAllergy
/// </summary>
public const string LiteralAminophyllineAllergy = "294158008";
/// <summary>
/// Literal for code: TheophyllineAllergy
/// </summary>
public const string LiteralTheophyllineAllergy = "294160005";
/// <summary>
/// Literal for code: CalamineAllergy
/// </summary>
public const string LiteralCalamineAllergy = "294168003";
/// <summary>
/// Literal for code: CoalTarAllergy
/// </summary>
public const string LiteralCoalTarAllergy = "294169006";
/// <summary>
/// Literal for code: BufexamacAllergy
/// </summary>
public const string LiteralBufexamacAllergy = "294172004";
/// <summary>
/// Literal for code: DithranolAllergy
/// </summary>
public const string LiteralDithranolAllergy = "294173009";
/// <summary>
/// Literal for code: IchthammolAllergy
/// </summary>
public const string LiteralIchthammolAllergy = "294177005";
/// <summary>
/// Literal for code: CalcipotriolAllergy
/// </summary>
public const string LiteralCalcipotriolAllergy = "294178000";
/// <summary>
/// Literal for code: AzelaicAcidAllergy
/// </summary>
public const string LiteralAzelaicAcidAllergy = "294180006";
/// <summary>
/// Literal for code: BromineComplexesAllergy
/// </summary>
public const string LiteralBromineComplexesAllergy = "294181005";
/// <summary>
/// Literal for code: PodophyllumResinAllergy
/// </summary>
public const string LiteralPodophyllumResinAllergy = "294182003";
/// <summary>
/// Literal for code: PodophyllotoxinAllergy
/// </summary>
public const string LiteralPodophyllotoxinAllergy = "294183008";
/// <summary>
/// Literal for code: SunscreeningPreparationAllergy
/// </summary>
public const string LiteralSunscreeningPreparationAllergy = "294184002";
/// <summary>
/// Literal for code: SurgicalTissueAdhesiveAllergy
/// </summary>
public const string LiteralSurgicalTissueAdhesiveAllergy = "294189007";
/// <summary>
/// Literal for code: EnbucrilateAllergy
/// </summary>
public const string LiteralEnbucrilateAllergy = "294190003";
/// <summary>
/// Literal for code: CollodionAllergy
/// </summary>
public const string LiteralCollodionAllergy = "294191004";
/// <summary>
/// Literal for code: AllergyToCounterIrritant
/// </summary>
public const string LiteralAllergyToCounterIrritant = "294192006";
/// <summary>
/// Literal for code: EmollientAllergy
/// </summary>
public const string LiteralEmollientAllergy = "294193001";
/// <summary>
/// Literal for code: PoulticeAllergy
/// </summary>
public const string LiteralPoulticeAllergy = "294194007";
/// <summary>
/// Literal for code: AlkaliMetalSoapAllergy
/// </summary>
public const string LiteralAlkaliMetalSoapAllergy = "294196009";
/// <summary>
/// Literal for code: AstringentAllergy
/// </summary>
public const string LiteralAstringentAllergy = "294197000";
/// <summary>
/// Literal for code: CrotamitonAllergy
/// </summary>
public const string LiteralCrotamitonAllergy = "294200004";
/// <summary>
/// Literal for code: Carbon14CXylose
/// </summary>
public const string LiteralCarbon14CXylose = "2942001";
/// <summary>
/// Literal for code: TopicalAbrasiveAgentAllergy
/// </summary>
public const string LiteralTopicalAbrasiveAgentAllergy = "294202007";
/// <summary>
/// Literal for code: BenzoylPeroxideAllergy
/// </summary>
public const string LiteralBenzoylPeroxideAllergy = "294203002";
/// <summary>
/// Literal for code: SilverNitrateAllergy
/// </summary>
public const string LiteralSilverNitrateAllergy = "294204008";
/// <summary>
/// Literal for code: GamolenicAcidAllergy
/// </summary>
public const string LiteralGamolenicAcidAllergy = "294206005";
/// <summary>
/// Literal for code: RetinoidAllergy
/// </summary>
public const string LiteralRetinoidAllergy = "294207001";
/// <summary>
/// Literal for code: EtretinateAllergy
/// </summary>
public const string LiteralEtretinateAllergy = "294208006";
/// <summary>
/// Literal for code: AcitretinAllergy
/// </summary>
public const string LiteralAcitretinAllergy = "294209003";
/// <summary>
/// Literal for code: TretinoinAllergy
/// </summary>
public const string LiteralTretinoinAllergy = "294210008";
/// <summary>
/// Literal for code: IsotretinoinAllergy
/// </summary>
public const string LiteralIsotretinoinAllergy = "294211007";
/// <summary>
/// Literal for code: ColchicumAlkaloidAllergy
/// </summary>
public const string LiteralColchicumAlkaloidAllergy = "294214004";
/// <summary>
/// Literal for code: ColchicineAllergy
/// </summary>
public const string LiteralColchicineAllergy = "294215003";
/// <summary>
/// Literal for code: ProbenecidAllergy
/// </summary>
public const string LiteralProbenecidAllergy = "294217006";
/// <summary>
/// Literal for code: SulfinpyrazoneAllergy
/// </summary>
public const string LiteralSulfinpyrazoneAllergy = "294218001";
/// <summary>
/// Literal for code: XanthineOxidaseInhibitorAllergy
/// </summary>
public const string LiteralXanthineOxidaseInhibitorAllergy = "294219009";
/// <summary>
/// Literal for code: AllopurinolAllergy
/// </summary>
public const string LiteralAllopurinolAllergy = "294220003";
/// <summary>
/// Literal for code: SkeletalMuscleRelaxantAllergy
/// </summary>
public const string LiteralSkeletalMuscleRelaxantAllergy = "294221004";
/// <summary>
/// Literal for code: SuxamethoniumAllergy
/// </summary>
public const string LiteralSuxamethoniumAllergy = "294224007";
/// <summary>
/// Literal for code: NonDepolarizingMuscleRelaxantAllergy
/// </summary>
public const string LiteralNonDepolarizingMuscleRelaxantAllergy = "294225008";
/// <summary>
/// Literal for code: MivacuriumAllergy
/// </summary>
public const string LiteralMivacuriumAllergy = "294226009";
/// <summary>
/// Literal for code: AlcuroniumAllergy
/// </summary>
public const string LiteralAlcuroniumAllergy = "294227000";
/// <summary>
/// Literal for code: AtracuriumAllergy
/// </summary>
public const string LiteralAtracuriumAllergy = "294228005";
/// <summary>
/// Literal for code: GallamineAllergy
/// </summary>
public const string LiteralGallamineAllergy = "294229002";
/// <summary>
/// Literal for code: PancuroniumAllergy
/// </summary>
public const string LiteralPancuroniumAllergy = "294230007";
/// <summary>
/// Literal for code: TubocurarineAllergy
/// </summary>
public const string LiteralTubocurarineAllergy = "294231006";
/// <summary>
/// Literal for code: VecuroniumAllergy
/// </summary>
public const string LiteralVecuroniumAllergy = "294232004";
/// <summary>
/// Literal for code: RocuroniumAllergy
/// </summary>
public const string LiteralRocuroniumAllergy = "294233009";
/// <summary>
/// Literal for code: BaclofenAllergy
/// </summary>
public const string LiteralBaclofenAllergy = "294234003";
/// <summary>
/// Literal for code: CarisoprodolAllergy
/// </summary>
public const string LiteralCarisoprodolAllergy = "294235002";
/// <summary>
/// Literal for code: MethocarbamolAllergy
/// </summary>
public const string LiteralMethocarbamolAllergy = "294236001";
/// <summary>
/// Literal for code: DantroleneAllergy
/// </summary>
public const string LiteralDantroleneAllergy = "294237005";
/// <summary>
/// Literal for code: GoldAllergy
/// </summary>
public const string LiteralGoldAllergy = "294238000";
/// <summary>
/// Literal for code: SodiumAurothiomalateAllergy
/// </summary>
public const string LiteralSodiumAurothiomalateAllergy = "294239008";
/// <summary>
/// Literal for code: AuranofinAllergy
/// </summary>
public const string LiteralAuranofinAllergy = "294240005";
/// <summary>
/// Literal for code: PapaverineAllergy
/// </summary>
public const string LiteralPapaverineAllergy = "294242002";
/// <summary>
/// Literal for code: FlavoxateAllergy
/// </summary>
public const string LiteralFlavoxateAllergy = "294243007";
/// <summary>
/// Literal for code: MifepristoneAllergy
/// </summary>
public const string LiteralMifepristoneAllergy = "294245000";
/// <summary>
/// Literal for code: NonIonicSurfactantAllergy
/// </summary>
public const string LiteralNonIonicSurfactantAllergy = "294246004";
/// <summary>
/// Literal for code: NonoxinolAllergy
/// </summary>
public const string LiteralNonoxinolAllergy = "294247008";
/// <summary>
/// Literal for code: OctoxinolAllergy
/// </summary>
public const string LiteralOctoxinolAllergy = "294248003";
/// <summary>
/// Literal for code: ProstaglandinAllergy
/// </summary>
public const string LiteralProstaglandinAllergy = "294249006";
/// <summary>
/// Literal for code: ASeriesProstaglandinAllergy
/// </summary>
public const string LiteralASeriesProstaglandinAllergy = "294250006";
/// <summary>
/// Literal for code: ESeriesProstaglandinAllergy
/// </summary>
public const string LiteralESeriesProstaglandinAllergy = "294252003";
/// <summary>
/// Literal for code: DinoprostoneAllergy
/// </summary>
public const string LiteralDinoprostoneAllergy = "294253008";
/// <summary>
/// Literal for code: GemeprostAllergy
/// </summary>
public const string LiteralGemeprostAllergy = "294254002";
/// <summary>
/// Literal for code: AlprostadilAllergy
/// </summary>
public const string LiteralAlprostadilAllergy = "294255001";
/// <summary>
/// Literal for code: FSeriesProstaglandinAllergy
/// </summary>
public const string LiteralFSeriesProstaglandinAllergy = "294256000";
/// <summary>
/// Literal for code: DinoprostAllergy
/// </summary>
public const string LiteralDinoprostAllergy = "294257009";
/// <summary>
/// Literal for code: CarboprostAllergy
/// </summary>
public const string LiteralCarboprostAllergy = "294258004";
/// <summary>
/// Literal for code: ISeriesProstaglandinAllergy
/// </summary>
public const string LiteralISeriesProstaglandinAllergy = "294259007";
/// <summary>
/// Literal for code: EpoprostenolAllergy
/// </summary>
public const string LiteralEpoprostenolAllergy = "294260002";
/// <summary>
/// Literal for code: TerpenesAllergy
/// </summary>
public const string LiteralTerpenesAllergy = "294261003";
/// <summary>
/// Literal for code: AntidoteAllergy
/// </summary>
public const string LiteralAntidoteAllergy = "294263000";
/// <summary>
/// Literal for code: IpecacuanhaAllergy
/// </summary>
public const string LiteralIpecacuanhaAllergy = "294264006";
/// <summary>
/// Literal for code: CharcoalActivatedAllergy
/// </summary>
public const string LiteralCharcoalActivatedAllergy = "294265007";
/// <summary>
/// Literal for code: SodiumNitriteAllergy
/// </summary>
public const string LiteralSodiumNitriteAllergy = "294266008";
/// <summary>
/// Literal for code: DigoxinSpecificAntibodyAllergy
/// </summary>
public const string LiteralDigoxinSpecificAntibodyAllergy = "294268009";
/// <summary>
/// Literal for code: MesnaAllergy
/// </summary>
public const string LiteralMesnaAllergy = "294269001";
/// <summary>
/// Literal for code: BenzodiazepineAntagonistAllergy
/// </summary>
public const string LiteralBenzodiazepineAntagonistAllergy = "294270000";
/// <summary>
/// Literal for code: FlumazenilAllergy
/// </summary>
public const string LiteralFlumazenilAllergy = "294271001";
/// <summary>
/// Literal for code: PralidoximeAllergy
/// </summary>
public const string LiteralPralidoximeAllergy = "294273003";
/// <summary>
/// Literal for code: OpioidAntagonistAllergy
/// </summary>
public const string LiteralOpioidAntagonistAllergy = "294275005";
/// <summary>
/// Literal for code: NaltrexoneAllergy
/// </summary>
public const string LiteralNaltrexoneAllergy = "294276006";
/// <summary>
/// Literal for code: NaloxoneAllergy
/// </summary>
public const string LiteralNaloxoneAllergy = "294277002";
/// <summary>
/// Literal for code: ProtamineAllergy
/// </summary>
public const string LiteralProtamineAllergy = "294278007";
/// <summary>
/// Literal for code: FullersEarthPowderAllergy
/// </summary>
public const string LiteralFullersEarthPowderAllergy = "294280001";
/// <summary>
/// Literal for code: AllergyToBentonite
/// </summary>
public const string LiteralAllergyToBentonite = "294281002";
/// <summary>
/// Literal for code: ChelatingAgentAllergy
/// </summary>
public const string LiteralChelatingAgentAllergy = "294282009";
/// <summary>
/// Literal for code: DimercaprolAllergy
/// </summary>
public const string LiteralDimercaprolAllergy = "294283004";
/// <summary>
/// Literal for code: DesferrioxamineAllergy
/// </summary>
public const string LiteralDesferrioxamineAllergy = "294284005";
/// <summary>
/// Literal for code: EdetateAllergy
/// </summary>
public const string LiteralEdetateAllergy = "294285006";
/// <summary>
/// Literal for code: TrientineAllergy
/// </summary>
public const string LiteralTrientineAllergy = "294290009";
/// <summary>
/// Literal for code: PenicillamineAllergy
/// </summary>
public const string LiteralPenicillamineAllergy = "294291008";
/// <summary>
/// Literal for code: GlycineAllergy
/// </summary>
public const string LiteralGlycineAllergy = "294298002";
/// <summary>
/// Literal for code: DialysisFluidAllergy
/// </summary>
public const string LiteralDialysisFluidAllergy = "294299005";
/// <summary>
/// Literal for code: DimethylEtherPropaneAllergy
/// </summary>
public const string LiteralDimethylEtherPropaneAllergy = "294306008";
/// <summary>
/// Literal for code: FixedOilAllergy
/// </summary>
public const string LiteralFixedOilAllergy = "294315001";
/// <summary>
/// Literal for code: OliveOilAllergy
/// </summary>
public const string LiteralOliveOilAllergy = "294316000";
/// <summary>
/// Literal for code: ArachisOilAllergy
/// </summary>
public const string LiteralArachisOilAllergy = "294317009";
/// <summary>
/// Literal for code: CastorOilAllergy
/// </summary>
public const string LiteralCastorOilAllergy = "294318004";
/// <summary>
/// Literal for code: GlycerolAllergy
/// </summary>
public const string LiteralGlycerolAllergy = "294320001";
/// <summary>
/// Literal for code: ParaffinAllergy
/// </summary>
public const string LiteralParaffinAllergy = "294324005";
/// <summary>
/// Literal for code: LiquidParaffinAllergy
/// </summary>
public const string LiteralLiquidParaffinAllergy = "294327003";
/// <summary>
/// Literal for code: SiliconeAllergy
/// </summary>
public const string LiteralSiliconeAllergy = "294328008";
/// <summary>
/// Literal for code: DimethiconeAllergy
/// </summary>
public const string LiteralDimethiconeAllergy = "294329000";
/// <summary>
/// Literal for code: WoolAlcoholAllergy
/// </summary>
public const string LiteralWoolAlcoholAllergy = "294330005";
/// <summary>
/// Literal for code: PolyvinylAlcoholAllergy
/// </summary>
public const string LiteralPolyvinylAlcoholAllergy = "294332002";
/// <summary>
/// Literal for code: Carbomer940Allergy
/// </summary>
public const string LiteralCarbomer940Allergy = "294333007";
/// <summary>
/// Literal for code: CelluloseDerivedViscosityModifierAllergy
/// </summary>
public const string LiteralCelluloseDerivedViscosityModifierAllergy = "294334001";
/// <summary>
/// Literal for code: HypromelloseAllergy
/// </summary>
public const string LiteralHypromelloseAllergy = "294335000";
/// <summary>
/// Literal for code: HydroxyethylcelluloseAllergy
/// </summary>
public const string LiteralHydroxyethylcelluloseAllergy = "294337008";
/// <summary>
/// Literal for code: CarmelloseAllergy
/// </summary>
public const string LiteralCarmelloseAllergy = "294339006";
/// <summary>
/// Literal for code: AntifungalDrugAllergy
/// </summary>
public const string LiteralAntifungalDrugAllergy = "294340008";
/// <summary>
/// Literal for code: FlucytosineAllergy
/// </summary>
public const string LiteralFlucytosineAllergy = "294341007";
/// <summary>
/// Literal for code: TerbinafineAllergy
/// </summary>
public const string LiteralTerbinafineAllergy = "294342000";
/// <summary>
/// Literal for code: NitrophenolAllergy
/// </summary>
public const string LiteralNitrophenolAllergy = "294343005";
/// <summary>
/// Literal for code: TolnaftateAllergy
/// </summary>
public const string LiteralTolnaftateAllergy = "294344004";
/// <summary>
/// Literal for code: AmorolfineAllergy
/// </summary>
public const string LiteralAmorolfineAllergy = "294346002";
/// <summary>
/// Literal for code: GriseofulvinAllergy
/// </summary>
public const string LiteralGriseofulvinAllergy = "294348001";
/// <summary>
/// Literal for code: AmphotericinAllergy
/// </summary>
public const string LiteralAmphotericinAllergy = "294349009";
/// <summary>
/// Literal for code: NatamycinAllergy
/// </summary>
public const string LiteralNatamycinAllergy = "294350009";
/// <summary>
/// Literal for code: NystatinAllergy
/// </summary>
public const string LiteralNystatinAllergy = "294351008";
/// <summary>
/// Literal for code: AzoleAntifungalAllergy
/// </summary>
public const string LiteralAzoleAntifungalAllergy = "294352001";
/// <summary>
/// Literal for code: AllergyToUndecenoate
/// </summary>
public const string LiteralAllergyToUndecenoate = "294354000";
/// <summary>
/// Literal for code: ImidazoleAntifungalAllergy
/// </summary>
public const string LiteralImidazoleAntifungalAllergy = "294355004";
/// <summary>
/// Literal for code: ClotrimazoleAllergy
/// </summary>
public const string LiteralClotrimazoleAllergy = "294356003";
/// <summary>
/// Literal for code: FenticonazoleAllergy
/// </summary>
public const string LiteralFenticonazoleAllergy = "294357007";
/// <summary>
/// Literal for code: TioconazoleAllergy
/// </summary>
public const string LiteralTioconazoleAllergy = "294358002";
/// <summary>
/// Literal for code: EconazoleAllergy
/// </summary>
public const string LiteralEconazoleAllergy = "294359005";
/// <summary>
/// Literal for code: IsoconazoleAllergy
/// </summary>
public const string LiteralIsoconazoleAllergy = "294360000";
/// <summary>
/// Literal for code: SulconazoleAllergy
/// </summary>
public const string LiteralSulconazoleAllergy = "294361001";
/// <summary>
/// Literal for code: KetoconazoleAllergy
/// </summary>
public const string LiteralKetoconazoleAllergy = "294362008";
/// <summary>
/// Literal for code: MiconazoleAllergy
/// </summary>
public const string LiteralMiconazoleAllergy = "294363003";
/// <summary>
/// Literal for code: TriazoleAntifungalsAllergy
/// </summary>
public const string LiteralTriazoleAntifungalsAllergy = "294364009";
/// <summary>
/// Literal for code: FluconazoleAllergy
/// </summary>
public const string LiteralFluconazoleAllergy = "294365005";
/// <summary>
/// Literal for code: ItraconazoleAllergy
/// </summary>
public const string LiteralItraconazoleAllergy = "294366006";
/// <summary>
/// Literal for code: AntiviralDrugAllergy
/// </summary>
public const string LiteralAntiviralDrugAllergy = "294367002";
/// <summary>
/// Literal for code: InosinePranobexAllergy
/// </summary>
public const string LiteralInosinePranobexAllergy = "294368007";
/// <summary>
/// Literal for code: ZidovudineAllergy
/// </summary>
public const string LiteralZidovudineAllergy = "294369004";
/// <summary>
/// Literal for code: GanciclovirAllergy
/// </summary>
public const string LiteralGanciclovirAllergy = "294370003";
/// <summary>
/// Literal for code: FamciclovirAllergy
/// </summary>
public const string LiteralFamciclovirAllergy = "294371004";
/// <summary>
/// Literal for code: DidanosineAllergy
/// </summary>
public const string LiteralDidanosineAllergy = "294372006";
/// <summary>
/// Literal for code: ZalcitabineAllergy
/// </summary>
public const string LiteralZalcitabineAllergy = "294373001";
/// <summary>
/// Literal for code: ValaciclovirAllergy
/// </summary>
public const string LiteralValaciclovirAllergy = "294374007";
/// <summary>
/// Literal for code: InterferonsAllergy
/// </summary>
public const string LiteralInterferonsAllergy = "294375008";
/// <summary>
/// Literal for code: HumanInterferonGamma1bAllergy
/// </summary>
public const string LiteralHumanInterferonGamma1bAllergy = "294376009";
/// <summary>
/// Literal for code: InterferonA2aAllergy
/// </summary>
public const string LiteralInterferonA2aAllergy = "294377000";
/// <summary>
/// Literal for code: InterferonA2bAllergy
/// </summary>
public const string LiteralInterferonA2bAllergy = "294378005";
/// <summary>
/// Literal for code: InterferonAN1Allergy
/// </summary>
public const string LiteralInterferonAN1Allergy = "294379002";
/// <summary>
/// Literal for code: TribavirinAllergy
/// </summary>
public const string LiteralTribavirinAllergy = "294380004";
/// <summary>
/// Literal for code: TrifluorothymidineAllergy
/// </summary>
public const string LiteralTrifluorothymidineAllergy = "294381000";
/// <summary>
/// Literal for code: FoscarnetAllergy
/// </summary>
public const string LiteralFoscarnetAllergy = "294382007";
/// <summary>
/// Literal for code: VidarabineAllergy
/// </summary>
public const string LiteralVidarabineAllergy = "294383002";
/// <summary>
/// Literal for code: AciclovirAllergy
/// </summary>
public const string LiteralAciclovirAllergy = "294384008";
/// <summary>
/// Literal for code: IdoxuridineAllergy
/// </summary>
public const string LiteralIdoxuridineAllergy = "294385009";
/// <summary>
/// Literal for code: AntimalarialDrugAllergy
/// </summary>
public const string LiteralAntimalarialDrugAllergy = "294387001";
/// <summary>
/// Literal for code: PyrimethamineAllergy
/// </summary>
public const string LiteralPyrimethamineAllergy = "294388006";
/// <summary>
/// Literal for code: AminoquinolineAntimalarialAllergy
/// </summary>
public const string LiteralAminoquinolineAntimalarialAllergy = "294389003";
/// <summary>
/// Literal for code: AmodiaquineAllergy
/// </summary>
public const string LiteralAmodiaquineAllergy = "294390007";
/// <summary>
/// Literal for code: PrimaquineAllergy
/// </summary>
public const string LiteralPrimaquineAllergy = "294391006";
/// <summary>
/// Literal for code: MefloquineAllergy
/// </summary>
public const string LiteralMefloquineAllergy = "294392004";
/// <summary>
/// Literal for code: HydroxychloroquineAllergy
/// </summary>
public const string LiteralHydroxychloroquineAllergy = "294393009";
/// <summary>
/// Literal for code: ChloroquineAllergy
/// </summary>
public const string LiteralChloroquineAllergy = "294394003";
/// <summary>
/// Literal for code: BiguanideAntimalarialAllergy
/// </summary>
public const string LiteralBiguanideAntimalarialAllergy = "294395002";
/// <summary>
/// Literal for code: ProguanilAllergy
/// </summary>
public const string LiteralProguanilAllergy = "294396001";
/// <summary>
/// Literal for code: CinchonaAntimalarialAllergy
/// </summary>
public const string LiteralCinchonaAntimalarialAllergy = "294397005";
/// <summary>
/// Literal for code: QuinineAllergy
/// </summary>
public const string LiteralQuinineAllergy = "294398000";
/// <summary>
/// Literal for code: HalofantrineAllergy
/// </summary>
public const string LiteralHalofantrineAllergy = "294399008";
/// <summary>
/// Literal for code: MepacrineAllergy
/// </summary>
public const string LiteralMepacrineAllergy = "294400001";
/// <summary>
/// Literal for code: AceticAcidAllergy
/// </summary>
public const string LiteralAceticAcidAllergy = "294404005";
/// <summary>
/// Literal for code: HydrargaphenAllergy
/// </summary>
public const string LiteralHydrargaphenAllergy = "294405006";
/// <summary>
/// Literal for code: PolynoxylinAllergy
/// </summary>
public const string LiteralPolynoxylinAllergy = "294406007";
/// <summary>
/// Literal for code: HexetidineAllergy
/// </summary>
public const string LiteralHexetidineAllergy = "294407003";
/// <summary>
/// Literal for code: SodiumPerborateAllergy
/// </summary>
public const string LiteralSodiumPerborateAllergy = "294408008";
/// <summary>
/// Literal for code: PotassiumPermanganateAllergy
/// </summary>
public const string LiteralPotassiumPermanganateAllergy = "294410005";
/// <summary>
/// Literal for code: BismuthSubnitrateAndIodoformPasteImpregnatedGauzeAllergy
/// </summary>
public const string LiteralBismuthSubnitrateAndIodoformPasteImpregnatedGauzeAllergy = "294411009";
/// <summary>
/// Literal for code: ThymolAllergy
/// </summary>
public const string LiteralThymolAllergy = "294413007";
/// <summary>
/// Literal for code: ChloroxylenolAllergy
/// </summary>
public const string LiteralChloroxylenolAllergy = "294415000";
/// <summary>
/// Literal for code: HexachlorophaneAllergy
/// </summary>
public const string LiteralHexachlorophaneAllergy = "294416004";
/// <summary>
/// Literal for code: TriclosanAllergy
/// </summary>
public const string LiteralTriclosanAllergy = "294417008";
/// <summary>
/// Literal for code: PhenolAllergy
/// </summary>
public const string LiteralPhenolAllergy = "294418003";
/// <summary>
/// Literal for code: IndustrialMethylatedSpiritAllergy
/// </summary>
public const string LiteralIndustrialMethylatedSpiritAllergy = "294421001";
/// <summary>
/// Literal for code: GlutaraldehydeAllergy
/// </summary>
public const string LiteralGlutaraldehydeAllergy = "294423003";
/// <summary>
/// Literal for code: NoxythiolinAllergy
/// </summary>
public const string LiteralNoxythiolinAllergy = "294425005";
/// <summary>
/// Literal for code: FormaldehydeAllergy
/// </summary>
public const string LiteralFormaldehydeAllergy = "294426006";
/// <summary>
/// Literal for code: AmidineDisinfectantAllergy
/// </summary>
public const string LiteralAmidineDisinfectantAllergy = "294427002";
/// <summary>
/// Literal for code: BiguanideDisinfectantAllergy
/// </summary>
public const string LiteralBiguanideDisinfectantAllergy = "294430009";
/// <summary>
/// Literal for code: ChlorhexidineAllergy
/// </summary>
public const string LiteralChlorhexidineAllergy = "294431008";
/// <summary>
/// Literal for code: ChlorhexidineHydrochlorideAndNeomycinSulfateAllergy
/// </summary>
public const string LiteralChlorhexidineHydrochlorideAndNeomycinSulfateAllergy = "294432001";
/// <summary>
/// Literal for code: BorateAllergy
/// </summary>
public const string LiteralBorateAllergy = "294433006";
/// <summary>
/// Literal for code: BoricAcidAllergy
/// </summary>
public const string LiteralBoricAcidAllergy = "294434000";
/// <summary>
/// Literal for code: QuaternaryAmmoniumSurfactantAllergy
/// </summary>
public const string LiteralQuaternaryAmmoniumSurfactantAllergy = "294436003";
/// <summary>
/// Literal for code: CetrimideAllergy
/// </summary>
public const string LiteralCetrimideAllergy = "294437007";
/// <summary>
/// Literal for code: BenzalkoniumAllergy
/// </summary>
public const string LiteralBenzalkoniumAllergy = "294438002";
/// <summary>
/// Literal for code: DomiphenAllergy
/// </summary>
public const string LiteralDomiphenAllergy = "294439005";
/// <summary>
/// Literal for code: QuaternaryPyridiniumSurfactantAllergy
/// </summary>
public const string LiteralQuaternaryPyridiniumSurfactantAllergy = "294440007";
/// <summary>
/// Literal for code: CetylpyridiniumAllergy
/// </summary>
public const string LiteralCetylpyridiniumAllergy = "294441006";
/// <summary>
/// Literal for code: QuaternaryQuinoliniumSurfactantAllergy
/// </summary>
public const string LiteralQuaternaryQuinoliniumSurfactantAllergy = "294442004";
/// <summary>
/// Literal for code: DequaliniumAllergy
/// </summary>
public const string LiteralDequaliniumAllergy = "294443009";
/// <summary>
/// Literal for code: CrystalVioletAllergy
/// </summary>
public const string LiteralCrystalVioletAllergy = "294447005";
/// <summary>
/// Literal for code: BrilliantGreenAllergy
/// </summary>
public const string LiteralBrilliantGreenAllergy = "294448000";
/// <summary>
/// Literal for code: HydrogenPeroxideAllergy
/// </summary>
public const string LiteralHydrogenPeroxideAllergy = "294449008";
/// <summary>
/// Literal for code: AnthelminticsAllergy
/// </summary>
public const string LiteralAnthelminticsAllergy = "294450008";
/// <summary>
/// Literal for code: PiperazineAllergy
/// </summary>
public const string LiteralPiperazineAllergy = "294451007";
/// <summary>
/// Literal for code: PyrantelAllergy
/// </summary>
public const string LiteralPyrantelAllergy = "294452000";
/// <summary>
/// Literal for code: NiclosamideAllergy
/// </summary>
public const string LiteralNiclosamideAllergy = "294453005";
/// <summary>
/// Literal for code: BepheniumAllergy
/// </summary>
public const string LiteralBepheniumAllergy = "294455003";
/// <summary>
/// Literal for code: DiethylcarbamazineAllergy
/// </summary>
public const string LiteralDiethylcarbamazineAllergy = "294456002";
/// <summary>
/// Literal for code: BenzimidazoleAnthelminticAllergy
/// </summary>
public const string LiteralBenzimidazoleAnthelminticAllergy = "294457006";
/// <summary>
/// Literal for code: MebendazoleAllergy
/// </summary>
public const string LiteralMebendazoleAllergy = "294458001";
/// <summary>
/// Literal for code: AlbendazoleAllergy
/// </summary>
public const string LiteralAlbendazoleAllergy = "294459009";
/// <summary>
/// Literal for code: ThiabendazoleAllergy
/// </summary>
public const string LiteralThiabendazoleAllergy = "294460004";
/// <summary>
/// Literal for code: AntibacterialDrugAllergy
/// </summary>
public const string LiteralAntibacterialDrugAllergy = "294461000";
/// <summary>
/// Literal for code: AminoglycosidesAllergy
/// </summary>
public const string LiteralAminoglycosidesAllergy = "294462007";
/// <summary>
/// Literal for code: AmikacinAllergy
/// </summary>
public const string LiteralAmikacinAllergy = "294463002";
/// <summary>
/// Literal for code: KanamycinAllergy
/// </summary>
public const string LiteralKanamycinAllergy = "294464008";
/// <summary>
/// Literal for code: NetilmicinAllergy
/// </summary>
public const string LiteralNetilmicinAllergy = "294465009";
/// <summary>
/// Literal for code: StreptomycinAllergy
/// </summary>
public const string LiteralStreptomycinAllergy = "294466005";
/// <summary>
/// Literal for code: FramycetinAllergy
/// </summary>
public const string LiteralFramycetinAllergy = "294467001";
/// <summary>
/// Literal for code: NeomycinAllergy
/// </summary>
public const string LiteralNeomycinAllergy = "294468006";
/// <summary>
/// Literal for code: GentamicinAllergy
/// </summary>
public const string LiteralGentamicinAllergy = "294469003";
/// <summary>
/// Literal for code: TobramycinAllergy
/// </summary>
public const string LiteralTobramycinAllergy = "294470002";
/// <summary>
/// Literal for code: ClarithromycinAllergy
/// </summary>
public const string LiteralClarithromycinAllergy = "294471003";
/// <summary>
/// Literal for code: AzithromycinAllergy
/// </summary>
public const string LiteralAzithromycinAllergy = "294472005";
/// <summary>
/// Literal for code: SpectinomycinAllergy
/// </summary>
public const string LiteralSpectinomycinAllergy = "294474006";
/// <summary>
/// Literal for code: VancomycinAllergy
/// </summary>
public const string LiteralVancomycinAllergy = "294475007";
/// <summary>
/// Literal for code: TeicoplaninAllergy
/// </summary>
public const string LiteralTeicoplaninAllergy = "294476008";
/// <summary>
/// Literal for code: TrimethoprimAllergy
/// </summary>
public const string LiteralTrimethoprimAllergy = "294477004";
/// <summary>
/// Literal for code: NitrofurantoinAllergy
/// </summary>
public const string LiteralNitrofurantoinAllergy = "294478009";
/// <summary>
/// Literal for code: HexamineHippurateAllergy
/// </summary>
public const string LiteralHexamineHippurateAllergy = "294479001";
/// <summary>
/// Literal for code: MupirocinAllergy
/// </summary>
public const string LiteralMupirocinAllergy = "294480003";
/// <summary>
/// Literal for code: NitrofurazoneAllergy
/// </summary>
public const string LiteralNitrofurazoneAllergy = "294481004";
/// <summary>
/// Literal for code: FusidicAcidAllergy
/// </summary>
public const string LiteralFusidicAcidAllergy = "294482006";
/// <summary>
/// Literal for code: VAL4QuinolonesAllergy
/// </summary>
public const string LiteralVAL4QuinolonesAllergy = "294483001";
/// <summary>
/// Literal for code: AcrosoxacinAllergy
/// </summary>
public const string LiteralAcrosoxacinAllergy = "294484007";
/// <summary>
/// Literal for code: CinoxacinAllergy
/// </summary>
public const string LiteralCinoxacinAllergy = "294485008";
/// <summary>
/// Literal for code: NalidixicAcidAllergy
/// </summary>
public const string LiteralNalidixicAcidAllergy = "294486009";
/// <summary>
/// Literal for code: CiprofloxacinAllergy
/// </summary>
public const string LiteralCiprofloxacinAllergy = "294487000";
/// <summary>
/// Literal for code: EnoxacinAllergy
/// </summary>
public const string LiteralEnoxacinAllergy = "294488005";
/// <summary>
/// Literal for code: OfloxacinAllergy
/// </summary>
public const string LiteralOfloxacinAllergy = "294489002";
/// <summary>
/// Literal for code: NorfloxacinAllergy
/// </summary>
public const string LiteralNorfloxacinAllergy = "294490006";
/// <summary>
/// Literal for code: TemafloxacinAllergy
/// </summary>
public const string LiteralTemafloxacinAllergy = "294491005";
/// <summary>
/// Literal for code: PenicillinaseSensitivePenicillinsAllergy
/// </summary>
public const string LiteralPenicillinaseSensitivePenicillinsAllergy = "294492003";
/// <summary>
/// Literal for code: BenethaminePenicillinAllergy
/// </summary>
public const string LiteralBenethaminePenicillinAllergy = "294494002";
/// <summary>
/// Literal for code: PhenethicillinAllergy
/// </summary>
public const string LiteralPhenethicillinAllergy = "294496000";
/// <summary>
/// Literal for code: PhenoxymethylpenicillinAllergy
/// </summary>
public const string LiteralPhenoxymethylpenicillinAllergy = "294497009";
/// <summary>
/// Literal for code: BenzylpenicillinAllergy
/// </summary>
public const string LiteralBenzylpenicillinAllergy = "294499007";
/// <summary>
/// Literal for code: PenicillinaseResistantPenicillinsAllergy
/// </summary>
public const string LiteralPenicillinaseResistantPenicillinsAllergy = "294500003";
/// <summary>
/// Literal for code: CloxacillinAllergy
/// </summary>
public const string LiteralCloxacillinAllergy = "294501004";
/// <summary>
/// Literal for code: FlucloxacillinAllergy
/// </summary>
public const string LiteralFlucloxacillinAllergy = "294502006";
/// <summary>
/// Literal for code: MethicillinAllergy
/// </summary>
public const string LiteralMethicillinAllergy = "294503001";
/// <summary>
/// Literal for code: BroadSpectrumPenicillinsAllergy
/// </summary>
public const string LiteralBroadSpectrumPenicillinsAllergy = "294504007";
/// <summary>
/// Literal for code: AmoxycillinAllergy
/// </summary>
public const string LiteralAmoxycillinAllergy = "294505008";
/// <summary>
/// Literal for code: AmpicillinAllergy
/// </summary>
public const string LiteralAmpicillinAllergy = "294506009";
/// <summary>
/// Literal for code: CiclacillinAllergy
/// </summary>
public const string LiteralCiclacillinAllergy = "294507000";
/// <summary>
/// Literal for code: MezlocillinAllergy
/// </summary>
public const string LiteralMezlocillinAllergy = "294508005";
/// <summary>
/// Literal for code: PivampicillinAllergy
/// </summary>
public const string LiteralPivampicillinAllergy = "294509002";
/// <summary>
/// Literal for code: CarbenicillinAllergy
/// </summary>
public const string LiteralCarbenicillinAllergy = "294510007";
/// <summary>
/// Literal for code: BacampicillinAllergy
/// </summary>
public const string LiteralBacampicillinAllergy = "294511006";
/// <summary>
/// Literal for code: TalampicillinAllergy
/// </summary>
public const string LiteralTalampicillinAllergy = "294512004";
/// <summary>
/// Literal for code: AntipseudomonalPenicillinsAllergy
/// </summary>
public const string LiteralAntipseudomonalPenicillinsAllergy = "294513009";
/// <summary>
/// Literal for code: TemocillinAllergy
/// </summary>
public const string LiteralTemocillinAllergy = "294514003";
/// <summary>
/// Literal for code: PiperacillinAllergy
/// </summary>
public const string LiteralPiperacillinAllergy = "294515002";
/// <summary>
/// Literal for code: AzlocillinAllergy
/// </summary>
public const string LiteralAzlocillinAllergy = "294516001";
/// <summary>
/// Literal for code: TicarcillinAllergy
/// </summary>
public const string LiteralTicarcillinAllergy = "294517005";
/// <summary>
/// Literal for code: CarfecillinAllergy
/// </summary>
public const string LiteralCarfecillinAllergy = "294518000";
/// <summary>
/// Literal for code: MecillinamAllergy
/// </summary>
public const string LiteralMecillinamAllergy = "294519008";
/// <summary>
/// Literal for code: PivmecillinamAllergy
/// </summary>
public const string LiteralPivmecillinamAllergy = "294520002";
/// <summary>
/// Literal for code: AmpicillinAndCloxacillinAllergy
/// </summary>
public const string LiteralAmpicillinAndCloxacillinAllergy = "294522005";
/// <summary>
/// Literal for code: AmoxicillinPlusClavulanatePotassiumAllergy
/// </summary>
public const string LiteralAmoxicillinPlusClavulanatePotassiumAllergy = "294523000";
/// <summary>
/// Literal for code: AmpicillinPlusFloxacillinAllergy
/// </summary>
public const string LiteralAmpicillinPlusFloxacillinAllergy = "294524006";
/// <summary>
/// Literal for code: PiperacillinAndTazobactamAllergy
/// </summary>
public const string LiteralPiperacillinAndTazobactamAllergy = "294525007";
/// <summary>
/// Literal for code: PivampicillinAndPivmecillinamAllergy
/// </summary>
public const string LiteralPivampicillinAndPivmecillinamAllergy = "294526008";
/// <summary>
/// Literal for code: TicarcillinAndClavulanicAcidAllergy
/// </summary>
public const string LiteralTicarcillinAndClavulanicAcidAllergy = "294527004";
/// <summary>
/// Literal for code: PolymyxinsAllergy
/// </summary>
public const string LiteralPolymyxinsAllergy = "294528009";
/// <summary>
/// Literal for code: ColistinAllergy
/// </summary>
public const string LiteralColistinAllergy = "294529001";
/// <summary>
/// Literal for code: PolymyxinBAllergy
/// </summary>
public const string LiteralPolymyxinBAllergy = "294530006";
/// <summary>
/// Literal for code: CarbapenemAllergy
/// </summary>
public const string LiteralCarbapenemAllergy = "294531005";
/// <summary>
/// Literal for code: CephalosporinAllergy
/// </summary>
public const string LiteralCephalosporinAllergy = "294532003";
/// <summary>
/// Literal for code: FirstGenerationCephalosporinAllergy
/// </summary>
public const string LiteralFirstGenerationCephalosporinAllergy = "294533008";
/// <summary>
/// Literal for code: CefadroxilAllergy
/// </summary>
public const string LiteralCefadroxilAllergy = "294534002";
/// <summary>
/// Literal for code: CephalexinAllergy
/// </summary>
public const string LiteralCephalexinAllergy = "294535001";
/// <summary>
/// Literal for code: CephalothinAllergy
/// </summary>
public const string LiteralCephalothinAllergy = "294536000";
/// <summary>
/// Literal for code: CephazolinAllergy
/// </summary>
public const string LiteralCephazolinAllergy = "294537009";
/// <summary>
/// Literal for code: CephradineAllergy
/// </summary>
public const string LiteralCephradineAllergy = "294538004";
/// <summary>
/// Literal for code: LatamoxefAllergy
/// </summary>
public const string LiteralLatamoxefAllergy = "294539007";
/// <summary>
/// Literal for code: SecondGenerationCephalosporinAllergy
/// </summary>
public const string LiteralSecondGenerationCephalosporinAllergy = "294540009";
/// <summary>
/// Literal for code: CefaclorAllergy
/// </summary>
public const string LiteralCefaclorAllergy = "294541008";
/// <summary>
/// Literal for code: CefuroximeAllergy
/// </summary>
public const string LiteralCefuroximeAllergy = "294542001";
/// <summary>
/// Literal for code: CephamandoleAllergy
/// </summary>
public const string LiteralCephamandoleAllergy = "294543006";
/// <summary>
/// Literal for code: CefotaximeAllergy
/// </summary>
public const string LiteralCefotaximeAllergy = "294545004";
/// <summary>
/// Literal for code: CeftazidimeAllergy
/// </summary>
public const string LiteralCeftazidimeAllergy = "294546003";
/// <summary>
/// Literal for code: CeftizoximeAllergy
/// </summary>
public const string LiteralCeftizoximeAllergy = "294547007";
/// <summary>
/// Literal for code: CefiximeAllergy
/// </summary>
public const string LiteralCefiximeAllergy = "294548002";
/// <summary>
/// Literal for code: CefodizimeAllergy
/// </summary>
public const string LiteralCefodizimeAllergy = "294549005";
/// <summary>
/// Literal for code: CefpodoximeAllergy
/// </summary>
public const string LiteralCefpodoximeAllergy = "294550005";
/// <summary>
/// Literal for code: CeftriaxoneAllergy
/// </summary>
public const string LiteralCeftriaxoneAllergy = "294551009";
/// <summary>
/// Literal for code: CeftibutenAllergy
/// </summary>
public const string LiteralCeftibutenAllergy = "294552002";
/// <summary>
/// Literal for code: CefsulodinAllergy
/// </summary>
public const string LiteralCefsulodinAllergy = "294554001";
/// <summary>
/// Literal for code: FourthGenerationCephalosporinAllergy
/// </summary>
public const string LiteralFourthGenerationCephalosporinAllergy = "294555000";
/// <summary>
/// Literal for code: CefpiromeAllergy
/// </summary>
public const string LiteralCefpiromeAllergy = "294556004";
/// <summary>
/// Literal for code: CephamycinAllergy
/// </summary>
public const string LiteralCephamycinAllergy = "294557008";
/// <summary>
/// Literal for code: CefoxitinAllergy
/// </summary>
public const string LiteralCefoxitinAllergy = "294558003";
/// <summary>
/// Literal for code: FosfomycinAllergy
/// </summary>
public const string LiteralFosfomycinAllergy = "294559006";
/// <summary>
/// Literal for code: ClindamycinAllergy
/// </summary>
public const string LiteralClindamycinAllergy = "294561002";
/// <summary>
/// Literal for code: LincomycinAllergy
/// </summary>
public const string LiteralLincomycinAllergy = "294562009";
/// <summary>
/// Literal for code: MandelicAcidAllergy
/// </summary>
public const string LiteralMandelicAcidAllergy = "294563004";
/// <summary>
/// Literal for code: MonobactamAllergy
/// </summary>
public const string LiteralMonobactamAllergy = "294564005";
/// <summary>
/// Literal for code: AztreonamAllergy
/// </summary>
public const string LiteralAztreonamAllergy = "294565006";
/// <summary>
/// Literal for code: NitroimidazoleAllergy
/// </summary>
public const string LiteralNitroimidazoleAllergy = "294566007";
/// <summary>
/// Literal for code: MetronidazoleAllergy
/// </summary>
public const string LiteralMetronidazoleAllergy = "294567003";
/// <summary>
/// Literal for code: TinidazoleAllergy
/// </summary>
public const string LiteralTinidazoleAllergy = "294568008";
/// <summary>
/// Literal for code: NimorazoleAllergy
/// </summary>
public const string LiteralNimorazoleAllergy = "294569000";
/// <summary>
/// Literal for code: CalciumSulfaloxateAllergy
/// </summary>
public const string LiteralCalciumSulfaloxateAllergy = "294570004";
/// <summary>
/// Literal for code: PhthalylsulfathiazoleAllergy
/// </summary>
public const string LiteralPhthalylsulfathiazoleAllergy = "294571000";
/// <summary>
/// Literal for code: SulfametopyrazineAllergy
/// </summary>
public const string LiteralSulfametopyrazineAllergy = "294572007";
/// <summary>
/// Literal for code: SulfadiazineAllergy
/// </summary>
public const string LiteralSulfadiazineAllergy = "294573002";
/// <summary>
/// Literal for code: SulfadimethoxineAllergy
/// </summary>
public const string LiteralSulfadimethoxineAllergy = "294574008";
/// <summary>
/// Literal for code: SulfadimidineAllergy
/// </summary>
public const string LiteralSulfadimidineAllergy = "294575009";
/// <summary>
/// Literal for code: SulfafurazoleAllergy
/// </summary>
public const string LiteralSulfafurazoleAllergy = "294576005";
/// <summary>
/// Literal for code: SulfaguanidineAllergy
/// </summary>
public const string LiteralSulfaguanidineAllergy = "294577001";
/// <summary>
/// Literal for code: SulfaureaAllergy
/// </summary>
public const string LiteralSulfaureaAllergy = "294578006";
/// <summary>
/// Literal for code: MafenideAllergy
/// </summary>
public const string LiteralMafenideAllergy = "294579003";
/// <summary>
/// Literal for code: SulfacetamideAllergy
/// </summary>
public const string LiteralSulfacetamideAllergy = "294582008";
/// <summary>
/// Literal for code: ClomocyclineSodiumAllergy
/// </summary>
public const string LiteralClomocyclineSodiumAllergy = "294584009";
/// <summary>
/// Literal for code: DoxycyclineAllergy
/// </summary>
public const string LiteralDoxycyclineAllergy = "294585005";
/// <summary>
/// Literal for code: LymecyclineAllergy
/// </summary>
public const string LiteralLymecyclineAllergy = "294586006";
/// <summary>
/// Literal for code: MinocyclineAllergy
/// </summary>
public const string LiteralMinocyclineAllergy = "294587002";
/// <summary>
/// Literal for code: OxytetracyclineAllergy
/// </summary>
public const string LiteralOxytetracyclineAllergy = "294588007";
/// <summary>
/// Literal for code: ChlortetracyclineAllergy
/// </summary>
public const string LiteralChlortetracyclineAllergy = "294590008";
/// <summary>
/// Literal for code: DemeclocyclineAllergy
/// </summary>
public const string LiteralDemeclocyclineAllergy = "294591007";
/// <summary>
/// Literal for code: TetracyclineAllergy
/// </summary>
public const string LiteralTetracyclineAllergy = "294592000";
/// <summary>
/// Literal for code: ChloramphenicolAllergy
/// </summary>
public const string LiteralChloramphenicolAllergy = "294593005";
/// <summary>
/// Literal for code: SulfamethoxazoleAndTrimethoprimAllergy
/// </summary>
public const string LiteralSulfamethoxazoleAndTrimethoprimAllergy = "294594004";
/// <summary>
/// Literal for code: AntiprotozoalDrugAllergy
/// </summary>
public const string LiteralAntiprotozoalDrugAllergy = "294595003";
/// <summary>
/// Literal for code: AtovaquoneAllergy
/// </summary>
public const string LiteralAtovaquoneAllergy = "294596002";
/// <summary>
/// Literal for code: AntimonyAntiprotozoalAllergy
/// </summary>
public const string LiteralAntimonyAntiprotozoalAllergy = "294597006";
/// <summary>
/// Literal for code: SodiumStibogluconateAllergy
/// </summary>
public const string LiteralSodiumStibogluconateAllergy = "294598001";
/// <summary>
/// Literal for code: DiamidineAntiprotozoalAllergy
/// </summary>
public const string LiteralDiamidineAntiprotozoalAllergy = "294599009";
/// <summary>
/// Literal for code: PentamidineAllergy
/// </summary>
public const string LiteralPentamidineAllergy = "294600007";
/// <summary>
/// Literal for code: DichloroacetamideAntiprotozoalAllergy
/// </summary>
public const string LiteralDichloroacetamideAntiprotozoalAllergy = "294601006";
/// <summary>
/// Literal for code: DiloxanideAllergy
/// </summary>
public const string LiteralDiloxanideAllergy = "294602004";
/// <summary>
/// Literal for code: HydroxyquinolineAntiprotozoalAllergy
/// </summary>
public const string LiteralHydroxyquinolineAntiprotozoalAllergy = "294603009";
/// <summary>
/// Literal for code: ClioquinolAllergy
/// </summary>
public const string LiteralClioquinolAllergy = "294604003";
/// <summary>
/// Literal for code: AntimycobacterialAgentAllergy
/// </summary>
public const string LiteralAntimycobacterialAgentAllergy = "294605002";
/// <summary>
/// Literal for code: AntituberculousDrugAllergy
/// </summary>
public const string LiteralAntituberculousDrugAllergy = "294606001";
/// <summary>
/// Literal for code: PyrazinamideAllergy
/// </summary>
public const string LiteralPyrazinamideAllergy = "294607005";
/// <summary>
/// Literal for code: CapreomycinAllergy
/// </summary>
public const string LiteralCapreomycinAllergy = "294609008";
/// <summary>
/// Literal for code: CycloserineAllergy
/// </summary>
public const string LiteralCycloserineAllergy = "294610003";
/// <summary>
/// Literal for code: RifampicinAllergy
/// </summary>
public const string LiteralRifampicinAllergy = "294611004";
/// <summary>
/// Literal for code: RifabutinAllergy
/// </summary>
public const string LiteralRifabutinAllergy = "294612006";
/// <summary>
/// Literal for code: IsoniazidAllergy
/// </summary>
public const string LiteralIsoniazidAllergy = "294614007";
/// <summary>
/// Literal for code: EthambutololAllergy
/// </summary>
public const string LiteralEthambutololAllergy = "294615008";
/// <summary>
/// Literal for code: AntileproticDrugAllergy
/// </summary>
public const string LiteralAntileproticDrugAllergy = "294616009";
/// <summary>
/// Literal for code: DapsoneAllergy
/// </summary>
public const string LiteralDapsoneAllergy = "294617000";
/// <summary>
/// Literal for code: ClofazimineAllergy
/// </summary>
public const string LiteralClofazimineAllergy = "294618005";
/// <summary>
/// Literal for code: BenzylBenzoateAllergy
/// </summary>
public const string LiteralBenzylBenzoateAllergy = "294620008";
/// <summary>
/// Literal for code: MonosulfiramAllergy
/// </summary>
public const string LiteralMonosulfiramAllergy = "294621007";
/// <summary>
/// Literal for code: CarbamatePesticideAllergy
/// </summary>
public const string LiteralCarbamatePesticideAllergy = "294622000";
/// <summary>
/// Literal for code: CarbarylAllergy
/// </summary>
public const string LiteralCarbarylAllergy = "294623005";
/// <summary>
/// Literal for code: ChlorinatedPesticideAllergy
/// </summary>
public const string LiteralChlorinatedPesticideAllergy = "294624004";
/// <summary>
/// Literal for code: LindaneAllergy
/// </summary>
public const string LiteralLindaneAllergy = "294625003";
/// <summary>
/// Literal for code: MalathionAllergy
/// </summary>
public const string LiteralMalathionAllergy = "294627006";
/// <summary>
/// Literal for code: PhenothrinAllergy
/// </summary>
public const string LiteralPhenothrinAllergy = "294629009";
/// <summary>
/// Literal for code: PermethrinAllergy
/// </summary>
public const string LiteralPermethrinAllergy = "294630004";
/// <summary>
/// Literal for code: ImmunoglobulinProductsAllergy
/// </summary>
public const string LiteralImmunoglobulinProductsAllergy = "294632007";
/// <summary>
/// Literal for code: HumanImmunoglobulinAllergy
/// </summary>
public const string LiteralHumanImmunoglobulinAllergy = "294633002";
/// <summary>
/// Literal for code: IntravenousImmunoglobulinAllergy
/// </summary>
public const string LiteralIntravenousImmunoglobulinAllergy = "294635009";
/// <summary>
/// Literal for code: AntiDRhImmunoglobulinAllergy
/// </summary>
public const string LiteralAntiDRhImmunoglobulinAllergy = "294636005";
/// <summary>
/// Literal for code: TetanusImmunoglobulinAllergy
/// </summary>
public const string LiteralTetanusImmunoglobulinAllergy = "294638006";
/// <summary>
/// Literal for code: VaricellaZosterImmunoglobulinAllergy
/// </summary>
public const string LiteralVaricellaZosterImmunoglobulinAllergy = "294639003";
/// <summary>
/// Literal for code: AnthraxVaccineAllergy
/// </summary>
public const string LiteralAnthraxVaccineAllergy = "294641002";
/// <summary>
/// Literal for code: DiphtheriaVaccinesAllergy
/// </summary>
public const string LiteralDiphtheriaVaccinesAllergy = "294642009";
/// <summary>
/// Literal for code: DiphtheriaSingleAntigenVaccineAllergy
/// </summary>
public const string LiteralDiphtheriaSingleAntigenVaccineAllergy = "294643004";
/// <summary>
/// Literal for code: DiphtheriaAndTetanusVaccineAllergy
/// </summary>
public const string LiteralDiphtheriaAndTetanusVaccineAllergy = "294644005";
/// <summary>
/// Literal for code: DiphtheriaAndTetanusAndPertussisVaccineAllergy
/// </summary>
public const string LiteralDiphtheriaAndTetanusAndPertussisVaccineAllergy = "294645006";
/// <summary>
/// Literal for code: HepatitisBVaccineAllergy
/// </summary>
public const string LiteralHepatitisBVaccineAllergy = "294646007";
/// <summary>
/// Literal for code: InfluenzaVaccineAllergy
/// </summary>
public const string LiteralInfluenzaVaccineAllergy = "294647003";
/// <summary>
/// Literal for code: InfluenzaSplitVirionVaccineAllergy
/// </summary>
public const string LiteralInfluenzaSplitVirionVaccineAllergy = "294648008";
/// <summary>
/// Literal for code: InfluenzaSurfaceAntigenVaccineAllergy
/// </summary>
public const string LiteralInfluenzaSurfaceAntigenVaccineAllergy = "294649000";
/// <summary>
/// Literal for code: MumpsVaccineAllergy
/// </summary>
public const string LiteralMumpsVaccineAllergy = "294650000";
/// <summary>
/// Literal for code: PertussisVaccineAllergy
/// </summary>
public const string LiteralPertussisVaccineAllergy = "294651001";
/// <summary>
/// Literal for code: PneumococcalVaccineAllergy
/// </summary>
public const string LiteralPneumococcalVaccineAllergy = "294652008";
/// <summary>
/// Literal for code: PoliomyelitisVaccineAllergy
/// </summary>
public const string LiteralPoliomyelitisVaccineAllergy = "294654009";
/// <summary>
/// Literal for code: RabiesVaccineAllergy
/// </summary>
public const string LiteralRabiesVaccineAllergy = "294655005";
/// <summary>
/// Literal for code: RubellaVaccineAllergy
/// </summary>
public const string LiteralRubellaVaccineAllergy = "294656006";
/// <summary>
/// Literal for code: SmallpoxVaccineAllergy
/// </summary>
public const string LiteralSmallpoxVaccineAllergy = "294657002";
/// <summary>
/// Literal for code: TetanusVaccineAllergy
/// </summary>
public const string LiteralTetanusVaccineAllergy = "294658007";
/// <summary>
/// Literal for code: TyphoidVaccineAllergy
/// </summary>
public const string LiteralTyphoidVaccineAllergy = "294659004";
/// <summary>
/// Literal for code: TyphoidPolysaccharideVaccineAllergy
/// </summary>
public const string LiteralTyphoidPolysaccharideVaccineAllergy = "294660009";
/// <summary>
/// Literal for code: TyphoidWholeCellVaccineAllergy
/// </summary>
public const string LiteralTyphoidWholeCellVaccineAllergy = "294661008";
/// <summary>
/// Literal for code: MeaslesMumpsRubellaVaccineAllergy
/// </summary>
public const string LiteralMeaslesMumpsRubellaVaccineAllergy = "294662001";
/// <summary>
/// Literal for code: HepatitisAVaccineAllergy
/// </summary>
public const string LiteralHepatitisAVaccineAllergy = "294663006";
/// <summary>
/// Literal for code: HaemophilusInfluenzaeTypeBVaccineAllergy
/// </summary>
public const string LiteralHaemophilusInfluenzaeTypeBVaccineAllergy = "294664000";
/// <summary>
/// Literal for code: MeningococcalPolysaccharideVaccineAllergy
/// </summary>
public const string LiteralMeningococcalPolysaccharideVaccineAllergy = "294665004";
/// <summary>
/// Literal for code: ClostridiumBotulinumToxinAllergy
/// </summary>
public const string LiteralClostridiumBotulinumToxinAllergy = "294667007";
/// <summary>
/// Literal for code: BotulismAntitoxinAllergy
/// </summary>
public const string LiteralBotulismAntitoxinAllergy = "294668002";
/// <summary>
/// Literal for code: DiphtheriaAntitoxinAllergy
/// </summary>
public const string LiteralDiphtheriaAntitoxinAllergy = "294669005";
/// <summary>
/// Literal for code: HormonesSyntheticSubstitutesAndAntagonistsAllergy
/// </summary>
public const string LiteralHormonesSyntheticSubstitutesAndAntagonistsAllergy = "294670006";
/// <summary>
/// Literal for code: GlucagonAllergy
/// </summary>
public const string LiteralGlucagonAllergy = "294671005";
/// <summary>
/// Literal for code: CarbimazoleAllergy
/// </summary>
public const string LiteralCarbimazoleAllergy = "294674002";
/// <summary>
/// Literal for code: PropylthiouracilAllergy
/// </summary>
public const string LiteralPropylthiouracilAllergy = "294676000";
/// <summary>
/// Literal for code: CorticosteroidsAllergy
/// </summary>
public const string LiteralCorticosteroidsAllergy = "294677009";
/// <summary>
/// Literal for code: BetamethasoneAllergy
/// </summary>
public const string LiteralBetamethasoneAllergy = "294678004";
/// <summary>
/// Literal for code: HydrocortisoneAllergy
/// </summary>
public const string LiteralHydrocortisoneAllergy = "294679007";
/// <summary>
/// Literal for code: PrednisoneAllergy
/// </summary>
public const string LiteralPrednisoneAllergy = "294682002";
/// <summary>
/// Literal for code: FluorometholoneAllergy
/// </summary>
public const string LiteralFluorometholoneAllergy = "294683007";
/// <summary>
/// Literal for code: FlunisolideAllergy
/// </summary>
public const string LiteralFlunisolideAllergy = "294684001";
/// <summary>
/// Literal for code: DesonideAllergy
/// </summary>
public const string LiteralDesonideAllergy = "294685000";
/// <summary>
/// Literal for code: DesoxymethasoneAllergy
/// </summary>
public const string LiteralDesoxymethasoneAllergy = "294686004";
/// <summary>
/// Literal for code: FluocinonideAllergy
/// </summary>
public const string LiteralFluocinonideAllergy = "294687008";
/// <summary>
/// Literal for code: FluocortoloneAllergy
/// </summary>
public const string LiteralFluocortoloneAllergy = "294688003";
/// <summary>
/// Literal for code: FlurandrenoloneAllergy
/// </summary>
public const string LiteralFlurandrenoloneAllergy = "294689006";
/// <summary>
/// Literal for code: HalcinonideAllergy
/// </summary>
public const string LiteralHalcinonideAllergy = "294690002";
/// <summary>
/// Literal for code: AlclometasoneAllergy
/// </summary>
public const string LiteralAlclometasoneAllergy = "294691003";
/// <summary>
/// Literal for code: BeclomethasoneAllergy
/// </summary>
public const string LiteralBeclomethasoneAllergy = "294692005";
/// <summary>
/// Literal for code: ClobetasolAllergy
/// </summary>
public const string LiteralClobetasolAllergy = "294693000";
/// <summary>
/// Literal for code: ClobetasoneAllergy
/// </summary>
public const string LiteralClobetasoneAllergy = "294694006";
/// <summary>
/// Literal for code: CortisoneAllergy
/// </summary>
public const string LiteralCortisoneAllergy = "294695007";
/// <summary>
/// Literal for code: DiflucortoloneAllergy
/// </summary>
public const string LiteralDiflucortoloneAllergy = "294696008";
/// <summary>
/// Literal for code: FlucloroloneAllergy
/// </summary>
public const string LiteralFlucloroloneAllergy = "294697004";
/// <summary>
/// Literal for code: FludrocortisoneAllergy
/// </summary>
public const string LiteralFludrocortisoneAllergy = "294698009";
/// <summary>
/// Literal for code: FluocinoloneAllergy
/// </summary>
public const string LiteralFluocinoloneAllergy = "294699001";
/// <summary>
/// Literal for code: FluticasoneAllergy
/// </summary>
public const string LiteralFluticasoneAllergy = "294700000";
/// <summary>
/// Literal for code: MometasoneAllergy
/// </summary>
public const string LiteralMometasoneAllergy = "294701001";
/// <summary>
/// Literal for code: DexamethasoneAllergy
/// </summary>
public const string LiteralDexamethasoneAllergy = "294702008";
/// <summary>
/// Literal for code: MethylprednisoloneAllergy
/// </summary>
public const string LiteralMethylprednisoloneAllergy = "294706006";
/// <summary>
/// Literal for code: PrednisoloneAllergy
/// </summary>
public const string LiteralPrednisoloneAllergy = "294707002";
/// <summary>
/// Literal for code: TriamcinoloneAllergy
/// </summary>
public const string LiteralTriamcinoloneAllergy = "294711008";
/// <summary>
/// Literal for code: BudesonideAllergy
/// </summary>
public const string LiteralBudesonideAllergy = "294712001";
/// <summary>
/// Literal for code: InsulinAllergy
/// </summary>
public const string LiteralInsulinAllergy = "294714000";
/// <summary>
/// Literal for code: InsulinZincSuspensionAllergy
/// </summary>
public const string LiteralInsulinZincSuspensionAllergy = "294717007";
/// <summary>
/// Literal for code: IsophaneInsulinAllergy
/// </summary>
public const string LiteralIsophaneInsulinAllergy = "294720004";
/// <summary>
/// Literal for code: ProtamineZincInsulinAllergy
/// </summary>
public const string LiteralProtamineZincInsulinAllergy = "294721000";
/// <summary>
/// Literal for code: HumulinInsulinAllergy
/// </summary>
public const string LiteralHumulinInsulinAllergy = "294723002";
/// <summary>
/// Literal for code: SulfonylureaAllergy
/// </summary>
public const string LiteralSulfonylureaAllergy = "294728006";
/// <summary>
/// Literal for code: AcetohexamideAllergy
/// </summary>
public const string LiteralAcetohexamideAllergy = "294729003";
/// <summary>
/// Literal for code: ChlorpropamideAllergy
/// </summary>
public const string LiteralChlorpropamideAllergy = "294730008";
/// <summary>
/// Literal for code: GlibenclamideAllergy
/// </summary>
public const string LiteralGlibenclamideAllergy = "294731007";
/// <summary>
/// Literal for code: GlibornurideAllergy
/// </summary>
public const string LiteralGlibornurideAllergy = "294732000";
/// <summary>
/// Literal for code: GliclazideAllergy
/// </summary>
public const string LiteralGliclazideAllergy = "294733005";
/// <summary>
/// Literal for code: GlipizideAllergy
/// </summary>
public const string LiteralGlipizideAllergy = "294734004";
/// <summary>
/// Literal for code: GliquidoneAllergy
/// </summary>
public const string LiteralGliquidoneAllergy = "294735003";
/// <summary>
/// Literal for code: GlymidineAllergy
/// </summary>
public const string LiteralGlymidineAllergy = "294736002";
/// <summary>
/// Literal for code: TolazamideAllergy
/// </summary>
public const string LiteralTolazamideAllergy = "294737006";
/// <summary>
/// Literal for code: TolbutamideAllergy
/// </summary>
public const string LiteralTolbutamideAllergy = "294738001";
/// <summary>
/// Literal for code: BiguanideAllergy
/// </summary>
public const string LiteralBiguanideAllergy = "294739009";
/// <summary>
/// Literal for code: MetforminAllergy
/// </summary>
public const string LiteralMetforminAllergy = "294740006";
/// <summary>
/// Literal for code: GuarGumAllergy
/// </summary>
public const string LiteralGuarGumAllergy = "294741005";
/// <summary>
/// Literal for code: AcarboseAllergy
/// </summary>
public const string LiteralAcarboseAllergy = "294742003";
/// <summary>
/// Literal for code: ProgestogenAllergy
/// </summary>
public const string LiteralProgestogenAllergy = "294745001";
/// <summary>
/// Literal for code: AllylestrenolAllergy
/// </summary>
public const string LiteralAllylestrenolAllergy = "294746000";
/// <summary>
/// Literal for code: DydrogesteroneAllergy
/// </summary>
public const string LiteralDydrogesteroneAllergy = "294747009";
/// <summary>
/// Literal for code: ProgesteroneAllergy
/// </summary>
public const string LiteralProgesteroneAllergy = "294748004";
/// <summary>
/// Literal for code: GestronolAllergy
/// </summary>
public const string LiteralGestronolAllergy = "294749007";
/// <summary>
/// Literal for code: HydroxyprogesteroneAllergy
/// </summary>
public const string LiteralHydroxyprogesteroneAllergy = "294750007";
/// <summary>
/// Literal for code: MegestrolAllergy
/// </summary>
public const string LiteralMegestrolAllergy = "294751006";
/// <summary>
/// Literal for code: NorethisteroneAllergy
/// </summary>
public const string LiteralNorethisteroneAllergy = "294752004";
/// <summary>
/// Literal for code: LevonorgestrelAllergy
/// </summary>
public const string LiteralLevonorgestrelAllergy = "294754003";
/// <summary>
/// Literal for code: MedroxyprogesteroneAllergy
/// </summary>
public const string LiteralMedroxyprogesteroneAllergy = "294755002";
/// <summary>
/// Literal for code: AnabolicSteroidsAllergy
/// </summary>
public const string LiteralAnabolicSteroidsAllergy = "294757005";
/// <summary>
/// Literal for code: TiboloneAllergy
/// </summary>
public const string LiteralTiboloneAllergy = "294758000";
/// <summary>
/// Literal for code: OxymetholoneAllergy
/// </summary>
public const string LiteralOxymetholoneAllergy = "294760003";
/// <summary>
/// Literal for code: NandroloneAllergy
/// </summary>
public const string LiteralNandroloneAllergy = "294761004";
/// <summary>
/// Literal for code: StanozololAllergy
/// </summary>
public const string LiteralStanozololAllergy = "294762006";
/// <summary>
/// Literal for code: CyclofenilAllergy
/// </summary>
public const string LiteralCyclofenilAllergy = "294763001";
/// <summary>
/// Literal for code: DanazolAllergy
/// </summary>
public const string LiteralDanazolAllergy = "294764007";
/// <summary>
/// Literal for code: GestrinoneAllergy
/// </summary>
public const string LiteralGestrinoneAllergy = "294765008";
/// <summary>
/// Literal for code: FinasterideAllergy
/// </summary>
public const string LiteralFinasterideAllergy = "294767000";
/// <summary>
/// Literal for code: FlutamideAllergy
/// </summary>
public const string LiteralFlutamideAllergy = "294768005";
/// <summary>
/// Literal for code: BicalutamideAllergy
/// </summary>
public const string LiteralBicalutamideAllergy = "294769002";
/// <summary>
/// Literal for code: CyproteroneAcetateAndEthinylestradiolAllergy
/// </summary>
public const string LiteralCyproteroneAcetateAndEthinylestradiolAllergy = "294770001";
/// <summary>
/// Literal for code: CyproteroneAllergy
/// </summary>
public const string LiteralCyproteroneAllergy = "294771002";
/// <summary>
/// Literal for code: AndrogenAllergy
/// </summary>
public const string LiteralAndrogenAllergy = "294773004";
/// <summary>
/// Literal for code: MesteroloneAllergy
/// </summary>
public const string LiteralMesteroloneAllergy = "294774005";
/// <summary>
/// Literal for code: MethyltestosteroneAllergy
/// </summary>
public const string LiteralMethyltestosteroneAllergy = "294775006";
/// <summary>
/// Literal for code: TestosteroneAllergy
/// </summary>
public const string LiteralTestosteroneAllergy = "294776007";
/// <summary>
/// Literal for code: EstrogenAllergy
/// </summary>
public const string LiteralEstrogenAllergy = "294781003";
/// <summary>
/// Literal for code: EstradiolAllergy
/// </summary>
public const string LiteralEstradiolAllergy = "294782005";
/// <summary>
/// Literal for code: QuinestradolAllergy
/// </summary>
public const string LiteralQuinestradolAllergy = "294787004";
/// <summary>
/// Literal for code: QuinestrolAllergy
/// </summary>
public const string LiteralQuinestrolAllergy = "294788009";
/// <summary>
/// Literal for code: DienestrolAllergy
/// </summary>
public const string LiteralDienestrolAllergy = "294789001";
/// <summary>
/// Literal for code: PolyestradiolPhosphateAllergy
/// </summary>
public const string LiteralPolyestradiolPhosphateAllergy = "294790005";
/// <summary>
/// Literal for code: HemoglobinLPersianGulf
/// </summary>
public const string LiteralHemoglobinLPersianGulf = "2950005";
/// <summary>
/// Literal for code: LactaseDeficiencyInDiseasesOtherThanOfTheSmallIntestine
/// </summary>
public const string LiteralLactaseDeficiencyInDiseasesOtherThanOfTheSmallIntestine = "29512005";
/// <summary>
/// Literal for code: ZincCaprylate
/// </summary>
public const string LiteralZincCaprylate = "2958003";
/// <summary>
/// Literal for code: Coumachlor
/// </summary>
public const string LiteralCoumachlor = "296000";
/// <summary>
/// Literal for code: Dimethoxyamphetamine
/// </summary>
public const string LiteralDimethoxyamphetamine = "2964005";
/// <summary>
/// Literal for code: SyndromeOfCarbohydrateIntolerance
/// </summary>
public const string LiteralSyndromeOfCarbohydrateIntolerance = "29736007";
/// <summary>
/// Literal for code: TrichophytonSchoenleiniiCollagenase
/// </summary>
public const string LiteralTrichophytonSchoenleiniiCollagenase = "2974008";
/// <summary>
/// Literal for code: HLAAwAntigen
/// </summary>
public const string LiteralHLAAwAntigen = "2988007";
/// <summary>
/// Literal for code: MecamylamineHydrochloride
/// </summary>
public const string LiteralMecamylamineHydrochloride = "2991007";
/// <summary>
/// Literal for code: Arecoline
/// </summary>
public const string LiteralArecoline = "2995003";
/// <summary>
/// Literal for code: Barium133
/// </summary>
public const string LiteralBarium133 = "3027009";
/// <summary>
/// Literal for code: DihydroxyaluminumSodiumCarbonate
/// </summary>
public const string LiteralDihydroxyaluminumSodiumCarbonate = "3031003";
/// <summary>
/// Literal for code: Technetium99mTcDisofenin
/// </summary>
public const string LiteralTechnetium99mTcDisofenin = "3040004";
/// <summary>
/// Literal for code: Nitrochlorobenzene
/// </summary>
public const string LiteralNitrochlorobenzene = "3045009";
/// <summary>
/// Literal for code: OrnithineOxoAcidAminotransferase
/// </summary>
public const string LiteralOrnithineOxoAcidAminotransferase = "3052006";
/// <summary>
/// Literal for code: TriiodothyroaceticAcid
/// </summary>
public const string LiteralTriiodothyroaceticAcid = "3066001";
/// <summary>
/// Literal for code: AspartateAmmoniaLigase
/// </summary>
public const string LiteralAspartateAmmoniaLigase = "3070009";
/// <summary>
/// Literal for code: OilOfMaleFern
/// </summary>
public const string LiteralOilOfMaleFern = "3087006";
/// <summary>
/// Literal for code: HemoglobinShuangfeng
/// </summary>
public const string LiteralHemoglobinShuangfeng = "3107005";
/// <summary>
/// Literal for code: AspergillusDeoxyribonucleaseKGreaterThan1LessThan
/// </summary>
public const string LiteralAspergillusDeoxyribonucleaseKGreaterThan1LessThan = "3108000";
/// <summary>
/// Literal for code: BloodGroupAntigenMiddel
/// </summary>
public const string LiteralBloodGroupAntigenMiddel = "3131000";
/// <summary>
/// Literal for code: CefoperazoneSodium
/// </summary>
public const string LiteralCefoperazoneSodium = "3136005";
/// <summary>
/// Literal for code: Azacyclonol
/// </summary>
public const string LiteralAzacyclonol = "3142009";
/// <summary>
/// Literal for code: PenicillicAcid
/// </summary>
public const string LiteralPenicillicAcid = "3145006";
/// <summary>
/// Literal for code: SialateOAcetylesterase
/// </summary>
public const string LiteralSialateOAcetylesterase = "3150000";
/// <summary>
/// Literal for code: LeftUpperLobeMucus
/// </summary>
public const string LiteralLeftUpperLobeMucus = "3151001";
/// <summary>
/// Literal for code: VAL3PhosphoglyceroylPhosphatePolyphosphatePhosphotransferase
/// </summary>
public const string LiteralVAL3PhosphoglyceroylPhosphatePolyphosphatePhosphotransferase = "3155005";
/// <summary>
/// Literal for code: VAL3MethylHistidine
/// </summary>
public const string LiteralVAL3MethylHistidine = "3161008";
/// <summary>
/// Literal for code: HardCoal
/// </summary>
public const string LiteralHardCoal = "3167007";
/// <summary>
/// Literal for code: BloodGroupAntigenNielsen
/// </summary>
public const string LiteralBloodGroupAntigenNielsen = "3187008";
/// <summary>
/// Literal for code: Alpha14GlucanProteinSynthaseUridineDiphosphateForming
/// </summary>
public const string LiteralAlpha14GlucanProteinSynthaseUridineDiphosphateForming = "3193000";
/// <summary>
/// Literal for code: InosineMonophosphate
/// </summary>
public const string LiteralInosineMonophosphate = "3197004";
/// <summary>
/// Literal for code: PancuroniumSodium
/// </summary>
public const string LiteralPancuroniumSodium = "3209002";
/// <summary>
/// Literal for code: ManganeseSulfate
/// </summary>
public const string LiteralManganeseSulfate = "3212004";
/// <summary>
/// Literal for code: OctylphenoxyPHEthanol
/// </summary>
public const string LiteralOctylphenoxyPHEthanol = "322006";
/// <summary>
/// Literal for code: FibrinogenSeattleI
/// </summary>
public const string LiteralFibrinogenSeattleI = "3225007";
/// <summary>
/// Literal for code: OBenzylParachlorophenol
/// </summary>
public const string LiteralOBenzylParachlorophenol = "3232003";
/// <summary>
/// Literal for code: Arsenic76
/// </summary>
public const string LiteralArsenic76 = "327000";
/// <summary>
/// Literal for code: HemoglobinSouthampton
/// </summary>
public const string LiteralHemoglobinSouthampton = "3271000";
/// <summary>
/// Literal for code: TyrosineEsterSulfotransferase
/// </summary>
public const string LiteralTyrosineEsterSulfotransferase = "3273002";
/// <summary>
/// Literal for code: Antimony127
/// </summary>
public const string LiteralAntimony127 = "329002";
/// <summary>
/// Literal for code: Euphorbain
/// </summary>
public const string LiteralEuphorbain = "3300001";
/// <summary>
/// Literal for code: VaginalSecretion
/// </summary>
public const string LiteralVaginalSecretion = "3318003";
/// <summary>
/// Literal for code: Lipopolysaccharide
/// </summary>
public const string LiteralLipopolysaccharide = "3325005";
/// <summary>
/// Literal for code: R20HydroxysteroidDehydrogenase
/// </summary>
public const string LiteralR20HydroxysteroidDehydrogenase = "3339005";
/// <summary>
/// Literal for code: AlphaAmylase
/// </summary>
public const string LiteralAlphaAmylase = "3340007";
/// <summary>
/// Literal for code: CopperIsotope
/// </summary>
public const string LiteralCopperIsotope = "3342004";
/// <summary>
/// Literal for code: HemoglobinBrest
/// </summary>
public const string LiteralHemoglobinBrest = "3346001";
/// <summary>
/// Literal for code: FibrinogenTokyoII
/// </summary>
public const string LiteralFibrinogenTokyoII = "336001";
/// <summary>
/// Literal for code: ImipramineHydrochloride
/// </summary>
public const string LiteralImipramineHydrochloride = "3378009";
/// <summary>
/// Literal for code: Thimerosal
/// </summary>
public const string LiteralThimerosal = "3379001";
/// <summary>
/// Literal for code: AldehydeDehydrogenaseAcceptor
/// </summary>
public const string LiteralAldehydeDehydrogenaseAcceptor = "3392003";
/// <summary>
/// Literal for code: EnzymeVariant
/// </summary>
public const string LiteralEnzymeVariant = "340005";
/// <summary>
/// Literal for code: VAL2Hydroxy3OxoadipateSynthase
/// </summary>
public const string LiteralVAL2Hydroxy3OxoadipateSynthase = "3405005";
/// <summary>
/// Literal for code: LysineIntolerance
/// </summary>
public const string LiteralLysineIntolerance = "340519003";
/// <summary>
/// Literal for code: BisDimethylthiocarbamylDisulfide
/// </summary>
public const string LiteralBisDimethylthiocarbamylDisulfide = "3411008";
/// <summary>
/// Literal for code: HydroxymethylglutarylCoAHydrolase
/// </summary>
public const string LiteralHydroxymethylglutarylCoAHydrolase = "3437006";
/// <summary>
/// Literal for code: BiotinCarboxylase
/// </summary>
public const string LiteralBiotinCarboxylase = "3440006";
/// <summary>
/// Literal for code: DiscontinuedPesticide
/// </summary>
public const string LiteralDiscontinuedPesticide = "3455002";
/// <summary>
/// Literal for code: LAminoAcidDehydrogenase
/// </summary>
public const string LiteralLAminoAcidDehydrogenase = "3463001";
/// <summary>
/// Literal for code: DNATopoisomeraseATPHydrolysing
/// </summary>
public const string LiteralDNATopoisomeraseATPHydrolysing = "3465008";
/// <summary>
/// Literal for code: Dimethylamine
/// </summary>
public const string LiteralDimethylamine = "3466009";
/// <summary>
/// Literal for code: GalactinolSucroseGalactosyltransferase
/// </summary>
public const string LiteralGalactinolSucroseGalactosyltransferase = "3492002";
/// <summary>
/// Literal for code: SmegmaClitoridis
/// </summary>
public const string LiteralSmegmaClitoridis = "3493007";
/// <summary>
/// Literal for code: CystylAminopeptidase
/// </summary>
public const string LiteralCystylAminopeptidase = "3495000";
/// <summary>
/// Literal for code: IsoxsuprineHydrochloride
/// </summary>
public const string LiteralIsoxsuprineHydrochloride = "3501003";
/// <summary>
/// Literal for code: HemoglobinQIndia
/// </summary>
public const string LiteralHemoglobinQIndia = "3523004";
/// <summary>
/// Literal for code: LaryngealMucus
/// </summary>
public const string LiteralLaryngealMucus = "3532002";
/// <summary>
/// Literal for code: BloodGroupAntigenMorrison
/// </summary>
public const string LiteralBloodGroupAntigenMorrison = "3555004";
/// <summary>
/// Literal for code: Cesium129
/// </summary>
public const string LiteralCesium129 = "3579002";
/// <summary>
/// Literal for code: Glucose6Phosphatase
/// </summary>
public const string LiteralGlucose6Phosphatase = "3581000";
/// <summary>
/// Literal for code: MalateDehydrogenaseDecarboxylating
/// </summary>
public const string LiteralMalateDehydrogenaseDecarboxylating = "3587001";
/// <summary>
/// Literal for code: ComplementEnzyme
/// </summary>
public const string LiteralComplementEnzyme = "3588006";
/// <summary>
/// Literal for code: AcebutololHydrochloride
/// </summary>
public const string LiteralAcebutololHydrochloride = "3597005";
/// <summary>
/// Literal for code: Ether
/// </summary>
public const string LiteralEther = "3601005";
/// <summary>
/// Literal for code: WarmAntibody
/// </summary>
public const string LiteralWarmAntibody = "3602003";
/// <summary>
/// Literal for code: EpoxideHydrolase
/// </summary>
public const string LiteralEpoxideHydrolase = "3610002";
/// <summary>
/// Literal for code: Selenium79
/// </summary>
public const string LiteralSelenium79 = "3617004";
/// <summary>
/// Literal for code: FibrinogenSanJuan
/// </summary>
public const string LiteralFibrinogenSanJuan = "363000";
/// <summary>
/// Literal for code: GlucocorticoidReceptor
/// </summary>
public const string LiteralGlucocorticoidReceptor = "3648007";
/// <summary>
/// Literal for code: HemoglobinConstantSprings
/// </summary>
public const string LiteralHemoglobinConstantSprings = "3655009";
/// <summary>
/// Literal for code: FibrinogenCaracas
/// </summary>
public const string LiteralFibrinogenCaracas = "3672002";
/// <summary>
/// Literal for code: PhenylaceticAcid
/// </summary>
public const string LiteralPhenylaceticAcid = "3684000";
/// <summary>
/// Literal for code: HemoglobinMizushi
/// </summary>
public const string LiteralHemoglobinMizushi = "3689005";
/// <summary>
/// Literal for code: SodiumSulfite
/// </summary>
public const string LiteralSodiumSulfite = "3692009";
/// <summary>
/// Literal for code: FibrinogenDusard
/// </summary>
public const string LiteralFibrinogenDusard = "3693004";
/// <summary>
/// Literal for code: BetaGreaterThan2SLessThanGlycoprotein
/// </summary>
public const string LiteralBetaGreaterThan2SLessThanGlycoprotein = "370000";
/// <summary>
/// Literal for code: CDPglycerolGlycerophosphotransferase
/// </summary>
public const string LiteralCDPglycerolGlycerophosphotransferase = "3702007";
/// <summary>
/// Literal for code: ProstaglandinSynthase
/// </summary>
public const string LiteralProstaglandinSynthase = "3710008";
/// <summary>
/// Literal for code: AcylcarnitineHydrolase
/// </summary>
public const string LiteralAcylcarnitineHydrolase = "371001";
/// <summary>
/// Literal for code: CowQuoteSMilk
/// </summary>
public const string LiteralCowQuoteSMilk = "3718001";
/// <summary>
/// Literal for code: ValineTRNALigase
/// </summary>
public const string LiteralValineTRNALigase = "3726009";
/// <summary>
/// Literal for code: HemoglobinFPortRoyal
/// </summary>
public const string LiteralHemoglobinFPortRoyal = "3727000";
/// <summary>
/// Literal for code: BloodGroupAntigenTrPowerAPower
/// </summary>
public const string LiteralBloodGroupAntigenTrPowerAPower = "3730007";
/// <summary>
/// Literal for code: NitrateReductaseNADH
/// </summary>
public const string LiteralNitrateReductaseNADH = "3737005";
/// <summary>
/// Literal for code: ExtracellularCrystal
/// </summary>
public const string LiteralExtracellularCrystal = "3742002";
/// <summary>
/// Literal for code: Gossypol
/// </summary>
public const string LiteralGossypol = "3757009";
/// <summary>
/// Literal for code: Sparteine
/// </summary>
public const string LiteralSparteine = "377002";
/// <summary>
/// Literal for code: Neuromelanin
/// </summary>
public const string LiteralNeuromelanin = "3771001";
/// <summary>
/// Literal for code: CholineDehydrogenase
/// </summary>
public const string LiteralCholineDehydrogenase = "3775005";
/// <summary>
/// Literal for code: XanthineDehydrogenase
/// </summary>
public const string LiteralXanthineDehydrogenase = "3776006";
/// <summary>
/// Literal for code: ArachidonicAcid
/// </summary>
public const string LiteralArachidonicAcid = "3792001";
/// <summary>
/// Literal for code: AcetateKinase
/// </summary>
public const string LiteralAcetateKinase = "3800009";
/// <summary>
/// Literal for code: BloodGroupAntigenC
/// </summary>
public const string LiteralBloodGroupAntigenC = "3807007";
/// <summary>
/// Literal for code: MagnesiumProtoporphyrinMethyltransferase
/// </summary>
public const string LiteralMagnesiumProtoporphyrinMethyltransferase = "3811001";
/// <summary>
/// Literal for code: BerylliumIsotope
/// </summary>
public const string LiteralBerylliumIsotope = "3812008";
/// <summary>
/// Literal for code: VanadiumIsotope
/// </summary>
public const string LiteralVanadiumIsotope = "3816006";
/// <summary>
/// Literal for code: ProchlorperazineEdisylate
/// </summary>
public const string LiteralProchlorperazineEdisylate = "3823007";
/// <summary>
/// Literal for code: Iron
/// </summary>
public const string LiteralIron = "3829006";
/// <summary>
/// Literal for code: CMPNAcetylneuraminateAlphaNAcetylNeuraminyl23BetaGalactosyl13NAcetylGalactosaminideAlpha26Sialyltransferase
/// </summary>
public const string LiteralCMPNAcetylneuraminateAlphaNAcetylNeuraminyl23BetaGalactosyl13NAcetylGalactosaminideAlpha26Sialyltransferase = "3834005";
/// <summary>
/// Literal for code: Glutaminase
/// </summary>
public const string LiteralGlutaminase = "3836007";
/// <summary>
/// Literal for code: ProtoaphinAgluconeDehydrataseCyclizing
/// </summary>
public const string LiteralProtoaphinAgluconeDehydrataseCyclizing = "3844007";
/// <summary>
/// Literal for code: Nitrotoluene
/// </summary>
public const string LiteralNitrotoluene = "3848005";
/// <summary>
/// Literal for code: CarbonBlack
/// </summary>
public const string LiteralCarbonBlack = "3849002";
/// <summary>
/// Literal for code: BisChloroMethylEther
/// </summary>
public const string LiteralBisChloroMethylEther = "3854006";
/// <summary>
/// Literal for code: HydrocodoneBitartrate
/// </summary>
public const string LiteralHydrocodoneBitartrate = "3874004";
/// <summary>
/// Literal for code: Thymidine
/// </summary>
public const string LiteralThymidine = "3892007";
/// <summary>
/// Literal for code: PHydroxybenzoateEster
/// </summary>
public const string LiteralPHydroxybenzoateEster = "3896005";
/// <summary>
/// Literal for code: BloodGroupAntigenQuoteNQuote
/// </summary>
public const string LiteralBloodGroupAntigenQuoteNQuote = "3897001";
/// <summary>
/// Literal for code: RectifiedBirchTarOil
/// </summary>
public const string LiteralRectifiedBirchTarOil = "3906002";
/// <summary>
/// Literal for code: HemoglobinAtago
/// </summary>
public const string LiteralHemoglobinAtago = "3920009";
/// <summary>
/// Literal for code: VAL151Gd
/// </summary>
public const string LiteralVAL151Gd = "392001";
/// <summary>
/// Literal for code: ManufacturedGas
/// </summary>
public const string LiteralManufacturedGas = "3930000";
/// <summary>
/// Literal for code: Copper64
/// </summary>
public const string LiteralCopper64 = "3932008";
/// <summary>
/// Literal for code: MetronidazoleHydrochloride
/// </summary>
public const string LiteralMetronidazoleHydrochloride = "3941003";
/// <summary>
/// Literal for code: TinIsotope
/// </summary>
public const string LiteralTinIsotope = "3945007";
/// <summary>
/// Literal for code: ImmunoglobulinPentamer
/// </summary>
public const string LiteralImmunoglobulinPentamer = "395004";
/// <summary>
/// Literal for code: VAL245Cf
/// </summary>
public const string LiteralVAL245Cf = "3958008";
/// <summary>
/// Literal for code: BloodGroupAntigenRitherford
/// </summary>
public const string LiteralBloodGroupAntigenRitherford = "3961009";
/// <summary>
/// Literal for code: BloodGroupAntigenHEMPAS
/// </summary>
public const string LiteralBloodGroupAntigenHEMPAS = "3976001";
/// <summary>
/// Literal for code: OxaloacetateDecarboxylase
/// </summary>
public const string LiteralOxaloacetateDecarboxylase = "3982003";
/// <summary>
/// Literal for code: NNDimethyltryptamine
/// </summary>
public const string LiteralNNDimethyltryptamine = "3983008";
/// <summary>
/// Literal for code: AlkalinePhosphataseIsoenzymeBoneFraction
/// </summary>
public const string LiteralAlkalinePhosphataseIsoenzymeBoneFraction = "3990003";
/// <summary>
/// Literal for code: HemoglobinTampa
/// </summary>
public const string LiteralHemoglobinTampa = "3994007";
/// <summary>
/// Literal for code: Sulfisomidine
/// </summary>
public const string LiteralSulfisomidine = "4014000";
/// <summary>
/// Literal for code: SoftMetal
/// </summary>
public const string LiteralSoftMetal = "4024008";
/// <summary>
/// Literal for code: Captodiamine
/// </summary>
public const string LiteralCaptodiamine = "4025009";
/// <summary>
/// Literal for code: EtidocaineHydrochloride
/// </summary>
public const string LiteralEtidocaineHydrochloride = "4043008";
/// <summary>
/// Literal for code: Cis12Dihydrobenzene12DiolDehydrogenase
/// </summary>
public const string LiteralCis12Dihydrobenzene12DiolDehydrogenase = "4047009";
/// <summary>
/// Literal for code: VAL1122Tetrachloro12Difluoroethane
/// </summary>
public const string LiteralVAL1122Tetrachloro12Difluoroethane = "4048004";
/// <summary>
/// Literal for code: ChorismateMutase
/// </summary>
public const string LiteralChorismateMutase = "4067000";
/// <summary>
/// Literal for code: ParathyroidHormone
/// </summary>
public const string LiteralParathyroidHormone = "4076007";
/// <summary>
/// Literal for code: DihydrolipoamideSuccinyltransferase
/// </summary>
public const string LiteralDihydrolipoamideSuccinyltransferase = "4077003";
/// <summary>
/// Literal for code: HemoglobinGradyDakar
/// </summary>
public const string LiteralHemoglobinGradyDakar = "4080002";
/// <summary>
/// Literal for code: Enteropeptidase
/// </summary>
public const string LiteralEnteropeptidase = "4091009";
/// <summary>
/// Literal for code: NoKnownHistoryOfDrugAllergy
/// </summary>
public const string LiteralNoKnownHistoryOfDrugAllergy = "409137002";
/// <summary>
/// Literal for code: ApoSAAComplex
/// </summary>
public const string LiteralApoSAAComplex = "4097008";
/// <summary>
/// Literal for code: ChondroitinSulfate
/// </summary>
public const string LiteralChondroitinSulfate = "4104007";
/// <summary>
/// Literal for code: AdenylateCyclase
/// </summary>
public const string LiteralAdenylateCyclase = "4105008";
/// <summary>
/// Literal for code: BloodGroupAntibodyNorlander
/// </summary>
public const string LiteralBloodGroupAntibodyNorlander = "4115002";
/// <summary>
/// Literal for code: Ribose5PhosphateIsomerase
/// </summary>
public const string LiteralRibose5PhosphateIsomerase = "412004";
/// <summary>
/// Literal for code: AcquiredFructoseIntolerance
/// </summary>
public const string LiteralAcquiredFructoseIntolerance = "413427002";
/// <summary>
/// Literal for code: SecButylAcetate
/// </summary>
public const string LiteralSecButylAcetate = "4137009";
/// <summary>
/// Literal for code: LongChainEnoylCoAHydratase
/// </summary>
public const string LiteralLongChainEnoylCoAHydratase = "4153007";
/// <summary>
/// Literal for code: LymphocyteAntigenCD31
/// </summary>
public const string LiteralLymphocyteAntigenCD31 = "4167003";
/// <summary>
/// Literal for code: BloodGroupAntibodyLePowerBHPower
/// </summary>
public const string LiteralBloodGroupAntibodyLePowerBHPower = "4169000";
/// <summary>
/// Literal for code: HemoglobinLongIslandMarseille
/// </summary>
public const string LiteralHemoglobinLongIslandMarseille = "4177001";
/// <summary>
/// Literal for code: PropensityToAdverseReactionsToSubstance
/// </summary>
public const string LiteralPropensityToAdverseReactionsToSubstance = "418038007";
/// <summary>
/// Literal for code: CDPdiacylglycerolSerineOPhosphatidylTransferase
/// </summary>
public const string LiteralCDPdiacylglycerolSerineOPhosphatidylTransferase = "4182008";
/// <summary>
/// Literal for code: FibrinogenSydneyII
/// </summary>
public const string LiteralFibrinogenSydneyII = "4188007";
/// <summary>
/// Literal for code: Neriifolin
/// </summary>
public const string LiteralNeriifolin = "4200007";
/// <summary>
/// Literal for code: VAL6AminohexanoateDimerHydrolase
/// </summary>
public const string LiteralVAL6AminohexanoateDimerHydrolase = "4201006";
/// <summary>
/// Literal for code: ImipraminePamoate
/// </summary>
public const string LiteralImipraminePamoate = "4203009";
/// <summary>
/// Literal for code: CortisoneBetaReductase
/// </summary>
public const string LiteralCortisoneBetaReductase = "4207005";
/// <summary>
/// Literal for code: FluorosilicateSalt
/// </summary>
public const string LiteralFluorosilicateSalt = "4217000";
/// <summary>
/// Literal for code: ImmunoglobulinGMGreaterThan23LessThanAllotype
/// </summary>
public const string LiteralImmunoglobulinGMGreaterThan23LessThanAllotype = "4218005";
/// <summary>
/// Literal for code: GalliumIsotope
/// </summary>
public const string LiteralGalliumIsotope = "4231000";
/// <summary>
/// Literal for code: GlycerolDehydrogenase
/// </summary>
public const string LiteralGlycerolDehydrogenase = "4239003";
/// <summary>
/// Literal for code: CitramalylCoALyase
/// </summary>
public const string LiteralCitramalylCoALyase = "424006";
/// <summary>
/// Literal for code: HemoglobinNagoya
/// </summary>
public const string LiteralHemoglobinNagoya = "425007";
/// <summary>
/// Literal for code: Americium241
/// </summary>
public const string LiteralAmericium241 = "4255005";
/// <summary>
/// Literal for code: NoKnownInsectAllergy
/// </summary>
public const string LiteralNoKnownInsectAllergy = "428197003";
/// <summary>
/// Literal for code: NoKnownEnvironmentalAllergy
/// </summary>
public const string LiteralNoKnownEnvironmentalAllergy = "428607008";
/// <summary>
/// Literal for code: KeyholeLimpetHemocyanin
/// </summary>
public const string LiteralKeyholeLimpetHemocyanin = "4289006";
/// <summary>
/// Literal for code: LinamarinSynthase
/// </summary>
public const string LiteralLinamarinSynthase = "4290002";
/// <summary>
/// Literal for code: NoKnownFoodAllergy
/// </summary>
public const string LiteralNoKnownFoodAllergy = "429625007";
/// <summary>
/// Literal for code: BloodGroupAntibodyAllchurch
/// </summary>
public const string LiteralBloodGroupAntibodyAllchurch = "4314009";
/// <summary>
/// Literal for code: CarminicAcid
/// </summary>
public const string LiteralCarminicAcid = "432003";
/// <summary>
/// Literal for code: TarOil
/// </summary>
public const string LiteralTarOil = "4334005";
/// <summary>
/// Literal for code: VAL2Aminopyridine
/// </summary>
public const string LiteralVAL2Aminopyridine = "4342006";
/// <summary>
/// Literal for code: DibutylPhthalate
/// </summary>
public const string LiteralDibutylPhthalate = "4353000";
/// <summary>
/// Literal for code: CoagulationFactorIXSanDimasVariant
/// </summary>
public const string LiteralCoagulationFactorIXSanDimasVariant = "4355007";
/// <summary>
/// Literal for code: VAL4CoumarateCoALigase
/// </summary>
public const string LiteralVAL4CoumarateCoALigase = "4362003";
/// <summary>
/// Literal for code: Acetone
/// </summary>
public const string LiteralAcetone = "4370008";
/// <summary>
/// Literal for code: VAL2HydroxyglutarateDehydrogenase
/// </summary>
public const string LiteralVAL2HydroxyglutarateDehydrogenase = "438004";
/// <summary>
/// Literal for code: BloodGroupAntigenFedor
/// </summary>
public const string LiteralBloodGroupAntigenFedor = "4393002";
/// <summary>
/// Literal for code: BloodGroupAntibodyHGreaterThanTLessThan
/// </summary>
public const string LiteralBloodGroupAntibodyHGreaterThanTLessThan = "4401009";
/// <summary>
/// Literal for code: Benzypyrinium
/// </summary>
public const string LiteralBenzypyrinium = "4413004";
/// <summary>
/// Literal for code: BloodGroupAntigen
/// </summary>
public const string LiteralBloodGroupAntigen = "4422003";
/// <summary>
/// Literal for code: FibrinogenNewYorkII
/// </summary>
public const string LiteralFibrinogenNewYorkII = "4423008";
/// <summary>
/// Literal for code: BloodGroupAntibodyBinge
/// </summary>
public const string LiteralBloodGroupAntibodyBinge = "4425001";
/// <summary>
/// Literal for code: SulfurylFluoride
/// </summary>
public const string LiteralSulfurylFluoride = "4435007";
/// <summary>
/// Literal for code: VAL127Cs
/// </summary>
public const string LiteralVAL127Cs = "4437004";
/// <summary>
/// Literal for code: Californium244
/// </summary>
public const string LiteralCalifornium244 = "4471008";
/// <summary>
/// Literal for code: HemoglobinBrockton
/// </summary>
public const string LiteralHemoglobinBrockton = "4479005";
/// <summary>
/// Literal for code: Sulfaethidole
/// </summary>
public const string LiteralSulfaethidole = "4480008";
/// <summary>
/// Literal for code: PlantPhenanthreneToxin
/// </summary>
public const string LiteralPlantPhenanthreneToxin = "4509009";
/// <summary>
/// Literal for code: VAL208Bi
/// </summary>
public const string LiteralVAL208Bi = "4534009";
/// <summary>
/// Literal for code: ADPDeaminase
/// </summary>
public const string LiteralADPDeaminase = "4540002";
/// <summary>
/// Literal for code: AliphaticCarboxylicAcidC140
/// </summary>
public const string LiteralAliphaticCarboxylicAcidC140 = "4546008";
/// <summary>
/// Literal for code: BloodGroupAntibodyRils
/// </summary>
public const string LiteralBloodGroupAntibodyRils = "4555006";
/// <summary>
/// Literal for code: HemoglobinMizuho
/// </summary>
public const string LiteralHemoglobinMizuho = "4560005";
/// <summary>
/// Literal for code: ArginineDecarboxylase
/// </summary>
public const string LiteralArginineDecarboxylase = "4561009";
/// <summary>
/// Literal for code: BloodGroupAntibodySisson
/// </summary>
public const string LiteralBloodGroupAntibodySisson = "4564001";
/// <summary>
/// Literal for code: Galactose1PhosphateThymidylyltransferase
/// </summary>
public const string LiteralGalactose1PhosphateThymidylyltransferase = "4567008";
/// <summary>
/// Literal for code: BloodGroupAntigenNPowerAPower
/// </summary>
public const string LiteralBloodGroupAntigenNPowerAPower = "4582003";
/// <summary>
/// Literal for code: BloodGroupAntigenKam
/// </summary>
public const string LiteralBloodGroupAntigenKam = "4591004";
/// <summary>
/// Literal for code: SenileCardiacProtein
/// </summary>
public const string LiteralSenileCardiacProtein = "4610008";
/// <summary>
/// Literal for code: TriclobisoniumChloride
/// </summary>
public const string LiteralTriclobisoniumChloride = "4616002";
/// <summary>
/// Literal for code: UreaseATPHydrolysing
/// </summary>
public const string LiteralUreaseATPHydrolysing = "462009";
/// <summary>
/// Literal for code: HypoglycinB
/// </summary>
public const string LiteralHypoglycinB = "4629002";
/// <summary>
/// Literal for code: ArterialBlood
/// </summary>
public const string LiteralArterialBlood = "4635002";
/// <summary>
/// Literal for code: CalfThymusRibonucleaseH
/// </summary>
public const string LiteralCalfThymusRibonucleaseH = "4643007";
/// <summary>
/// Literal for code: AlcianBlue8GX
/// </summary>
public const string LiteralAlcianBlue8GX = "4656000";
/// <summary>
/// Literal for code: VAL23DihydroxybenzoateSerineLigase
/// </summary>
public const string LiteralVAL23DihydroxybenzoateSerineLigase = "4674009";
/// <summary>
/// Literal for code: PotassiumPermanganate
/// </summary>
public const string LiteralPotassiumPermanganate = "4681002";
/// <summary>
/// Literal for code: Chromium51CrAlbumin
/// </summary>
public const string LiteralChromium51CrAlbumin = "4693006";
/// <summary>
/// Literal for code: BeefInsulin
/// </summary>
public const string LiteralBeefInsulin = "4700006";
/// <summary>
/// Literal for code: ChlorineMonoxide
/// </summary>
public const string LiteralChlorineMonoxide = "4706000";
/// <summary>
/// Literal for code: Osmium183m
/// </summary>
public const string LiteralOsmium183m = "4714006";
/// <summary>
/// Literal for code: VegetableTextileFiber
/// </summary>
public const string LiteralVegetableTextileFiber = "472007";
/// <summary>
/// Literal for code: ScopulariopsisProteinase
/// </summary>
public const string LiteralScopulariopsisProteinase = "4728000";
/// <summary>
/// Literal for code: OncogeneProteinP55VMYC
/// </summary>
public const string LiteralOncogeneProteinP55VMYC = "4732006";
/// <summary>
/// Literal for code: HemoglobinMito
/// </summary>
public const string LiteralHemoglobinMito = "4746006";
/// <summary>
/// Literal for code: LymphocyteAntigenCD1b
/// </summary>
public const string LiteralLymphocyteAntigenCD1b = "476005";
/// <summary>
/// Literal for code: LymphocyteAntigenCD30
/// </summary>
public const string LiteralLymphocyteAntigenCD30 = "4761007";
/// <summary>
/// Literal for code: PlateletAntigenHPA3b
/// </summary>
public const string LiteralPlateletAntigenHPA3b = "4762000";
/// <summary>
/// Literal for code: Fluroxene
/// </summary>
public const string LiteralFluroxene = "4777008";
/// <summary>
/// Literal for code: SecbutabarbitalSodium
/// </summary>
public const string LiteralSecbutabarbitalSodium = "4780009";
/// <summary>
/// Literal for code: Beta14MannosylGlycoproteinBeta14NAcetylglucosaminyltransferase
/// </summary>
public const string LiteralBeta14MannosylGlycoproteinBeta14NAcetylglucosaminyltransferase = "4786003";
/// <summary>
/// Literal for code: BloodGroupAntibodyBultar
/// </summary>
public const string LiteralBloodGroupAntibodyBultar = "4789005";
/// <summary>
/// Literal for code: AzobenzeneReductase
/// </summary>
public const string LiteralAzobenzeneReductase = "4793004";
/// <summary>
/// Literal for code: Valethamate
/// </summary>
public const string LiteralValethamate = "4814001";
/// <summary>
/// Literal for code: AmineOxidaseFlavinContaining
/// </summary>
public const string LiteralAmineOxidaseFlavinContaining = "4824009";
/// <summary>
/// Literal for code: PeptidylGlycinamidase
/// </summary>
public const string LiteralPeptidylGlycinamidase = "4825005";
/// <summary>
/// Literal for code: Arabinose5PhosphateIsomerase
/// </summary>
public const string LiteralArabinose5PhosphateIsomerase = "4831008";
/// <summary>
/// Literal for code: Technetium99mTcMebrofenin
/// </summary>
public const string LiteralTechnetium99mTcMebrofenin = "4832001";
/// <summary>
/// Literal for code: GlucanEndo13AlphaGlucosidase
/// </summary>
public const string LiteralGlucanEndo13AlphaGlucosidase = "4833006";
/// <summary>
/// Literal for code: VAL33QuoteTGreaterThan2LessThan
/// </summary>
public const string LiteralVAL33QuoteTGreaterThan2LessThan = "4844003";
/// <summary>
/// Literal for code: AdenylicAcid
/// </summary>
public const string LiteralAdenylicAcid = "4864008";
/// <summary>
/// Literal for code: Glucosulfone
/// </summary>
public const string LiteralGlucosulfone = "4872005";
/// <summary>
/// Literal for code: HLADw3Antigen
/// </summary>
public const string LiteralHLADw3Antigen = "4878009";
/// <summary>
/// Literal for code: Ichthyoallyeinotoxin
/// </summary>
public const string LiteralIchthyoallyeinotoxin = "4882006";
/// <summary>
/// Literal for code: Xylulokinase
/// </summary>
public const string LiteralXylulokinase = "4889002";
/// <summary>
/// Literal for code: PyruvateOxidaseCoAAcetylating
/// </summary>
public const string LiteralPyruvateOxidaseCoAAcetylating = "4901003";
/// <summary>
/// Literal for code: OncogeneProteinVABC
/// </summary>
public const string LiteralOncogeneProteinVABC = "4925006";
/// <summary>
/// Literal for code: LymphocyteAntigenCD15
/// </summary>
public const string LiteralLymphocyteAntigenCD15 = "4933007";
/// <summary>
/// Literal for code: TattooDye
/// </summary>
public const string LiteralTattooDye = "4940008";
/// <summary>
/// Literal for code: NeoplasticStructuralGene
/// </summary>
public const string LiteralNeoplasticStructuralGene = "4955004";
/// <summary>
/// Literal for code: TreeBark
/// </summary>
public const string LiteralTreeBark = "4962008";
/// <summary>
/// Literal for code: NeutralAminoAcid
/// </summary>
public const string LiteralNeutralAminoAcid = "4963003";
/// <summary>
/// Literal for code: GlutathioneReductaseNADPH
/// </summary>
public const string LiteralGlutathioneReductaseNADPH = "4965005";
/// <summary>
/// Literal for code: Acumentin
/// </summary>
public const string LiteralAcumentin = "4968007";
/// <summary>
/// Literal for code: Nitrilase
/// </summary>
public const string LiteralNitrilase = "498001";
/// <summary>
/// Literal for code: MagnesiumBorate
/// </summary>
public const string LiteralMagnesiumBorate = "4986005";
/// <summary>
/// Literal for code: HemoglobinSwanRiver
/// </summary>
public const string LiteralHemoglobinSwanRiver = "5003005";
/// <summary>
/// Literal for code: BloodGroupAntibodyPanzar
/// </summary>
public const string LiteralBloodGroupAntibodyPanzar = "5004004";
/// <summary>
/// Literal for code: Papain
/// </summary>
public const string LiteralPapain = "5007006";
/// <summary>
/// Literal for code: BloodGroupAntibodySfPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodySfPowerAPower = "501001";
/// <summary>
/// Literal for code: FreshWater
/// </summary>
public const string LiteralFreshWater = "5024000";
/// <summary>
/// Literal for code: VAL33QuoteDichlorobenzidine
/// </summary>
public const string LiteralVAL33QuoteDichlorobenzidine = "5031001";
/// <summary>
/// Literal for code: Cesium
/// </summary>
public const string LiteralCesium = "5040002";
/// <summary>
/// Literal for code: ErythrosinY
/// </summary>
public const string LiteralErythrosinY = "5043000";
/// <summary>
/// Literal for code: OncogeneProteinTCL4
/// </summary>
public const string LiteralOncogeneProteinTCL4 = "5045007";
/// <summary>
/// Literal for code: BloodGroupAntibodyMQuote
/// </summary>
public const string LiteralBloodGroupAntibodyMQuote = "505005";
/// <summary>
/// Literal for code: VAL97Tc
/// </summary>
public const string LiteralVAL97Tc = "5059000";
/// <summary>
/// Literal for code: Cesium132
/// </summary>
public const string LiteralCesium132 = "5060005";
/// <summary>
/// Literal for code: VAL3OxosteroidDeltaPower1PowerDehydrogenase
/// </summary>
public const string LiteralVAL3OxosteroidDeltaPower1PowerDehydrogenase = "506006";
/// <summary>
/// Literal for code: ProteinMethionineSOxideReductase
/// </summary>
public const string LiteralProteinMethionineSOxideReductase = "5061009";
/// <summary>
/// Literal for code: BloodGroupAntibodyD1276
/// </summary>
public const string LiteralBloodGroupAntibodyD1276 = "5064001";
/// <summary>
/// Literal for code: BloodGroupAntigenHrPowerBPower
/// </summary>
public const string LiteralBloodGroupAntigenHrPowerBPower = "5081005";
/// <summary>
/// Literal for code: Gelsolin
/// </summary>
public const string LiteralGelsolin = "5086000";
/// <summary>
/// Literal for code: BloodGroupAntigenRios
/// </summary>
public const string LiteralBloodGroupAntigenRios = "5094007";
/// <summary>
/// Literal for code: FennelOil
/// </summary>
public const string LiteralFennelOil = "5098005";
/// <summary>
/// Literal for code: MethylatedDNAProteinCysteineMethyltransferase
/// </summary>
public const string LiteralMethylatedDNAProteinCysteineMethyltransferase = "5109006";
/// <summary>
/// Literal for code: CoagulationFactorIIHoustonVariant
/// </summary>
public const string LiteralCoagulationFactorIIHoustonVariant = "5142007";
/// <summary>
/// Literal for code: BloodGroupAntigenGiaigue
/// </summary>
public const string LiteralBloodGroupAntigenGiaigue = "515004";
/// <summary>
/// Literal for code: MetallicCompound
/// </summary>
public const string LiteralMetallicCompound = "5160007";
/// <summary>
/// Literal for code: Scombrotoxin
/// </summary>
public const string LiteralScombrotoxin = "5163009";
/// <summary>
/// Literal for code: ZincChlorideFumes
/// </summary>
public const string LiteralZincChlorideFumes = "5167005";
/// <summary>
/// Literal for code: CoagulationFactorXa
/// </summary>
public const string LiteralCoagulationFactorXa = "5172001";
/// <summary>
/// Literal for code: ConnectiveTissueFiber
/// </summary>
public const string LiteralConnectiveTissueFiber = "5179005";
/// <summary>
/// Literal for code: FreeProteinS
/// </summary>
public const string LiteralFreeProteinS = "519005";
/// <summary>
/// Literal for code: TransEpoxysuccinateHydrolase
/// </summary>
public const string LiteralTransEpoxysuccinateHydrolase = "5200001";
/// <summary>
/// Literal for code: CyanateCompound
/// </summary>
public const string LiteralCyanateCompound = "5206007";
/// <summary>
/// Literal for code: AcquiredMonosaccharideMalabsorption
/// </summary>
public const string LiteralAcquiredMonosaccharideMalabsorption = "52070001";
/// <summary>
/// Literal for code: Mercury197
/// </summary>
public const string LiteralMercury197 = "521000";
/// <summary>
/// Literal for code: Bacitracin
/// </summary>
public const string LiteralBacitracin = "5220000";
/// <summary>
/// Literal for code: FlavoneOPower7PowerBetaGlucosyltransferase
/// </summary>
public const string LiteralFlavoneOPower7PowerBetaGlucosyltransferase = "5226006";
/// <summary>
/// Literal for code: ThymusIndependentAntigen
/// </summary>
public const string LiteralThymusIndependentAntigen = "5250008";
/// <summary>
/// Literal for code: HafniumRadioisotope
/// </summary>
public const string LiteralHafniumRadioisotope = "5252000";
/// <summary>
/// Literal for code: HemoglobinWoodville
/// </summary>
public const string LiteralHemoglobinWoodville = "5253005";
/// <summary>
/// Literal for code: BloodGroupAntigenBraden
/// </summary>
public const string LiteralBloodGroupAntigenBraden = "5259009";
/// <summary>
/// Literal for code: Scilliroside
/// </summary>
public const string LiteralScilliroside = "5289002";
/// <summary>
/// Literal for code: Guanosine
/// </summary>
public const string LiteralGuanosine = "529003";
/// <summary>
/// Literal for code: HemoglobinHoshida
/// </summary>
public const string LiteralHemoglobinHoshida = "5303002";
/// <summary>
/// Literal for code: Polynucleotide
/// </summary>
public const string LiteralPolynucleotide = "5305009";
/// <summary>
/// Literal for code: BloodGroupAntigenHamet
/// </summary>
public const string LiteralBloodGroupAntigenHamet = "5307001";
/// <summary>
/// Literal for code: Zinc65
/// </summary>
public const string LiteralZinc65 = "5312000";
/// <summary>
/// Literal for code: UridineDiphosphateGlucuronicAcid
/// </summary>
public const string LiteralUridineDiphosphateGlucuronicAcid = "5323001";
/// <summary>
/// Literal for code: ActinBindingProtein
/// </summary>
public const string LiteralActinBindingProtein = "5330007";
/// <summary>
/// Literal for code: LGlycolDehydrogenase
/// </summary>
public const string LiteralLGlycolDehydrogenase = "5339008";
/// <summary>
/// Literal for code: BloodGroupAntigenSwietlik
/// </summary>
public const string LiteralBloodGroupAntigenSwietlik = "5340005";
/// <summary>
/// Literal for code: VAL23Dihydroxybenzoate34Dioxygenase
/// </summary>
public const string LiteralVAL23Dihydroxybenzoate34Dioxygenase = "538001";
/// <summary>
/// Literal for code: PropyleneGlycolMonomethylEther
/// </summary>
public const string LiteralPropyleneGlycolMonomethylEther = "5392001";
/// <summary>
/// Literal for code: PyridoxaminePhosphateOxidase
/// </summary>
public const string LiteralPyridoxaminePhosphateOxidase = "5395004";
/// <summary>
/// Literal for code: LymphocyteAntigenCD45RA
/// </summary>
public const string LiteralLymphocyteAntigenCD45RA = "5404007";
/// <summary>
/// Literal for code: VAL60Co
/// </summary>
public const string LiteralVAL60Co = "5405008";
/// <summary>
/// Literal for code: BetaLArabinosidase
/// </summary>
public const string LiteralBetaLArabinosidase = "5406009";
/// <summary>
/// Literal for code: AccessorySinusMucus
/// </summary>
public const string LiteralAccessorySinusMucus = "5420002";
/// <summary>
/// Literal for code: LactoseIntoleranceInChildrenWithoutLactaseDeficiency
/// </summary>
public const string LiteralLactoseIntoleranceInChildrenWithoutLactaseDeficiency = "54250004";
/// <summary>
/// Literal for code: BloodGroupAntibodyDoPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyDoPowerAPower = "5439007";
/// <summary>
/// Literal for code: PageBlue83
/// </summary>
public const string LiteralPageBlue83 = "5442001";
/// <summary>
/// Literal for code: IridiumIsotope
/// </summary>
public const string LiteralIridiumIsotope = "5453007";
/// <summary>
/// Literal for code: HemoglobinGCoushatta
/// </summary>
public const string LiteralHemoglobinGCoushatta = "5471000";
/// <summary>
/// Literal for code: PropionateCoALigase
/// </summary>
public const string LiteralPropionateCoALigase = "5474008";
/// <summary>
/// Literal for code: FerricSubsulfate
/// </summary>
public const string LiteralFerricSubsulfate = "5477001";
/// <summary>
/// Literal for code: OxalateCoATransferase
/// </summary>
public const string LiteralOxalateCoATransferase = "5483003";
/// <summary>
/// Literal for code: BloodGroupAntigenFuerhart
/// </summary>
public const string LiteralBloodGroupAntigenFuerhart = "5504009";
/// <summary>
/// Literal for code: InosinateNucleosidase
/// </summary>
public const string LiteralInosinateNucleosidase = "5511008";
/// <summary>
/// Literal for code: ImmunoglobulinAHChain
/// </summary>
public const string LiteralImmunoglobulinAHChain = "5513006";
/// <summary>
/// Literal for code: RhodiumFumes
/// </summary>
public const string LiteralRhodiumFumes = "5515004";
/// <summary>
/// Literal for code: BloodGroupAntibodyKpPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyKpPowerAPower = "5533005";
/// <summary>
/// Literal for code: ImmunoglobulinDHChain
/// </summary>
public const string LiteralImmunoglobulinDHChain = "5537006";
/// <summary>
/// Literal for code: Calcium
/// </summary>
public const string LiteralCalcium = "5540006";
/// <summary>
/// Literal for code: VAL233Pu
/// </summary>
public const string LiteralVAL233Pu = "5547009";
/// <summary>
/// Literal for code: VAL2Dehydro3DeoxyDPentonateAldolase
/// </summary>
public const string LiteralVAL2Dehydro3DeoxyDPentonateAldolase = "5548004";
/// <summary>
/// Literal for code: HemoglobinHijiyama
/// </summary>
public const string LiteralHemoglobinHijiyama = "5568005";
/// <summary>
/// Literal for code: BloodGroupAntigenOca
/// </summary>
public const string LiteralBloodGroupAntigenOca = "5573004";
/// <summary>
/// Literal for code: LicodioneOPower2QuotePowerMethyltransferase
/// </summary>
public const string LiteralLicodioneOPower2QuotePowerMethyltransferase = "5589001";
/// <summary>
/// Literal for code: BerylliumRadioisotope
/// </summary>
public const string LiteralBerylliumRadioisotope = "5590005";
/// <summary>
/// Literal for code: HemoglobinIHighWycombe
/// </summary>
public const string LiteralHemoglobinIHighWycombe = "5628003";
/// <summary>
/// Literal for code: CytidylicAcid
/// </summary>
public const string LiteralCytidylicAcid = "5629006";
/// <summary>
/// Literal for code: HLADQw6Antigen
/// </summary>
public const string LiteralHLADQw6Antigen = "5637003";
/// <summary>
/// Literal for code: ValproateSemisodium
/// </summary>
public const string LiteralValproateSemisodium = "5641004";
/// <summary>
/// Literal for code: GriseofulvinUltramicrosize
/// </summary>
public const string LiteralGriseofulvinUltramicrosize = "5647000";
/// <summary>
/// Literal for code: Antimony116m
/// </summary>
public const string LiteralAntimony116m = "5656008";
/// <summary>
/// Literal for code: HemoglobinJTongariki
/// </summary>
public const string LiteralHemoglobinJTongariki = "5659001";
/// <summary>
/// Literal for code: Acrosin
/// </summary>
public const string LiteralAcrosin = "566009";
/// <summary>
/// Literal for code: GoldIsotope
/// </summary>
public const string LiteralGoldIsotope = "5670008";
/// <summary>
/// Literal for code: CeftizoximeSodium
/// </summary>
public const string LiteralCeftizoximeSodium = "5681006";
/// <summary>
/// Literal for code: AbsorbableGelatinSponge
/// </summary>
public const string LiteralAbsorbableGelatinSponge = "5691000";
/// <summary>
/// Literal for code: Cyanocobalamin58Co
/// </summary>
public const string LiteralCyanocobalamin58Co = "5692007";
/// <summary>
/// Literal for code: SomatomedinC
/// </summary>
public const string LiteralSomatomedinC = "5699003";
/// <summary>
/// Literal for code: BloodGroupAntibodyGomez
/// </summary>
public const string LiteralBloodGroupAntibodyGomez = "5700002";
/// <summary>
/// Literal for code: VAL106mAg
/// </summary>
public const string LiteralVAL106mAg = "5702005";
/// <summary>
/// Literal for code: Galactokinase
/// </summary>
public const string LiteralGalactokinase = "5704006";
/// <summary>
/// Literal for code: VAL3HydroxypropionAldehydeReductase
/// </summary>
public const string LiteralVAL3HydroxypropionAldehydeReductase = "5705007";
/// <summary>
/// Literal for code: Stramonium
/// </summary>
public const string LiteralStramonium = "5739006";
/// <summary>
/// Literal for code: VAL118mSb
/// </summary>
public const string LiteralVAL118mSb = "5746002";
/// <summary>
/// Literal for code: HLACw8Antigen
/// </summary>
public const string LiteralHLACw8Antigen = "5757007";
/// <summary>
/// Literal for code: BloodGroupAntibodyDuck
/// </summary>
public const string LiteralBloodGroupAntibodyDuck = "576007";
/// <summary>
/// Literal for code: HeterogeneousNuclearRNA
/// </summary>
public const string LiteralHeterogeneousNuclearRNA = "5762008";
/// <summary>
/// Literal for code: VAL242Pu
/// </summary>
public const string LiteralVAL242Pu = "5764009";
/// <summary>
/// Literal for code: Sulfamerazine
/// </summary>
public const string LiteralSulfamerazine = "5767002";
/// <summary>
/// Literal for code: WhitePetrolatum
/// </summary>
public const string LiteralWhitePetrolatum = "5774007";
/// <summary>
/// Literal for code: HemoglobinJianghua
/// </summary>
public const string LiteralHemoglobinJianghua = "578008";
/// <summary>
/// Literal for code: TRNA5Methylaminomethyl2ThiouridylateMethyltransferase
/// </summary>
public const string LiteralTRNA5Methylaminomethyl2ThiouridylateMethyltransferase = "5800007";
/// <summary>
/// Literal for code: MalateDehydrogenase
/// </summary>
public const string LiteralMalateDehydrogenase = "5813001";
/// <summary>
/// Literal for code: Ethyl4BisHydroxypropyl1Aminobenzoate
/// </summary>
public const string LiteralEthyl4BisHydroxypropyl1Aminobenzoate = "5826002";
/// <summary>
/// Literal for code: Crotonaldehyde
/// </summary>
public const string LiteralCrotonaldehyde = "5827006";
/// <summary>
/// Literal for code: HemoglobinVaasa
/// </summary>
public const string LiteralHemoglobinVaasa = "5829009";
/// <summary>
/// Literal for code: HemoglobinBart
/// </summary>
public const string LiteralHemoglobinBart = "5830004";
/// <summary>
/// Literal for code: BloodGroupAntibodyWj
/// </summary>
public const string LiteralBloodGroupAntibodyWj = "5840001";
/// <summary>
/// Literal for code: BloodGroupAntibodyWrPowerBPower
/// </summary>
public const string LiteralBloodGroupAntibodyWrPowerBPower = "584006";
/// <summary>
/// Literal for code: SubstanceP
/// </summary>
public const string LiteralSubstanceP = "585007";
/// <summary>
/// Literal for code: Indium110m
/// </summary>
public const string LiteralIndium110m = "5858007";
/// <summary>
/// Literal for code: VitexinBetaGlucosyltransferase
/// </summary>
public const string LiteralVitexinBetaGlucosyltransferase = "5863006";
/// <summary>
/// Literal for code: Hellebrin
/// </summary>
public const string LiteralHellebrin = "5896008";
/// <summary>
/// Literal for code: BacterialStructuralGene
/// </summary>
public const string LiteralBacterialStructuralGene = "5899001";
/// <summary>
/// Literal for code: DrugIntolerance
/// </summary>
public const string LiteralDrugIntolerance = "59037007";
/// <summary>
/// Literal for code: QuinidinePolygalacturonate
/// </summary>
public const string LiteralQuinidinePolygalacturonate = "5907009";
/// <summary>
/// Literal for code: OncogeneProteinPP60VSRC
/// </summary>
public const string LiteralOncogeneProteinPP60VSRC = "5910002";
/// <summary>
/// Literal for code: VAL2OxoisovalerateDehydrogenaseAcylating
/// </summary>
public const string LiteralVAL2OxoisovalerateDehydrogenaseAcylating = "591009";
/// <summary>
/// Literal for code: BloodGroupAntigenGladding
/// </summary>
public const string LiteralBloodGroupAntigenGladding = "5915007";
/// <summary>
/// Literal for code: LactaldehydeDehydrogenase
/// </summary>
public const string LiteralLactaldehydeDehydrogenase = "5927005";
/// <summary>
/// Literal for code: BloodGroupAntibodyHolmes
/// </summary>
public const string LiteralBloodGroupAntibodyHolmes = "593007";
/// <summary>
/// Literal for code: Technetium99mTcSulfurColloid
/// </summary>
public const string LiteralTechnetium99mTcSulfurColloid = "5931004";
/// <summary>
/// Literal for code: Cysteine
/// </summary>
public const string LiteralCysteine = "5932006";
/// <summary>
/// Literal for code: VAL2OxoglutarateSynthase
/// </summary>
public const string LiteralVAL2OxoglutarateSynthase = "594001";
/// <summary>
/// Literal for code: VAL3Quote5QuoteCyclicNucleotidePhosphodiesterase
/// </summary>
public const string LiteralVAL3Quote5QuoteCyclicNucleotidePhosphodiesterase = "5950004";
/// <summary>
/// Literal for code: DiethyleneGlycol
/// </summary>
public const string LiteralDiethyleneGlycol = "5955009";
/// <summary>
/// Literal for code: VAL247Cf
/// </summary>
public const string LiteralVAL247Cf = "597008";
/// <summary>
/// Literal for code: BloodGroupAntigenBullock
/// </summary>
public const string LiteralBloodGroupAntigenBullock = "5977008";
/// <summary>
/// Literal for code: ImmunoglobulinGMGreaterThan17LessThanAllotype
/// </summary>
public const string LiteralImmunoglobulinGMGreaterThan17LessThanAllotype = "5989005";
/// <summary>
/// Literal for code: DFuconateDehydratase
/// </summary>
public const string LiteralDFuconateDehydratase = "5991002";
/// <summary>
/// Literal for code: VAL88Y
/// </summary>
public const string LiteralVAL88Y = "6021003";
/// <summary>
/// Literal for code: OxygenRadioisotope
/// </summary>
public const string LiteralOxygenRadioisotope = "6038004";
/// <summary>
/// Literal for code: PlantSapogeninGlycoside
/// </summary>
public const string LiteralPlantSapogeninGlycoside = "604000";
/// <summary>
/// Literal for code: BoneCement
/// </summary>
public const string LiteralBoneCement = "6043006";
/// <summary>
/// Literal for code: CarbonDisulfide
/// </summary>
public const string LiteralCarbonDisulfide = "6044000";
/// <summary>
/// Literal for code: DoxylamineSuccinate
/// </summary>
public const string LiteralDoxylamineSuccinate = "6054001";
/// <summary>
/// Literal for code: BloodGroupAntibodyWkPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyWkPowerAPower = "6056004";
/// <summary>
/// Literal for code: BloodGroupAntigenMil
/// </summary>
public const string LiteralBloodGroupAntigenMil = "6068008";
/// <summary>
/// Literal for code: Hydroxylysine
/// </summary>
public const string LiteralHydroxylysine = "6083003";
/// <summary>
/// Literal for code: SynovialFluid
/// </summary>
public const string LiteralSynovialFluid = "6085005";
/// <summary>
/// Literal for code: BenzfetamineHydrochloride
/// </summary>
public const string LiteralBenzfetamineHydrochloride = "6088007";
/// <summary>
/// Literal for code: LochiaAlba
/// </summary>
public const string LiteralLochiaAlba = "6089004";
/// <summary>
/// Literal for code: BloodGroupAntibodyLHarris
/// </summary>
public const string LiteralBloodGroupAntibodyLHarris = "6091007";
/// <summary>
/// Literal for code: AsparagusateReductaseNADH
/// </summary>
public const string LiteralAsparagusateReductaseNADH = "6107003";
/// <summary>
/// Literal for code: AromaticAminoAcidAminotransferase
/// </summary>
public const string LiteralAromaticAminoAcidAminotransferase = "6109000";
/// <summary>
/// Literal for code: HippurateHydrolase
/// </summary>
public const string LiteralHippurateHydrolase = "611001";
/// <summary>
/// Literal for code: BloodGroupAntibodyAnuszewska
/// </summary>
public const string LiteralBloodGroupAntibodyAnuszewska = "6115000";
/// <summary>
/// Literal for code: BloodGroupAntigenDuck
/// </summary>
public const string LiteralBloodGroupAntigenDuck = "6135004";
/// <summary>
/// Literal for code: BloodGroupAntigenLeProvost
/// </summary>
public const string LiteralBloodGroupAntigenLeProvost = "6138002";
/// <summary>
/// Literal for code: Meclocycline
/// </summary>
public const string LiteralMeclocycline = "6162007";
/// <summary>
/// Literal for code: HeatLabileAntibody
/// </summary>
public const string LiteralHeatLabileAntibody = "6170002";
/// <summary>
/// Literal for code: TransientGlutenSensitivity
/// </summary>
public const string LiteralTransientGlutenSensitivity = "61712006";
/// <summary>
/// Literal for code: FattyAcidMethyltransferase
/// </summary>
public const string LiteralFattyAcidMethyltransferase = "6172005";
/// <summary>
/// Literal for code: LymphocyteAntigenCD63
/// </summary>
public const string LiteralLymphocyteAntigenCD63 = "6178009";
/// <summary>
/// Literal for code: OMethylBufotenine
/// </summary>
public const string LiteralOMethylBufotenine = "6179001";
/// <summary>
/// Literal for code: Chloroacetone
/// </summary>
public const string LiteralChloroacetone = "6182006";
/// <summary>
/// Literal for code: BloodGroupAntigenZd
/// </summary>
public const string LiteralBloodGroupAntigenZd = "6197009";
/// <summary>
/// Literal for code: Trichlorophenol
/// </summary>
public const string LiteralTrichlorophenol = "620005";
/// <summary>
/// Literal for code: Bemegride
/// </summary>
public const string LiteralBemegride = "6237004";
/// <summary>
/// Literal for code: PotassiumMetabisulfite
/// </summary>
public const string LiteralPotassiumMetabisulfite = "6249003";
/// <summary>
/// Literal for code: RiboseIsomerase
/// </summary>
public const string LiteralRiboseIsomerase = "6256009";
/// <summary>
/// Literal for code: Sodium22NaChloride
/// </summary>
public const string LiteralSodium22NaChloride = "6257000";
/// <summary>
/// Literal for code: Protokylol
/// </summary>
public const string LiteralProtokylol = "6260007";
/// <summary>
/// Literal for code: Indoklon
/// </summary>
public const string LiteralIndoklon = "6261006";
/// <summary>
/// Literal for code: PlantResidue
/// </summary>
public const string LiteralPlantResidue = "6263009";
/// <summary>
/// Literal for code: Diazinon
/// </summary>
public const string LiteralDiazinon = "6264003";
/// <summary>
/// Literal for code: Methidathion
/// </summary>
public const string LiteralMethidathion = "6287006";
/// <summary>
/// Literal for code: LysosomalAlphaNAcetylglucosaminidase
/// </summary>
public const string LiteralLysosomalAlphaNAcetylglucosaminidase = "6291001";
/// <summary>
/// Literal for code: Tantalum178
/// </summary>
public const string LiteralTantalum178 = "6301006";
/// <summary>
/// Literal for code: ParticulateAntigen
/// </summary>
public const string LiteralParticulateAntigen = "6310003";
/// <summary>
/// Literal for code: PhenolBetaGlucosyltransferase
/// </summary>
public const string LiteralPhenolBetaGlucosyltransferase = "6314007";
/// <summary>
/// Literal for code: SquillExtract
/// </summary>
public const string LiteralSquillExtract = "6333002";
/// <summary>
/// Literal for code: Imidazolonepropionase
/// </summary>
public const string LiteralImidazolonepropionase = "6338006";
/// <summary>
/// Literal for code: Chlorodiallylacetamide
/// </summary>
public const string LiteralChlorodiallylacetamide = "6356006";
/// <summary>
/// Literal for code: KallidinII
/// </summary>
public const string LiteralKallidinII = "6360009";
/// <summary>
/// Literal for code: VAL95mTc
/// </summary>
public const string LiteralVAL95mTc = "6367007";
/// <summary>
/// Literal for code: NAcetylneuraminateOPower4PowerAcetyltransferase
/// </summary>
public const string LiteralNAcetylneuraminateOPower4PowerAcetyltransferase = "6386004";
/// <summary>
/// Literal for code: PhentermineHydrochloride
/// </summary>
public const string LiteralPhentermineHydrochloride = "6394006";
/// <summary>
/// Literal for code: Lichenase
/// </summary>
public const string LiteralLichenase = "6401007";
/// <summary>
/// Literal for code: Morpholine
/// </summary>
public const string LiteralMorpholine = "6409009";
/// <summary>
/// Literal for code: Interleukin12
/// </summary>
public const string LiteralInterleukin12 = "6411000";
/// <summary>
/// Literal for code: HLADRw14Antigen
/// </summary>
public const string LiteralHLADRw14Antigen = "6422001";
/// <summary>
/// Literal for code: Chlorobenzilate
/// </summary>
public const string LiteralChlorobenzilate = "6451002";
/// <summary>
/// Literal for code: Chloroprene
/// </summary>
public const string LiteralChloroprene = "6455006";
/// <summary>
/// Literal for code: VAL12DidehydropipecolateReductase
/// </summary>
public const string LiteralVAL12DidehydropipecolateReductase = "6469006";
/// <summary>
/// Literal for code: Phosphohexokinase
/// </summary>
public const string LiteralPhosphohexokinase = "6478000";
/// <summary>
/// Literal for code: OilOfCalamus
/// </summary>
public const string LiteralOilOfCalamus = "648005";
/// <summary>
/// Literal for code: FibrinogenMontrealII
/// </summary>
public const string LiteralFibrinogenMontrealII = "6495008";
/// <summary>
/// Literal for code: BloodGroupAntigenMuch
/// </summary>
public const string LiteralBloodGroupAntigenMuch = "6507009";
/// <summary>
/// Literal for code: Flumethiazide
/// </summary>
public const string LiteralFlumethiazide = "6513000";
/// <summary>
/// Literal for code: Indium111InFerricHydroxide
/// </summary>
public const string LiteralIndium111InFerricHydroxide = "6516008";
/// <summary>
/// Literal for code: DistilledSpirits
/// </summary>
public const string LiteralDistilledSpirits = "6524003";
/// <summary>
/// Literal for code: BloodGroupAntigenClPowerAPower
/// </summary>
public const string LiteralBloodGroupAntigenClPowerAPower = "6529008";
/// <summary>
/// Literal for code: MacrophageActivatingFactor
/// </summary>
public const string LiteralMacrophageActivatingFactor = "6532006";
/// <summary>
/// Literal for code: Galactosylceramidase
/// </summary>
public const string LiteralGalactosylceramidase = "6590001";
/// <summary>
/// Literal for code: HLADw12Antigen
/// </summary>
public const string LiteralHLADw12Antigen = "6592009";
/// <summary>
/// Literal for code: Aminoacridine
/// </summary>
public const string LiteralAminoacridine = "6602005";
/// <summary>
/// Literal for code: Diethylaminoethanol
/// </summary>
public const string LiteralDiethylaminoethanol = "6611005";
/// <summary>
/// Literal for code: ChloramphenicolSodiumSuccinate
/// </summary>
public const string LiteralChloramphenicolSodiumSuccinate = "6612003";
/// <summary>
/// Literal for code: BilirubinYTransportProtein
/// </summary>
public const string LiteralBilirubinYTransportProtein = "6619007";
/// <summary>
/// Literal for code: AeromonasProteolyticaAminopeptidase
/// </summary>
public const string LiteralAeromonasProteolyticaAminopeptidase = "662003";
/// <summary>
/// Literal for code: Opsonin
/// </summary>
public const string LiteralOpsonin = "6642000";
/// <summary>
/// Literal for code: HomoserineDehydrogenase
/// </summary>
public const string LiteralHomoserineDehydrogenase = "6644004";
/// <summary>
/// Literal for code: BloodGroupAntigenCaw
/// </summary>
public const string LiteralBloodGroupAntigenCaw = "6671004";
/// <summary>
/// Literal for code: Phosphoadenylate3QuoteNucleotidase
/// </summary>
public const string LiteralPhosphoadenylate3QuoteNucleotidase = "6672006";
/// <summary>
/// Literal for code: VAL185Os
/// </summary>
public const string LiteralVAL185Os = "668004";
/// <summary>
/// Literal for code: TitaniumRadioisotope
/// </summary>
public const string LiteralTitaniumRadioisotope = "6699008";
/// <summary>
/// Literal for code: LissamineFastRedB
/// </summary>
public const string LiteralLissamineFastRedB = "6701008";
/// <summary>
/// Literal for code: EthylMercaptoethylDiethylThiophosphate
/// </summary>
public const string LiteralEthylMercaptoethylDiethylThiophosphate = "6702001";
/// <summary>
/// Literal for code: Gentamicin2DoubleQuoteNucleotidyltransferase
/// </summary>
public const string LiteralGentamicin2DoubleQuoteNucleotidyltransferase = "6709005";
/// <summary>
/// Literal for code: NitricOxide
/// </summary>
public const string LiteralNitricOxide = "6710000";
/// <summary>
/// Literal for code: VAL91Y
/// </summary>
public const string LiteralVAL91Y = "6713003";
/// <summary>
/// Literal for code: Nifuroxime
/// </summary>
public const string LiteralNifuroxime = "6717002";
/// <summary>
/// Literal for code: MethyleneBlue
/// </summary>
public const string LiteralMethyleneBlue = "6725000";
/// <summary>
/// Literal for code: VAL234U
/// </summary>
public const string LiteralVAL234U = "6730001";
/// <summary>
/// Literal for code: AntiDNAAntibody
/// </summary>
public const string LiteralAntiDNAAntibody = "6741004";
/// <summary>
/// Literal for code: TLAntigen
/// </summary>
public const string LiteralTLAntigen = "6755007";
/// <summary>
/// Literal for code: SilverDifluoride
/// </summary>
public const string LiteralSilverDifluoride = "6786001";
/// <summary>
/// Literal for code: Aminopterin
/// </summary>
public const string LiteralAminopterin = "6790004";
/// <summary>
/// Literal for code: Veratrine
/// </summary>
public const string LiteralVeratrine = "6792007";
/// <summary>
/// Literal for code: FerrousIronCompound
/// </summary>
public const string LiteralFerrousIronCompound = "6808006";
/// <summary>
/// Literal for code: Phomopsin
/// </summary>
public const string LiteralPhomopsin = "6809003";
/// <summary>
/// Literal for code: DiscadenineSynthase
/// </summary>
public const string LiteralDiscadenineSynthase = "6814004";
/// <summary>
/// Literal for code: OxidizedGlutathione
/// </summary>
public const string LiteralOxidizedGlutathione = "6817006";
/// <summary>
/// Literal for code: SterolHormone
/// </summary>
public const string LiteralSterolHormone = "6826009";
/// <summary>
/// Literal for code: MercuricAcetate
/// </summary>
public const string LiteralMercuricAcetate = "683009";
/// <summary>
/// Literal for code: DextropropoxypheneNapsylate
/// </summary>
public const string LiteralDextropropoxypheneNapsylate = "6837005";
/// <summary>
/// Literal for code: VAL188Pt
/// </summary>
public const string LiteralVAL188Pt = "6854002";
/// <summary>
/// Literal for code: PlastoquinolPlastocyaninReductase
/// </summary>
public const string LiteralPlastoquinolPlastocyaninReductase = "686001";
/// <summary>
/// Literal for code: TheophyllineCalciumSalicylate
/// </summary>
public const string LiteralTheophyllineCalciumSalicylate = "6865007";
/// <summary>
/// Literal for code: CefapirinSodium
/// </summary>
public const string LiteralCefapirinSodium = "6873003";
/// <summary>
/// Literal for code: MeadAcid
/// </summary>
public const string LiteralMeadAcid = "6879004";
/// <summary>
/// Literal for code: MagnesiumFumes
/// </summary>
public const string LiteralMagnesiumFumes = "6881002";
/// <summary>
/// Literal for code: S3Amino2MethylpropionateAminotransferase
/// </summary>
public const string LiteralS3Amino2MethylpropionateAminotransferase = "6884005";
/// <summary>
/// Literal for code: VAL3DeoxyMannoOctulosonate8Phosphatase
/// </summary>
public const string LiteralVAL3DeoxyMannoOctulosonate8Phosphatase = "6890009";
/// <summary>
/// Literal for code: ThiopurineMethyltransferase
/// </summary>
public const string LiteralThiopurineMethyltransferase = "6896003";
/// <summary>
/// Literal for code: SodiumFluoride
/// </summary>
public const string LiteralSodiumFluoride = "6910009";
/// <summary>
/// Literal for code: DeoxycytidylateMethyltransferase
/// </summary>
public const string LiteralDeoxycytidylateMethyltransferase = "6911008";
/// <summary>
/// Literal for code: Bowieine
/// </summary>
public const string LiteralBowieine = "6916003";
/// <summary>
/// Literal for code: Exopolyphosphatase
/// </summary>
public const string LiteralExopolyphosphatase = "6924008";
/// <summary>
/// Literal for code: LeucineAcetyltransferase
/// </summary>
public const string LiteralLeucineAcetyltransferase = "6925009";
/// <summary>
/// Literal for code: VAL121Sn
/// </summary>
public const string LiteralVAL121Sn = "6927001";
/// <summary>
/// Literal for code: Trichothecenes
/// </summary>
public const string LiteralTrichothecenes = "693002";
/// <summary>
/// Literal for code: ThymidylateSynthase
/// </summary>
public const string LiteralThymidylateSynthase = "6937006";
/// <summary>
/// Literal for code: BloodGroupAntigenLePowerBHPower
/// </summary>
public const string LiteralBloodGroupAntigenLePowerBHPower = "6945001";
/// <summary>
/// Literal for code: Tin121m
/// </summary>
public const string LiteralTin121m = "6952004";
/// <summary>
/// Literal for code: BloodGroupAntibodyFrando
/// </summary>
public const string LiteralBloodGroupAntibodyFrando = "6958000";
/// <summary>
/// Literal for code: LysolecithinAcylmutase
/// </summary>
public const string LiteralLysolecithinAcylmutase = "6961004";
/// <summary>
/// Literal for code: VAL4HydroxyprolineEpimerase
/// </summary>
public const string LiteralVAL4HydroxyprolineEpimerase = "6970001";
/// <summary>
/// Literal for code: Chromium51CrChloride
/// </summary>
public const string LiteralChromium51CrChloride = "6973004";
/// <summary>
/// Literal for code: ErythromycinLactobionate
/// </summary>
public const string LiteralErythromycinLactobionate = "698006";
/// <summary>
/// Literal for code: Acrylamide
/// </summary>
public const string LiteralAcrylamide = "6983000";
/// <summary>
/// Literal for code: CoalTarExtract
/// </summary>
public const string LiteralCoalTarExtract = "699003";
/// <summary>
/// Literal for code: TriflupromazineHydrochloride
/// </summary>
public const string LiteralTriflupromazineHydrochloride = "6992002";
/// <summary>
/// Literal for code: SeminalFluid
/// </summary>
public const string LiteralSeminalFluid = "6993007";
/// <summary>
/// Literal for code: AmmoniumCompound
/// </summary>
public const string LiteralAmmoniumCompound = "6999006";
/// <summary>
/// Literal for code: BetaCarotene1515QuoteDioxygenase
/// </summary>
public const string LiteralBetaCarotene1515QuoteDioxygenase = "7008002";
/// <summary>
/// Literal for code: MalateCoALigase
/// </summary>
public const string LiteralMalateCoALigase = "7018007";
/// <summary>
/// Literal for code: BloodGroupAntigenGreenlee
/// </summary>
public const string LiteralBloodGroupAntigenGreenlee = "7029006";
/// <summary>
/// Literal for code: Globoside
/// </summary>
public const string LiteralGloboside = "7030001";
/// <summary>
/// Literal for code: Diclofenac
/// </summary>
public const string LiteralDiclofenac = "7034005";
/// <summary>
/// Literal for code: BloodGroupAntigenRx
/// </summary>
public const string LiteralBloodGroupAntigenRx = "704006";
/// <summary>
/// Literal for code: Lycorine
/// </summary>
public const string LiteralLycorine = "7045008";
/// <summary>
/// Literal for code: AsphyxiantAtmosphere
/// </summary>
public const string LiteralAsphyxiantAtmosphere = "7047000";
/// <summary>
/// Literal for code: PyruvateCarboxylase
/// </summary>
public const string LiteralPyruvateCarboxylase = "7049002";
/// <summary>
/// Literal for code: HemoglobinPoissy
/// </summary>
public const string LiteralHemoglobinPoissy = "7054006";
/// <summary>
/// Literal for code: VAL3PropylmalateSynthase
/// </summary>
public const string LiteralVAL3PropylmalateSynthase = "7056008";
/// <summary>
/// Literal for code: NAcylneuraminate9Phosphatase
/// </summary>
public const string LiteralNAcylneuraminate9Phosphatase = "7059001";
/// <summary>
/// Literal for code: AnthocyanidinOPower3PowerGlucosyltransferase
/// </summary>
public const string LiteralAnthocyanidinOPower3PowerGlucosyltransferase = "7061005";
/// <summary>
/// Literal for code: Convallamarin
/// </summary>
public const string LiteralConvallamarin = "7070008";
/// <summary>
/// Literal for code: FibrinogenBuenosAiresII
/// </summary>
public const string LiteralFibrinogenBuenosAiresII = "7084003";
/// <summary>
/// Literal for code: Germanium69
/// </summary>
public const string LiteralGermanium69 = "7110002";
/// <summary>
/// Literal for code: Antigen
/// </summary>
public const string LiteralAntigen = "7120007";
/// <summary>
/// Literal for code: Gallium73
/// </summary>
public const string LiteralGallium73 = "7132006";
/// <summary>
/// Literal for code: AcidCoALigaseGDPForming
/// </summary>
public const string LiteralAcidCoALigaseGDPForming = "7139002";
/// <summary>
/// Literal for code: CyclohexeneOxide
/// </summary>
public const string LiteralCyclohexeneOxide = "7146006";
/// <summary>
/// Literal for code: Chlorthion
/// </summary>
public const string LiteralChlorthion = "7152007";
/// <summary>
/// Literal for code: PhosphorusIsotope
/// </summary>
public const string LiteralPhosphorusIsotope = "7156005";
/// <summary>
/// Literal for code: HLADw19Antigen
/// </summary>
public const string LiteralHLADw19Antigen = "7158006";
/// <summary>
/// Literal for code: ComplementComponentC2a
/// </summary>
public const string LiteralComplementComponentC2a = "7161007";
/// <summary>
/// Literal for code: NoKnownLatexAllergy
/// </summary>
public const string LiteralNoKnownLatexAllergy = "716184000";
/// <summary>
/// Literal for code: NoKnownAllergy
/// </summary>
public const string LiteralNoKnownAllergy = "716186003";
/// <summary>
/// Literal for code: NoKnownAnimalAllergy
/// </summary>
public const string LiteralNoKnownAnimalAllergy = "716220001";
/// <summary>
/// Literal for code: Prekallikrein
/// </summary>
public const string LiteralPrekallikrein = "7179006";
/// <summary>
/// Literal for code: MethenyltetrahydrofolateCyclohydrolase
/// </summary>
public const string LiteralMethenyltetrahydrofolateCyclohydrolase = "7191002";
/// <summary>
/// Literal for code: ThiolOxidase
/// </summary>
public const string LiteralThiolOxidase = "7208009";
/// <summary>
/// Literal for code: BloodGroupAntibodyHaakestad
/// </summary>
public const string LiteralBloodGroupAntibodyHaakestad = "7211005";
/// <summary>
/// Literal for code: OralContraceptiveIntolerance
/// </summary>
public const string LiteralOralContraceptiveIntolerance = "72354005";
/// <summary>
/// Literal for code: GalactonateDehydratase
/// </summary>
public const string LiteralGalactonateDehydratase = "7237008";
/// <summary>
/// Literal for code: MethylIsocyanate
/// </summary>
public const string LiteralMethylIsocyanate = "7243005";
/// <summary>
/// Literal for code: Thorium
/// </summary>
public const string LiteralThorium = "7269004";
/// <summary>
/// Literal for code: MixedDust
/// </summary>
public const string LiteralMixedDust = "7271004";
/// <summary>
/// Literal for code: DTDP4DehydrorhamnoseReductase
/// </summary>
public const string LiteralDTDP4DehydrorhamnoseReductase = "7280004";
/// <summary>
/// Literal for code: Technetium99mTcLidofenin
/// </summary>
public const string LiteralTechnetium99mTcLidofenin = "7281000";
/// <summary>
/// Literal for code: MercaptanCompound
/// </summary>
public const string LiteralMercaptanCompound = "7284008";
/// <summary>
/// Literal for code: AceticAcidTertButylEster
/// </summary>
public const string LiteralAceticAcidTertButylEster = "7294003";
/// <summary>
/// Literal for code: Ambuphylline
/// </summary>
public const string LiteralAmbuphylline = "7302008";
/// <summary>
/// Literal for code: Bacteriochlorophyll
/// </summary>
public const string LiteralBacteriochlorophyll = "7318002";
/// <summary>
/// Literal for code: NValeraldehyde
/// </summary>
public const string LiteralNValeraldehyde = "732002";
/// <summary>
/// Literal for code: Pyrimidine
/// </summary>
public const string LiteralPyrimidine = "7321000";
/// <summary>
/// Literal for code: CalciumHydroxide
/// </summary>
public const string LiteralCalciumHydroxide = "7325009";
/// <summary>
/// Literal for code: SulfurousAcid
/// </summary>
public const string LiteralSulfurousAcid = "7327001";
/// <summary>
/// Literal for code: RedPetrolatum
/// </summary>
public const string LiteralRedPetrolatum = "7328006";
/// <summary>
/// Literal for code: Shellac
/// </summary>
public const string LiteralShellac = "7330008";
/// <summary>
/// Literal for code: BloodGroupAntibodyTrPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyTrPowerAPower = "7337006";
/// <summary>
/// Literal for code: CoagulationFactorII
/// </summary>
public const string LiteralCoagulationFactorII = "7348004";
/// <summary>
/// Literal for code: BloodGroupAntigenJobbins
/// </summary>
public const string LiteralBloodGroupAntigenJobbins = "735000";
/// <summary>
/// Literal for code: AminoalcoholEster
/// </summary>
public const string LiteralAminoalcoholEster = "7382005";
/// <summary>
/// Literal for code: HemeHemopexinComplex
/// </summary>
public const string LiteralHemeHemopexinComplex = "7401000";
/// <summary>
/// Literal for code: BloodGroupAntibodyHLAB8
/// </summary>
public const string LiteralBloodGroupAntibodyHLAB8 = "7411007";
/// <summary>
/// Literal for code: SepiapterinReductase
/// </summary>
public const string LiteralSepiapterinReductase = "7427000";
/// <summary>
/// Literal for code: ErythrosinB
/// </summary>
public const string LiteralErythrosinB = "7434003";
/// <summary>
/// Literal for code: Ruthenium
/// </summary>
public const string LiteralRuthenium = "7446004";
/// <summary>
/// Literal for code: VAL127Te
/// </summary>
public const string LiteralVAL127Te = "7460002";
/// <summary>
/// Literal for code: PTertButyltoluene
/// </summary>
public const string LiteralPTertButyltoluene = "7470000";
/// <summary>
/// Literal for code: Oxamniquine
/// </summary>
public const string LiteralOxamniquine = "747006";
/// <summary>
/// Literal for code: HomocytotropicAntibody
/// </summary>
public const string LiteralHomocytotropicAntibody = "7489000";
/// <summary>
/// Literal for code: VAL72Ga
/// </summary>
public const string LiteralVAL72Ga = "7503004";
/// <summary>
/// Literal for code: MannitolHexanitrate
/// </summary>
public const string LiteralMannitolHexanitrate = "7509000";
/// <summary>
/// Literal for code: HepatotoxicMycotoxin
/// </summary>
public const string LiteralHepatotoxicMycotoxin = "7515000";
/// <summary>
/// Literal for code: StizolobinateSynthase
/// </summary>
public const string LiteralStizolobinateSynthase = "7537007";
/// <summary>
/// Literal for code: HemoglobinLincolnPark
/// </summary>
public const string LiteralHemoglobinLincolnPark = "7547005";
/// <summary>
/// Literal for code: FibrinogenBethesdaI
/// </summary>
public const string LiteralFibrinogenBethesdaI = "7549008";
/// <summary>
/// Literal for code: BloodGroupAntibodySkPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodySkPowerAPower = "7588005";
/// <summary>
/// Literal for code: TriethyleneGlycol
/// </summary>
public const string LiteralTriethyleneGlycol = "7608003";
/// <summary>
/// Literal for code: BloodGroupAntibodyPruitt
/// </summary>
public const string LiteralBloodGroupAntibodyPruitt = "7616007";
/// <summary>
/// Literal for code: HLABw70Antigen
/// </summary>
public const string LiteralHLABw70Antigen = "7648006";
/// <summary>
/// Literal for code: FishBone
/// </summary>
public const string LiteralFishBone = "7661006";
/// <summary>
/// Literal for code: AminobutyraldehydeDehydrogenase
/// </summary>
public const string LiteralAminobutyraldehydeDehydrogenase = "7670009";
/// <summary>
/// Literal for code: BloodGroupAntigenTowey
/// </summary>
public const string LiteralBloodGroupAntigenTowey = "7675004";
/// <summary>
/// Literal for code: BloodGroupAntibodyBgPowerCPower
/// </summary>
public const string LiteralBloodGroupAntibodyBgPowerCPower = "7685003";
/// <summary>
/// Literal for code: FerrovanadiumDust
/// </summary>
public const string LiteralFerrovanadiumDust = "7696006";
/// <summary>
/// Literal for code: IsovalerylCoADehydrogenase
/// </summary>
public const string LiteralIsovalerylCoADehydrogenase = "7716001";
/// <summary>
/// Literal for code: HemoglobinMIwate
/// </summary>
public const string LiteralHemoglobinMIwate = "773001";
/// <summary>
/// Literal for code: ChlortetracyclineHydrochloride
/// </summary>
public const string LiteralChlortetracyclineHydrochloride = "7737009";
/// <summary>
/// Literal for code: HLAB49Antigen
/// </summary>
public const string LiteralHLAB49Antigen = "7738004";
/// <summary>
/// Literal for code: VAL111Ag
/// </summary>
public const string LiteralVAL111Ag = "7761002";
/// <summary>
/// Literal for code: Strontium89
/// </summary>
public const string LiteralStrontium89 = "7770004";
/// <summary>
/// Literal for code: NeoBVitaminA1
/// </summary>
public const string LiteralNeoBVitaminA1 = "7774008";
/// <summary>
/// Literal for code: VAL103Ru
/// </summary>
public const string LiteralVAL103Ru = "7779003";
/// <summary>
/// Literal for code: SphingomyelinPhosphodiesteraseD
/// </summary>
public const string LiteralSphingomyelinPhosphodiesteraseD = "7785005";
/// <summary>
/// Literal for code: VAL1Monoacylglycerol
/// </summary>
public const string LiteralVAL1Monoacylglycerol = "7790008";
/// <summary>
/// Literal for code: SoyProtein
/// </summary>
public const string LiteralSoyProtein = "7791007";
/// <summary>
/// Literal for code: OxalateOxidase
/// </summary>
public const string LiteralOxalateOxidase = "7795003";
/// <summary>
/// Literal for code: TetrahydroxypteridineCycloisomerase
/// </summary>
public const string LiteralTetrahydroxypteridineCycloisomerase = "7801007";
/// <summary>
/// Literal for code: AntazolineHydrochloride
/// </summary>
public const string LiteralAntazolineHydrochloride = "7816005";
/// <summary>
/// Literal for code: AcetylDigitoxin
/// </summary>
public const string LiteralAcetylDigitoxin = "7834009";
/// <summary>
/// Literal for code: SphingomyelinPhosphodiesterase
/// </summary>
public const string LiteralSphingomyelinPhosphodiesterase = "7846008";
/// <summary>
/// Literal for code: MonophosphatidylinositolPhosphodiesterase
/// </summary>
public const string LiteralMonophosphatidylinositolPhosphodiesterase = "7848009";
/// <summary>
/// Literal for code: Dextranase
/// </summary>
public const string LiteralDextranase = "785009";
/// <summary>
/// Literal for code: BetaCyclopiazonateOxidocyclase
/// </summary>
public const string LiteralBetaCyclopiazonateOxidocyclase = "7868003";
/// <summary>
/// Literal for code: VAL218Rn
/// </summary>
public const string LiteralVAL218Rn = "7879008";
/// <summary>
/// Literal for code: HemoglobinPresbyterian
/// </summary>
public const string LiteralHemoglobinPresbyterian = "7900007";
/// <summary>
/// Literal for code: Deanol
/// </summary>
public const string LiteralDeanol = "7904003";
/// <summary>
/// Literal for code: ArginineCarboxypeptidase
/// </summary>
public const string LiteralArginineCarboxypeptidase = "7909008";
/// <summary>
/// Literal for code: Diflorasone
/// </summary>
public const string LiteralDiflorasone = "7924004";
/// <summary>
/// Literal for code: DArabitolDehydrogenase
/// </summary>
public const string LiteralDArabitolDehydrogenase = "7938006";
/// <summary>
/// Literal for code: OrsellinateDepsideHydrolase
/// </summary>
public const string LiteralOrsellinateDepsideHydrolase = "7945006";
/// <summary>
/// Literal for code: ReedSternbergAntibody
/// </summary>
public const string LiteralReedSternbergAntibody = "7948008";
/// <summary>
/// Literal for code: Thioneb
/// </summary>
public const string LiteralThioneb = "7953003";
/// <summary>
/// Literal for code: PhosphatidateCytidylyltransferase
/// </summary>
public const string LiteralPhosphatidateCytidylyltransferase = "7957002";
/// <summary>
/// Literal for code: HemoglobinFShanghai
/// </summary>
public const string LiteralHemoglobinFShanghai = "7961008";
/// <summary>
/// Literal for code: Allograft
/// </summary>
public const string LiteralAllograft = "7970006";
/// <summary>
/// Literal for code: BloodGroupAntibodyDalman
/// </summary>
public const string LiteralBloodGroupAntibodyDalman = "7974002";
/// <summary>
/// Literal for code: Amiphenazole
/// </summary>
public const string LiteralAmiphenazole = "7975001";
/// <summary>
/// Literal for code: VAL3QuotePhosphoadenylylsulfate3QuotePhosphatase
/// </summary>
public const string LiteralVAL3QuotePhosphoadenylylsulfate3QuotePhosphatase = "7979007";
/// <summary>
/// Literal for code: SodiumRhodanide
/// </summary>
public const string LiteralSodiumRhodanide = "7983007";
/// <summary>
/// Literal for code: SulfurIsotope
/// </summary>
public const string LiteralSulfurIsotope = "7985000";
/// <summary>
/// Literal for code: ButylMercaptan
/// </summary>
public const string LiteralButylMercaptan = "7997004";
/// <summary>
/// Literal for code: CucurbitacinDeltaPower23PowerReductase
/// </summary>
public const string LiteralCucurbitacinDeltaPower23PowerReductase = "8000007";
/// <summary>
/// Literal for code: BloodGroupAntibodyFleming
/// </summary>
public const string LiteralBloodGroupAntibodyFleming = "8002004";
/// <summary>
/// Literal for code: BloodGroupAntibodyGibson
/// </summary>
public const string LiteralBloodGroupAntibodyGibson = "8025003";
/// <summary>
/// Literal for code: AllylGlycidylEther
/// </summary>
public const string LiteralAllylGlycidylEther = "8029009";
/// <summary>
/// Literal for code: PolyethyleneGlycol
/// </summary>
public const string LiteralPolyethyleneGlycol = "8030004";
/// <summary>
/// Literal for code: CholestenolDeltaIsomerase
/// </summary>
public const string LiteralCholestenolDeltaIsomerase = "8035009";
/// <summary>
/// Literal for code: CreosoticAcid
/// </summary>
public const string LiteralCreosoticAcid = "804003";
/// <summary>
/// Literal for code: BloodGroupAntigenTh
/// </summary>
public const string LiteralBloodGroupAntigenTh = "8048008";
/// <summary>
/// Literal for code: OrotateReductaseNADPH
/// </summary>
public const string LiteralOrotateReductaseNADPH = "8054009";
/// <summary>
/// Literal for code: GalactosideAcetyltransferase
/// </summary>
public const string LiteralGalactosideAcetyltransferase = "8055005";
/// <summary>
/// Literal for code: HemoglobinLeiden
/// </summary>
public const string LiteralHemoglobinLeiden = "8105004";
/// <summary>
/// Literal for code: UndecaprenylDiphosphatase
/// </summary>
public const string LiteralUndecaprenylDiphosphatase = "8108002";
/// <summary>
/// Literal for code: BloodGroupAntibodySchuppenhauer
/// </summary>
public const string LiteralBloodGroupAntibodySchuppenhauer = "8123007";
/// <summary>
/// Literal for code: MagnesiumAcetylsalicylate
/// </summary>
public const string LiteralMagnesiumAcetylsalicylate = "8132009";
/// <summary>
/// Literal for code: Diosmin
/// </summary>
public const string LiteralDiosmin = "8143001";
/// <summary>
/// Literal for code: Homoproline
/// </summary>
public const string LiteralHomoproline = "8153000";
/// <summary>
/// Literal for code: ImmunoglobulinFdFragment
/// </summary>
public const string LiteralImmunoglobulinFdFragment = "8156008";
/// <summary>
/// Literal for code: LymphocyteAntigenCD67
/// </summary>
public const string LiteralLymphocyteAntigenCD67 = "8164002";
/// <summary>
/// Literal for code: Uracil5CarboxylateDecarboxylase
/// </summary>
public const string LiteralUracil5CarboxylateDecarboxylase = "8168004";
/// <summary>
/// Literal for code: Cevadilline
/// </summary>
public const string LiteralCevadilline = "8179009";
/// <summary>
/// Literal for code: Convallamarogenin
/// </summary>
public const string LiteralConvallamarogenin = "8184003";
/// <summary>
/// Literal for code: DiaminopimelateEpimerase
/// </summary>
public const string LiteralDiaminopimelateEpimerase = "8190004";
/// <summary>
/// Literal for code: LyticAntibody
/// </summary>
public const string LiteralLyticAntibody = "819002";
/// <summary>
/// Literal for code: VAL43K
/// </summary>
public const string LiteralVAL43K = "8202008";
/// <summary>
/// Literal for code: HumanMenopausalGonadotropin
/// </summary>
public const string LiteralHumanMenopausalGonadotropin = "8203003";
/// <summary>
/// Literal for code: Polyester
/// </summary>
public const string LiteralPolyester = "8204009";
/// <summary>
/// Literal for code: CoagulationFactorIIPaduaVariant
/// </summary>
public const string LiteralCoagulationFactorIIPaduaVariant = "8222007";
/// <summary>
/// Literal for code: VAL106Ru
/// </summary>
public const string LiteralVAL106Ru = "8227001";
/// <summary>
/// Literal for code: StreptococcalCysteineProteinase
/// </summary>
public const string LiteralStreptococcalCysteineProteinase = "8230008";
/// <summary>
/// Literal for code: Strobane
/// </summary>
public const string LiteralStrobane = "8237006";
/// <summary>
/// Literal for code: ChlorothiazideSodium
/// </summary>
public const string LiteralChlorothiazideSodium = "8252004";
/// <summary>
/// Literal for code: AbnormalHemoglobin
/// </summary>
public const string LiteralAbnormalHemoglobin = "8257005";
/// <summary>
/// Literal for code: PotassiumThiosulfate
/// </summary>
public const string LiteralPotassiumThiosulfate = "8261004";
/// <summary>
/// Literal for code: BloodGroupAntibodyHildebrandt
/// </summary>
public const string LiteralBloodGroupAntibodyHildebrandt = "8268005";
/// <summary>
/// Literal for code: TRNAAdenylyltransferase
/// </summary>
public const string LiteralTRNAAdenylyltransferase = "8270001";
/// <summary>
/// Literal for code: MethionineSOxideReductase
/// </summary>
public const string LiteralMethionineSOxideReductase = "8275006";
/// <summary>
/// Literal for code: UromucoidProtein
/// </summary>
public const string LiteralUromucoidProtein = "8295000";
/// <summary>
/// Literal for code: Cyclohexanol
/// </summary>
public const string LiteralCyclohexanol = "8300003";
/// <summary>
/// Literal for code: HemoglobinMadrid
/// </summary>
public const string LiteralHemoglobinMadrid = "8310007";
/// <summary>
/// Literal for code: RNADirectedDNAPolymerase
/// </summary>
public const string LiteralRNADirectedDNAPolymerase = "8313009";
/// <summary>
/// Literal for code: ProcollagenLysine2Oxoglutarate5Dioxygenase
/// </summary>
public const string LiteralProcollagenLysine2Oxoglutarate5Dioxygenase = "8340009";
/// <summary>
/// Literal for code: BrilliantCresylBlue
/// </summary>
public const string LiteralBrilliantCresylBlue = "8342001";
/// <summary>
/// Literal for code: BloodGroupAntibodyRePowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyRePowerAPower = "8343006";
/// <summary>
/// Literal for code: ManganeseEthyleneBisDithiocarbamate
/// </summary>
public const string LiteralManganeseEthyleneBisDithiocarbamate = "8354001";
/// <summary>
/// Literal for code: HafniumIsotope
/// </summary>
public const string LiteralHafniumIsotope = "8355000";
/// <summary>
/// Literal for code: BloodGroupAntibodyC
/// </summary>
public const string LiteralBloodGroupAntibodyC = "8362009";
/// <summary>
/// Literal for code: OilOfPennyroyalEuropean
/// </summary>
public const string LiteralOilOfPennyroyalEuropean = "8365006";
/// <summary>
/// Literal for code: Xylobiase
/// </summary>
public const string LiteralXylobiase = "8368008";
/// <summary>
/// Literal for code: DuffyBloodGroupAntibody
/// </summary>
public const string LiteralDuffyBloodGroupAntibody = "8376005";
/// <summary>
/// Literal for code: Glucan14AlphaGlucosidase
/// </summary>
public const string LiteralGlucan14AlphaGlucosidase = "8385005";
/// <summary>
/// Literal for code: NicotineResinComplex
/// </summary>
public const string LiteralNicotineResinComplex = "8397006";
/// <summary>
/// Literal for code: NitroethaneOxidase
/// </summary>
public const string LiteralNitroethaneOxidase = "8406008";
/// <summary>
/// Literal for code: BrilliantOrange
/// </summary>
public const string LiteralBrilliantOrange = "8429000";
/// <summary>
/// Literal for code: OilOfLemonGrass
/// </summary>
public const string LiteralOilOfLemonGrass = "8450009";
/// <summary>
/// Literal for code: BloodGroupAntigenSisson
/// </summary>
public const string LiteralBloodGroupAntigenSisson = "8452001";
/// <summary>
/// Literal for code: MethylEthylKetonePeroxide
/// </summary>
public const string LiteralMethylEthylKetonePeroxide = "8456003";
/// <summary>
/// Literal for code: BloodGroupAntibodyVgPowerAPower
/// </summary>
public const string LiteralBloodGroupAntibodyVgPowerAPower = "8460000";
/// <summary>
/// Literal for code: HomocysteineMethyltransferase
/// </summary>
public const string LiteralHomocysteineMethyltransferase = "8473001";
/// <summary>
/// Literal for code: LeadOleate
/// </summary>
public const string LiteralLeadOleate = "8474007";
/// <summary>
/// Literal for code: BloodGroupAntigenMur
/// </summary>
public const string LiteralBloodGroupAntigenMur = "8484008";
/// <summary>
/// Literal for code: OncogeneProteinP210BCRABL
/// </summary>
public const string LiteralOncogeneProteinP210BCRABL = "8485009";
/// <summary>
/// Literal for code: HLADRw15Antigen
/// </summary>
public const string LiteralHLADRw15Antigen = "8486005";
/// <summary>
/// Literal for code: VAL48V
/// </summary>
public const string LiteralVAL48V = "8487001";
/// <summary>
/// Literal for code: ComplementInhibitor
/// </summary>
public const string LiteralComplementInhibitor = "8491006";
/// <summary>
/// Literal for code: Allantoicase
/// </summary>
public const string LiteralAllantoicase = "8492004";
/// <summary>
/// Literal for code: ShortNeurotoxinVenom
/// </summary>
public const string LiteralShortNeurotoxinVenom = "8498000";
/// <summary>
/// Literal for code: StizolobateSynthase
/// </summary>
public const string LiteralStizolobateSynthase = "850000";
/// <summary>
/// Literal for code: Cyclohexane
/// </summary>
public const string LiteralCyclohexane = "8507001";
/// <summary>
/// Literal for code: Ornithine
/// </summary>
public const string LiteralOrnithine = "8514004";
/// <summary>
/// Literal for code: HemoglobinMachida
/// </summary>
public const string LiteralHemoglobinMachida = "8520003";
/// <summary>
/// Literal for code: Osmium183
/// </summary>
public const string LiteralOsmium183 = "8525008";
/// <summary>
/// Literal for code: UrinaryProteinOfLowMolecularWeight
/// </summary>
public const string LiteralUrinaryProteinOfLowMolecularWeight = "8529002";
/// <summary>
/// Literal for code: Tin110
/// </summary>
public const string LiteralTin110 = "8534003";
/// <summary>
/// Literal for code: Solution
/// </summary>
public const string LiteralSolution = "8537005";
/// <summary>
/// Literal for code: PotassiumCyanate
/// </summary>
public const string LiteralPotassiumCyanate = "8578007";
/// <summary>
/// Literal for code: PeptideNPower4PowerNAcetylBGlucosaminylAsparagineAmidase
/// </summary>
public const string LiteralPeptideNPower4PowerNAcetylBGlucosaminylAsparagineAmidase = "859004";
/// <summary>
/// Literal for code: Dichlorodifluoromethane
/// </summary>
public const string LiteralDichlorodifluoromethane = "8591008";
/// <summary>
/// Literal for code: ImmunoglobulinAggregated
/// </summary>
public const string LiteralImmunoglobulinAggregated = "860009";
/// <summary>
/// Literal for code: TumorNecrosisFactor
/// </summary>
public const string LiteralTumorNecrosisFactor = "8612007";
/// <summary>
/// Literal for code: OncogeneProteinTCL6
/// </summary>
public const string LiteralOncogeneProteinTCL6 = "8620009";
/// <summary>
/// Literal for code: PotassiumChloride
/// </summary>
public const string LiteralPotassiumChloride = "8631001";
/// <summary>
/// Literal for code: Rubijervine
/// </summary>
public const string LiteralRubijervine = "8653004";
/// <summary>
/// Literal for code: ComplementComponentC3c
/// </summary>
public const string LiteralComplementComponentC3c = "8660005";
/// <summary>
/// Literal for code: GumArabic
/// </summary>
public const string LiteralGumArabic = "8687009";
/// <summary>
/// Literal for code: KanamycinSulfate
/// </summary>
public const string LiteralKanamycinSulfate = "8689007";
/// <summary>
/// Literal for code: Sulfachlorpyridazine
/// </summary>
public const string LiteralSulfachlorpyridazine = "8701002";
/// <summary>
/// Literal for code: VAL4HydroxybenzoateDecarboxylase
/// </summary>
public const string LiteralVAL4HydroxybenzoateDecarboxylase = "8705006";
/// <summary>
/// Literal for code: Urethan
/// </summary>
public const string LiteralUrethan = "873008";
/// <summary>
/// Literal for code: BloodGroupAntibodyAustin
/// </summary>
public const string LiteralBloodGroupAntibodyAustin = "8731008";
/// <summary>
/// Literal for code: C3H20Bb
/// </summary>
public const string LiteralC3H20Bb = "8740007";
/// <summary>
/// Literal for code: BloodGroupAntigenD
/// </summary>
public const string LiteralBloodGroupAntigenD = "876000";
/// <summary>
/// Literal for code: AdenylylsulfateKinase
/// </summary>
public const string LiteralAdenylylsulfateKinase = "8761000";
/// <summary>
/// Literal for code: Santonin
/// </summary>
public const string LiteralSantonin = "8767001";
/// <summary>
/// Literal for code: CarboxypeptidaseA
/// </summary>
public const string LiteralCarboxypeptidaseA = "877009";
/// <summary>
/// Literal for code: ChlorineDioxide
/// </summary>
public const string LiteralChlorineDioxide = "8785008";
/// <summary>
/// Literal for code: BloodGroupAntigenWdPowerAPower
/// </summary>
public const string LiteralBloodGroupAntigenWdPowerAPower = "8786009";
/// <summary>
/// Literal for code: HemoglobinF
/// </summary>
public const string LiteralHemoglobinF = "8795001";
/// <summary>
/// Literal for code: LHReceptorSite
/// </summary>
public const string LiteralLHReceptorSite = "8817004";
/// <summary>
/// Literal for code: BloodGroupAntibodyTriW
/// </summary>
public const string LiteralBloodGroupAntibodyTriW = "8818009";
/// <summary>
/// Literal for code: LinoleicAcid
/// </summary>
public const string LiteralLinoleicAcid = "8822004";
/// <summary>
/// Literal for code: NitrateReductaseNADPH
/// </summary>
public const string LiteralNitrateReductaseNADPH = "8830003";
/// <summary>
/// Literal for code: Gallocyanine
/// </summary>
public const string LiteralGallocyanine = "8836009";
/// <summary>
/// Literal for code: HydroxybutyrateDimerHydrolase
/// </summary>
public const string LiteralHydroxybutyrateDimerHydrolase = "8844009";
/// <summary>
/// Literal for code: Strontium85SrNitrate
/// </summary>
public const string LiteralStrontium85SrNitrate = "8858006";
/// <summary>
/// Literal for code: NaturalGraphite
/// </summary>
public const string LiteralNaturalGraphite = "8865003";
/// <summary>
/// Literal for code: BloodGroupAntigenEvelyn
/// </summary>
public const string LiteralBloodGroupAntigenEvelyn = "8878003";
/// <summary>
/// Literal for code: VAL3Hydroxybenzoate6Hydroxylase
/// </summary>
public const string LiteralVAL3Hydroxybenzoate6Hydroxylase = "8882001";
/// <summary>
/// Literal for code: FlecainideAcetate
/// </summary>
public const string LiteralFlecainideAcetate = "8886003";
/// <summary>
/// Literal for code: AcetylCoACarboxylaseKinase
/// </summary>
public const string LiteralAcetylCoACarboxylaseKinase = "889006";
/// <summary>
/// Literal for code: BloodGroupAntibodyIPowerTPower
/// </summary>
public const string LiteralBloodGroupAntibodyIPowerTPower = "8908003";
/// <summary>
/// Literal for code: Endolymph
/// </summary>
public const string LiteralEndolymph = "8914005";
/// <summary>
/// Literal for code: Biotin
/// </summary>
public const string LiteralBiotin = "8919000";
/// <summary>
/// Literal for code: AzurB
/// </summary>
public const string LiteralAzurB = "8926000";
/// <summary>
/// Literal for code: PhosphopantothenateCysteineLigase
/// </summary>
public const string LiteralPhosphopantothenateCysteineLigase = "8945009";
/// <summary>
/// Literal for code: VAL23Dihydroxyindole23Dioxygenase
/// </summary>
public const string LiteralVAL23Dihydroxyindole23Dioxygenase = "8953001";
/// <summary>
/// Literal for code: Ice
/// </summary>
public const string LiteralIce = "896008";
/// <summary>
/// Literal for code: NAcetylmuramoylLAlanineAmidase
/// </summary>
public const string LiteralNAcetylmuramoylLAlanineAmidase = "8963009";
/// <summary>
/// Literal for code: BulbourethralSecretions
/// </summary>
public const string LiteralBulbourethralSecretions = "8969008";
/// <summary>
/// Literal for code: BloodGroupAntibodyTarplee
/// </summary>
public const string LiteralBloodGroupAntibodyTarplee = "8977007";
/// <summary>
/// Literal for code: OleateHydratase
/// </summary>
public const string LiteralOleateHydratase = "8982000";
/// <summary>
/// Literal for code: CyclePhaseSpecificAgent
/// </summary>
public const string LiteralCyclePhaseSpecificAgent = "8987006";
/// <summary>
/// Literal for code: Ribulokinase
/// </summary>
public const string LiteralRibulokinase = "8991001";
/// <summary>
/// Literal for code: MethylBlue
/// </summary>
public const string LiteralMethylBlue = "9010006";
/// <summary>
/// Literal for code: DephosphoCoAKinase
/// </summary>
public const string LiteralDephosphoCoAKinase = "9013008";
/// <summary>
/// Literal for code: Carbaryl
/// </summary>
public const string LiteralCarbaryl = "9021002";
/// <summary>
/// Literal for code: Glucose6PhosphateDehydrogenase
/// </summary>
public const string LiteralGlucose6PhosphateDehydrogenase = "9024005";
/// <summary>
/// Literal for code: RadonRadioisotope
/// </summary>
public const string LiteralRadonRadioisotope = "9045003";
/// <summary>
/// Literal for code: ODihydroxycoumarinOPower7PowerGlucosyltransferase
/// </summary>
public const string LiteralODihydroxycoumarinOPower7PowerGlucosyltransferase = "905001";
/// <summary>
/// Literal for code: AllspiceOil
/// </summary>
public const string LiteralAllspiceOil = "9052001";
/// <summary>
/// Literal for code: BloodGroupAntigenHLAB15
/// </summary>
public const string LiteralBloodGroupAntigenHLAB15 = "9054000";
/// <summary>
/// Literal for code: RetinolFattyAcyltransferase
/// </summary>
public const string LiteralRetinolFattyAcyltransferase = "9103003";
/// <summary>
/// Literal for code: MercuricCompound
/// </summary>
public const string LiteralMercuricCompound = "9110009";
/// <summary>
/// Literal for code: Sempervirine
/// </summary>
public const string LiteralSempervirine = "9125009";
/// <summary>
/// Literal for code: TriacetateLactonase
/// </summary>
public const string LiteralTriacetateLactonase = "9159008";
/// <summary>
/// Literal for code: BloodGroupAntibodyAlda
/// </summary>
public const string LiteralBloodGroupAntibodyAlda = "9172009";
/// <summary>
/// Literal for code: FibrinogenPoitiers
/// </summary>
public const string LiteralFibrinogenPoitiers = "9174005";
/// <summary>
/// Literal for code: BetaNAcetylgalactosaminidase
/// </summary>
public const string LiteralBetaNAcetylgalactosaminidase = "9183000";
/// <summary>
/// Literal for code: CMPNAcetylneuraminateLactosylceramideAlpha23Sialyltransferase
/// </summary>
public const string LiteralCMPNAcetylneuraminateLactosylceramideAlpha23Sialyltransferase = "9189001";
/// <summary>
/// Literal for code: AllergyToEggs
/// </summary>
public const string LiteralAllergyToEggs = "91930004";
/// <summary>
/// Literal for code: AllergyToErythromycin
/// </summary>
public const string LiteralAllergyToErythromycin = "91931000";
/// <summary>
/// Literal for code: AllergyToFruit
/// </summary>
public const string LiteralAllergyToFruit = "91932007";
/// <summary>
/// Literal for code: AllergyToMacrolideAntibiotic
/// </summary>
public const string LiteralAllergyToMacrolideAntibiotic = "91933002";
/// <summary>
/// Literal for code: NutAllergy
/// </summary>
public const string LiteralNutAllergy = "91934008";
/// <summary>
/// Literal for code: AllergyToPeanuts
/// </summary>
public const string LiteralAllergyToPeanuts = "91935009";
/// <summary>
/// Literal for code: AllergyToPenicillin
/// </summary>
public const string LiteralAllergyToPenicillin = "91936005";
/// <summary>
/// Literal for code: AllergyToSeafood
/// </summary>
public const string LiteralAllergyToSeafood = "91937001";
/// <summary>
/// Literal for code: AllergyToStrawberries
/// </summary>
public const string LiteralAllergyToStrawberries = "91938006";
/// <summary>
/// Literal for code: AllergyToSulfonamides
/// </summary>
public const string LiteralAllergyToSulfonamides = "91939003";
/// <summary>
/// Literal for code: AllergyToWalnut
/// </summary>
public const string LiteralAllergyToWalnut = "91940001";
/// <summary>
/// Literal for code: ImmunoglobulinGeneINVAllotype
/// </summary>
public const string LiteralImmunoglobulinGeneINVAllotype = "9195000";
/// <summary>
/// Literal for code: ApioseReductase
/// </summary>
public const string LiteralApioseReductase = "9197008";
/// <summary>
/// Literal for code: HemoglobinTarrant
/// </summary>
public const string LiteralHemoglobinTarrant = "9205004";
/// <summary>
/// Literal for code: PlantPhenolOil
/// </summary>
public const string LiteralPlantPhenolOil = "9220005";
/// <summary>
/// Literal for code: BorneolDehydrogenase
/// </summary>
public const string LiteralBorneolDehydrogenase = "9223007";
/// <summary>
/// Literal for code: ComplementComponentC2
/// </summary>
public const string LiteralComplementComponentC2 = "923009";
/// <summary>
/// Literal for code: Chlorobutanol
/// </summary>
public const string LiteralChlorobutanol = "9234005";
/// <summary>
/// Literal for code: Tellurium118
/// </summary>
public const string LiteralTellurium118 = "9246009";
/// <summary>
/// Literal for code: SodiumIodipamide
/// </summary>
public const string LiteralSodiumIodipamide = "925002";
/// <summary>
/// Literal for code: HLADRw16Antigen
/// </summary>
public const string LiteralHLADRw16Antigen = "9253000";
/// <summary>
/// Literal for code: CatecholamineReceptor
/// </summary>
public const string LiteralCatecholamineReceptor = "9270008";
/// <summary>
/// Literal for code: FibrinogenPontoise
/// </summary>
public const string LiteralFibrinogenPontoise = "9271007";
/// <summary>
/// Literal for code: LensNeutralProteinase
/// </summary>
public const string LiteralLensNeutralProteinase = "9301005";
/// <summary>
/// Literal for code: GentisateDecarboxylase
/// </summary>
public const string LiteralGentisateDecarboxylase = "9302003";
/// <summary>
/// Literal for code: SpearmintOil
/// </summary>
public const string LiteralSpearmintOil = "9315007";
/// <summary>
/// Literal for code: BloodGroupAntibodyVennera
/// </summary>
public const string LiteralBloodGroupAntibodyVennera = "9319001";
/// <summary>
/// Literal for code: IsopropylGlycidylEther
/// </summary>
public const string LiteralIsopropylGlycidylEther = "9334007";
/// <summary>
/// Literal for code: Nitrobenzene
/// </summary>
public const string LiteralNitrobenzene = "9349004";
/// <summary>
/// Literal for code: Palladium103
/// </summary>
public const string LiteralPalladium103 = "9351000";
/// <summary>
/// Literal for code: HemoglobinFAlexandra
/// </summary>
public const string LiteralHemoglobinFAlexandra = "9355009";
/// <summary>
/// Literal for code: BloodGroupAntibodyPollio
/// </summary>
public const string LiteralBloodGroupAntibodyPollio = "9392009";
/// <summary>
/// Literal for code: Pyridoxine4Dehydrogenase
/// </summary>
public const string LiteralPyridoxine4Dehydrogenase = "963005";
/// <summary>
/// Literal for code: AdenosylmethionineDecarboxylase
/// </summary>
public const string LiteralAdenosylmethionineDecarboxylase = "974001";
/// <summary>
/// Literal for code: CarbamateKinase
/// </summary>
public const string LiteralCarbamateKinase = "979006";
/// <summary>
/// Literal for code: PalladiumCompound
/// </summary>
public const string LiteralPalladiumCompound = "993004";
};
}
| 27.397754 | 227 | 0.599555 | [
"MIT"
] | microsoft-healthcare-madison/argonaut-subscription-server-proxy | argonaut-subscription-server-proxy/Fhir/R5/ValueSets/AllergyintoleranceCode.cs | 773,330 | C# |
// Copyright (c) 2017 Andrew Vardeman. Published under the MIT license.
// See license.txt in the FileSharper distribution or repository for the
// full text of the license.
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using FileSharperCore.Util;
namespace FileSharperCore.FieldSources.Text
{
public class WordCountFieldSource : FieldSourceBase
{
public override int ColumnCount => 1;
public override string[] ColumnHeaders => new string[] { "Word Count" };
public override string Name => "Word Count";
public override string Category => "Text";
public override string Description => "The number of words in the text file";
public override object Parameters => null;
public override string[] GetValues(FileInfo file, Dictionary<Type, IFileCache> fileCaches, CancellationToken token)
{
int wordCount = 0;
string value = "N/A";
try
{
using (StreamReader reader = new StreamReader(file.FullName))
{
wordCount = TextUtil.GetWordCount(reader, token);
}
value = wordCount.ToString();
}
catch (Exception ex)
{
}
return new string[] { value };
}
}
}
| 29.212766 | 123 | 0.604516 | [
"MIT"
] | adv12/FileSharper | src/FileSharper/FileSharperCore/FieldSources/Text/WordCountFieldSource.cs | 1,375 | C# |
using System;
using Xunit.Metadata.Core;
using Xunit.Sdk;
namespace Xunit.Metadata
{
/// <inheritdoc cref="ITraitAttribute" />
/// <summary>System is assessed in terms of responsiveness and stability under various workloads.</summary>
[XunitCategory("Performance")]
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = true)]
public sealed partial class PerformanceAttribute : Attribute, ITraitAttribute
{
/// <inheritdoc />
/// <summary>Associates the test with the Performance category and optional reference.</summary>
/// <param name="reference">A reference identifier.</param>
public PerformanceAttribute(string reference = null)
{
Reference = reference;
}
/// <summary>A reference identifier.</summary>
[XunitCategoryProperty]
public string Reference { get; }
}
} | 37.48 | 112 | 0.662753 | [
"MIT"
] | jrbeverly/xunit-metadata | src/Xunit.Metadata/PerformanceAttribute.cs | 939 | C# |
// Copyright (c) Six Labors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Memory.Internals
{
/// <summary>
/// Provides an <see cref="IManagedByteBuffer"/> based on <see cref="BasicArrayBuffer{T}"/>.
/// </summary>
internal sealed class BasicByteBuffer : BasicArrayBuffer<byte>, IManagedByteBuffer
{
/// <summary>
/// Initializes a new instance of the <see cref="BasicByteBuffer"/> class.
/// </summary>
/// <param name="array">The byte array.</param>
internal BasicByteBuffer(byte[] array)
: base(array)
{
}
}
} | 32.1 | 96 | 0.61215 | [
"Apache-2.0"
] | AlexNDRmac/ImageSharp | src/ImageSharp/Memory/Allocators/Internals/BasicByteBuffer.cs | 642 | C# |
using GovUk.Education.ExploreEducationStatistics.Common.Extensions;
using Microsoft.EntityFrameworkCore.Migrations;
using static GovUk.Education.ExploreEducationStatistics.Data.Model.Migrations.MigrationConstants;
namespace GovUk.Education.ExploreEducationStatistics.Data.Model.Migrations
{
public partial class EES1791_Add_LA_Boundary_Data : Migration
{
private const string MigrationId = "20210107162140";
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql(
"UPDATE dbo.geometry_columns SET f_table_catalog = 'statistics' WHERE f_table_catalog = 'master'");
migrationBuilder.Sql("SET IDENTITY_INSERT BoundaryLevel ON");
migrationBuilder.Sql(
"INSERT INTO dbo.BoundaryLevel (Id, Level, Label, Published) VALUES (9, 'LA', 'Counties and Unitary Authorities April 2019 Boundaries EW BUC', '2020-07-27 00:00:00.0000000')");
migrationBuilder.Sql("SET IDENTITY_INSERT BoundaryLevel OFF");
migrationBuilder.SqlFromFileByLine(MigrationsPath, $"{MigrationId}_GeometryData.sql");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql(
"DELETE FROM dbo.geometry WHERE boundary_level_id = 9");
migrationBuilder.Sql(
"DELETE FROM dbo.BoundaryLevel WHERE Id = 9");
migrationBuilder.Sql(
"UPDATE dbo.geometry_columns SET f_table_catalog = 'master' WHERE f_table_catalog = 'statistics'");
}
}
} | 49.875 | 192 | 0.695489 | [
"MIT"
] | benoutram/explore-education-statistics | src/GovUk.Education.ExploreEducationStatistics.Data.Model/Migrations/20210107162140_EES-1791_Add_LA_Boundary_Data.cs | 1,598 | C# |
using SOA.Base;
using UnityEditor;
using System;
namespace SOA.Common.Primitives
{
[CustomEditor(typeof(ShortGameEvent))]
public class ShortGameEventEditor : GameEventEditor<ShortGameEvent, ShortUnityEvent, short>
{
}
} | 21.454545 | 95 | 0.758475 | [
"MIT"
] | Luxulicious/SOA | Package/Core/Editor/Game Events/Primitives/ShortGameEventEditor.cs | 236 | C# |
#region license
// Copyright 2016 Christoph Müller
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Test.Tests.Test001_.Operations
{
internal class SetValue : VoidOperation
{
public override object RunOnLinkedList(LinkedListExecutionState state)
{
LinkedListNode<LinkedListItem> current = state.Current;
if (current != null
&& current != state.List.First
&& current != state.List.Last)
{
current.Value = current.Value.NewWithData(
current.Value.Data.NewWithValue(value));
}
return null;
}
public override object RunOnLfdll(LfdllExecutionState state)
{
if (state.Current != null
&& state.Current != state.List.Head
&& state.Current != state.List.Tail)
{
long nodeId = state.Current.Value.NodeId;
state.Current.Value = new ListItemData(nodeId, value);
}
return null;
}
public SetValue(ObjectIdGenerator idGenerator, int value)
: base(idGenerator)
{
this.value = value;
}
#region private
private readonly int value;
#endregion
}
} | 31.967213 | 78 | 0.610769 | [
"Apache-2.0"
] | 2i/LockFreeDoublyLinkedList | test/Tests/Test001_/Operations/SetValue.cs | 1,953 | C# |
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the codeartifact-2018-09-22.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.CodeArtifact.Model
{
/// <summary>
/// Container for the parameters to the ListPackages operation.
/// Returns a list of <a href="https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_PackageSummary.html">
/// <code>PackageSummary</code> </a> objects for packages in a repository that match the
/// request parameters.
/// </summary>
public partial class ListPackagesRequest : AmazonCodeArtifactRequest
{
private string _domain;
private string _domainOwner;
private PackageFormat _format;
private int? _maxResults;
private string _awsNamespace;
private string _nextToken;
private string _packagePrefix;
private string _repository;
/// <summary>
/// Gets and sets the property Domain.
/// <para>
/// The domain that contains the repository that contains the requested list of packages.
///
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=2, Max=50)]
public string Domain
{
get { return this._domain; }
set { this._domain = value; }
}
// Check to see if Domain property is set
internal bool IsSetDomain()
{
return this._domain != null;
}
/// <summary>
/// Gets and sets the property DomainOwner.
/// <para>
/// The 12-digit account number of the AWS account that owns the domain. It does not
/// include dashes or spaces.
/// </para>
/// </summary>
[AWSProperty(Min=12, Max=12)]
public string DomainOwner
{
get { return this._domainOwner; }
set { this._domainOwner = value; }
}
// Check to see if DomainOwner property is set
internal bool IsSetDomainOwner()
{
return this._domainOwner != null;
}
/// <summary>
/// Gets and sets the property Format.
/// <para>
/// The format of the packages. The valid package types are:
/// </para>
/// <ul> <li>
/// <para>
/// <code>npm</code>: A Node Package Manager (npm) package.
/// </para>
/// </li> <li>
/// <para>
/// <code>pypi</code>: A Python Package Index (PyPI) package.
/// </para>
/// </li> <li>
/// <para>
/// <code>maven</code>: A Maven package that contains compiled code in a distributable
/// format, such as a JAR file.
/// </para>
/// </li> </ul>
/// </summary>
public PackageFormat Format
{
get { return this._format; }
set { this._format = value; }
}
// Check to see if Format property is set
internal bool IsSetFormat()
{
return this._format != null;
}
/// <summary>
/// Gets and sets the property MaxResults.
/// <para>
/// The maximum number of results to return per page.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=1000)]
public int MaxResults
{
get { return this._maxResults.GetValueOrDefault(); }
set { this._maxResults = value; }
}
// Check to see if MaxResults property is set
internal bool IsSetMaxResults()
{
return this._maxResults.HasValue;
}
/// <summary>
/// Gets and sets the property Namespace.
/// <para>
/// The namespace of the package. The package component that specifies its namespace
/// depends on its type. For example:
/// </para>
/// <ul> <li>
/// <para>
/// The namespace of a Maven package is its <code>groupId</code>.
/// </para>
/// </li> <li>
/// <para>
/// The namespace of an npm package is its <code>scope</code>.
/// </para>
/// </li> <li>
/// <para>
/// A Python package does not contain a corresponding component, so Python packages do
/// not have a namespace.
/// </para>
/// </li> </ul>
/// </summary>
[AWSProperty(Min=1, Max=255)]
public string Namespace
{
get { return this._awsNamespace; }
set { this._awsNamespace = value; }
}
// Check to see if Namespace property is set
internal bool IsSetNamespace()
{
return this._awsNamespace != null;
}
/// <summary>
/// Gets and sets the property NextToken.
/// <para>
/// The token for the next set of results. Use the value returned in the previous response
/// in the next request to retrieve the next set of results.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=2000)]
public string NextToken
{
get { return this._nextToken; }
set { this._nextToken = value; }
}
// Check to see if NextToken property is set
internal bool IsSetNextToken()
{
return this._nextToken != null;
}
/// <summary>
/// Gets and sets the property PackagePrefix.
/// <para>
/// A prefix used to filter returned repositories. Only repositories with names that
/// start with <code>repositoryPrefix</code> are returned.
/// </para>
/// </summary>
[AWSProperty(Min=1, Max=255)]
public string PackagePrefix
{
get { return this._packagePrefix; }
set { this._packagePrefix = value; }
}
// Check to see if PackagePrefix property is set
internal bool IsSetPackagePrefix()
{
return this._packagePrefix != null;
}
/// <summary>
/// Gets and sets the property Repository.
/// <para>
/// The name of the repository from which packages are to be listed.
/// </para>
/// </summary>
[AWSProperty(Required=true, Min=2, Max=100)]
public string Repository
{
get { return this._repository; }
set { this._repository = value; }
}
// Check to see if Repository property is set
internal bool IsSetRepository()
{
return this._repository != null;
}
}
} | 31.759657 | 121 | 0.551351 | [
"Apache-2.0"
] | DetlefGolze/aws-sdk-net | sdk/src/Services/CodeArtifact/Generated/Model/ListPackagesRequest.cs | 7,400 | C# |
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Yarp.ReverseProxy.Model;
using Yarp.ReverseProxy.Utilities;
namespace Yarp.ReverseProxy.Health;
internal partial class ActiveHealthCheckMonitor : IActiveHealthCheckMonitor, IClusterChangeListener, IDisposable
{
private readonly ActiveHealthCheckMonitorOptions _monitorOptions;
private readonly IDictionary<string, IActiveHealthCheckPolicy> _policies;
private readonly IProbingRequestFactory _probingRequestFactory;
private readonly ILogger<ActiveHealthCheckMonitor> _logger;
public ActiveHealthCheckMonitor(
IOptions<ActiveHealthCheckMonitorOptions> monitorOptions,
IEnumerable<IActiveHealthCheckPolicy> policies,
IProbingRequestFactory probingRequestFactory,
ITimerFactory timerFactory,
ILogger<ActiveHealthCheckMonitor> logger)
{
_monitorOptions = monitorOptions?.Value ?? throw new ArgumentNullException(nameof(monitorOptions));
_policies = policies?.ToDictionaryByUniqueId(p => p.Name) ?? throw new ArgumentNullException(nameof(policies));
_probingRequestFactory = probingRequestFactory ?? throw new ArgumentNullException(nameof(probingRequestFactory));
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
Scheduler = new EntityActionScheduler<ClusterState>(cluster => ProbeCluster(cluster), autoStart: false, runOnce: false, timerFactory);
}
public bool InitialProbeCompleted { get; private set; }
internal EntityActionScheduler<ClusterState> Scheduler { get; }
public Task CheckHealthAsync(IEnumerable<ClusterState> clusters)
{
return Task.Run(async () =>
{
try
{
var probeClusterTasks = new List<Task>();
foreach (var cluster in clusters)
{
if ((cluster.Model.Config.HealthCheck?.Active?.Enabled).GetValueOrDefault())
{
probeClusterTasks.Add(ProbeCluster(cluster));
}
}
await Task.WhenAll(probeClusterTasks);
}
catch (Exception ex)
{
Log.ExplicitActiveCheckOfAllClustersHealthFailed(_logger, ex);
}
finally
{
InitialProbeCompleted = true;
}
Scheduler.Start();
});
}
public void OnClusterAdded(ClusterState cluster)
{
var config = cluster.Model.Config.HealthCheck?.Active;
if (config != null && config.Enabled.GetValueOrDefault())
{
Scheduler.ScheduleEntity(cluster, config.Interval ?? _monitorOptions.DefaultInterval);
}
}
public void OnClusterChanged(ClusterState cluster)
{
var config = cluster.Model.Config.HealthCheck?.Active;
if (config != null && config.Enabled.GetValueOrDefault())
{
Scheduler.ChangePeriod(cluster, config.Interval ?? _monitorOptions.DefaultInterval);
}
else
{
Scheduler.UnscheduleEntity(cluster);
}
}
public void OnClusterRemoved(ClusterState cluster)
{
Scheduler.UnscheduleEntity(cluster);
}
public void Dispose()
{
Scheduler.Dispose();
}
private async Task ProbeCluster(ClusterState cluster)
{
var config = cluster.Model.Config.HealthCheck?.Active;
if (config == null || !config.Enabled.GetValueOrDefault())
{
return;
}
Log.StartingActiveHealthProbingOnCluster(_logger, cluster.ClusterId);
var allDestinations = cluster.DestinationsState.AllDestinations;
var probeTasks = new Task<DestinationProbingResult>[allDestinations.Count];
var probeResults = new DestinationProbingResult[probeTasks.Length];
var timeout = config.Timeout ?? _monitorOptions.DefaultTimeout;
for (var i = 0; i < probeTasks.Length; i++)
{
probeTasks[i] = ProbeDestinationAsync(cluster, allDestinations[i], timeout);
}
for (var i = 0; i < probeResults.Length; i++)
{
probeResults[i] = await probeTasks[i];
}
try
{
var policy = _policies.GetRequiredServiceById(config.Policy, HealthCheckConstants.ActivePolicy.ConsecutiveFailures);
policy.ProbingCompleted(cluster, probeResults);
}
catch (Exception ex)
{
Log.ActiveHealthProbingFailedOnCluster(_logger, cluster.ClusterId, ex);
}
finally
{
try
{
foreach (var probeResult in probeResults)
{
probeResult.Response?.Dispose();
}
}
catch (Exception ex)
{
Log.ErrorOccuredDuringActiveHealthProbingShutdownOnCluster(_logger, cluster.ClusterId, ex);
}
Log.StoppedActiveHealthProbingOnCluster(_logger, cluster.ClusterId);
}
}
private async Task<DestinationProbingResult> ProbeDestinationAsync(ClusterState cluster, DestinationState destination, TimeSpan timeout)
{
HttpRequestMessage request;
try
{
request = _probingRequestFactory.CreateRequest(cluster.Model, destination.Model);
}
catch (Exception ex)
{
Log.ActiveHealthProbeConstructionFailedOnCluster(_logger, destination.DestinationId, cluster.ClusterId, ex);
return new DestinationProbingResult(destination, null, ex);
}
var cts = new CancellationTokenSource(timeout);
try
{
Log.SendingHealthProbeToEndpointOfDestination(_logger, request.RequestUri, destination.DestinationId, cluster.ClusterId);
var response = await cluster.Model.HttpClient.SendAsync(request, cts.Token);
Log.DestinationProbingCompleted(_logger, destination.DestinationId, cluster.ClusterId, (int)response.StatusCode);
return new DestinationProbingResult(destination, response, null);
}
catch (Exception ex)
{
Log.DestinationProbingFailed(_logger, destination.DestinationId, cluster.ClusterId, ex);
return new DestinationProbingResult(destination, null, ex);
}
finally
{
cts.Dispose();
}
}
}
| 34.806283 | 142 | 0.644856 | [
"MIT"
] | ArchonSystemsInc/reverse-proxy | src/ReverseProxy/Health/ActiveHealthCheckMonitor.cs | 6,648 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using inventory.Controllers;
namespace Microsoft.AspNetCore.Mvc
{
public static class UrlHelperExtensions
{
public static string EmailConfirmationLink(this IUrlHelper urlHelper, string userId, string code, string scheme)
{
return urlHelper.Action(
action: nameof(AccountController.ConfirmEmail),
controller: "Account",
values: new { userId, code },
protocol: scheme);
}
public static string ResetPasswordCallbackLink(this IUrlHelper urlHelper, string userId, string code, string scheme)
{
return urlHelper.Action(
action: nameof(AccountController.ResetPassword),
controller: "Account",
values: new { userId, code },
protocol: scheme);
}
}
}
| 31.733333 | 124 | 0.622899 | [
"MIT"
] | newkisoft/newki-inventory-main | inventory/Extensions/UrlHelperExtensions.cs | 952 | C# |
using System;
using Ayehu.Sdk.ActivityCreation.Interfaces;
using Ayehu.Sdk.ActivityCreation.Extension;
using Ayehu.Sdk.ActivityCreation.Helpers;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Collections.Generic;
namespace Ayehu.Thycotic
{
public class TY_Get_Users_In_Team : IActivityAsync
{
public string endPoint = "https://{hostname}";
public string Jsonkeypath = "members";
public string password1 = "";
public string id_p = "";
public string skip = "";
public string sortBy_0__direction = "";
public string sortBy_0__name = "";
public string sortBy_0__priority = "";
public string take = "";
private bool omitJsonEmptyorNull = true;
private string contentType = "application/json";
private string httpMethod = "GET";
private string _uriBuilderPath;
private string _postData;
private System.Collections.Generic.Dictionary<string, string> _headers;
private System.Collections.Generic.Dictionary<string, string> _queryStringArray;
private string uriBuilderPath {
get {
if (string.IsNullOrEmpty(_uriBuilderPath)) {
_uriBuilderPath = string.Format("SecretServer/api/v1/teams/{0}/members",id_p);
}
return _uriBuilderPath;
}
set {
this._uriBuilderPath = value;
}
}
private string postData {
get {
if (string.IsNullOrEmpty(_postData)) {
_postData = "";
}
return _postData;
}
set {
this._postData = value;
}
}
private System.Collections.Generic.Dictionary<string, string> headers {
get {
if (_headers == null) {
_headers = new Dictionary<string, string>() { {"Authorization","Bearer " + password1} };
}
return _headers;
}
set {
this._headers = value;
}
}
private System.Collections.Generic.Dictionary<string, string> queryStringArray {
get {
if (_queryStringArray == null) {
_queryStringArray = new Dictionary<string, string>() { {"skip",skip},{"sortBy[0].direction",sortBy_0__direction},{"sortBy[0].name",sortBy_0__name},{"sortBy[0].priority",sortBy_0__priority},{"take",take} };
}
return _queryStringArray;
}
set {
this._queryStringArray = value;
}
}
public TY_Get_Users_In_Team() {
}
public TY_Get_Users_In_Team(string endPoint, string Jsonkeypath, string password1, string id_p, string skip, string sortBy_0__direction, string sortBy_0__name, string sortBy_0__priority, string take) {
this.endPoint = endPoint;
this.Jsonkeypath = Jsonkeypath;
this.password1 = password1;
this.id_p = id_p;
this.skip = skip;
this.sortBy_0__direction = sortBy_0__direction;
this.sortBy_0__name = sortBy_0__name;
this.sortBy_0__priority = sortBy_0__priority;
this.take = take;
}
public async System.Threading.Tasks.Task<ICustomActivityResult> Execute()
{
HttpClient client = new HttpClient();
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
ServicePointManager.ServerCertificateValidationCallback = new System.Net.Security.RemoteCertificateValidationCallback(AcceptAllCertifications);
UriBuilder UriBuilder = new UriBuilder(endPoint);
UriBuilder.Path = uriBuilderPath;
UriBuilder.Query = AyehuHelper.queryStringBuilder(queryStringArray);
HttpRequestMessage myHttpRequestMessage = new HttpRequestMessage(new HttpMethod(httpMethod), UriBuilder.ToString());
if (contentType == "application/x-www-form-urlencoded")
myHttpRequestMessage.Content = AyehuHelper.formUrlEncodedContent(postData);
else
if (string.IsNullOrEmpty(postData) == false)
if (omitJsonEmptyorNull)
myHttpRequestMessage.Content = new StringContent(AyehuHelper.omitJsonEmptyorNull(postData), Encoding.UTF8, "application/json");
else
myHttpRequestMessage.Content = new StringContent(postData, Encoding.UTF8, contentType);
foreach (KeyValuePair<string, string> headeritem in headers)
client.DefaultRequestHeaders.Add(headeritem.Key, headeritem.Value);
HttpResponseMessage response = client.SendAsync(myHttpRequestMessage).Result;
switch (response.StatusCode)
{
case HttpStatusCode.NoContent:
case HttpStatusCode.Created:
case HttpStatusCode.Accepted:
case HttpStatusCode.OK:
{
if (string.IsNullOrEmpty(response.Content.ReadAsStringAsync().Result) == false)
return this.GenerateActivityResult(response.Content.ReadAsStringAsync().Result, Jsonkeypath);
else
return this.GenerateActivityResult("Success");
}
default:
{
if (string.IsNullOrEmpty(response.Content.ReadAsStringAsync().Result) == false)
throw new Exception(response.Content.ReadAsStringAsync().Result);
else if (string.IsNullOrEmpty(response.ReasonPhrase) == false)
throw new Exception(response.ReasonPhrase);
else
throw new Exception(response.StatusCode.ToString());
}
}
}
public bool AcceptAllCertifications(object sender, System.Security.Cryptography.X509Certificates.X509Certificate certification, System.Security.Cryptography.X509Certificates.X509Chain chain, System.Net.Security.SslPolicyErrors sslPolicyErrors)
{
return true;
}
}
} | 36.147929 | 251 | 0.623015 | [
"MIT"
] | Ayehu/custom-activities | Thycotic/Teams/TY Get Users In Team/TY Get Users In Team.cs | 6,109 | C# |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace LinqToDB.Common.Internal.Cache
{
internal class CacheEntryStack
{
private readonly CacheEntryStack _previous;
private readonly CacheEntry _entry;
private CacheEntryStack()
{
}
private CacheEntryStack(CacheEntryStack previous, CacheEntry entry)
{
if (previous == null)
{
throw new ArgumentNullException(nameof(previous));
}
_previous = previous;
_entry = entry;
}
public static CacheEntryStack Empty { get; } = new CacheEntryStack();
public CacheEntryStack Push(CacheEntry c)
{
return new CacheEntryStack(this, c);
}
public CacheEntry Peek()
{
return _entry;
}
}
}
| 25.268293 | 112 | 0.569498 | [
"MIT"
] | FrancisChung/linq2db | Source/LinqToDB/Common/Internal/Cache/CacheEntryStack.cs | 998 | C# |
// Copyright © Tanner Gooding and Contributors. Licensed under the MIT License (MIT). See License.md in the repository root for more information.
// Ported from um/ShObjIdl_core.h in the Windows SDK for Windows 10.0.20348.0
// Original source is Copyright © Microsoft. All rights reserved.
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace TerraFX.Interop.Windows;
/// <include file='IEnumAssocHandlers.xml' path='doc/member[@name="IEnumAssocHandlers"]/*' />
[Guid("973810AE-9599-4B88-9E4D-6EE98C9552DA")]
[NativeTypeName("struct IEnumAssocHandlers : IUnknown")]
[NativeInheritance("IUnknown")]
public unsafe partial struct IEnumAssocHandlers : IEnumAssocHandlers.Interface
{
public void** lpVtbl;
/// <inheritdoc cref="IUnknown.QueryInterface" />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
[VtblIndex(0)]
public HRESULT QueryInterface([NativeTypeName("const IID &")] Guid* riid, void** ppvObject)
{
return ((delegate* unmanaged<IEnumAssocHandlers*, Guid*, void**, int>)(lpVtbl[0]))((IEnumAssocHandlers*)Unsafe.AsPointer(ref this), riid, ppvObject);
}
/// <inheritdoc cref="IUnknown.AddRef" />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
[VtblIndex(1)]
[return: NativeTypeName("ULONG")]
public uint AddRef()
{
return ((delegate* unmanaged<IEnumAssocHandlers*, uint>)(lpVtbl[1]))((IEnumAssocHandlers*)Unsafe.AsPointer(ref this));
}
/// <inheritdoc cref="IUnknown.Release" />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
[VtblIndex(2)]
[return: NativeTypeName("ULONG")]
public uint Release()
{
return ((delegate* unmanaged<IEnumAssocHandlers*, uint>)(lpVtbl[2]))((IEnumAssocHandlers*)Unsafe.AsPointer(ref this));
}
/// <include file='IEnumAssocHandlers.xml' path='doc/member[@name="IEnumAssocHandlers.Next"]/*' />
[MethodImpl(MethodImplOptions.AggressiveInlining)]
[VtblIndex(3)]
public HRESULT Next([NativeTypeName("ULONG")] uint celt, IAssocHandler** rgelt, [NativeTypeName("ULONG *")] uint* pceltFetched)
{
return ((delegate* unmanaged<IEnumAssocHandlers*, uint, IAssocHandler**, uint*, int>)(lpVtbl[3]))((IEnumAssocHandlers*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched);
}
public interface Interface : IUnknown.Interface
{
[VtblIndex(3)]
HRESULT Next([NativeTypeName("ULONG")] uint celt, IAssocHandler** rgelt, [NativeTypeName("ULONG *")] uint* pceltFetched);
}
public partial struct Vtbl<TSelf>
where TSelf : unmanaged, Interface
{
[NativeTypeName("HRESULT (const IID &, void **) __attribute__((stdcall))")]
public delegate* unmanaged<TSelf*, Guid*, void**, int> QueryInterface;
[NativeTypeName("ULONG () __attribute__((stdcall))")]
public delegate* unmanaged<TSelf*, uint> AddRef;
[NativeTypeName("ULONG () __attribute__((stdcall))")]
public delegate* unmanaged<TSelf*, uint> Release;
[NativeTypeName("HRESULT (ULONG, IAssocHandler **, ULONG *) __attribute__((stdcall))")]
public delegate* unmanaged<TSelf*, uint, IAssocHandler**, uint*, int> Next;
}
}
| 42.157895 | 182 | 0.697878 | [
"MIT"
] | IngmarBitter/terrafx.interop.windows | sources/Interop/Windows/Windows/um/ShObjIdl_core/IEnumAssocHandlers.cs | 3,206 | C# |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using BaseFormsApp.Utils;
namespace BaseFormsApp
{
public partial class Form1 : Form
{
private readonly LogUtil logUtil = new LogUtil();
public Form1()
{
this.logUtil.InfoLog("Start App.");
this.InitializeComponent();
this.logUtil.InfoLog("InitializeComponent");
}
}
}
| 22.56 | 57 | 0.677305 | [
"MIT"
] | tys-hiroshi/BaseFormsAppNetFramework | BaseFormsApp/BaseFormsApp/Form1.cs | 564 | C# |
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Generated code. DO NOT EDIT!
using gax = Google.Api.Gax;
using gaxgrpc = Google.Api.Gax.Grpc;
using gaxres = Google.Api.Gax.ResourceNames;
using pb = Google.Protobuf;
using pbwkt = Google.Protobuf.WellKnownTypes;
using grpccore = Grpc.Core;
using sys = System;
using sc = System.Collections;
using scg = System.Collections.Generic;
using sco = System.Collections.ObjectModel;
using st = System.Threading;
using stt = System.Threading.Tasks;
namespace Google.Cloud.PhishingProtection.V1Beta1
{
/// <summary>
/// Settings for a <see cref="PhishingProtectionServiceV1Beta1Client"/>.
/// </summary>
public sealed partial class PhishingProtectionServiceV1Beta1Settings : gaxgrpc::ServiceSettingsBase
{
/// <summary>
/// Get a new instance of the default <see cref="PhishingProtectionServiceV1Beta1Settings"/>.
/// </summary>
/// <returns>
/// A new instance of the default <see cref="PhishingProtectionServiceV1Beta1Settings"/>.
/// </returns>
public static PhishingProtectionServiceV1Beta1Settings GetDefault() => new PhishingProtectionServiceV1Beta1Settings();
/// <summary>
/// Constructs a new <see cref="PhishingProtectionServiceV1Beta1Settings"/> object with default settings.
/// </summary>
public PhishingProtectionServiceV1Beta1Settings() { }
private PhishingProtectionServiceV1Beta1Settings(PhishingProtectionServiceV1Beta1Settings existing) : base(existing)
{
gax::GaxPreconditions.CheckNotNull(existing, nameof(existing));
ReportPhishingSettings = existing.ReportPhishingSettings;
OnCopy(existing);
}
partial void OnCopy(PhishingProtectionServiceV1Beta1Settings existing);
/// <summary>
/// The filter specifying which RPC <see cref="grpccore::StatusCode"/>s are eligible for retry
/// for "Idempotent" <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods.
/// </summary>
/// <remarks>
/// The eligible RPC <see cref="grpccore::StatusCode"/>s for retry for "Idempotent" RPC methods are:
/// <list type="bullet">
/// <item><description><see cref="grpccore::StatusCode.DeadlineExceeded"/></description></item>
/// <item><description><see cref="grpccore::StatusCode.Unavailable"/></description></item>
/// </list>
/// </remarks>
public static sys::Predicate<grpccore::RpcException> IdempotentRetryFilter { get; } =
gaxgrpc::RetrySettings.FilterForStatusCodes(grpccore::StatusCode.DeadlineExceeded, grpccore::StatusCode.Unavailable);
/// <summary>
/// The filter specifying which RPC <see cref="grpccore::StatusCode"/>s are eligible for retry
/// for "NonIdempotent" <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods.
/// </summary>
/// <remarks>
/// There are no RPC <see cref="grpccore::StatusCode"/>s eligible for retry for "NonIdempotent" RPC methods.
/// </remarks>
public static sys::Predicate<grpccore::RpcException> NonIdempotentRetryFilter { get; } =
gaxgrpc::RetrySettings.FilterForStatusCodes();
/// <summary>
/// "Default" retry backoff for <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods.
/// </summary>
/// <returns>
/// The "Default" retry backoff for <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods.
/// </returns>
/// <remarks>
/// The "Default" retry backoff for <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods is defined as:
/// <list type="bullet">
/// <item><description>Initial delay: 100 milliseconds</description></item>
/// <item><description>Maximum delay: 60000 milliseconds</description></item>
/// <item><description>Delay multiplier: 1.3</description></item>
/// </list>
/// </remarks>
public static gaxgrpc::BackoffSettings GetDefaultRetryBackoff() => new gaxgrpc::BackoffSettings(
delay: sys::TimeSpan.FromMilliseconds(100),
maxDelay: sys::TimeSpan.FromMilliseconds(60000),
delayMultiplier: 1.3
);
/// <summary>
/// "Default" timeout backoff for <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods.
/// </summary>
/// <returns>
/// The "Default" timeout backoff for <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods.
/// </returns>
/// <remarks>
/// The "Default" timeout backoff for <see cref="PhishingProtectionServiceV1Beta1Client"/> RPC methods is defined as:
/// <list type="bullet">
/// <item><description>Initial timeout: 20000 milliseconds</description></item>
/// <item><description>Timeout multiplier: 1.0</description></item>
/// <item><description>Maximum timeout: 20000 milliseconds</description></item>
/// </list>
/// </remarks>
public static gaxgrpc::BackoffSettings GetDefaultTimeoutBackoff() => new gaxgrpc::BackoffSettings(
delay: sys::TimeSpan.FromMilliseconds(20000),
maxDelay: sys::TimeSpan.FromMilliseconds(20000),
delayMultiplier: 1.0
);
/// <summary>
/// <see cref="gaxgrpc::CallSettings"/> for synchronous and asynchronous calls to
/// <c>PhishingProtectionServiceV1Beta1Client.ReportPhishing</c> and <c>PhishingProtectionServiceV1Beta1Client.ReportPhishingAsync</c>.
/// </summary>
/// <remarks>
/// The default <c>PhishingProtectionServiceV1Beta1Client.ReportPhishing</c> and
/// <c>PhishingProtectionServiceV1Beta1Client.ReportPhishingAsync</c> <see cref="gaxgrpc::RetrySettings"/> are:
/// <list type="bullet">
/// <item><description>Initial retry delay: 100 milliseconds</description></item>
/// <item><description>Retry delay multiplier: 1.3</description></item>
/// <item><description>Retry maximum delay: 60000 milliseconds</description></item>
/// <item><description>Initial timeout: 20000 milliseconds</description></item>
/// <item><description>Timeout multiplier: 1.0</description></item>
/// <item><description>Timeout maximum delay: 20000 milliseconds</description></item>
/// </list>
/// Retry will be attempted on the following response status codes:
/// <list>
/// <item><description>No status codes</description></item>
/// </list>
/// Default RPC expiration is 600000 milliseconds.
/// </remarks>
public gaxgrpc::CallSettings ReportPhishingSettings { get; set; } = gaxgrpc::CallSettings.FromCallTiming(
gaxgrpc::CallTiming.FromRetry(new gaxgrpc::RetrySettings(
retryBackoff: GetDefaultRetryBackoff(),
timeoutBackoff: GetDefaultTimeoutBackoff(),
totalExpiration: gax::Expiration.FromTimeout(sys::TimeSpan.FromMilliseconds(600000)),
retryFilter: NonIdempotentRetryFilter
)));
/// <summary>
/// Creates a deep clone of this object, with all the same property values.
/// </summary>
/// <returns>A deep clone of this <see cref="PhishingProtectionServiceV1Beta1Settings"/> object.</returns>
public PhishingProtectionServiceV1Beta1Settings Clone() => new PhishingProtectionServiceV1Beta1Settings(this);
}
/// <summary>
/// Builder class for <see cref="PhishingProtectionServiceV1Beta1Client"/> to provide simple configuration of credentials, endpoint etc.
/// </summary>
public sealed partial class PhishingProtectionServiceV1Beta1ClientBuilder : gaxgrpc::ClientBuilderBase<PhishingProtectionServiceV1Beta1Client>
{
/// <summary>
/// The settings to use for RPCs, or null for the default settings.
/// </summary>
public PhishingProtectionServiceV1Beta1Settings Settings { get; set; }
/// <inheritdoc/>
public override PhishingProtectionServiceV1Beta1Client Build()
{
Validate();
grpccore::CallInvoker callInvoker = CreateCallInvoker();
return PhishingProtectionServiceV1Beta1Client.Create(callInvoker, Settings);
}
/// <inheritdoc />
public override async stt::Task<PhishingProtectionServiceV1Beta1Client> BuildAsync(st::CancellationToken cancellationToken = default)
{
Validate();
grpccore::CallInvoker callInvoker = await CreateCallInvokerAsync(cancellationToken).ConfigureAwait(false);
return PhishingProtectionServiceV1Beta1Client.Create(callInvoker, Settings);
}
/// <inheritdoc />
protected override gaxgrpc::ServiceEndpoint GetDefaultEndpoint() => PhishingProtectionServiceV1Beta1Client.DefaultEndpoint;
/// <inheritdoc />
protected override scg::IReadOnlyList<string> GetDefaultScopes() => PhishingProtectionServiceV1Beta1Client.DefaultScopes;
/// <inheritdoc />
protected override gaxgrpc::ChannelPool GetChannelPool() => PhishingProtectionServiceV1Beta1Client.ChannelPool;
}
/// <summary>
/// PhishingProtectionServiceV1Beta1 client wrapper, for convenient use.
/// </summary>
public abstract partial class PhishingProtectionServiceV1Beta1Client
{
/// <summary>
/// The default endpoint for the PhishingProtectionServiceV1Beta1 service, which is a host of "phishingprotection.googleapis.com" and a port of 443.
/// </summary>
public static gaxgrpc::ServiceEndpoint DefaultEndpoint { get; } = new gaxgrpc::ServiceEndpoint("phishingprotection.googleapis.com", 443);
/// <summary>
/// The default PhishingProtectionServiceV1Beta1 scopes.
/// </summary>
/// <remarks>
/// The default PhishingProtectionServiceV1Beta1 scopes are:
/// <list type="bullet">
/// <item><description>"https://www.googleapis.com/auth/cloud-platform"</description></item>
/// </list>
/// </remarks>
public static scg::IReadOnlyList<string> DefaultScopes { get; } = new sco::ReadOnlyCollection<string>(new string[] {
"https://www.googleapis.com/auth/cloud-platform",
});
private static readonly gaxgrpc::ChannelPool s_channelPool = new gaxgrpc::ChannelPool(DefaultScopes);
internal static gaxgrpc::ChannelPool ChannelPool => s_channelPool;
/// <summary>
/// Asynchronously creates a <see cref="PhishingProtectionServiceV1Beta1Client"/>, applying defaults for all unspecified settings,
/// and creating a channel connecting to the given endpoint with application default credentials where
/// necessary. See the example for how to use custom credentials.
/// </summary>
/// <example>
/// This sample shows how to create a client using default credentials:
/// <code>
/// using Google.Cloud.PhishingProtection.V1Beta1;
/// ...
/// // When running on Google Cloud Platform this will use the project Compute Credential.
/// // Or set the GOOGLE_APPLICATION_CREDENTIALS environment variable to the path of a JSON
/// // credential file to use that credential.
/// PhishingProtectionServiceV1Beta1Client client = await PhishingProtectionServiceV1Beta1Client.CreateAsync();
/// </code>
/// This sample shows how to create a client using credentials loaded from a JSON file:
/// <code>
/// using Google.Cloud.PhishingProtection.V1Beta1;
/// using Google.Apis.Auth.OAuth2;
/// using Grpc.Auth;
/// using Grpc.Core;
/// ...
/// GoogleCredential cred = GoogleCredential.FromFile("/path/to/credentials.json");
/// Channel channel = new Channel(
/// PhishingProtectionServiceV1Beta1Client.DefaultEndpoint.Host, PhishingProtectionServiceV1Beta1Client.DefaultEndpoint.Port, cred.ToChannelCredentials());
/// PhishingProtectionServiceV1Beta1Client client = PhishingProtectionServiceV1Beta1Client.Create(channel);
/// ...
/// // Shutdown the channel when it is no longer required.
/// await channel.ShutdownAsync();
/// </code>
/// </example>
/// <param name="endpoint">Optional <see cref="gaxgrpc::ServiceEndpoint"/>.</param>
/// <param name="settings">Optional <see cref="PhishingProtectionServiceV1Beta1Settings"/>.</param>
/// <returns>The task representing the created <see cref="PhishingProtectionServiceV1Beta1Client"/>.</returns>
public static async stt::Task<PhishingProtectionServiceV1Beta1Client> CreateAsync(gaxgrpc::ServiceEndpoint endpoint = null, PhishingProtectionServiceV1Beta1Settings settings = null)
{
grpccore::Channel channel = await s_channelPool.GetChannelAsync(endpoint ?? DefaultEndpoint).ConfigureAwait(false);
return Create(channel, settings);
}
/// <summary>
/// Synchronously creates a <see cref="PhishingProtectionServiceV1Beta1Client"/>, applying defaults for all unspecified settings,
/// and creating a channel connecting to the given endpoint with application default credentials where
/// necessary. See the example for how to use custom credentials.
/// </summary>
/// <example>
/// This sample shows how to create a client using default credentials:
/// <code>
/// using Google.Cloud.PhishingProtection.V1Beta1;
/// ...
/// // When running on Google Cloud Platform this will use the project Compute Credential.
/// // Or set the GOOGLE_APPLICATION_CREDENTIALS environment variable to the path of a JSON
/// // credential file to use that credential.
/// PhishingProtectionServiceV1Beta1Client client = PhishingProtectionServiceV1Beta1Client.Create();
/// </code>
/// This sample shows how to create a client using credentials loaded from a JSON file:
/// <code>
/// using Google.Cloud.PhishingProtection.V1Beta1;
/// using Google.Apis.Auth.OAuth2;
/// using Grpc.Auth;
/// using Grpc.Core;
/// ...
/// GoogleCredential cred = GoogleCredential.FromFile("/path/to/credentials.json");
/// Channel channel = new Channel(
/// PhishingProtectionServiceV1Beta1Client.DefaultEndpoint.Host, PhishingProtectionServiceV1Beta1Client.DefaultEndpoint.Port, cred.ToChannelCredentials());
/// PhishingProtectionServiceV1Beta1Client client = PhishingProtectionServiceV1Beta1Client.Create(channel);
/// ...
/// // Shutdown the channel when it is no longer required.
/// channel.ShutdownAsync().Wait();
/// </code>
/// </example>
/// <param name="endpoint">Optional <see cref="gaxgrpc::ServiceEndpoint"/>.</param>
/// <param name="settings">Optional <see cref="PhishingProtectionServiceV1Beta1Settings"/>.</param>
/// <returns>The created <see cref="PhishingProtectionServiceV1Beta1Client"/>.</returns>
public static PhishingProtectionServiceV1Beta1Client Create(gaxgrpc::ServiceEndpoint endpoint = null, PhishingProtectionServiceV1Beta1Settings settings = null)
{
grpccore::Channel channel = s_channelPool.GetChannel(endpoint ?? DefaultEndpoint);
return Create(channel, settings);
}
/// <summary>
/// Creates a <see cref="PhishingProtectionServiceV1Beta1Client"/> which uses the specified channel for remote operations.
/// </summary>
/// <param name="channel">The <see cref="grpccore::Channel"/> for remote operations. Must not be null.</param>
/// <param name="settings">Optional <see cref="PhishingProtectionServiceV1Beta1Settings"/>.</param>
/// <returns>The created <see cref="PhishingProtectionServiceV1Beta1Client"/>.</returns>
public static PhishingProtectionServiceV1Beta1Client Create(grpccore::Channel channel, PhishingProtectionServiceV1Beta1Settings settings = null)
{
gax::GaxPreconditions.CheckNotNull(channel, nameof(channel));
return Create(new grpccore::DefaultCallInvoker(channel), settings);
}
/// <summary>
/// Creates a <see cref="PhishingProtectionServiceV1Beta1Client"/> which uses the specified call invoker for remote operations.
/// </summary>
/// <param name="callInvoker">The <see cref="grpccore::CallInvoker"/> for remote operations. Must not be null.</param>
/// <param name="settings">Optional <see cref="PhishingProtectionServiceV1Beta1Settings"/>.</param>
/// <returns>The created <see cref="PhishingProtectionServiceV1Beta1Client"/>.</returns>
public static PhishingProtectionServiceV1Beta1Client Create(grpccore::CallInvoker callInvoker, PhishingProtectionServiceV1Beta1Settings settings = null)
{
gax::GaxPreconditions.CheckNotNull(callInvoker, nameof(callInvoker));
grpccore::Interceptors.Interceptor interceptor = settings?.Interceptor;
if (interceptor != null)
{
callInvoker = grpccore::Interceptors.CallInvokerExtensions.Intercept(callInvoker, interceptor);
}
PhishingProtectionServiceV1Beta1.PhishingProtectionServiceV1Beta1Client grpcClient = new PhishingProtectionServiceV1Beta1.PhishingProtectionServiceV1Beta1Client(callInvoker);
return new PhishingProtectionServiceV1Beta1ClientImpl(grpcClient, settings);
}
/// <summary>
/// Shuts down any channels automatically created by <see cref="Create(gaxgrpc::ServiceEndpoint, PhishingProtectionServiceV1Beta1Settings)"/>
/// and <see cref="CreateAsync(gaxgrpc::ServiceEndpoint, PhishingProtectionServiceV1Beta1Settings)"/>. Channels which weren't automatically
/// created are not affected.
/// </summary>
/// <remarks>After calling this method, further calls to <see cref="Create(gaxgrpc::ServiceEndpoint, PhishingProtectionServiceV1Beta1Settings)"/>
/// and <see cref="CreateAsync(gaxgrpc::ServiceEndpoint, PhishingProtectionServiceV1Beta1Settings)"/> will create new channels, which could
/// in turn be shut down by another call to this method.</remarks>
/// <returns>A task representing the asynchronous shutdown operation.</returns>
public static stt::Task ShutdownDefaultChannelsAsync() => s_channelPool.ShutdownChannelsAsync();
/// <summary>
/// The underlying gRPC PhishingProtectionServiceV1Beta1 client.
/// </summary>
public virtual PhishingProtectionServiceV1Beta1.PhishingProtectionServiceV1Beta1Client GrpcClient
{
get { throw new sys::NotImplementedException(); }
}
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="parent">
/// Required. The name of the project for which the report will be created,
/// in the format "projects/{project_number}".
/// </param>
/// <param name="uri">
/// The URI that is being reported for phishing content to be analyzed.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public virtual stt::Task<ReportPhishingResponse> ReportPhishingAsync(
gaxres::ProjectName parent,
string uri,
gaxgrpc::CallSettings callSettings = null) => ReportPhishingAsync(
new ReportPhishingRequest
{
ParentAsProjectName = gax::GaxPreconditions.CheckNotNull(parent, nameof(parent)),
Uri = gax::GaxPreconditions.CheckNotNullOrEmpty(uri, nameof(uri)),
},
callSettings);
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="parent">
/// Required. The name of the project for which the report will be created,
/// in the format "projects/{project_number}".
/// </param>
/// <param name="uri">
/// The URI that is being reported for phishing content to be analyzed.
/// </param>
/// <param name="cancellationToken">
/// A <see cref="st::CancellationToken"/> to use for this RPC.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public virtual stt::Task<ReportPhishingResponse> ReportPhishingAsync(
gaxres::ProjectName parent,
string uri,
st::CancellationToken cancellationToken) => ReportPhishingAsync(
parent,
uri,
gaxgrpc::CallSettings.FromCancellationToken(cancellationToken));
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="parent">
/// Required. The name of the project for which the report will be created,
/// in the format "projects/{project_number}".
/// </param>
/// <param name="uri">
/// The URI that is being reported for phishing content to be analyzed.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// The RPC response.
/// </returns>
public virtual ReportPhishingResponse ReportPhishing(
gaxres::ProjectName parent,
string uri,
gaxgrpc::CallSettings callSettings = null) => ReportPhishing(
new ReportPhishingRequest
{
ParentAsProjectName = gax::GaxPreconditions.CheckNotNull(parent, nameof(parent)),
Uri = gax::GaxPreconditions.CheckNotNullOrEmpty(uri, nameof(uri)),
},
callSettings);
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="parent">
/// Required. The name of the project for which the report will be created,
/// in the format "projects/{project_number}".
/// </param>
/// <param name="uri">
/// The URI that is being reported for phishing content to be analyzed.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public virtual stt::Task<ReportPhishingResponse> ReportPhishingAsync(
string parent,
string uri,
gaxgrpc::CallSettings callSettings = null) => ReportPhishingAsync(
new ReportPhishingRequest
{
Parent = gax::GaxPreconditions.CheckNotNullOrEmpty(parent, nameof(parent)),
Uri = gax::GaxPreconditions.CheckNotNullOrEmpty(uri, nameof(uri)),
},
callSettings);
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="parent">
/// Required. The name of the project for which the report will be created,
/// in the format "projects/{project_number}".
/// </param>
/// <param name="uri">
/// The URI that is being reported for phishing content to be analyzed.
/// </param>
/// <param name="cancellationToken">
/// A <see cref="st::CancellationToken"/> to use for this RPC.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public virtual stt::Task<ReportPhishingResponse> ReportPhishingAsync(
string parent,
string uri,
st::CancellationToken cancellationToken) => ReportPhishingAsync(
parent,
uri,
gaxgrpc::CallSettings.FromCancellationToken(cancellationToken));
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="parent">
/// Required. The name of the project for which the report will be created,
/// in the format "projects/{project_number}".
/// </param>
/// <param name="uri">
/// The URI that is being reported for phishing content to be analyzed.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// The RPC response.
/// </returns>
public virtual ReportPhishingResponse ReportPhishing(
string parent,
string uri,
gaxgrpc::CallSettings callSettings = null) => ReportPhishing(
new ReportPhishingRequest
{
Parent = gax::GaxPreconditions.CheckNotNullOrEmpty(parent, nameof(parent)),
Uri = gax::GaxPreconditions.CheckNotNullOrEmpty(uri, nameof(uri)),
},
callSettings);
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="request">
/// The request object containing all of the parameters for the API call.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public virtual stt::Task<ReportPhishingResponse> ReportPhishingAsync(
ReportPhishingRequest request,
gaxgrpc::CallSettings callSettings = null)
{
throw new sys::NotImplementedException();
}
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="request">
/// The request object containing all of the parameters for the API call.
/// </param>
/// <param name="cancellationToken">
/// A <see cref="st::CancellationToken"/> to use for this RPC.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public virtual stt::Task<ReportPhishingResponse> ReportPhishingAsync(
ReportPhishingRequest request,
st::CancellationToken cancellationToken) => ReportPhishingAsync(
request,
gaxgrpc::CallSettings.FromCancellationToken(cancellationToken));
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="request">
/// The request object containing all of the parameters for the API call.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// The RPC response.
/// </returns>
public virtual ReportPhishingResponse ReportPhishing(
ReportPhishingRequest request,
gaxgrpc::CallSettings callSettings = null)
{
throw new sys::NotImplementedException();
}
}
/// <summary>
/// PhishingProtectionServiceV1Beta1 client wrapper implementation, for convenient use.
/// </summary>
public sealed partial class PhishingProtectionServiceV1Beta1ClientImpl : PhishingProtectionServiceV1Beta1Client
{
private readonly gaxgrpc::ApiCall<ReportPhishingRequest, ReportPhishingResponse> _callReportPhishing;
/// <summary>
/// Constructs a client wrapper for the PhishingProtectionServiceV1Beta1 service, with the specified gRPC client and settings.
/// </summary>
/// <param name="grpcClient">The underlying gRPC client.</param>
/// <param name="settings">The base <see cref="PhishingProtectionServiceV1Beta1Settings"/> used within this client </param>
public PhishingProtectionServiceV1Beta1ClientImpl(PhishingProtectionServiceV1Beta1.PhishingProtectionServiceV1Beta1Client grpcClient, PhishingProtectionServiceV1Beta1Settings settings)
{
GrpcClient = grpcClient;
PhishingProtectionServiceV1Beta1Settings effectiveSettings = settings ?? PhishingProtectionServiceV1Beta1Settings.GetDefault();
gaxgrpc::ClientHelper clientHelper = new gaxgrpc::ClientHelper(effectiveSettings);
_callReportPhishing = clientHelper.BuildApiCall<ReportPhishingRequest, ReportPhishingResponse>(
GrpcClient.ReportPhishingAsync, GrpcClient.ReportPhishing, effectiveSettings.ReportPhishingSettings)
.WithCallSettingsOverlay(request => gaxgrpc::CallSettings.FromHeader("x-goog-request-params", $"parent={request.Parent}"));
Modify_ApiCall(ref _callReportPhishing);
Modify_ReportPhishingApiCall(ref _callReportPhishing);
OnConstruction(grpcClient, effectiveSettings, clientHelper);
}
// Partial methods are named to (mostly) ensure there cannot be conflicts with RPC method names.
// Partial methods called for every ApiCall on construction.
// Allows modification of all the underlying ApiCall objects.
partial void Modify_ApiCall<TRequest, TResponse>(ref gaxgrpc::ApiCall<TRequest, TResponse> call)
where TRequest : class, pb::IMessage<TRequest>
where TResponse : class, pb::IMessage<TResponse>;
// Partial methods called for each ApiCall on construction.
// Allows per-RPC-method modification of the underlying ApiCall object.
partial void Modify_ReportPhishingApiCall(ref gaxgrpc::ApiCall<ReportPhishingRequest, ReportPhishingResponse> call);
partial void OnConstruction(PhishingProtectionServiceV1Beta1.PhishingProtectionServiceV1Beta1Client grpcClient, PhishingProtectionServiceV1Beta1Settings effectiveSettings, gaxgrpc::ClientHelper clientHelper);
/// <summary>
/// The underlying gRPC PhishingProtectionServiceV1Beta1 client.
/// </summary>
public override PhishingProtectionServiceV1Beta1.PhishingProtectionServiceV1Beta1Client GrpcClient { get; }
// Partial methods called on each request.
// Allows per-RPC-call modification to the request and CallSettings objects,
// before the underlying RPC is performed.
partial void Modify_ReportPhishingRequest(ref ReportPhishingRequest request, ref gaxgrpc::CallSettings settings);
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="request">
/// The request object containing all of the parameters for the API call.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// A Task containing the RPC response.
/// </returns>
public override stt::Task<ReportPhishingResponse> ReportPhishingAsync(
ReportPhishingRequest request,
gaxgrpc::CallSettings callSettings = null)
{
Modify_ReportPhishingRequest(ref request, ref callSettings);
return _callReportPhishing.Async(request, callSettings);
}
/// <summary>
/// Reports a URI suspected of containing phishing content to be reviewed. Once
/// the report review is completed, if its result verifies the existince of
/// malicious phishing content, the site will be added the to [Google's Social
/// Engineering lists](https://support.google.com/webmasters/answer/6350487/)
/// in order to protect users that could get exposed to this threat in
/// the future.
/// </summary>
/// <param name="request">
/// The request object containing all of the parameters for the API call.
/// </param>
/// <param name="callSettings">
/// If not null, applies overrides to this RPC call.
/// </param>
/// <returns>
/// The RPC response.
/// </returns>
public override ReportPhishingResponse ReportPhishing(
ReportPhishingRequest request,
gaxgrpc::CallSettings callSettings = null)
{
Modify_ReportPhishingRequest(ref request, ref callSettings);
return _callReportPhishing.Sync(request, callSettings);
}
}
// Partial classes to enable page-streaming
}
| 52.414566 | 216 | 0.651293 | [
"Apache-2.0"
] | flagbug/google-cloud-dotnet | apis/Google.Cloud.PhishingProtection.V1Beta1/Google.Cloud.PhishingProtection.V1Beta1/PhishingProtectionServiceV1Beta1Client.cs | 37,424 | C# |
using UnityEditor;
using UnityEngine;
using System.Reflection;
using UnityEditorInternal;
using System.Linq;
using System;
using System.Collections;
using System.Collections.Generic;
namespace Wargon.LeoEcsExtention.Unity {
public static class ComponentInspector {
private static bool remove;
public static void DrawComponentBox(MonoEntity entity, int index, SerializedProperty prop)
{
if(index >= entity.ComponentsCount) return;
EntityGUI.Vertical(EntityGUI.GetColorStyle(entity.ComponentsCount, index), () =>
{
DrawProperty(entity, index, prop);
});
if (remove)
Remove(entity, index);
}
private static void RemoveBtn()
{
if (GUILayout.Button(new GUIContent("✘", "Remove"), EditorStyles.miniButton, GUILayout.Width(21),
GUILayout.Height(14)))
remove = true;
}
private static void DrawTypeField(object component, FieldInfo field)
{
var fieldValue = field.GetValue(component);
var fieldType = field.FieldType;
if (fieldType == typeof(UnityEngine.Object) || fieldType.IsSubclassOf(typeof(UnityEngine.Object)))
{
EntityGUI.Horizontal(() =>
{
fieldValue = EditorGUILayout.ObjectField($" {field.Name}", fieldValue as UnityEngine.Object, fieldType, true);
component.GetType().GetField(field.Name).SetValue(component, fieldValue);
});
return;
}
EntityGUI.Horizontal(() => SetFieldValue(fieldValue, field.Name, component));
}
private static void DrawTypeFieldRunTime(object component, FieldInfo field)
{
var fieldValue = field.GetValue(component);
var fieldType = field.FieldType;
if (fieldType == typeof(UnityEngine.Object) || fieldType.IsSubclassOf(typeof(UnityEngine.Object)))
{
EntityGUI.Horizontal(() =>
{
fieldValue = EditorGUILayout.ObjectField($" {field.Name}", fieldValue as UnityEngine.Object, fieldType, true);
component.GetType().GetField(field.Name).SetValue(component, fieldValue);
});
return;
}
EntityGUI.Horizontal(() => SetFieldValue(fieldValue,field.Name, component));
}
private static void SetFieldValue(object fieldValue, string fieldName, object component)
{
switch (fieldValue)
{
case LayerMask field:
LayerMask tempMask = EditorGUILayout.MaskField(fieldName,
InternalEditorUtility.LayerMaskToConcatenatedLayersMask(field),
InternalEditorUtility.layers);
fieldValue = InternalEditorUtility.ConcatenatedLayersMaskToLayerMask(tempMask);
break;
case Enum field:
fieldValue = EditorGUILayout.EnumFlagsField($" {fieldName}", field);
break;
case int field:
fieldValue = EditorGUILayout.IntField($" {fieldName}", field);
break;
case float field:
fieldValue = EditorGUILayout.FloatField($" {fieldName}", field);
break;
case bool field:
fieldValue = EditorGUILayout.Toggle($" {fieldName}", field);
break;
case double field:
fieldValue = EditorGUILayout.DoubleField($" {fieldName}", field);
break;
case Vector2 field:
fieldValue = EditorGUILayout.Vector2Field($" {fieldName}", field);
break;
case Vector3 field:
fieldValue = EditorGUILayout.Vector3Field($" {fieldName}", field);
break;
case Vector4 field:
fieldValue = EditorGUILayout.Vector4Field($" {fieldName}", field);
break;
case AnimationCurve field:
fieldValue = EditorGUILayout.CurveField($" {fieldName}", field);
break;
case Quaternion field:
var vec = QuaternionToVector4(field);
var tempVec = EditorGUILayout.Vector4Field($" {fieldName}", vec);
fieldValue = Vector4ToQuaternion(tempVec);
break;
}
component.GetType().GetField(fieldName).SetValue(component, fieldValue);
}
private static Vector4 QuaternionToVector4(Quaternion rot)
{
return new Vector4(rot.x, rot.y, rot.z, rot.w);
}
private static Quaternion Vector4ToQuaternion(Vector4 vec)
{
return new Quaternion(vec.x, vec.y, vec.z, vec.w);
}
private static void Remove(MonoEntity entity, int index)
{
if (entity.runTime)
{
// entity.Entity.RemoveByTypeID(entity.Entity.GetEntityData().componentTypes.ElementAt(index));
// remove = false;
}
else
{
entity.Components.RemoveAt(index);
remove = false;
}
}
private static void DrawEditorMode(MonoEntity entity, int index)
{
var component = entity.Components[index];
if (component == null)
{
entity.Components = entity.Components.Where(x => x != null).ToList();
return;
}
var type = component.GetType();
var fields = type.GetFields(BindingFlags.Instance | BindingFlags.Public);
EntityGUI.Horizontal(() =>
{
EditorGUILayout.LabelField($"{type.Name}", EditorStyles.boldLabel);
RemoveBtn();
});
foreach (var field in fields)
DrawTypeField(component, field);
}
private static void DrawProperty(MonoEntity entity, int index, SerializedProperty prop)
{
var component = entity.Components[index];
if (component == null)
{
entity.Components = entity.Components.Where(x => x != null).ToList();
return;
}
EntityGUI.Horizontal(() =>
{
EditorGUILayout.LabelField(component.GetType().Name, EditorStyles.boldLabel);
RemoveBtn();
});
EditorGUI.indentLevel++;
DrawProperties(prop, true);
EditorGUI.indentLevel--;
}
private static void DrawProperties(SerializedProperty prop, bool drawChildren)
{
var lastPropPath = string.Empty;
foreach (SerializedProperty p in prop)
{
if (p.isArray && p.propertyType == SerializedPropertyType.Generic)
{
EditorGUILayout.BeginHorizontal();
p.isExpanded = EditorGUILayout.Foldout(p.isExpanded, p.displayName);
EditorGUILayout.EndHorizontal();
if (p.isExpanded)
{
EditorGUI.indentLevel++;
DrawProperties(p, drawChildren);
EditorGUI.indentLevel--;
}
}
else
{
if (!string.IsNullOrEmpty(lastPropPath) && p.propertyPath.Contains(lastPropPath))
{
continue;
}
lastPropPath = p.propertyPath;
EditorGUILayout.PropertyField(p, drawChildren);
}
}
}
// private static void DrawRunTimeMode(MonoEntity entity, int index)
// {
// if(remove) return;
// var componentTypeID = entity.Entity.GetEntityData().componentTypes.ElementAt(index);
// var pool = entity.Entity.world.ComponentPools[componentTypeID];
// var component = pool.GetItem(entity.Entity.id);
//
// var type = pool.ItemType;
// var fields = type.GetFields(BindingFlags.Instance | BindingFlags.Public);
//
// EditorGUILayout.BeginHorizontal();
// EditorGUILayout.LabelField($"{type.Name}", EditorStyles.boldLabel);
// RemoveBtn();
// EditorGUILayout.EndHorizontal();
//
// for (var i = 0; i < fields.Length; i++)
// DrawTypeFieldRunTime(component, fields[i]);
//
// pool.SetItem(component,entity.Entity.id);
// if(index >= entity.Components.Count) return;
// entity.Components[index] = component;
// }
}
}
| 39.424242 | 133 | 0.526957 | [
"MIT"
] | AlexWargon/LeoEcs-Unity-Extension | LesEcsPrefabs/Unity/Editor/ComponentInspector.cs | 9,109 | C# |
using System;
using System.Numerics;
namespace WeekendRayTracer.Models
{
public readonly struct Vec3
{
private Vector3 Vector { get; }
public float X { get => Vector.X; }
public float Y { get => Vector.Y; }
public float Z { get => Vector.Z; }
public float LengthSquared() => Vector.LengthSquared();
public float Length() => Vector.Length();
public static Vec3 operator -(Vec3 u) => new Vec3(-u.X, -u.Y, -u.Z);
public static Vec3 operator +(Vec3 u, Vec3 v) => new Vec3(u.Vector + v.Vector);
public static Vec3 operator -(Vec3 u, Vec3 v) => new Vec3(u.Vector - v.Vector);
public static Vec3 operator *(Vec3 u, Vec3 v) => new Vec3(u.Vector * v.Vector);
public static Vec3 operator /(Vec3 u, Vec3 v) => new Vec3(u.Vector / v.Vector);
public static Vec3 operator *(Vec3 u, float t) => new Vec3(u.Vector * t);
public static Vec3 operator *(float t, Vec3 u) => u * t;
public static Vec3 operator /(Vec3 u, float t) => u * (1 / t);
public Vec3(float x, float y, float z)
{
Vector = new Vector3(x, y, z);
}
private Vec3(Vector3 vector3)
{
Vector = new Vector3(vector3.X, vector3.Y, vector3.Z);
}
public Vec3 Unit()
{
return new Vec3(Vector3.Normalize(Vector));
}
public float Dot(in Vec3 v)
{
return Vector3.Dot(Vector, v.Vector);
}
public Vec3 Cross(in Vec3 v)
{
return new Vec3(Vector3.Cross(Vector, v.Vector));
}
public Vec3 Reflect(in Vec3 normal)
{
return new Vec3(Vector3.Reflect(Vector, normal.Vector));
}
public Vec3 Refract(in Vec3 normal, float etaIOverEtaT)
{
var cosTheta = (float)Math.Min((-this).Dot(normal), 1.0);
var rOutPerpendicular = etaIOverEtaT * (this + cosTheta * normal);
var rOutParallel = (float)-Math.Sqrt((float)Math.Abs(1.0 - rOutPerpendicular.LengthSquared())) * normal;
return rOutPerpendicular + rOutParallel;
}
public bool NearZero()
{
var s = 1e-8;
return (Math.Abs(X) < s) && (Math.Abs(Y) < s) && (Math.Abs(Z) < s);
}
public static Vec3 Random()
{
return new Vec3(StaticRandom.NextFloat(), StaticRandom.NextFloat(), StaticRandom.NextFloat());
}
public static Vec3 Random(float min, float max)
{
return new Vec3(StaticRandom.NextFloat(min, max), StaticRandom.NextFloat(min, max), StaticRandom.NextFloat(min, max));
}
public static Vec3 RandomInUnitSphere()
{
while (true)
{
var p = Random(-1, 1);
if (p.LengthSquared() < 1)
{
return p;
}
}
}
public static Vec3 RandomUnitVector()
{
return RandomInUnitSphere().Unit();
}
public static Vec3 RandomInUnitDisk()
{
while (true)
{
var p = new Vec3(StaticRandom.NextFloat(-1, 1), StaticRandom.NextFloat(-1, 1), 0);
if (p.LengthSquared() < 1)
{
return p;
}
}
}
}
}
| 30.428571 | 130 | 0.520833 | [
"MIT"
] | alenvall/wknd-ray-tracer | WeekendRayTracer/Models/Vec3.cs | 3,410 | C# |
/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the ec2-2016-11-15.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Net;
using System.Text;
using System.Xml.Serialization;
using Amazon.EC2.Model;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Transform;
using Amazon.Runtime.Internal.Util;
namespace Amazon.EC2.Model.Internal.MarshallTransformations
{
/// <summary>
/// Response Unmarshaller for AccountAttribute Object
/// </summary>
public class AccountAttributeUnmarshaller : IUnmarshaller<AccountAttribute, XmlUnmarshallerContext>, IUnmarshaller<AccountAttribute, JsonUnmarshallerContext>
{
/// <summary>
/// Unmarshaller the response from the service to the response class.
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public AccountAttribute Unmarshall(XmlUnmarshallerContext context)
{
AccountAttribute unmarshalledObject = new AccountAttribute();
int originalDepth = context.CurrentDepth;
int targetDepth = originalDepth + 1;
if (context.IsStartOfDocument)
targetDepth += 2;
while (context.ReadAtDepth(originalDepth))
{
if (context.IsStartElement || context.IsAttribute)
{
if (context.TestExpression("attributeName", targetDepth))
{
var unmarshaller = StringUnmarshaller.Instance;
unmarshalledObject.AttributeName = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("attributeValueSet/item", targetDepth))
{
var unmarshaller = AccountAttributeValueUnmarshaller.Instance;
var item = unmarshaller.Unmarshall(context);
unmarshalledObject.AttributeValues.Add(item);
continue;
}
}
else if (context.IsEndElement && context.CurrentDepth < originalDepth)
{
return unmarshalledObject;
}
}
return unmarshalledObject;
}
/// <summary>
/// Unmarshaller error response to exception.
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public AccountAttribute Unmarshall(JsonUnmarshallerContext context)
{
return null;
}
private static AccountAttributeUnmarshaller _instance = new AccountAttributeUnmarshaller();
/// <summary>
/// Gets the singleton.
/// </summary>
public static AccountAttributeUnmarshaller Instance
{
get
{
return _instance;
}
}
}
} | 35.365385 | 161 | 0.600598 | [
"Apache-2.0"
] | Bio2hazard/aws-sdk-net | sdk/src/Services/EC2/Generated/Model/Internal/MarshallTransformations/AccountAttributeUnmarshaller.cs | 3,678 | C# |
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the kinesisanalyticsv2-2018-05-23.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Net;
using System.Text;
using System.Xml.Serialization;
using Amazon.KinesisAnalyticsV2.Model;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
using Amazon.Runtime.Internal.Transform;
using Amazon.Runtime.Internal.Util;
using ThirdParty.Json.LitJson;
namespace Amazon.KinesisAnalyticsV2.Model.Internal.MarshallTransformations
{
/// <summary>
/// Response Unmarshaller for SqlApplicationConfigurationDescription Object
/// </summary>
public class SqlApplicationConfigurationDescriptionUnmarshaller : IUnmarshaller<SqlApplicationConfigurationDescription, XmlUnmarshallerContext>, IUnmarshaller<SqlApplicationConfigurationDescription, JsonUnmarshallerContext>
{
/// <summary>
/// Unmarshaller the response from the service to the response class.
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
SqlApplicationConfigurationDescription IUnmarshaller<SqlApplicationConfigurationDescription, XmlUnmarshallerContext>.Unmarshall(XmlUnmarshallerContext context)
{
throw new NotImplementedException();
}
/// <summary>
/// Unmarshaller the response from the service to the response class.
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public SqlApplicationConfigurationDescription Unmarshall(JsonUnmarshallerContext context)
{
context.Read();
if (context.CurrentTokenType == JsonToken.Null)
return null;
SqlApplicationConfigurationDescription unmarshalledObject = new SqlApplicationConfigurationDescription();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("InputDescriptions", targetDepth))
{
var unmarshaller = new ListUnmarshaller<InputDescription, InputDescriptionUnmarshaller>(InputDescriptionUnmarshaller.Instance);
unmarshalledObject.InputDescriptions = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("OutputDescriptions", targetDepth))
{
var unmarshaller = new ListUnmarshaller<OutputDescription, OutputDescriptionUnmarshaller>(OutputDescriptionUnmarshaller.Instance);
unmarshalledObject.OutputDescriptions = unmarshaller.Unmarshall(context);
continue;
}
if (context.TestExpression("ReferenceDataSourceDescriptions", targetDepth))
{
var unmarshaller = new ListUnmarshaller<ReferenceDataSourceDescription, ReferenceDataSourceDescriptionUnmarshaller>(ReferenceDataSourceDescriptionUnmarshaller.Instance);
unmarshalledObject.ReferenceDataSourceDescriptions = unmarshaller.Unmarshall(context);
continue;
}
}
return unmarshalledObject;
}
private static SqlApplicationConfigurationDescriptionUnmarshaller _instance = new SqlApplicationConfigurationDescriptionUnmarshaller();
/// <summary>
/// Gets the singleton.
/// </summary>
public static SqlApplicationConfigurationDescriptionUnmarshaller Instance
{
get
{
return _instance;
}
}
}
} | 42.653846 | 228 | 0.658927 | [
"Apache-2.0"
] | philasmar/aws-sdk-net | sdk/src/Services/KinesisAnalyticsV2/Generated/Model/Internal/MarshallTransformations/SqlApplicationConfigurationDescriptionUnmarshaller.cs | 4,436 | C# |
using PizzaStore.CliClient.ViewModels;
using System;
namespace PizzaStore.CliClient
{
public class Program
{
static void Main(string[] args)
{
UserViewModel.TopMenu();
}
}
}
| 15 | 39 | 0.6 | [
"MIT"
] | GGSimmons1992/gary-ms | PizzaStore/PizzaStore.CliClient/Program.cs | 227 | C# |
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Stryker.Core.Mutators;
using System.Linq;
using Shouldly;
using Xunit;
namespace Stryker.Core.UnitTest.Mutators
{
public class PostfixUnaryMutatorTests
{
[Theory]
[InlineData(SyntaxKind.PostIncrementExpression, SyntaxKind.PostDecrementExpression)]
[InlineData(SyntaxKind.PostDecrementExpression, SyntaxKind.PostIncrementExpression)]
public void ShouldMutate(SyntaxKind original, SyntaxKind expected)
{
var target = new PostfixUnaryMutator();
var originalNode = SyntaxFactory.PostfixUnaryExpression(original,
SyntaxFactory.LiteralExpression(SyntaxKind.NumericLiteralExpression, SyntaxFactory.Literal(1)));
var result = target.ApplyMutations(originalNode).ToList();
result.ShouldHaveSingleItem();
var mutation = result.First();
mutation.ReplacementNode.IsKind(expected).ShouldBeTrue();
mutation.Type.ShouldBe("PostfixUnaryMutator");
}
}
} | 37 | 112 | 0.712022 | [
"Apache-2.0"
] | SeeSharpy/stryker-net | src/Stryker.Core/Stryker.Core.UnitTest/Mutators/PostfixUnaryMutatorTests.cs | 1,075 | C# |
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using Abp.Application.Services;
using Abp.Application.Services.Dto;
using Abp.Authorization;
using Abp.Domain.Entities;
using Abp.Domain.Repositories;
using Abp.Extensions;
using Abp.IdentityFramework;
using Abp.Linq.Extensions;
using Abp.Localization;
using Abp.Runtime.Session;
using Abp.UI;
using TechPOS.Authorization;
using TechPOS.Authorization.Accounts;
using TechPOS.Authorization.Roles;
using TechPOS.Authorization.Users;
using TechPOS.Roles.Dto;
using TechPOS.Users.Dto;
using Microsoft.AspNetCore.Identity;
using Microsoft.EntityFrameworkCore;
namespace TechPOS.Users
{
[AbpAuthorize(PermissionNames.Pages_Users)]
public class UserAppService : AsyncCrudAppService<User, UserDto, long, PagedUserResultRequestDto, CreateUserDto, UserDto>, IUserAppService
{
private readonly UserManager _userManager;
private readonly RoleManager _roleManager;
private readonly IRepository<Role> _roleRepository;
private readonly IPasswordHasher<User> _passwordHasher;
private readonly IAbpSession _abpSession;
private readonly LogInManager _logInManager;
public UserAppService(
IRepository<User, long> repository,
UserManager userManager,
RoleManager roleManager,
IRepository<Role> roleRepository,
IPasswordHasher<User> passwordHasher,
IAbpSession abpSession,
LogInManager logInManager)
: base(repository)
{
_userManager = userManager;
_roleManager = roleManager;
_roleRepository = roleRepository;
_passwordHasher = passwordHasher;
_abpSession = abpSession;
_logInManager = logInManager;
}
public override async Task<UserDto> CreateAsync(CreateUserDto input)
{
CheckCreatePermission();
Logger.Info("hi this is Create user method");
var user = ObjectMapper.Map<User>(input);
user.TenantId = AbpSession.TenantId;
user.IsEmailConfirmed = true;
await _userManager.InitializeOptionsAsync(AbpSession.TenantId);
CheckErrors(await _userManager.CreateAsync(user, input.Password));
if (input.RoleNames != null)
{
CheckErrors(await _userManager.SetRolesAsync(user, input.RoleNames));
}
CurrentUnitOfWork.SaveChanges();
return MapToEntityDto(user);
}
public override async Task<UserDto> UpdateAsync(UserDto input)
{
CheckUpdatePermission();
var user = await _userManager.GetUserByIdAsync(input.Id);
MapToEntity(input, user);
CheckErrors(await _userManager.UpdateAsync(user));
if (input.RoleNames != null)
{
CheckErrors(await _userManager.SetRolesAsync(user, input.RoleNames));
}
return await GetAsync(input);
}
public override async Task DeleteAsync(EntityDto<long> input)
{
var user = await _userManager.GetUserByIdAsync(input.Id);
await _userManager.DeleteAsync(user);
}
public async Task<ListResultDto<RoleDto>> GetRoles()
{
var roles = await _roleRepository.GetAllListAsync();
return new ListResultDto<RoleDto>(ObjectMapper.Map<List<RoleDto>>(roles));
}
public async Task ChangeLanguage(ChangeUserLanguageDto input)
{
await SettingManager.ChangeSettingForUserAsync(
AbpSession.ToUserIdentifier(),
LocalizationSettingNames.DefaultLanguage,
input.LanguageName
);
}
protected override User MapToEntity(CreateUserDto createInput)
{
var user = ObjectMapper.Map<User>(createInput);
user.SetNormalizedNames();
return user;
}
protected override void MapToEntity(UserDto input, User user)
{
ObjectMapper.Map(input, user);
user.SetNormalizedNames();
}
protected override UserDto MapToEntityDto(User user)
{
var roleIds = user.Roles.Select(x => x.RoleId).ToArray();
var roles = _roleManager.Roles.Where(r => roleIds.Contains(r.Id)).Select(r => r.NormalizedName);
var userDto = base.MapToEntityDto(user);
userDto.RoleNames = roles.ToArray();
return userDto;
}
protected override IQueryable<User> CreateFilteredQuery(PagedUserResultRequestDto input)
{
return Repository.GetAllIncluding(x => x.Roles)
.WhereIf(!input.Keyword.IsNullOrWhiteSpace(), x => x.UserName.Contains(input.Keyword) || x.Name.Contains(input.Keyword) || x.EmailAddress.Contains(input.Keyword))
.WhereIf(input.IsActive.HasValue, x => x.IsActive == input.IsActive);
}
protected override async Task<User> GetEntityByIdAsync(long id)
{
var user = await Repository.GetAllIncluding(x => x.Roles).FirstOrDefaultAsync(x => x.Id == id);
if (user == null)
{
throw new EntityNotFoundException(typeof(User), id);
}
return user;
}
protected override IQueryable<User> ApplySorting(IQueryable<User> query, PagedUserResultRequestDto input)
{
return query.OrderBy(r => r.UserName);
}
protected virtual void CheckErrors(IdentityResult identityResult)
{
identityResult.CheckErrors(LocalizationManager);
}
public async Task<bool> ChangePassword(ChangePasswordDto input)
{
if (_abpSession.UserId == null)
{
throw new UserFriendlyException("Please log in before attemping to change password.");
}
long userId = _abpSession.UserId.Value;
var user = await _userManager.GetUserByIdAsync(userId);
var loginAsync = await _logInManager.LoginAsync(user.UserName, input.CurrentPassword, shouldLockout: false);
if (loginAsync.Result != AbpLoginResultType.Success)
{
throw new UserFriendlyException("Your 'Existing Password' did not match the one on record. Please try again or contact an administrator for assistance in resetting your password.");
}
if (!new Regex(AccountAppService.PasswordRegex).IsMatch(input.NewPassword))
{
throw new UserFriendlyException("Passwords must be at least 8 characters, contain a lowercase, uppercase, and number.");
}
user.Password = _passwordHasher.HashPassword(user, input.NewPassword);
CurrentUnitOfWork.SaveChanges();
return true;
}
public async Task<bool> ResetPassword(ResetPasswordDto input)
{
if (_abpSession.UserId == null)
{
throw new UserFriendlyException("Please log in before attemping to reset password.");
}
long currentUserId = _abpSession.UserId.Value;
var currentUser = await _userManager.GetUserByIdAsync(currentUserId);
var loginAsync = await _logInManager.LoginAsync(currentUser.UserName, input.AdminPassword, shouldLockout: false);
if (loginAsync.Result != AbpLoginResultType.Success)
{
throw new UserFriendlyException("Your 'Admin Password' did not match the one on record. Please try again.");
}
if (currentUser.IsDeleted || !currentUser.IsActive)
{
return false;
}
var roles = await _userManager.GetRolesAsync(currentUser);
if (!roles.Contains(StaticRoleNames.Tenants.Admin))
{
throw new UserFriendlyException("Only administrators may reset passwords.");
}
var user = await _userManager.GetUserByIdAsync(input.UserId);
if (user != null)
{
user.Password = _passwordHasher.HashPassword(user, input.NewPassword);
CurrentUnitOfWork.SaveChanges();
}
return true;
}
}
}
| 36.903509 | 198 | 0.630021 | [
"MIT"
] | junaid-tahir847/techpos | aspnet-core/src/TechPOS.Application/Users/UserAppService.cs | 8,416 | C# |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the MIT license. See License.txt in the project root for license information.
using System;
using System.Collections.Immutable;
using System.Composition;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Analyzer.Utilities;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeFixes;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeQuality.Analyzers;
using Microsoft.CodeQuality.Analyzers.QualityGuidelines;
namespace Microsoft.CodeQuality.CSharp.Analyzers.QualityGuidelines
{
/// <summary>
/// CA2244: Do not duplicate indexed element initializations
/// </summary>
[ExportCodeFixProvider(LanguageNames.CSharp), Shared]
public sealed class CSharpAvoidDuplicateElementInitializationFixer : CodeFixProvider
{
public sealed override ImmutableArray<string> FixableDiagnosticIds { get; } =
ImmutableArray.Create(AvoidDuplicateElementInitialization.RuleId);
public sealed override FixAllProvider GetFixAllProvider()
=> WellKnownFixAllProviders.BatchFixer;
public sealed override async Task RegisterCodeFixesAsync(CodeFixContext context)
{
var diagnostic = context.Diagnostics.FirstOrDefault();
if (diagnostic?.AdditionalLocations.Count != 1)
{
return;
}
var root = await context.Document.GetSyntaxRootAsync(context.CancellationToken).ConfigureAwait(false);
if (root.FindNode(diagnostic.AdditionalLocations[0].SourceSpan) is not ExpressionSyntax elementInitializer ||
elementInitializer.Parent is not InitializerExpressionSyntax objectInitializer)
{
return;
}
context.RegisterCodeFix(
new MyCodeAction(
MicrosoftCodeQualityAnalyzersResources.RemoveRedundantElementInitializationCodeFixTitle,
_ => Task.FromResult(RemoveElementInitializer(elementInitializer, objectInitializer, root, context.Document))),
context.Diagnostics);
}
private static Document RemoveElementInitializer(
ExpressionSyntax elementInitializer,
InitializerExpressionSyntax objectInitializer,
SyntaxNode root,
Document document)
{
var newElementInitializers = objectInitializer.Expressions.Remove(elementInitializer);
var newRoot = root.ReplaceNode(objectInitializer, objectInitializer.WithExpressions(newElementInitializers));
return document.WithSyntaxRoot(newRoot);
}
private sealed class MyCodeAction : DocumentChangeAction
{
public MyCodeAction(string title, Func<CancellationToken, Task<Document>> createChangedDocument)
: base(title, createChangedDocument, equivalenceKey: title)
{
}
}
}
}
| 41.583333 | 144 | 0.700067 | [
"MIT"
] | AndreasVolkmann/roslyn-analyzers | src/NetAnalyzers/CSharp/Microsoft.CodeQuality.Analyzers/QualityGuidelines/CSharpAvoidDuplicateElementInitializationFixer.cs | 2,994 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Text.RegularExpressions;
namespace Punkty_przeciec
{
public class DataReader
{
private static readonly string _inputPath = Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().Location).ToString() + "\\Data2.txt";
public DataReader()
{
}
public static List<Sector> GetSectors()
{
List<Sector> sectors = new List<Sector>();
string data = "";
using (StreamReader streamReader = new StreamReader(_inputPath))
{
data = streamReader.ReadToEnd();
}
data = Regex.Replace(data, @"\s", "");
var interResults = data.Split("\\n");
foreach (var result in interResults)
{
if (result != "")
{
Sector sector = new Sector();
sector.Begin.x = Convert.ToInt32(result.Split(";")[0].Split(",")[0]);
sector.Begin.y = Convert.ToInt32(result.Split(";")[0].Split(",")[1]);
sector.Begin.Extreme = "b";
sector.End.x = Convert.ToInt32(result.Split(";")[1].Split(",")[0]);
sector.End.y = Convert.ToInt32(result.Split(";")[1].Split(",")[1]);
sector.End.Extreme = "e";
sector.Direction = result.Split(";")[2];
sector.Begin.ParentSectorDirection = result.Split(";")[2];
sector.End.ParentSectorDirection = result.Split(";")[2];
sector.Begin.Sector = sector;
sector.End.Sector = sector;
sectors.Add(sector);
}
}
return sectors;
}
}
}
| 35.981132 | 161 | 0.512323 | [
"MIT"
] | MaciejMilanski/GGA | Punkty_przeciec/Punkty_przeciec/DataReader.cs | 1,909 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GAPPSF.Core
{
public partial class Settings
{
public string GDAKTargetFolder
{
get { return GetProperty(""); }
set { SetProperty(value); }
}
public int GDAKMaxLogCount
{
get { return int.Parse(GetProperty("5")); }
set { SetProperty(value.ToString()); }
}
public int GDAKMaxImagesInFolder
{
get { return int.Parse(GetProperty("0")); }
set { SetProperty(value.ToString()); }
}
public bool GDAKExportOfflineImages
{
get { return bool.Parse(GetProperty("False")); }
set { SetProperty(value.ToString()); }
}
}
}
| 22.783784 | 60 | 0.553974 | [
"MIT"
] | GlobalcachingEU/GAPP | GAPPSF/Core/Settings/GDAKSettings.cs | 845 | C# |
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNet.Identity;
using Microsoft.Owin.Security;
namespace GigHub.Models
{
public class IndexViewModel
{
public bool HasPassword { get; set; }
public IList<UserLoginInfo> Logins { get; set; }
public string PhoneNumber { get; set; }
public bool TwoFactor { get; set; }
public bool BrowserRemembered { get; set; }
}
public class ManageLoginsViewModel
{
public IList<UserLoginInfo> CurrentLogins { get; set; }
public IList<AuthenticationDescription> OtherLogins { get; set; }
}
public class FactorViewModel
{
public string Purpose { get; set; }
}
public class SetPasswordViewModel
{
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "New password")]
public string NewPassword { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm new password")]
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}
public class ChangePasswordViewModel
{
[Required]
[DataType(DataType.Password)]
[Display(Name = "Current password")]
public string OldPassword { get; set; }
[Required]
[StringLength(100, ErrorMessage = "The {0} must be at least {2} characters long.", MinimumLength = 6)]
[DataType(DataType.Password)]
[Display(Name = "New password")]
public string NewPassword { get; set; }
[DataType(DataType.Password)]
[Display(Name = "Confirm new password")]
[Compare("NewPassword", ErrorMessage = "The new password and confirmation password do not match.")]
public string ConfirmPassword { get; set; }
}
public class AddPhoneNumberViewModel
{
[Required]
[Phone]
[Display(Name = "Phone Number")]
public string Number { get; set; }
}
public class VerifyPhoneNumberViewModel
{
[Required]
[Display(Name = "Code")]
public string Code { get; set; }
[Required]
[Phone]
[Display(Name = "Phone Number")]
public string PhoneNumber { get; set; }
}
public class ConfigureTwoFactorViewModel
{
public string SelectedProvider { get; set; }
public ICollection<System.Web.Mvc.SelectListItem> Providers { get; set; }
}
} | 30.813953 | 110 | 0.625283 | [
"MIT"
] | SandipPunalkar/GigHub | GigHub/Models/ManageViewModels.cs | 2,652 | C# |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Messaging.EventHubs.Authorization;
using Azure.Messaging.EventHubs.Core;
using Azure.Messaging.EventHubs.Processor;
using Azure.Messaging.EventHubs.Processor.Tests;
using Azure.Storage.Blobs;
using Moq;
using NUnit.Framework;
namespace Azure.Messaging.EventHubs.Tests
{
/// <summary>
/// The suite of tests for the <see cref="EventProcessorClient" />
/// class.
/// </summary>
///
[TestFixture]
public class EventProcessorClientTests
{
/// <summary>
/// Provides test cases for the constructor tests.
/// </summary>
///
public static IEnumerable<object[]> ConstructorCreatesDefaultOptionsCases()
{
var connectionString = "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub";
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
yield return new object[] { new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", connectionString), "connection string with default options" };
yield return new object[] { new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", connectionString, default(EventProcessorClientOptions)), "connection string with explicit null options" };
yield return new object[] { new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object), "namespace with default options" };
yield return new object[] { new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, default(EventProcessorClientOptions)), "namespace with explicit null options" };
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
[TestCase(null)]
[TestCase("")]
public void ConstructorValidatesTheConsumerGroup(string consumerGroup)
{
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), consumerGroup, "dummyConnection", new EventProcessorClientOptions()), Throws.InstanceOf<ArgumentException>(), "The connection string constructor should validate the consumer group.");
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), consumerGroup, "dummyNamespace", "dummyEventHub", credential.Object, new EventProcessorClientOptions()), Throws.InstanceOf<ArgumentException>(), "The namespace constructor should validate the consumer group.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void ConstructorValidatesTheBlobContainerClient()
{
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var fakeConnection = "Endpoint=sb://not-real.servicebus.windows.net/;SharedAccessKeyName=DummyKey;SharedAccessKey=[not_real];EntityPath=fake";
Assert.That(() => new EventProcessorClient(null, "consumerGroup", fakeConnection, new EventProcessorClientOptions()), Throws.InstanceOf<ArgumentNullException>(), "The connection string constructor should validate the blob container client.");
Assert.That(() => new EventProcessorClient(null, "consumerGroup", "dummyNamespace", "dummyEventHub", credential.Object, new EventProcessorClientOptions()), Throws.InstanceOf<ArgumentNullException>(), "The namespace constructor should validate the blob container client.");
}
/// <summary>
/// Verifies functionality of the constructor.
/// </summary>
///
[Test]
[TestCase(null)]
[TestCase("")]
public void ConstructorValidatesTheConnectionString(string connectionString)
{
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, connectionString), Throws.InstanceOf<ArgumentException>(), "The constructor without options should ensure a connection string.");
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, connectionString, "dummy", new EventProcessorClientOptions()), Throws.InstanceOf<ArgumentException>(), "The constructor with options should ensure a connection string.");
}
/// <summary>
/// Verifies functionality of the constructor.
/// </summary>
///
[Test]
[TestCase(null)]
[TestCase("")]
public void ConstructorValidatesTheNamespace(string constructorArgument)
{
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, constructorArgument, "dummy", credential.Object), Throws.InstanceOf<ArgumentException>());
}
/// <summary>
/// Verifies functionality of the constructor.
/// </summary>
///
[Test]
[TestCase(null)]
[TestCase("")]
public void ConstructorValidatesTheEventHub(string constructorArgument)
{
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, "namespace", constructorArgument, credential.Object), Throws.InstanceOf<ArgumentException>());
}
/// <summary>
/// Verifies functionality of the constructor.
/// </summary>
///
[Test]
public void ConstructorValidatesTheCredential()
{
Assert.That(() => new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, "namespace", "hubName", default(TokenCredential)), Throws.ArgumentNullException);
}
/// <summary>
/// Verifies functionality of the constructor.
/// </summary>
///
[Test]
public void ConnectionStringConstructorSetsTheRetryPolicy()
{
var expected = Mock.Of<EventHubsRetryPolicy>();
var options = new EventProcessorClientOptions { RetryOptions = new EventHubsRetryOptions { CustomRetryPolicy = expected } };
var connectionString = "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub";
var processor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, connectionString, options);
Assert.That(GetRetryPolicy(processor), Is.SameAs(expected));
}
/// <summary>
/// Verifies functionality of the constructor.
/// </summary>
///
[Test]
public void NamespaceConstructorSetsTheRetryPolicy()
{
var expected = Mock.Of<EventHubsRetryPolicy>();
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var options = new EventProcessorClientOptions { RetryOptions = new EventHubsRetryOptions { CustomRetryPolicy = expected } };
var processor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), EventHubConsumerClient.DefaultConsumerGroupName, "namespace", "hubName", credential.Object, options);
Assert.That(GetRetryPolicy(processor), Is.SameAs(expected));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
[TestCaseSource(nameof(ConstructorCreatesDefaultOptionsCases))]
public void ConstructorCreatesDefaultOptions(EventProcessorClient eventProcessor,
string constructorDescription)
{
var defaultOptions = new EventProcessorClientOptions();
var consumerOptions = GetProcessingConsumerOptions(eventProcessor);
var readOptions = GetProcessingReadEventOptions(eventProcessor);
var connectionOptions = GetConnectionOptionsSample(eventProcessor);
Assert.That(consumerOptions, Is.Not.Null, $"The { constructorDescription } constructor should have set the processing consumer options.");
Assert.That(readOptions, Is.Not.Null, $"The { constructorDescription } constructor should have set the processing read event options.");
Assert.That(readOptions.TrackLastEnqueuedEventProperties, Is.EqualTo(defaultOptions.TrackLastEnqueuedEventProperties), $"The { constructorDescription } constructor should default tracking of last event information.");
Assert.That(readOptions.MaximumWaitTime, Is.EqualTo(defaultOptions.MaximumWaitTime), $"The { constructorDescription } constructor should have set the correct maximum wait time.");
Assert.That(consumerOptions.RetryOptions.IsEquivalentTo(defaultOptions.RetryOptions), Is.True, $"The { constructorDescription } constructor should have set the correct retry options.");
Assert.That(connectionOptions.TransportType, Is.EqualTo(defaultOptions.ConnectionOptions.TransportType), $"The { constructorDescription } constructor should have a default set of connection options.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void ConnectionStringConstructorCreatesTheProcessingConsumerOptions()
{
var options = new EventProcessorClientOptions
{
RetryOptions = new EventHubsRetryOptions { TryTimeout = TimeSpan.FromMinutes(1), Delay = TimeSpan.FromMinutes(4) }
};
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub", options);
var consumerOptions = GetProcessingConsumerOptions(eventProcessor);
Assert.That(consumerOptions, Is.Not.Null, "The constructor should have set the processing consumer options.");
Assert.That(consumerOptions.RetryOptions.IsEquivalentTo(options.RetryOptions), Is.True, "The retry options of the processing consumer options should be considered equal.");
Assert.That(consumerOptions.RetryOptions, Is.Not.SameAs(options.RetryOptions), "The constructor should have cloned the retry options.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void NamespaceConstructorCreatesTheProcessingConsumerOptions()
{
var options = new EventProcessorClientOptions
{
RetryOptions = new EventHubsRetryOptions { TryTimeout = TimeSpan.FromMinutes(1), Delay = TimeSpan.FromMinutes(4) }
};
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, options);
var consumerOptions = GetProcessingConsumerOptions(eventProcessor);
Assert.That(consumerOptions, Is.Not.Null, "The constructor should have set the processing consumer options.");
Assert.That(consumerOptions.RetryOptions.IsEquivalentTo(options.RetryOptions), Is.True, "The retry options of the processing consumer options should be considered equal.");
Assert.That(consumerOptions.RetryOptions, Is.Not.SameAs(options.RetryOptions), "The constructor should have cloned the retry options.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void ConnectionStringConstructorCreatesTheProcessingReadEventOptions()
{
var options = new EventProcessorClientOptions
{
TrackLastEnqueuedEventProperties = false,
MaximumWaitTime = TimeSpan.FromMinutes(65)
};
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub", options);
var readOptions = GetProcessingReadEventOptions(eventProcessor);
Assert.That(readOptions, Is.Not.Null, "The constructor should have set the processing read event options.");
Assert.That(readOptions.TrackLastEnqueuedEventProperties, Is.EqualTo(options.TrackLastEnqueuedEventProperties), "The tracking of last event information of the processing read event options should match.");
Assert.That(readOptions.MaximumWaitTime, Is.EqualTo(options.MaximumWaitTime), "The constructor should have set the correct maximum wait time.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void NamespaceConstructorCreatesTheProcessingReadEventOptions()
{
var options = new EventProcessorClientOptions
{
TrackLastEnqueuedEventProperties = false,
MaximumWaitTime = TimeSpan.FromMinutes(65)
};
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, options);
var readOptions = GetProcessingReadEventOptions(eventProcessor);
Assert.That(readOptions, Is.Not.Null, "The constructor should have set the processing read event options.");
Assert.That(readOptions.TrackLastEnqueuedEventProperties, Is.EqualTo(options.TrackLastEnqueuedEventProperties), "The tracking of last event information of the processing read event options should match.");
Assert.That(readOptions.MaximumWaitTime, Is.EqualTo(options.MaximumWaitTime), "The constructor should have set the correct maximum wait time.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void ConnectionStringConstructorClonesTheConnectionOptions()
{
var expectedTransportType = EventHubsTransportType.AmqpWebSockets;
var otherTransportType = EventHubsTransportType.AmqpTcp;
var options = new EventProcessorClientOptions
{
ConnectionOptions = new EventHubConnectionOptions { TransportType = expectedTransportType }
};
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub", options);
// Simply retrieving the options from an inner connection won't be enough to prove the processor clones
// its connection options because the cloning step also happens in the EventHubConnection constructor.
// For this reason, we will change the transport type and verify that it won't affect the returned
// connection options.
options.ConnectionOptions.TransportType = otherTransportType;
var connectionOptions = GetConnectionOptionsSample(eventProcessor);
Assert.That(connectionOptions.TransportType, Is.EqualTo(expectedTransportType), $"The connection options should have been cloned.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void NamespaceConstructorClonesTheConnectionOptions()
{
var expectedTransportType = EventHubsTransportType.AmqpWebSockets;
var otherTransportType = EventHubsTransportType.AmqpTcp;
var options = new EventProcessorClientOptions
{
ConnectionOptions = new EventHubConnectionOptions { TransportType = expectedTransportType }
};
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, options);
// Simply retrieving the options from an inner connection won't be enough to prove the processor clones
// its connection options because the cloning step also happens in the EventHubConnection constructor.
// For this reason, we will change the transport type and verify that it won't affect the returned
// connection options.
options.ConnectionOptions.TransportType = otherTransportType;
var connectionOptions = GetConnectionOptionsSample(eventProcessor);
Assert.That(connectionOptions.TransportType, Is.EqualTo(expectedTransportType), $"The connection options should have been cloned.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void ConnectionStringConstructorSetsTheIdentifier()
{
var options = new EventProcessorClientOptions
{
Identifier = Guid.NewGuid().ToString()
};
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub", options);
Assert.That(eventProcessor.Identifier, Is.Not.Null);
Assert.That(eventProcessor.Identifier, Is.EqualTo(options.Identifier));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void NamespaceConstructorSetsTheIdentifier()
{
var options = new EventProcessorClientOptions
{
Identifier = Guid.NewGuid().ToString()
};
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, options);
Assert.That(eventProcessor.Identifier, Is.Not.Null);
Assert.That(eventProcessor.Identifier, Is.EqualTo(options.Identifier));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
[TestCase(null)]
[TestCase("")]
public void ConnectionStringConstructorCreatesTheIdentifierWhenNotSpecified(string identifier)
{
var options = new EventProcessorClientOptions
{
Identifier = identifier
};
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub", options);
Assert.That(eventProcessor.Identifier, Is.Not.Null);
Assert.That(eventProcessor.Identifier, Is.Not.Empty);
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
[TestCase(null)]
[TestCase("")]
public void NamespaceConstructorCreatesTheIdentifierWhenNotSpecified(string identifier)
{
var options = new EventProcessorClientOptions
{
Identifier = identifier
};
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, options);
Assert.That(eventProcessor.Identifier, Is.Not.Null);
Assert.That(eventProcessor.Identifier, Is.Not.Empty);
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void ConnectionStringConstructorCopiesTheIdentifier()
{
var clientOptions = new EventProcessorClientOptions { Identifier = Guid.NewGuid().ToString() };
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "Endpoint=sb://somehost.com;SharedAccessKeyName=ABC;SharedAccessKey=123;EntityPath=somehub", clientOptions);
Assert.That(eventProcessor.Identifier, Is.EqualTo(clientOptions.Identifier));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" />
/// constructor.
/// </summary>
///
[Test]
public void NamespaceConstructorCopiesTheIdentifier()
{
var credential = new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net");
var clientOptions = new EventProcessorClientOptions { Identifier = Guid.NewGuid().ToString() };
var eventProcessor = new EventProcessorClient(Mock.Of<BlobContainerClient>(), "consumerGroup", "namespace", "hub", credential.Object, clientOptions);
Assert.That(eventProcessor.Identifier, Is.EqualTo(clientOptions.Identifier));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient.StartAsync" />
/// method.
/// </summary>
///
[Test]
public void StartAsyncValidatesProcessEventsAsync()
{
var processor = new EventProcessorClient(Mock.Of<PartitionManager>(), "consumerGroup", "namespace", "eventHub", () => new MockConnection(), default);
processor.ProcessErrorAsync += eventArgs => Task.CompletedTask;
Assert.That(async () => await processor.StartProcessingAsync(), Throws.InstanceOf<InvalidOperationException>().And.Message.Contains(nameof(EventProcessorClient.ProcessEventAsync)));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient.StartAsync" />
/// method.
/// </summary>
///
[Test]
public void StartAsyncValidatesProcessExceptionAsync()
{
var processor = new EventProcessorClient(Mock.Of<PartitionManager>(), "consumerGroup", "namespace", "eventHub", () => new MockConnection(), default);
processor.ProcessEventAsync += eventArgs => Task.CompletedTask;
Assert.That(async () => await processor.StartProcessingAsync(), Throws.InstanceOf<InvalidOperationException>().And.Message.Contains(nameof(EventProcessorClient.ProcessErrorAsync)));
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient.StartAsync" />
/// method.
/// </summary>
///
[Test]
public async Task StartAsyncStartsTheEventProcessorWhenProcessingHandlerPropertiesAreSet()
{
var mockConsumer = new Mock<EventHubConsumerClient>("consumerGroup", Mock.Of<EventHubConnection>(), default);
mockConsumer
.Setup(consumer => consumer.GetPartitionIdsAsync(It.IsAny<CancellationToken>()))
.Returns(Task.FromResult(Array.Empty<string>()));
var mockProcessor = new Mock<EventProcessorClient>(Mock.Of<PartitionManager>(), "consumerGroup", "namespace", "eventHub", Mock.Of<Func<EventHubConnection>>(), default);
mockProcessor
.Setup(processor => processor.CreateConsumer(
It.IsAny<string>(),
It.IsAny<EventHubConnection>(),
It.IsAny<EventHubConsumerClientOptions>()))
.Returns(mockConsumer.Object);
mockProcessor.Object.ProcessEventAsync += eventArgs => Task.CompletedTask;
mockProcessor.Object.ProcessErrorAsync += eventArgs => Task.CompletedTask;
Assert.That(async () => await mockProcessor.Object.StartProcessingAsync(), Throws.Nothing);
await mockProcessor.Object.StopProcessingAsync();
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient.ProcessErrorAsync" />
/// event.
/// </summary>
///
[Test]
public async Task ProcessErrorAsyncDoesNotBlockStopping()
{
var mockConsumer = new Mock<EventHubConsumerClient>("consumerGroup", Mock.Of<EventHubConnection>(), default);
var mockProcessor = new Mock<EventProcessorClient>(new MockCheckPointStorage(), "consumerGroup", "namespace", "eventHub", Mock.Of<Func<EventHubConnection>>(), default) { CallBase = true };
mockConsumer
.Setup(consumer => consumer.GetPartitionIdsAsync(It.IsAny<CancellationToken>()))
.ThrowsAsync(new InvalidCastException());
mockConsumer
.Setup(consumer => consumer.ReadEventsFromPartitionAsync(
It.IsAny<string>(),
It.IsAny<EventPosition>(),
It.IsAny<ReadEventOptions>(),
It.IsAny<CancellationToken>()))
.Returns<string, EventPosition, ReadEventOptions, CancellationToken>((partition, position, options, token) => MockPartitionEventEnumerable(20, token));
mockProcessor
.Setup(processor => processor.CreateConsumer(
It.IsAny<string>(),
It.IsAny<EventHubConnection>(),
It.IsAny<EventHubConsumerClientOptions>()))
.Returns(mockConsumer.Object);
mockProcessor.Object.ProcessEventAsync += eventArgs => Task.CompletedTask;
// Create a handler that does not complete in a reasonable amount of time. To ensure that the
// test does not hang for the duration, set a timeout to force completion after a shorter period
// of time.
using var cancellationSource = new CancellationTokenSource();
cancellationSource.CancelAfter(TimeSpan.FromSeconds(15));
var completionSource = new TaskCompletionSource<bool>();
mockProcessor.Object.ProcessErrorAsync += async eventArgs =>
{
completionSource.SetResult(true);
await Task.Delay(TimeSpan.FromMinutes(3), cancellationSource.Token);
};
// Start the processor and wait for the event handler to be triggered.
await mockProcessor.Object.StartProcessingAsync();
await completionSource.Task;
// Stop the processor and ensure that it does not block on the handler.
Assert.That(async () => await mockProcessor.Object.StopProcessingAsync(cancellationSource.Token), Throws.Nothing, "The processor should stop without a problem.");
Assert.That(cancellationSource.IsCancellationRequested, Is.False, "The processor should have stopped without cancellation.");
cancellationSource.Cancel();
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient.ProcessErrorAsync" />
/// event.
/// </summary>
///
[Test]
public async Task ProcessErrorAsyncCanStopTheEventProcessorClient()
{
var mockConsumer = new Mock<EventHubConsumerClient>("consumerGroup", Mock.Of<EventHubConnection>(), default);
var mockProcessor = new Mock<EventProcessorClient>(new MockCheckPointStorage(), "consumerGroup", "namespace", "eventHub", Mock.Of<Func<EventHubConnection>>(), default) { CallBase = true };
mockConsumer
.Setup(consumer => consumer.GetPartitionIdsAsync(It.IsAny<CancellationToken>()))
.ThrowsAsync(new InvalidCastException());
mockConsumer
.Setup(consumer => consumer.ReadEventsFromPartitionAsync(
It.IsAny<string>(),
It.IsAny<EventPosition>(),
It.IsAny<ReadEventOptions>(),
It.IsAny<CancellationToken>()))
.Returns<string, EventPosition, ReadEventOptions, CancellationToken>((partition, position, options, token) => MockPartitionEventEnumerable(20, token));
mockProcessor
.Setup(processor => processor.CreateConsumer(
It.IsAny<string>(),
It.IsAny<EventHubConnection>(),
It.IsAny<EventHubConsumerClientOptions>()))
.Returns(mockConsumer.Object);
mockProcessor.Object.ProcessEventAsync += eventArgs => Task.CompletedTask;
var completionSource = new TaskCompletionSource<bool>();
mockProcessor.Object.ProcessErrorAsync += async eventArgs =>
{
await mockProcessor.Object.StopProcessingAsync();
completionSource.SetResult(true);
};
// Start the processor and wait for the event handler to be triggered.
await mockProcessor.Object.StartProcessingAsync();
await completionSource.Task;
// Ensure that the processor has been stopped.
Assert.That(mockProcessor.Object.IsRunning, Is.False, "The processor should have stopped.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient.ProcessEventAsync" />
/// event.
/// </summary>
///
[Test]
public async Task ProcessEventAsyncReceivesAnEmptyPartitionContextForNoData()
{
var partitionId = "expectedPartition";
var mockConsumer = new Mock<EventHubConsumerClient>("consumerGroup", Mock.Of<EventHubConnection>(), default);
var mockProcessor = new Mock<EventProcessorClient>(new MockCheckPointStorage(), "consumerGroup", "namespace", "eventHub", Mock.Of<Func<EventHubConnection>>(), default) { CallBase = true };
mockConsumer
.Setup(consumer => consumer.GetPartitionIdsAsync(It.IsAny<CancellationToken>()))
.Returns(Task.FromResult(new[] { partitionId }));
mockConsumer
.Setup(consumer => consumer.ReadEventsFromPartitionAsync(
It.IsAny<string>(),
It.IsAny<EventPosition>(),
It.IsAny<ReadEventOptions>(),
It.IsAny<CancellationToken>()))
.Returns<string, EventPosition, ReadEventOptions, CancellationToken>((partition, position, options, token) => MockEmptyPartitionEventEnumerable(5, token));
mockProcessor
.Setup(processor => processor.CreateConsumer(
It.IsAny<string>(),
It.IsAny<EventHubConnection>(),
It.IsAny<EventHubConsumerClientOptions>()))
.Returns(mockConsumer.Object);
mockProcessor.Object.ProcessErrorAsync += eventArgs => Task.CompletedTask;
var completionSource = new TaskCompletionSource<bool>();
var emptyEventArgs = default(ProcessEventArgs);
mockProcessor.Object.ProcessEventAsync += eventArgs =>
{
emptyEventArgs = eventArgs;
completionSource.SetResult(true);
return Task.CompletedTask;
};
// Start the processor and wait for the event handler to be triggered.
await mockProcessor.Object.StartProcessingAsync();
await completionSource.Task;
await mockProcessor.Object.StopProcessingAsync();
// Validate the empty event arguments.
Assert.That(emptyEventArgs, Is.Not.Null, "The event arguments should have been populated.");
Assert.That(emptyEventArgs.Data, Is.Null, "The event arguments should not have an event available.");
Assert.That(emptyEventArgs.Partition, Is.Not.Null, "The event arguments should have a partition context.");
Assert.That(emptyEventArgs.Partition.PartitionId, Is.EqualTo(partitionId), "The partition identifier should match.");
Assert.That(() => emptyEventArgs.Partition.ReadLastEnqueuedEventProperties(), Throws.InstanceOf<InvalidOperationException>(), "The last event properties should not be available.");
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" /> properties.
/// </summary>
///
[Test]
[Ignore("Update to match new event behavior.")]
public async Task HandlerPropertiesCannotBeSetWhenEventProcessorIsRunning()
{
var processor = new EventProcessorClient(Mock.Of<PartitionManager>(), "consumerGroup", "namespace", "eventHub", () => new MockConnection(), default);
processor.ProcessEventAsync += eventArgs => Task.CompletedTask;
processor.ProcessErrorAsync += eventArgs => Task.CompletedTask;
await processor.StartProcessingAsync();
Assert.That(() => processor.PartitionInitializingAsync += eventArgs => Task.CompletedTask, Throws.InstanceOf<InvalidOperationException>());
Assert.That(() => processor.PartitionClosingAsync += eventArgs => Task.CompletedTask, Throws.InstanceOf<InvalidOperationException>());
Assert.That(() => processor.ProcessEventAsync += eventArgs => Task.CompletedTask, Throws.InstanceOf<InvalidOperationException>());
Assert.That(() => processor.ProcessErrorAsync += eventArgs => Task.CompletedTask, Throws.InstanceOf<InvalidOperationException>());
await processor.StopProcessingAsync();
}
/// <summary>
/// Verifies functionality of the <see cref="EventProcessorClient" /> properties.
/// </summary>
///
[Test]
[Ignore("Update to match new event behavior.")]
public async Task HandlerPropertiesCanBeSetAfterEventProcessorHasStopped()
{
var processor = new EventProcessorClient(Mock.Of<PartitionManager>(), "consumerGroup", "namespace", "eventHub", () => new MockConnection(), default);
processor.ProcessEventAsync += eventArgs => Task.CompletedTask;
processor.ProcessErrorAsync += eventArgs => Task.CompletedTask;
await processor.StartProcessingAsync();
await processor.StopProcessingAsync();
Assert.That(() => processor.PartitionInitializingAsync += eventArgs => Task.CompletedTask, Throws.Nothing);
Assert.That(() => processor.PartitionClosingAsync += eventArgs => Task.CompletedTask, Throws.Nothing);
Assert.That(() => processor.ProcessEventAsync += eventArgs => Task.CompletedTask, Throws.Nothing);
Assert.That(() => processor.ProcessErrorAsync += eventArgs => Task.CompletedTask, Throws.Nothing);
}
/// <summary>
/// Retrieves the RetryPolicy for the processor client using its private accessor.
/// </summary>
///
private static EventHubsRetryPolicy GetRetryPolicy(EventProcessorClient client) =>
(EventHubsRetryPolicy)
typeof(EventProcessorClient)
.GetProperty("RetryPolicy", BindingFlags.Instance | BindingFlags.NonPublic)
.GetValue(client);
/// <summary>
/// Retrieves the ProcessingConsumerOptions for the processor client using its private accessor.
/// </summary>
///
private static EventHubConsumerClientOptions GetProcessingConsumerOptions(EventProcessorClient client) =>
(EventHubConsumerClientOptions)
typeof(EventProcessorClient)
.GetProperty("ProcessingConsumerOptions", BindingFlags.Instance | BindingFlags.NonPublic)
.GetValue(client);
/// <summary>
/// Retrieves the ProcessingReadEventOptions for the processor client using its private accessor.
/// </summary>
///
private static ReadEventOptions GetProcessingReadEventOptions(EventProcessorClient client) =>
(ReadEventOptions)
typeof(EventProcessorClient)
.GetProperty("ProcessingReadEventOptions", BindingFlags.Instance | BindingFlags.NonPublic)
.GetValue(client);
/// <summary>
/// Creates a connection using a processor client's ConnectionFactory and returns its ConnectionOptions.
/// </summary>
///
private static EventHubConnectionOptions GetConnectionOptionsSample(EventProcessorClient client)
{
var connectionFactory = (Func<EventHubConnection>)typeof(EventProcessorClient)
.GetProperty("ConnectionFactory", BindingFlags.Instance | BindingFlags.NonPublic)
.GetValue(client);
var connection = connectionFactory();
return (EventHubConnectionOptions)typeof(EventHubConnection)
.GetProperty("Options", BindingFlags.Instance | BindingFlags.NonPublic)
.GetValue(connection);
}
/// <summary>
/// Creates a mock async enumerable to simulate reading events from a partition.
/// </summary>
///
private static async IAsyncEnumerable<PartitionEvent> MockPartitionEventEnumerable(int eventCount,
[EnumeratorCancellation]CancellationToken cancellationToken)
{
for (var index = 0; index < eventCount; ++index)
{
if (cancellationToken.IsCancellationRequested) { break; }
await Task.Delay(25).ConfigureAwait(false);
yield return new PartitionEvent(new MockPartitionContext("fake"), new EventData(Encoding.UTF8.GetBytes($"Event { index }")));
}
yield break;
}
/// <summary>
/// Creates a mock async enumerable to simulate reading events from a partition.
/// </summary>
///
private static async IAsyncEnumerable<PartitionEvent> MockEmptyPartitionEventEnumerable(int eventCount,
[EnumeratorCancellation]CancellationToken cancellationToken)
{
for (var index = 0; index < eventCount; ++index)
{
if (cancellationToken.IsCancellationRequested) { break; }
await Task.Delay(25).ConfigureAwait(false);
yield return new PartitionEvent();
}
yield break;
}
/// <summary>
/// Serves as a non-functional connection for testing consumer functionality.
/// </summary>
///
private class MockConnection : EventHubConnection
{
public MockConnection(string namespaceName = "fakeNamespace",
string eventHubName = "fakeEventHub") : base(namespaceName, eventHubName, CreateCredentials())
{
}
private static EventHubTokenCredential CreateCredentials()
{
return new Mock<EventHubTokenCredential>(Mock.Of<TokenCredential>(), "{namespace}.servicebus.windows.net").Object;
}
}
/// <summary>
/// Serves a mock context for a partition.
/// </summary>
///
private class MockPartitionContext : PartitionContext
{
public MockPartitionContext(string partitionId) : base(partitionId)
{
}
}
}
}
| 50.732034 | 306 | 0.648268 | [
"MIT"
] | soshekar/azure-sdk-for-net | sdk/eventhub/Azure.Messaging.EventHubs.Processor/tests/EventProcessorClient/EventProcessorClientTests.cs | 41,653 | C# |
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using AutoMapper;
using AutoMapper.QueryableExtensions;
using HelpfulWebsite_2.Application.Common.Interfaces;
using MediatR;
using Microsoft.EntityFrameworkCore;
namespace HelpfulWebsite_2.Application.TodoLists.Queries.ExportTodos
{
public class ExportTodosQuery : IRequest<ExportTodosVm>
{
public int ListId { get; set; }
}
public class ExportTodosQueryHandler : IRequestHandler<ExportTodosQuery, ExportTodosVm>
{
private readonly IApplicationDbContext _context;
private readonly IMapper _mapper;
private readonly ICsvFileBuilder _fileBuilder;
public ExportTodosQueryHandler(IApplicationDbContext context, IMapper mapper, ICsvFileBuilder fileBuilder)
{
_context = context;
_mapper = mapper;
_fileBuilder = fileBuilder;
}
public async Task<ExportTodosVm> Handle(ExportTodosQuery request, CancellationToken cancellationToken)
{
var vm = new ExportTodosVm();
var records = await _context.TodoItems
.Where(t => t.ListId == request.ListId)
.ProjectTo<TodoItemRecord>(_mapper.ConfigurationProvider)
.ToListAsync(cancellationToken);
vm.Content = _fileBuilder.BuildTodoItemsFile(records);
vm.ContentType = "text/csv";
vm.FileName = "TodoItems.csv";
return await Task.FromResult(vm);
}
}
}
| 32.659574 | 114 | 0.676221 | [
"MIT"
] | CameronHunter000/HelpfulWebsite2 | src/Application/TodoLists/Queries/ExportTodos/ExportTodosQuery.cs | 1,537 | C# |
//
// Copyright (c) 2004-2019 Jaroslaw Kowalski <jaak@jkowalski.net>, Kim Christensen, Julian Verdurmen
//
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// * Redistributions of source code must retain the above copyright notice,
// this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright notice,
// this list of conditions and the following disclaimer in the documentation
// and/or other materials provided with the distribution.
//
// * Neither the name of Jaroslaw Kowalski nor the names of its
// contributors may be used to endorse or promote products derived from this
// software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
// THE POSSIBILITY OF SUCH DAMAGE.
//
#if !SILVERLIGHT && !NETSTANDARD1_0
namespace NLog.Targets
{
/// <summary>
/// SMTP authentication modes.
/// </summary>
public enum SmtpAuthenticationMode
{
/// <summary>
/// No authentication.
/// </summary>
None,
/// <summary>
/// Basic - username and password.
/// </summary>
Basic,
/// <summary>
/// NTLM Authentication.
/// </summary>
Ntlm,
}
}
#endif | 35.783333 | 100 | 0.695855 | [
"BSD-3-Clause"
] | ALFNeT/NLog | src/NLog/Targets/SmtpAuthenticationMode.cs | 2,147 | C# |
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;
namespace TeslaCanBusInspector.Common
{
public class CsvRowWriter : ICsvRowWriter
{
private static readonly Dictionary<string, Func<CsvRow, string>> Properties =
new Dictionary<string, Func<CsvRow, string>>
{
{ nameof(CsvRow.Timestamp), row => '"' + row.Timestamp.ToString("o") + '"' },
{ nameof(CsvRow.BmsState), row => row.BmsState?.ToString() },
{ nameof(CsvRow.BmsChargeStatus), row => row.BmsChargeStatus?.ToString() },
{ nameof(CsvRow.StateOfCharge), row => row.StateOfCharge?.Value.ToString("F1") },
{ nameof(CsvRow.FullBatteryCapacity), row => row.FullBatteryCapacity?.Value.ToString("F1") },
{ nameof(CsvRow.ExpectedRemainingCapacity), row => row.ExpectedRemainingCapacity?.Value.ToString("F1") },
{ nameof(CsvRow.TotalDischarge), row => row.TotalDischarge?.Value.ToString("F3") },
{ nameof(CsvRow.TotalCharge), row => row.TotalDischarge?.Value.ToString("F3") },
{ nameof(CsvRow.BatteryVoltage), row => row.BatteryVoltage?.Value.ToString("F1") },
{ nameof(CsvRow.BatteryCurrent), row => row.BatteryCurrent?.Value.ToString("F1") },
{ nameof(CsvRow.Speed), row => row.Speed?.Value.ToString("F1") },
{ nameof(CsvRow.Odometer), row => row.Odometer?.Value.ToString("F3") }
};
public async Task WriteHeader(StreamWriter writer)
{
var sb = new StringBuilder();
foreach (var property in Properties)
{
if (sb.Length > 0) sb.Append(',');
sb.Append(property.Key);
}
await writer.WriteLineAsync(sb.ToString());
}
public async Task WriteLine(StreamWriter writer, CsvRow row)
{
var sb = new StringBuilder();
foreach (var property in Properties)
{
if (sb.Length > 0) sb.Append(',');
sb.Append(property.Value(row));
}
await writer.WriteLineAsync(sb.ToString());
}
}
public interface ICsvRowWriter
{
Task WriteHeader(StreamWriter writer);
Task WriteLine(StreamWriter writer, CsvRow row);
}
} | 41.216667 | 122 | 0.566114 | [
"MIT"
] | hanswolff/TeslaCanBusInspector | TeslaCanBusInspector/Common/CsvRowWriter.cs | 2,416 | C# |
using AspNetCoreHero.Boilerplate.Domain.Entities.Catalog;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AspNetCoreHero.Boilerplate.Application.Interfaces.Repositories
{
public interface IProductRepository
{
IQueryable<Product> Products { get; }
Task<List<Product>> GetListAsync();
Task<List<Product>> GetSelectListAsync();
Task<Product> GetByIdAsync(int productId);
Task<Product> GetDetailsByIdAsync(int productId);
Task<int> InsertAsync(Product product);
Task UpdateAsync(Product product);
Task DeleteAsync(Product product);
}
}
| 24.518519 | 72 | 0.717523 | [
"MIT"
] | engrmalikmubashir/MVCCoreTemplate | AspNetCoreHero.Boilerplate.Application/Interfaces/Repositories/IProductRepository.cs | 664 | C# |
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Cors;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Status.Models;
using Status.Services;
using System.Threading.Tasks;
namespace Status.Controllers
{
[ApiController]
[EnableCors("CorsPolicy")]
[Route("[controller]")]
[Authorize]
public class StatusController : ControllerBase
{
private readonly ILogger<StatusController> _logger;
private readonly StatusService _statusService;
public StatusController(ILogger<StatusController> logger, StatusService statusService)
{
_logger = logger;
_statusService = statusService;
}
[HttpGet("/status/{id}")]
public async Task<ActionResult<StatusEntity>> Get(string id)
{
return await _statusService.Get(id);
}
[HttpPost("/status/{id}")]
public async Task<IActionResult> Post([FromRoute] string id, [FromBody] StatusDto status)
{
_logger.LogInformation("Post status: id = {}, status = {}", new object[] { id, status.status });
await _statusService.Put(id, status.status);
return Ok();
}
[HttpPost("/status/{id}/done")]
public async Task<IActionResult> Post([FromRoute] string id, [FromBody] StatusDtoWithFileId status)
{
_logger.LogInformation("Post status: id = {}, status = {}, resultFileId = {}", new object[] { id, status.status, status.resultFileId});
await _statusService.Put(id, status.status, status.resultFileId);
return Ok();
}
}
}
| 33.734694 | 147 | 0.639443 | [
"MIT"
] | Dyromic/architekturak_hf | services/status/Status/Controllers/StatusController.cs | 1,655 | C# |
/*
* Copyright (c) 2018 - 2021 Daniel Lascelles, https://github.com/dlascelles
* This code is licensed under The MIT License. See LICENSE file in the project root for full license information.
* License URL: https://github.com/dlascelles/Arithmos/blob/master/LICENSE
*/
using ArithmosModels;
using System;
using System.Globalization;
using System.Windows.Data;
namespace Arithmos.Converters
{
/// <summary>
/// Used to convert CalculationMethod enum values to UI Checkboxes
/// </summary>
public class CalculationMethodConverter : IValueConverter
{
private CalculationMethod method;
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
CalculationMethod temp = (CalculationMethod)parameter;
method = (CalculationMethod)value;
return ((temp & method) != 0);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
method ^= (CalculationMethod)parameter;
return method;
}
}
} | 34.40625 | 113 | 0.684832 | [
"MIT"
] | dlascelles/Arithmos | Arithmos/Converters/CalculationMethodConverter.cs | 1,103 | C# |
/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Mongodb.V20190725.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class DescribeCurrentOpResponse : AbstractModel
{
/// <summary>
/// 符合查询条件的操作总数
/// </summary>
[JsonProperty("TotalCount")]
public ulong? TotalCount{ get; set; }
/// <summary>
/// 当前操作列表
/// </summary>
[JsonProperty("CurrentOps")]
public CurrentOp[] CurrentOps{ get; set; }
/// <summary>
/// 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
/// </summary>
[JsonProperty("RequestId")]
public string RequestId{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
public override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "TotalCount", this.TotalCount);
this.SetParamArrayObj(map, prefix + "CurrentOps.", this.CurrentOps);
this.SetParamSimple(map, prefix + "RequestId", this.RequestId);
}
}
}
| 31.068966 | 81 | 0.633185 | [
"Apache-2.0"
] | TencentCloud/tencentcloud-sdk-dotnet | TencentCloud/Mongodb/V20190725/Models/DescribeCurrentOpResponse.cs | 1,894 | C# |
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using AutoMapper;
using AdventureWorks.Application.DataEngine.Sales.Store.Queries.GetStores;
using AdventureWorks.Domain;
using MediatR;
using Entities = AdventureWorks.Domain.Entities.Sales;
namespace AdventureWorks.Application.DataEngine.Sales.Store.Commands.UpdateStore
{
public partial class
UpdateStoreSetCommandHandler : IRequestHandler<UpdateStoreSetCommand, List<StoreLookupModel>>
{
private readonly IAdventureWorksContext _context;
private readonly IMediator _mediator;
private readonly IMapper _mapper;
public UpdateStoreSetCommandHandler(IAdventureWorksContext context, IMediator mediator, IMapper mapper)
{
_context = context;
_mediator = mediator;
_mapper = mapper;
}
public async Task<List<StoreLookupModel>> Handle(UpdateStoreSetCommand request,
CancellationToken cancellationToken)
{
var result = new List<StoreLookupModel>();
await using (var transaction = await _context.Database.BeginTransactionAsync(cancellationToken))
{
foreach (var singleRequest in request.Commands)
{
var singleUpdateResult = await _mediator.Send(singleRequest, cancellationToken);
result.Add(singleUpdateResult);
}
await transaction.CommitAsync(cancellationToken);
}
return result;
}
}
} | 35.840909 | 111 | 0.677235 | [
"Unlicense"
] | CodeSwifterGit/adventure-works | src/AdventureWorks.Application/DataEngine/Sales/Store/Commands/UpdateStore/UpdateStoreSetCommandHandler.cs | 1,577 | C# |
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Follow : MonoBehaviour {
public GameObject target;
Vector3 offset;
// Use this for initialization
void Start () {
offset = new Vector3(0, 1, -3);
}
// Update is called once per frame
void Update () {
transform.position = target.transform.position + offset;
transform.LookAt(target.transform);
//transform.rotation = target.transform.rotation;
}
}
| 22.454545 | 64 | 0.680162 | [
"MIT"
] | RustedBot/Game-Engines | Lab 2/Assets/Follow.cs | 496 | C# |
using System.Collections.Generic;
using Quaver.Shared.Graphics.Form.Dropdowns;
using Quaver.Shared.Graphics.Form.Dropdowns.Custom;
using Wobble.Graphics;
using ColorHelper = Quaver.Shared.Helpers.ColorHelper;
namespace Quaver.Shared.Screens.Music.UI.Controller.Search.Dropdowns
{
public class MusicControllerPrivacyDropdown : LabelledDropdown
{
public MusicControllerPrivacyDropdown() : base("PRIVACY: ", 22, new Dropdown(GetDropdownItems(),
new ScalableVector2(160, 38), 22, ColorHelper.HexToColor($"#55ec49"), GetSelectedIndex()))
{
}
/// <summary>
/// </summary>
/// <returns></returns>
private static List<string> GetDropdownItems() => new List<string>
{
"Open",
"Closed"
};
/// <summary>
/// Retrieves the index of the selected value
/// </summary>
/// <returns></returns>
private static int GetSelectedIndex()
{
return 0;
}
}
} | 30.235294 | 104 | 0.611868 | [
"MPL-2.0",
"MPL-2.0-no-copyleft-exception"
] | Adrriii/Quaver | Quaver.Shared/Screens/Music/UI/Controller/Search/Dropdowns/MusicControllerPrivacyDropdown.cs | 1,028 | C# |
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.Logging.Abstractions;
using Moq;
using NUnit.Framework;
using TPP.Core.Overlay;
namespace TPP.Core.Tests.Overlay
{
public class OverlayConnectionTest
{
private readonly Mock<IBroadcastServer> _broadcastServerMock = new Mock<IBroadcastServer>();
private readonly OverlayConnection _connection;
public OverlayConnectionTest()
{
_connection = new OverlayConnection(NullLogger<OverlayConnection>.Instance, _broadcastServerMock.Object);
}
private struct EventWithoutData : IOverlayEvent
{
public string OverlayEventType => "test";
}
[Test]
public async Task send_event_without_data()
{
await _connection.Send(new EventWithoutData(), CancellationToken.None);
const string json = @"{""type"":""test"",""extra_parameters"":{}}";
_broadcastServerMock.Verify(s => s.Send(json, CancellationToken.None), Times.Once);
}
private readonly struct EventWithEnum : IOverlayEvent
{
internal enum TestEnum
{
[EnumMember(Value = "foo_bar")] FooBar
}
public string OverlayEventType => "test";
[DataMember(Name = "enum_value")] public TestEnum EnumValue { get; init; }
}
[Test]
public async Task send_event_with_enum_use_DataMember_and_EnumMember_attributes()
{
await _connection.Send(
new EventWithEnum { EnumValue = EventWithEnum.TestEnum.FooBar },
CancellationToken.None);
const string json = @"{""type"":""test"",""extra_parameters"":{""enum_value"":""foo_bar""}}";
_broadcastServerMock.Verify(s => s.Send(json, CancellationToken.None), Times.Once);
}
}
}
| 35.054545 | 117 | 0.633817 | [
"MIT"
] | Fenris2142/tpp-core2 | tests/TPP.Core.Tests/Overlay/OverlayConnectionTest.cs | 1,928 | C# |
// Copyright (c) All contributors. All rights reserved. Licensed under the MIT license.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
namespace Netsphere;
[TinyhandObject]
public partial class PacketPunch : IPacket
{
public PacketId PacketId => PacketId.Punch;
public bool AllowUnencrypted => true;
public PacketPunch()
{
}
public PacketPunch(IPEndPoint? nextEndpoint)
{
this.NextEndpoint = nextEndpoint;
this.UtcMics = Mics.GetUtcNow();
}
[Key(0)]
public IPEndPoint? NextEndpoint { get; set; }
[Key(1)]
public long UtcMics { get; set; }
}
[TinyhandObject]
public partial class PacketPunchResponse : IPacket
{
public PacketId PacketId => PacketId.PunchResponse;
public bool AllowUnencrypted => true;
[Key(0)]
public IPEndPoint Endpoint { get; set; } = default!;
[Key(1)]
public long UtcMics { get; set; }
public override string ToString() => $"{this.Endpoint}";
}
| 21 | 88 | 0.681244 | [
"BSD-2-Clause",
"MIT"
] | archi-Doc/LP | Netsphere/Packet/PacketPunch.cs | 1,031 | C# |
using System;
using System.Net.Http;
using System.Text.Json;
using System.Threading.Tasks;
using BlazorApps.Shared.Common;
using BlazorApps.Shared.Models.IdentityModels;
using BlazorApps.Shared.Services;
using Microsoft.AspNetCore.Components;
using Microsoft.AspNetCore.Components.Forms;
using TanvirArjel.Blazor.Components;
using TanvirArjel.Blazor.Extensions;
using TanvirArjel.Blazor.Utilities;
namespace BlazorWasmApp.Components.IdentityComponents
{
public partial class LoginComponent
{
private readonly UserService _userService;
private readonly HostAuthStateProvider _hostAuthStateProvider;
private readonly ExceptionLogger _exceptionLogger;
private readonly NavigationManager _navigationManager;
public LoginComponent(
UserService userService,
HostAuthStateProvider hostAuthStateProvider,
ExceptionLogger exceptionLogger,
NavigationManager navigationManager)
{
_userService = userService;
_hostAuthStateProvider = hostAuthStateProvider;
_exceptionLogger = exceptionLogger;
_navigationManager = navigationManager;
}
private EditContext FormContext { get; set; }
private LoginModel LoginModel { get; set; } = new LoginModel();
private CustomValidationMessages ValidationMessages { get; set; }
private bool IsSubmitDisabled { get; set; }
private string ErrorMessage { get; set; }
protected override void OnInitialized()
{
FormContext = new EditContext(LoginModel);
FormContext.SetFieldCssClassProvider(new BootstrapValidationClassProvider());
}
protected override async Task OnAfterRenderAsync(bool firstRender)
{
if (firstRender)
{
string error = _navigationManager.GetQuery("error");
if (!string.IsNullOrWhiteSpace(error))
{
ValidationMessages.AddAndDisplay(string.Empty, error);
return;
}
string jwt = _navigationManager.GetQuery("jwt");
if (!string.IsNullOrWhiteSpace(jwt))
{
await _hostAuthStateProvider.LogInAsync(jwt, "/");
return;
}
}
}
private async Task HandleValidSubmit()
{
try
{
IsSubmitDisabled = true;
HttpResponseMessage httpResponse = await _userService.LoginAsync(LoginModel);
if (httpResponse.IsSuccessStatusCode)
{
string responseString = await httpResponse.Content.ReadAsStringAsync();
string jsonWebToken = JsonSerializer.Deserialize<string>(responseString);
Console.WriteLine(jsonWebToken);
if (jsonWebToken != null)
{
await _hostAuthStateProvider.LogInAsync(jsonWebToken, "/");
return;
}
}
else
{
Console.WriteLine((int)httpResponse.StatusCode);
await ValidationMessages.AddAndDisplayAsync(httpResponse);
}
}
catch (HttpRequestException httpException)
{
Console.WriteLine($"Status Code: {httpException.StatusCode}");
ValidationMessages.AddAndDisplay(ErrorMessages.Http500ErrorMessage);
await _exceptionLogger.LogAsync(httpException);
}
catch (Exception exception)
{
ValidationMessages.AddAndDisplay(ErrorMessages.ClientErrorMessage);
await _exceptionLogger.LogAsync(exception);
}
IsSubmitDisabled = false;
}
private void LoginWithGoogle()
{
string loginUrl = "https://localhost:44363/api/v1/external-login/sign-in?provider=Google";
_navigationManager.NavigateTo(loginUrl, true);
}
}
}
| 34.38843 | 102 | 0.599615 | [
"MIT"
] | TanvirArjel/CleanArchitecture | src/ClientApps/BlazorWasmApp/Components/IdentityComponents/LoginComponent.razor.cs | 4,163 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework;
namespace KirbyArena
{
public class Snowflake : AnimatedObject
{
float fallRate;
public Snowflake(Texture2D spriteSheet, Rectangle dest)
: base(spriteSheet, spriteSheet.Width, spriteSheet.Height, dest)
{
Random gen = new Random();
fallRate = (float)(gen.NextDouble() * 20 + 30);
}
public Snowflake(Texture2D spriteSheet, float fallRate, Rectangle dest)
: base(spriteSheet, spriteSheet.Width, spriteSheet.Height, dest)
{
this.fallRate = fallRate;
}
public override void update(GameTime gameTime)
{
base.update(gameTime);
moveBy(0, gameTime.ElapsedGameTime.Milliseconds / 1000.0f * fallRate);
}
public bool isExpired(int bottom)
{
return dest.Top > bottom;
}
}
}
| 26.564103 | 82 | 0.61583 | [
"MIT"
] | Squirrelbear/KirbyArenaPublic | KirbyArena/KirbyArena/KirbyArena/GameObjects/Effects/Snowflake.cs | 1,038 | C# |
// <copyright file="EventBuffer.cs" company="ViewTonic contributors">
// Copyright (c) ViewTonic contributors. All rights reserved.
// </copyright>
namespace ViewTonic.Sdk
{
using System;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Threading;
public sealed class EventBuffer : IEventBuffer, IDisposable
{
private readonly ConcurrentDictionary<long, Event> buffer = new ConcurrentDictionary<long, Event>();
private readonly object @lock = new object();
private BlockingCollection<Event> queue = new BlockingCollection<Event>(100000);
public EventBuffer()
: this(0L)
{
}
public EventBuffer(long sequenceNumber)
{
Trace.WriteLine("EventBuffer: .ctor(long sequenceNumber)");
this.NextSequenceNumber = sequenceNumber + 1;
}
public long NextSequenceNumber { get; private set; }
public bool IsEmpty
{
get { return this.queue.Count == 0; }
}
public void Add(Event @event)
{
Trace.WriteLine("EventBuffer: Add(Event @event)");
Guard.Against.Null(() => @event);
Guard.Against.Negative(() => @event.SequenceNumber);
Guard.Against.Null(() => @event.Payload);
lock (this.@lock)
{
if (@event.SequenceNumber < this.NextSequenceNumber || this.buffer.ContainsKey(@event.SequenceNumber))
{
// NOTE (Cameron): We have already buffered this item.
return;
}
if (@event.SequenceNumber != this.NextSequenceNumber)
{
this.buffer.TryAdd(@event.SequenceNumber, @event);
return;
}
this.queue.Add(@event);
this.NextSequenceNumber = @event.SequenceNumber + 1;
while (this.buffer.TryRemove(this.NextSequenceNumber, out @event))
{
this.queue.Add(@event);
this.NextSequenceNumber++;
}
}
}
public Event Take(CancellationToken cancellationToken)
{
Trace.WriteLine("EventBuffer: Take(CancellationToken cancellationToken)");
Event value = null;
this.queue.TryTake(out value, Timeout.Infinite, cancellationToken);
return value;
}
public bool TryTake(out Event value)
{
Trace.WriteLine("EventBuffer: TryTake(out Event value)");
return this.queue.TryTake(out value, 0);
}
public void Clear()
{
Trace.WriteLine("EventBuffer: Clear()");
lock (this.@lock)
{
this.buffer.Clear();
// LINK (Cameron): http://stackoverflow.com/questions/8001133/how-to-empty-a-blockingcollection
var oldQueue = this.queue;
this.queue = new BlockingCollection<Event>(100000);
oldQueue.Dispose();
this.NextSequenceNumber = 1L;
}
}
public void Dispose()
{
Trace.WriteLine("EventBuffer: Dispose()");
this.queue.Dispose();
}
}
}
| 30.9375 | 119 | 0.524675 | [
"MIT"
] | cameronfletcher/ViewTonic | src/ViewTonic/Sdk/EventBuffer.cs | 3,467 | C# |
using System;
using System.Threading;
#if NO_THREADS
using System.Threading.Tasks;
#endif
namespace Org.BouncyCastle.Crypto.Prng
{
/**
* A thread based seed generator - one source of randomness.
* <p>
* Based on an idea from Marcus Lippert.
* </p>
*/
public class ThreadedSeedGenerator
{
private class SeedGenerator
{
#if NETCF_1_0
// No volatile keyword, but all fields implicitly volatile anyway
private int counter = 0;
private bool stop = false;
#else
private volatile int counter = 0;
private volatile bool stop = false;
#endif
private void Run(object ignored)
{
while (!this.stop)
{
this.counter++;
}
}
public byte[] GenerateSeed(
int numBytes,
bool fast)
{
#if SILVERLIGHT || PORTABLE
return DoGenerateSeed(numBytes, fast);
#else
ThreadPriority originalPriority = Thread.CurrentThread.Priority;
try
{
Thread.CurrentThread.Priority = ThreadPriority.Normal;
return DoGenerateSeed(numBytes, fast);
}
finally
{
Thread.CurrentThread.Priority = originalPriority;
}
#endif
}
private byte[] DoGenerateSeed(
int numBytes,
bool fast)
{
this.counter = 0;
this.stop = false;
byte[] result = new byte[numBytes];
int last = 0;
int end = fast ? numBytes : numBytes * 8;
#if NO_THREADS
Task.Factory.StartNew(() => Run(null), TaskCreationOptions.None);
#else
ThreadPool.QueueUserWorkItem(new WaitCallback(Run));
#endif
for (int i = 0; i < end; i++)
{
while (this.counter == last)
{
try
{
#if PORTABLE
new AutoResetEvent(false).WaitOne(1);
#else
Thread.Sleep(1);
#endif
}
catch (Exception)
{
// ignore
}
}
last = this.counter;
if (fast)
{
result[i] = (byte)last;
}
else
{
int bytepos = i / 8;
result[bytepos] = (byte)((result[bytepos] << 1) | (last & 1));
}
}
this.stop = true;
return result;
}
}
/**
* Generate seed bytes. Set fast to false for best quality.
* <p>
* If fast is set to true, the code should be round about 8 times faster when
* generating a long sequence of random bytes. 20 bytes of random values using
* the fast mode take less than half a second on a Nokia e70. If fast is set to false,
* it takes round about 2500 ms.
* </p>
* @param numBytes the number of bytes to generate
* @param fast true if fast mode should be used
*/
public byte[] GenerateSeed(
int numBytes,
bool fast)
{
return new SeedGenerator().GenerateSeed(numBytes, fast);
}
}
}
| 22.792308 | 88 | 0.552481 | [
"MIT"
] | LuckyLeee/RSAUtil | BouncyCastle.Crypto/crypto/prng/ThreadedSeedGenerator.cs | 2,963 | C# |
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Diagnostics;
using System.Net; // for WebClient class
using System.Xml;
using System.Linq;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Ipc;
using System.ServiceProcess;
using DocumentFormat.OpenXml.Packaging;
using DocumentFormat.OpenXml;
using DocumentFormat.OpenXml.Spreadsheet;
using DigitalPlatform;
using DigitalPlatform.GUI;
using DigitalPlatform.dp2.Statis;
using DigitalPlatform.Marc;
using DigitalPlatform.Xml;
using DigitalPlatform.IO;
using DigitalPlatform.Text;
using DigitalPlatform.CommonControl;
using DigitalPlatform.Interfaces;
using DigitalPlatform.AmazonInterface;
using DigitalPlatform.LibraryClient;
using DigitalPlatform.Drawing;
using DigitalPlatform.Core;
namespace dp2Circulation
{
internal partial class TestForm : Form
{
/// <summary>
/// 框架窗口
/// </summary>
// public MainForm MainForm = null;
public TestForm()
{
InitializeComponent();
}
private void TestForm_Load(object sender, EventArgs e)
{
if (Program.MainForm != null)
{
MainForm.SetControlFont(this, Program.MainForm.DefaultFont);
}
this.textBox_diskSpace_tempFileName.Text = Program.MainForm.AppInfo.GetString(
"TestForm",
"diskspace_tempfilename",
"");
this.textBox_diskSpace_size.Text = Program.MainForm.AppInfo.GetString(
"TestForm",
"diskspace_size",
"");
DispFreeSpace();
this.checkBox_fromEditControl_hasCaptionsTitleLine.Checked = this.fromEditControl1.HasCaptionsTitleLine;
// CheckedComboBox page
this.textBox_checkedComboBox_listValues.Text = Program.MainForm.AppInfo.GetString(
"TestForm",
"checkedcombobox_listvalues",
"");
this.textBox_serverFilePath.Text = Program.MainForm.AppInfo.GetString(
"TestForm",
"ftp_server_path",
"");
this.textBox_clientFilePath.Text = Program.MainForm.AppInfo.GetString(
"TestForm",
"ftp_client_path",
"");
this.UiState = Program.MainForm.AppInfo.GetString(
"TestForm",
"ui_state",
"");
// this.entityRegisterControl1.Font = this.Font;
}
private void TestForm_FormClosed(object sender, FormClosedEventArgs e)
{
if (Program.MainForm != null && Program.MainForm.AppInfo != null)
{
Program.MainForm.AppInfo.SetString(
"TestForm",
"diskspace_tempfilename",
this.textBox_diskSpace_tempFileName.Text);
Program.MainForm.AppInfo.SetString(
"TestForm",
"diskspace_size",
this.textBox_diskSpace_size.Text);
// CheckedComboBox page
Program.MainForm.AppInfo.SetString(
"TestForm",
"checkedcombobox_listvalues",
this.textBox_checkedComboBox_listValues.Text);
Program.MainForm.AppInfo.SetString(
"TestForm",
"ftp_server_path",
this.textBox_serverFilePath.Text);
Program.MainForm.AppInfo.SetString(
"TestForm",
"ftp_client_path",
this.textBox_clientFilePath.Text);
Program.MainForm.AppInfo.SetString(
"TestForm",
"ui_state",
this.UiState);
}
}
// 可增加显示磁盘空间的功能
private void button_diskSpace_writeTempFile_Click(object sender, EventArgs e)
{
string strError = "";
int nRet = 0;
string strText = "";
if (this.textBox_diskSpace_size.Text == "")
{
strError = "尚未指定临时文件尺寸";
goto ERROR1;
}
if (this.textBox_diskSpace_tempFileName.Text == "")
{
strError = "尚未指定临时文件名";
goto ERROR1;
}
long lSize = 0;
string strPrefix = "";
string strUnit = "";
nRet = ParseSizeText(this.textBox_diskSpace_size.Text,
out lSize,
out strPrefix,
out strUnit,
out strError);
if (nRet == -1)
goto ERROR1;
strUnit = strUnit.ToUpper();
if (strUnit == "M")
lSize = lSize * 1024 * 1024;
else if (strUnit == "K")
lSize = lSize * 1024;
else if (strUnit == "")
{
// lSize 不变
}
else
{
strError = "未知的尺寸单位 '" + strUnit + "'";
goto ERROR1;
}
EnableControls(false);
try
{
Stream s = File.Open(
this.textBox_diskSpace_tempFileName.Text,
FileMode.OpenOrCreate,
FileAccess.ReadWrite,
FileShare.ReadWrite);
using (s)
{
if (strPrefix == "+")
{
strText = "文件尺寸从 " + s.Length.ToString() + " 扩大 " + lSize.ToString() + ",到 " + (lSize + s.Length).ToString() + "。";
s.SetLength(lSize + s.Length);
}
else if (strPrefix == "-")
{
strText = "文件尺寸从 " + s.Length.ToString() + " 缩小 " + lSize.ToString() + ",到 " + (s.Length - lSize).ToString() + "。";
s.SetLength(Math.Max(s.Length - lSize, 0));
}
else if (strPrefix == "")
{
strText = "设置文件尺寸为 " + lSize.ToString() + " 。";
s.SetLength(lSize);
}
else
{
strError = "未知的前缀 '" + strPrefix + "'";
goto ERROR1;
}
}
}
catch (Exception ex)
{
strError = ExceptionUtil.GetAutoText(ex);
goto ERROR1;
}
finally
{
EnableControls(true);
}
DispFreeSpace();
MessageBox.Show(this, strText);
return;
ERROR1:
MessageBox.Show(this, strError);
}
private void button_diskSpace_deleteTempFile_Click(object sender, EventArgs e)
{
string strError = "";
if (this.textBox_diskSpace_tempFileName.Text == "")
{
strError = "尚未指定临时文件名";
goto ERROR1;
}
EnableControls(false);
try
{
File.Delete(this.textBox_diskSpace_tempFileName.Text);
}
finally
{
EnableControls(true);
}
DispFreeSpace();
MessageBox.Show(this, "OK");
return;
ERROR1:
MessageBox.Show(this, strError);
}
// 解析尺寸字符串
// 尺寸字符串的格式为:前缀 + 数字 + 单位
// 其中,前缀为 + 或 - , 单位为 M或 K
static int ParseSizeText(string strSize,
out long lSize,
out string strPrefix,
out string strUnit,
out string strError)
{
lSize = 0;
strPrefix = "";
strUnit = "";
strError = "";
bool bInDigit = false;
bool bInPrefix = true;
string strDigit = "";
for (int i = 0; i < strSize.Length; i++)
{
char c = strSize[i];
if (c >= '0' && c <= '9')
{
bInDigit = true;
bInPrefix = false;
}
if (bInPrefix == true)
strPrefix += c;
else
{
if (bInDigit == true)
strDigit += c;
else
strUnit += c;
}
}
if (strDigit == "")
strDigit = "0";
lSize = Convert.ToInt64(strDigit);
return 0;
}
void DispFreeSpace()
{
if (this.textBox_diskSpace_tempFileName.Text.Length < 2)
{
this.textBox_diskSpace_freeSpace.Text = "";
return;
}
string strDriver = this.textBox_diskSpace_tempFileName.Text.Substring(0, 2);
try
{
DriveInfo info = new DriveInfo(strDriver);
this.textBox_diskSpace_freeSpace.Text = strDriver + "剩余空间: " + info.AvailableFreeSpace.ToString();
}
catch
{
}
}
/// <summary>
/// 允许或者禁止界面控件。在长操作前,一般需要禁止界面控件;操作完成后再允许
/// </summary>
/// <param name="bEnable">是否允许界面控件。true 为允许, false 为禁止</param>
public void EnableControls(bool bEnable)
{
this.tabControl_main.Enabled = bEnable;
}
// 创建事件日志目录
private void button_createEventLogDir_Click(object sender, EventArgs e)
{
if (this.textBox_evenLogDirName.Text == "")
{
MessageBox.Show(this, "尚未指定日志目录名");
return;
}
// Create the source, if it does not already exist.
if (!EventLog.SourceExists(this.textBox_evenLogDirName.Text))
{
EventLog.CreateEventSource(this.textBox_evenLogDirName.Text, "DigitalPlatform");
}
EventLog Log = new EventLog();
Log.Source = this.textBox_evenLogDirName.Text;
Log.WriteEntry(this.textBox_evenLogDirName.Text + "目录创建成功。",
EventLogEntryType.Information);
MessageBox.Show(this, "OK");
}
private void button_testExceptionMessage_Click(object sender, EventArgs e)
{
try
{
TestForm form = null;
form.Text = "";
}
catch (Exception ex)
{
MessageBox.Show(this, ExceptionUtil.GetDebugText(ex));
}
}
private void button_goUrl_Click(object sender, EventArgs e)
{
this.extendedWebBrowser1.Navigate(this.textBox_url.Text);
}
private void extendedWebBrowser1_BeforeNavigate(object sender, BeforeNavigateArgs e)
{
// Debug.Assert(false, "");
int i = 0;
i++;
}
private void button_webClient_go_Click(object sender, EventArgs e)
{
this.textBox_webClient_headers.Text = "";
WebClient webClient = new WebClient();
try
{
webClient.DownloadFile(this.textBox_webClient_url.Text,
Program.MainForm.DataDir + "\\temp.temp");
foreach (string key in webClient.ResponseHeaders.AllKeys)
{
this.textBox_webClient_headers.Text += key + ":" + webClient.ResponseHeaders[key] + "\r\n";
}
MessageBox.Show(this, "OK");
}
catch (Exception ex)
{
MessageBox.Show(this, ExceptionUtil.GetAutoText(ex));
}
}
private void textBox_locationEditControl_count_TextChanged(object sender, EventArgs e)
{
try
{
int nCount = Convert.ToInt32(this.textBox_locationEditControl_count.Text);
this.locationEditControl1.Count = nCount;
}
catch
{
return;
}
}
private void button_locationEditControl_setToControl_Click(object sender, EventArgs e)
{
this.locationEditControl1.Value = this.textBox_locationEditControl_locationString.Text;
}
private void button_locationEditControl_getFromControl_Click(object sender, EventArgs e)
{
this.textBox_locationEditControl_locationString.Text = this.locationEditControl1.Value;
}
// 将XML片段设置给控件
private void button_captionEditControl_set_Click(object sender, EventArgs e)
{
try
{
this.captionEditControl1.Xml = this.textBox_captionEditControl_xml.Text;
}
catch (Exception ex)
{
MessageBox.Show(this, ExceptionUtil.GetAutoText(ex));
}
}
// 从控件中获得XML片段
private void button_captionEditControl_get_Click(object sender, EventArgs e)
{
try
{
this.textBox_captionEditControl_xml.Text = this.captionEditControl1.Xml;
}
catch (Exception ex)
{
MessageBox.Show(this, ExceptionUtil.GetAutoText(ex));
}
}
private void button_fromEditControl_set_Click(object sender, EventArgs e)
{
try
{
this.fromEditControl1.Xml = this.textBox_fromEditControl_xml.Text;
}
catch (Exception ex)
{
MessageBox.Show(this, ExceptionUtil.GetAutoText(ex));
}
}
private void button_fromEditControl_get_Click(object sender, EventArgs e)
{
try
{
this.textBox_fromEditControl_xml.Text = this.fromEditControl1.Xml;
}
catch (Exception ex)
{
MessageBox.Show(this, ExceptionUtil.GetAutoText(ex));
}
}
// FromEditControl的captions部分是否有单独的标题条?
private void checkBox_fromEditControl_hasCaptionsTitleLine_CheckedChanged(object sender, EventArgs e)
{
this.fromEditControl1.HasCaptionsTitleLine = this.checkBox_fromEditControl_hasCaptionsTitleLine.Checked;
}
private void button_testDouble_Click(object sender, EventArgs e)
{
/*
double x = 3198.85D;
double y = 6.80D;
* */
double x = Convert.ToDouble("3198.85");
double y = Convert.ToDouble("6.80");
MessageBox.Show(this, "x=" + x.ToString() + " y=" + y.ToString() + "=" + (x + y).ToString());
}
private void button_checkedComboBox_setList_Click(object sender, EventArgs e)
{
this.checkedComboBox1.Items.Clear();
for (int i = 0; i < this.textBox_checkedComboBox_listValues.Lines.Length; i++)
{
this.checkedComboBox1.Items.Add(this.textBox_checkedComboBox_listValues.Lines[i]);
}
}
private void comboBox1_DropDown(object sender, EventArgs e)
{
}
private void button_times_getUTime_Click(object sender, EventArgs e)
{
this.textBox_times_utime.Text = DateTime.Now.ToString("u");
}
private void button_times_getRfc1123Time_Click(object sender, EventArgs e)
{
this.textBox_times_rfc1123Time.Text = DateTimeUtil.Rfc1123DateTimeStringEx(
DateTime.Now);
}
private void button_times_parseRfc1123Time_Click(object sender, EventArgs e)
{
DateTime time = DateTimeUtil.FromRfc1123DateTimeString(this.textBox_times_rfc1123Time.Text);
MessageBox.Show(this, "GMT time: " + time.ToString() + " LocalTime: " + time.ToLocalTime().ToString());
}
private void button_string_buidRangeString_Click(object sender, EventArgs e)
{
string[] parts = this.textBox_string_numberList.Text.Split(new char[] { ',' });
List<String> numbers = new List<string>();
numbers.AddRange(parts);
MessageBox.Show(this, Global.BuildNumberRangeString(numbers));
}
private void button_font_createFont_Click(object sender, EventArgs e)
{
System.Drawing.FontFamily family = new System.Drawing.FontFamily(this.textBox_fontName.Text);
MessageBox.Show(this, family.ToString());
}
private void button_gcatClient_getNumber_Click(object sender, EventArgs e)
{
#if OLD_CODE
string strError = "";
string strDebugInfo = "";
string strNumber = "";
this.textBox_gcatClient_debugInfo.Text = "";
// return:
// -1 error
// 0 canceled
// 1 succeed
int nRet = GcatNew.GetNumber(
null,
this,
this.textBox_gcatClient_url.Text, // "http://localhost/gcatserver/",
"",
this.textBox_gcatClient_author.Text,
true,
true,
true,
out strNumber,
out strDebugInfo,
out strError);
if (nRet != 1)
MessageBox.Show(this, strError);
else
MessageBox.Show(this, strNumber);
this.textBox_gcatClient_debugInfo.Text = strDebugInfo;
#endif
}
private void button_font_htmlInputDialog_Click(object sender, EventArgs e)
{
HtmlInputDialog dlg = new HtmlInputDialog();
dlg.Text = "指定统计特性";
dlg.Url = "f:\\temp\\input.html";
dlg.Size = new Size(700, 500);
dlg.ShowDialog(this);
}
// marcxchange --> marcxml
private void button_marcFormat_convertXtoK_Click(object sender, EventArgs e)
{
string strError = "";
string strTarget = "";
this.textBox_marcFormat_targetXml.Text = "";
int nRet = MarcUtil.MarcXChangeToXml(this.textBox_marcFormat_sourceXml.Text,
out strTarget,
out strError);
if (nRet == -1)
MessageBox.Show(this, strError);
else
{
string strXml = "";
nRet = DomUtil.GetIndentXml(strTarget,
out strXml,
out strError);
if (nRet == -1)
MessageBox.Show(this, strError);
else
this.textBox_marcFormat_targetXml.Text = strXml;
}
}
// marcxml --> marcxchange
private void button_marcFormat_convertKtoX_Click(object sender, EventArgs e)
{
string strError = "";
string strTarget = "";
this.textBox_marcFormat_targetXml.Text = "";
// 将机内使用的marcxml格式转化为marcxchange格式
int nRet = MarcUtil.MarcXmlToXChange(this.textBox_marcFormat_sourceXml.Text,
null,
out strTarget,
out strError);
if (nRet == -1)
MessageBox.Show(this, strError);
else
{
string strXml = "";
nRet = DomUtil.GetIndentXml(strTarget,
out strXml,
out strError);
if (nRet == -1)
MessageBox.Show(this, strError);
else
this.textBox_marcFormat_targetXml.Text = strXml;
}
}
private void button_dpTable_fill_Click(object sender, EventArgs e)
{
if (this.dpTable1.Columns.Count == 0)
{
for (int i = 0; i < 10; i++)
{
DpColumn cell = new DpColumn();
cell.Text = "column " + i.ToString();
cell.Width = 100;
this.dpTable1.Columns.Add(cell);
}
}
string strImageFileName = Path.Combine(Program.MainForm.DataDir, "ajax-loader.gif");
Image image = Image.FromFile(strImageFileName);
for (int i = 0; i < 10; i++)
{
DpRow line = new DpRow();
line.ForeColor = System.Drawing.Color.Yellow;
for (int j = 0; j < 10; j++)
{
DpCell cell = new DpCell();
if (j == 0)
cell.Image = image;
cell.Text = "asdf asd fa sdfa sdf asd fa sdf" + i.ToString() + " " + j.ToString();
if (j == 5)
{
cell.BackColor = System.Drawing.Color.Green;
cell.ForeColor = System.Drawing.Color.White;
cell.Font = new System.Drawing.Font(this.dpTable1.Font, FontStyle.Bold);
}
if (i == 2)
cell.Alignment = DpTextAlignment.InheritLine;
line.Add(cell);
}
if (i == 2)
{
line.BackColor = System.Drawing.Color.Red;
line.Font = new System.Drawing.Font(this.dpTable1.Font, FontStyle.Italic);
line.Alignment = StringAlignment.Center;
}
this.dpTable1.Rows.Add(line);
}
/*
{
DpRow line = new DpRow();
line.Style = DpRowStyle.Seperator;
line.BackColor = Color.Blue;
line.ForeColor = Color.White;
this.dpTable1.Rows.Add(line);
}
* */
}
private void button_dpTable_change_Click(object sender, EventArgs e)
{
this.dpTable1.Rows[1].Font = new System.Drawing.Font("Arial", 18, GraphicsUnit.Point);
}
private void button_gcatClient_getPinyin_Click(object sender, EventArgs e)
{
#if OLD_CODE
string strError = "";
string strPinyinXml = "";
this.textBox_gcatClient_debugInfo.Text = "";
// return:
// -1 error
// 0 canceled
// 1 succeed
int nRet = GcatNew.GetPinyin(
null,
this.textBox_gcatClient_url.Text, // "http://localhost/gcatserver/",
"",
this.textBox_gcatClient_hanzi.Text,
out strPinyinXml,
out strError);
if (nRet == -1)
MessageBox.Show(this, strError);
else
MessageBox.Show(this, strPinyinXml);
#endif
}
private void button_xml_getXmlFilename_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.Title = "请指定要打开的XML文件名";
dlg.FileName = this.textBox_xml_xmlFilename.Text;
// dlg.InitialDirectory =
dlg.Filter = "XML文件 (*.xml)|*.xml|All files (*.*)|*.*";
dlg.RestoreDirectory = true;
if (dlg.ShowDialog() != DialogResult.OK)
return;
this.textBox_xml_xmlFilename.Text = dlg.FileName;
}
private void button_xml_loadToDom_Click(object sender, EventArgs e)
{
XmlDocument dom = new XmlDocument();
dom.Load(this.textBox_xml_xmlFilename.Text);
this.textBox_xml_content.Text = dom.OuterXml;
}
WebCamera wc = null;
private void button_start_Click(object sender, EventArgs e)
{
if (wc == null)
{
wc = new WebCamera(this.panel_camera_preview.Handle,
panel_camera_preview.Width, panel_camera_preview.Height);
wc.StartWebCam();
}
}
private void button_stop_Click(object sender, EventArgs e)
{
if (wc != null)
{
wc.CloseWebcam();
wc = null;
}
}
private void button_camera_capture_Click(object sender, EventArgs e)
{
if (wc != null)
{
this.label_image.Image = wc.Capture();
}
}
private void button_idcardReader_read_Click(object sender, EventArgs e)
{
string strError = "";
int nRet = 0;
/*
IServerFactory obj = (IServerFactory)Activator.GetObject(typeof(IServerFactory),
"ipc://IdcardChannel/ServerFactory");
m_idcardObj = obj.GetInterface();
*/
ImageUtil.SetImage(this.pictureBox_idCard, null); // 2016/12/28
nRet = StartChannel(out strError);
if (nRet == -1)
goto ERROR1;
try
{
string strXml = "";
// Image image = null;
byte[] baPhoto = null;
nRet = m_idcardObj.ReadCard("",
out strXml,
out baPhoto,
out strError);
if (nRet == -1)
goto ERROR1;
if (baPhoto != null)
{
using (MemoryStream s = new MemoryStream(baPhoto))
{
ImageUtil.SetImage(this.pictureBox_idCard, new Bitmap(s)); // 2016/12/28
}
}
MessageBox.Show(this, strXml);
}
finally
{
EndChannel();
}
return;
ERROR1:
MessageBox.Show(this, strError);
}
IpcClientChannel m_idcardChannel = new IpcClientChannel();
IIdcard m_idcardObj = null;
int StartChannel(out string strError)
{
strError = "";
//Register the channel with ChannelServices.
if (this.m_idcardChannel == null)
this.m_idcardChannel = new IpcClientChannel();
ChannelServices.RegisterChannel(m_idcardChannel, false);
try
{
m_idcardObj = (IIdcard)Activator.GetObject(typeof(IIdcard),
this.textBox_idcardReader_serverUrl.Text);
if (m_idcardObj == null)
{
strError = "could not locate Idcard Server";
return -1;
}
}
finally
{
}
return 0;
}
void EndChannel()
{
if (this.m_idcardChannel != null)
{
ChannelServices.UnregisterChannel(m_idcardChannel);
this.m_idcardChannel = null;
}
}
private void button_idcardReader_messageBeep_Click(object sender, EventArgs e)
{
Console.Beep();
}
private void button_cutter_convertTextToXml_Click(object sender, EventArgs e)
{
// string strError = "";
OpenFileDialog dlg = new OpenFileDialog();
dlg.Title = "请指定要打开的文本文件名";
dlg.FileName = "";
// dlg.InitialDirectory =
dlg.Filter = "文本文件 (*.txt)|*.txt|All files (*.*)|*.*";
dlg.RestoreDirectory = true;
if (dlg.ShowDialog() != DialogResult.OK)
return;
string strSourceFilename = dlg.FileName;
SaveFileDialog save_dlg = new SaveFileDialog();
save_dlg.Title = "请指定要创建的XML文件名";
save_dlg.CreatePrompt = false;
save_dlg.OverwritePrompt = false;
save_dlg.FileName = "";
// dlg.InitialDirectory = Environment.CurrentDirectory;
save_dlg.Filter = "XML文件 (*.xml)|*.xml|All files (*.*)|*.*";
save_dlg.RestoreDirectory = true;
if (save_dlg.ShowDialog() != DialogResult.OK)
return;
string strTargetFilename = save_dlg.FileName;
using (StreamReader sr = new StreamReader(strSourceFilename))
using (XmlTextWriter writer = new XmlTextWriter(strTargetFilename, Encoding.UTF8))
{
writer.Formatting = Formatting.Indented;
writer.Indentation = 4;
writer.WriteStartDocument();
writer.WriteStartElement("collection");
for (; ; )
{
string strLine = sr.ReadLine();
if (strLine == null)
break;
strLine = strLine.Trim();
if (string.IsNullOrEmpty(strLine) == true)
continue;
string strNumber = "";
string strText = "";
int nRet = strLine.IndexOf(" ");
if (nRet == -1)
continue;
strNumber = strLine.Substring(0, nRet).Trim();
strText = strLine.Substring(nRet + 1).Trim();
XmlDocument dom = new XmlDocument();
dom.LoadXml("<item />");
DomUtil.SetAttr(dom.DocumentElement, "n", strNumber);
DomUtil.SetAttr(dom.DocumentElement, "t", strText);
dom.DocumentElement.WriteTo(writer);
}
writer.WriteEndElement();
writer.WriteEndDocument();
}
MessageBox.Show(this, "OK");
return;
/*
ERROR1:
MessageBox.Show(this, strError);
* */
}
private void button_cutter_getEntry_Click(object sender, EventArgs e)
{
string strError = "";
this.textBox_cutter_resultString.Text = "";
int nRet = Program.MainForm.LoadQuickCutter(true, out strError);
if (nRet == -1)
goto ERROR1;
string strText = "";
string strNumber = "";
nRet = Program.MainForm.QuickCutter.GetEntry(this.textBox_cutter_authorString.Text,
out strText,
out strNumber,
out strError);
if (nRet == -1)
goto ERROR1;
this.textBox_cutter_resultString.Text = strText + " " + strNumber;
return;
ERROR1:
MessageBox.Show(this, strError);
}
private void button_cutter_verify_Click(object sender, EventArgs e)
{
string strError = "";
int nRet = Program.MainForm.LoadQuickCutter(true, out strError);
if (nRet == -1)
goto ERROR1;
nRet = Program.MainForm.QuickCutter.Verify(out strError);
if (nRet == -1)
goto ERROR1;
MessageBox.Show(this, "OK");
return;
ERROR1:
MessageBox.Show(this, strError);
}
private void button_cutter_exchange_Click(object sender, EventArgs e)
{
string strError = "";
int nRet = Program.MainForm.LoadQuickCutter(true, out strError);
if (nRet == -1)
goto ERROR1;
nRet = Program.MainForm.QuickCutter.Exchange(out strError);
if (nRet == -1)
goto ERROR1;
MessageBox.Show(this, "OK");
return;
ERROR1:
MessageBox.Show(this, strError);
}
// .InnerText和XPath text()哪个快 ?
private void button_test_innerTextAndXPath_Click(object sender, EventArgs e)
{
XmlDocument dom = new XmlDocument();
dom.LoadXml("<root><test>test string</test></root>");
XmlNode node = dom.DocumentElement.SelectSingleNode("test");
DateTime start_time = DateTime.Now;
for (int i = 0; i < 10000; i++)
{
string strText = node.InnerText; // GetInnerText(node); // node.InnerText;
}
TimeSpan delta1 = DateTime.Now - start_time;
start_time = DateTime.Now;
for (int i = 0; i < 10000; i++)
{
string strText = GetNodeText(node);
}
TimeSpan delta2 = DateTime.Now - start_time;
MessageBox.Show(this, ".InnertText 耗费时间 " + delta1.ToString() + ", GetNodeText() 耗费时间" + delta2.ToString());
}
public static string GetNodeText(XmlNode node)
{
Debug.Assert(node != null, "");
XmlNode nodeText = node.SelectSingleNode("text()");
if (nodeText == null)
return "";
else
return nodeText.Value;
}
public static string GetInnerText(XmlNode node)
{
Debug.Assert(node != null, "");
return node.InnerText;
}
private void button_testMessageDialog_Click(object sender, EventArgs e)
{
bool bHideMessageBox = false;
/*
DialogResult result = MessageDialog.Show(this,
"是否要升级统计方案 ?",
MessageBoxButtons.YesNoCancel,
MessageBoxDefaultButton.Button2,
"以后不再提示,按本次的选择处理",
ref bHideMessageBox);
* */
DialogResult result = MessageDialog.Show(this,
"是否要升级统计方案 ?",
"以后不再提示,按本次的选择处理",
ref bHideMessageBox);
MessageBox.Show(this, "result=" + result.ToString() + ", bHideMessageBox=" + bHideMessageBox.ToString());
}
private void button_times_parseFreeTime_Click_3(object sender, EventArgs e)
{
DateTime time = DateTimeUtil.ParseFreeTimeString(this.textBox_times_freeTime.Text);
MessageBox.Show(this, "time: " + time.ToString());
}
private void button_string_CompareAccessNo_Click(object sender, EventArgs e)
{
this.textBox_string_accessNo1_ascii.Text = GetAsciiExplainString(this.textBox_string_accessNo1.Text);
this.textBox_string_accessNo2_ascii.Text = GetAsciiExplainString(this.textBox_string_accessNo2.Text);
int nRet = StringUtil.CompareAccessNo(this.textBox_string_accessNo1.Text,
this.textBox_string_accessNo2.Text);
MessageBox.Show(this, "nRet = " + nRet.ToString());
}
static string GetAsciiExplainString(string strText)
{
string strResult = "";
foreach (char ch in strText)
{
strResult += new string(ch, 1) + " [" + ((UInt32)ch) + "] ";
}
return strResult;
}
private void button_excel_test_Click(object sender, EventArgs e)
{
string strFileName = "f:\\temp\\test.xlsx";
CreateSpreadsheetWorkbook(strFileName);
}
public static void CreateSpreadsheetWorkbook(string filepath)
{
// Create a spreadsheet document by supplying the filepath.
// By default, AutoSave = true, Editable = true, and Type = xlsx.
SpreadsheetDocument spreadsheetDocument = SpreadsheetDocument.Create(filepath, SpreadsheetDocumentType.Workbook);
// Add a WorkbookPart to the document.
WorkbookPart workbookpart = spreadsheetDocument.AddWorkbookPart();
workbookpart.Workbook = new Workbook();
// Add a WorksheetPart to the WorkbookPart.
WorksheetPart worksheetPart = workbookpart.AddNewPart<WorksheetPart>();
worksheetPart.Worksheet = new Worksheet(new SheetData());
// Add Sheets to the Workbook.
Sheets sheets = spreadsheetDocument.WorkbookPart.Workbook.AppendChild<Sheets>(new Sheets());
// Append a new worksheet and associate it with the workbook.
Sheet sheet = new Sheet() { Id = spreadsheetDocument.WorkbookPart.GetIdOfPart(worksheetPart), SheetId = 1, Name = "mySheet" };
sheets.Append(sheet);
UpdateValue(workbookpart, "mySheet2", "A1", "text 1", 0, true);
workbookpart.Workbook.Save();
// Close the document.
spreadsheetDocument.Close();
}
#region text excel
public static bool UpdateValue(
WorkbookPart wbPart,
string sheetName, string addressName, string value,
UInt32Value styleIndex, bool isString)
{
// Assume failure.
bool updated = false;
Sheet sheet = wbPart.Workbook.Descendants<Sheet>().Where(
(s) => s.Name == sheetName).FirstOrDefault();
if (sheet != null)
{
Worksheet ws = ((WorksheetPart)(wbPart.GetPartById(sheet.Id))).Worksheet;
DocumentFormat.OpenXml.Spreadsheet.Cell cell = InsertCellInWorksheet(ws, addressName);
if (isString)
{
// Either retrieve the index of an existing string,
// or insert the string into the shared string table
// and get the index of the new item.
int stringIndex = InsertSharedStringItem(wbPart, value);
cell.CellValue = new CellValue(stringIndex.ToString());
cell.DataType = new EnumValue<CellValues>(CellValues.SharedString);
}
else
{
cell.CellValue = new CellValue(value);
cell.DataType = new EnumValue<CellValues>(CellValues.Number);
}
if (styleIndex > 0)
cell.StyleIndex = styleIndex;
// Save the worksheet.
ws.Save();
updated = true;
}
return updated;
}
// Given the main workbook part, and a text value, insert the text into
// the shared string table. Create the table if necessary. If the value
// already exists, return its index. If it doesn't exist, insert it and
// return its new index.
private static int InsertSharedStringItem(WorkbookPart wbPart, string value)
{
int index = 0;
bool found = false;
var stringTablePart = wbPart
.GetPartsOfType<SharedStringTablePart>().FirstOrDefault();
// If the shared string table is missing, something's wrong.
// Just return the index that you found in the cell.
// Otherwise, look up the correct text in the table.
if (stringTablePart == null)
{
// Create it.
stringTablePart = wbPart.AddNewPart<SharedStringTablePart>();
}
var stringTable = stringTablePart.SharedStringTable;
if (stringTable == null)
{
stringTable = new SharedStringTable();
stringTablePart.SharedStringTable = stringTable;
}
// Iterate through all the items in the SharedStringTable.
// If the text already exists, return its index.
foreach (SharedStringItem item in stringTable.Elements<SharedStringItem>())
{
if (item.InnerText == value)
{
found = true;
break;
}
index += 1;
}
if (!found)
{
stringTable.AppendChild(new SharedStringItem(new Text(value)));
stringTable.Save();
}
return index;
}
// Given a Worksheet and an address (like "AZ254"), either return a
// cell reference, or create the cell reference and return it.
private static DocumentFormat.OpenXml.Spreadsheet.Cell InsertCellInWorksheet(Worksheet ws,
string addressName)
{
SheetData sheetData = ws.GetFirstChild<SheetData>();
DocumentFormat.OpenXml.Spreadsheet.Cell cell = null;
UInt32 rowNumber = GetRowIndex(addressName);
Row row = GetRow(sheetData, rowNumber);
// If the cell you need already exists, return it.
// If there is not a cell with the specified column name, insert one.
DocumentFormat.OpenXml.Spreadsheet.Cell refCell = row.Elements<DocumentFormat.OpenXml.Spreadsheet.Cell>().
Where(c => c.CellReference.Value == addressName).FirstOrDefault();
if (refCell != null)
{
cell = refCell;
}
else
{
cell = CreateCell(row, addressName);
}
return cell;
}
// Add a cell with the specified address to a row.
private static DocumentFormat.OpenXml.Spreadsheet.Cell CreateCell(Row row, String address)
{
DocumentFormat.OpenXml.Spreadsheet.Cell cellResult;
DocumentFormat.OpenXml.Spreadsheet.Cell refCell = null;
// Cells must be in sequential order according to CellReference.
// Determine where to insert the new cell.
foreach (DocumentFormat.OpenXml.Spreadsheet.Cell cell in row.Elements<DocumentFormat.OpenXml.Spreadsheet.Cell>())
{
if (string.Compare(cell.CellReference.Value, address, true) > 0)
{
refCell = cell;
break;
}
}
cellResult = new DocumentFormat.OpenXml.Spreadsheet.Cell();
cellResult.CellReference = address;
row.InsertBefore(cellResult, refCell);
return cellResult;
}
// Return the row at the specified rowIndex located within
// the sheet data passed in via wsData. If the row does not
// exist, create it.
private static Row GetRow(SheetData wsData, UInt32 rowIndex)
{
var row = wsData.Elements<Row>().
Where(r => r.RowIndex.Value == rowIndex).FirstOrDefault();
if (row == null)
{
row = new Row();
row.RowIndex = rowIndex;
wsData.Append(row);
}
return row;
}
// Given an Excel address such as E5 or AB128, GetRowIndex
// parses the address and returns the row index.
private static UInt32 GetRowIndex(string address)
{
string rowPart;
UInt32 l;
UInt32 result = 0;
for (int i = 0; i < address.Length; i++)
{
if (UInt32.TryParse(address.Substring(i, 1), out l))
{
rowPart = address.Substring(i, address.Length - i);
if (UInt32.TryParse(rowPart, out l))
{
result = l;
break;
}
}
}
return result;
}
#endregion
private void button_encoding_detectEncoding_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.Title = "请指定要打开的记录路径文件名";
// dlg.FileName = this.RecPathFilePath;
dlg.Filter = "记录路径文件 (*.txt)|*.txt|All files (*.*)|*.*";
dlg.RestoreDirectory = true;
if (dlg.ShowDialog() != DialogResult.OK)
return;
Encoding encoding = FileUtil.DetectTextFileEncoding(dlg.FileName);
MessageBox.Show(this, encoding.ToString());
}
void DoStop(object sender, StopEventArgs e)
{
#if NO
if (this.Channel != null)
this.Channel.Abort();
#endif
}
void Channel_BeforeLogin(object sender, DigitalPlatform.LibraryClient.BeforeLoginEventArgs e)
{
Program.MainForm.Channel_BeforeLogin(sender, e); // 2015/11/8
}
Stop _stop = null;
private void button_test_channelAttack_Click(object sender, EventArgs e)
{
_stop = new DigitalPlatform.Stop();
_stop.Register(Program.MainForm.stopManager, true); // 和容器关联
_stop.OnStop += new StopEventHandler(this.DoStop);
_stop.Style = StopStyle.EnableHalfStop;
_stop.Initial("正在测试耗费通道 ...");
_stop.BeginLoop();
this.button_test_channelAttack.Enabled = false;
this.numericUpDown_test_tryChannelCount.Enabled = false;
try
{
for (int i = 0; i < this.numericUpDown_test_tryChannelCount.Value; i++)
{
Application.DoEvents();
if (_stop != null && _stop.State != 0)
break;
// using (LibraryChannel channel = new LibraryChannel())
LibraryChannel channel = new LibraryChannel();
{
channel.Url = Program.MainForm.LibraryServerUrl;
channel.BeforeLogin -= new DigitalPlatform.LibraryClient.BeforeLoginEventHandle(Channel_BeforeLogin);
channel.BeforeLogin += new DigitalPlatform.LibraryClient.BeforeLoginEventHandle(Channel_BeforeLogin);
string strValue = "";
string strError = "";
long lRet = channel.GetSystemParameter(_stop,
"library",
"name",
out strValue,
out strError);
#if NO
if (lRet == -1)
{
if (channel.ErrorCode == DigitalPlatform.LibraryClient.localhost.ErrorCode.OutofSession)
break;
}
#endif
_stop.SetMessage(i.ToString());
}
}
}
finally
{
this.numericUpDown_test_tryChannelCount.Enabled = true;
this.button_test_channelAttack.Enabled = true;
_stop.EndLoop();
_stop.OnStop -= new StopEventHandler(this.DoStop);
_stop.Initial("");
if (_stop != null) // 脱离关联
{
_stop.Unregister(); // 和容器关联
_stop = null;
}
}
}
private void button_patronCardControl_setData_Click(object sender, EventArgs e)
{
this.patronCardControl1.Xml = @"<root>
<name>名字</name>
<barcode>123456789</barcode>
<department>adf adf ads fasdf asdf </department>
</root>";
}
private void button_javascript_run_Click(object sender, EventArgs e)
{
}
private void button_ftp_findClientFilePath_Click(object sender, EventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.Title = "请指定要上传的文件";
dlg.FileName = this.textBox_clientFilePath.Text;
dlg.Filter = "所有文件 All files (*.*)|*.*";
dlg.RestoreDirectory = true;
if (dlg.ShowDialog() != DialogResult.OK)
return;
this.textBox_clientFilePath.Text = dlg.FileName;
}
private void button_ftp_upload_Click(object sender, EventArgs e)
{
EnableControls(false);
try
{
string strError = "";
// 上传文件
// 自动创建所需的目录
// 不会抛出异常
int nRet = FtpUploadDialog.SafeUploadFile(ref this._dirTable,
this.textBox_clientFilePath.Text,
"ftp://localhost",
this.textBox_serverFilePath.Text,
"Administrator",
"",
out strError);
if (nRet == -1)
goto ERROR1;
return;
ERROR1:
MessageBox.Show(this, strError);
}
finally
{
EnableControls(true);
}
}
Hashtable _dirTable = new Hashtable();
private void button_ftp_createDir_Click(object sender, EventArgs e)
{
FtpUploadDialog.FtpCreateDir(
ref _dirTable,
"ftp://localhost",
Path.GetDirectoryName(this.textBox_serverFilePath.Text),
"Administrator",
"");
}
private void button_test_Click(object sender, EventArgs e)
{
SelectItemDialog dlg = new SelectItemDialog();
dlg.MainForm = Program.MainForm;
dlg.ShowDialog(this);
}
private void button_marcTemplate_addLine_Click(object sender, EventArgs e)
{
#if NO
EasyLine line = this.easyMarcControl1.InsertNewLine(0);
line.Content = "test";
#endif
this.easyMarcControl1.SetMarc(this.textBox_marcTemplate_marc.Text);
//List<string> field_names = new List<string> {"001", "100"};
//this.easyMarcControl1.HideFields(field_names, true);
}
public string UiState
{
get
{
List<object> controls = new List<object>();
controls.Add(this.tabControl_main);
controls.Add(this.textBox_marcTemplate_marc);
controls.Add(this.textBox_setBiblioInfo_action);
controls.Add(this.textBox_setBiblioInfo_biblioRecPath);
controls.Add(this.textBox_setBiblioInfo_biblioType);
controls.Add(this.textBox_setBiblioInfo_content);
controls.Add(this.textBox_login_userName);
controls.Add(this.textBox_login_password);
controls.Add(this.textBox_login_parameters);
return GuiState.GetUiState(controls);
}
set
{
List<object> controls = new List<object>();
controls.Add(this.tabControl_main);
controls.Add(this.textBox_marcTemplate_marc);
controls.Add(this.textBox_setBiblioInfo_action);
controls.Add(this.textBox_setBiblioInfo_biblioRecPath);
controls.Add(this.textBox_setBiblioInfo_biblioType);
controls.Add(this.textBox_setBiblioInfo_content);
controls.Add(this.textBox_login_userName);
controls.Add(this.textBox_login_password);
controls.Add(this.textBox_login_parameters);
GuiState.SetUiState(controls, value);
}
}
private void easyMarcControl1_GetConfigDom(object sender, GetConfigDomEventArgs e)
{
string strFileName = Path.Combine(Program.MainForm.DataDir, "marcdef");
XmlDocument dom = new XmlDocument();
try
{
dom.Load(strFileName);
}
catch (Exception ex)
{
e.ErrorInfo = "配置文件 '" + strFileName + "' 装入XMLDUM时出错: " + ex.Message;
return;
}
e.XmlDocument = dom;
}
private void button_marcTemplate_getMarc_Click(object sender, EventArgs e)
{
this.textBox_marcTemplate_marc.Text = this.easyMarcControl1.GetMarc();
}
private void button_entitiesControl_addLine_Click(object sender, EventArgs e)
{
#if NO
RegisterLine line = new RegisterLine(this.entitiesControl1);
this.entitiesControl1.InsertNewLine(0, line, true);
#endif
}
private void button_entityRegisterControl_addLine_Click(object sender, EventArgs e)
{
#if NO
// this.entityRegisterControl1.SetMarc(this.textBox_marcTemplate_marc.Text);
string strError = "";
// 添加一个新的册对象
int nRet = this.entityRegisterControl1.NewEntity(
"0000001",
out strError);
if (nRet == -1)
MessageBox.Show(this, strError);
#endif
}
private void button_amazonSearch_openDialog_Click(object sender, EventArgs e)
{
AmazonSearchForm dlg = new AmazonSearchForm();
MainForm.SetControlFont(dlg, this.Font, false);
dlg.TempFileDir = Program.MainForm.UserTempDir;
dlg.AutoSearch = true;
dlg.UiState = Program.MainForm.AppInfo.GetString(
"TestForm",
"AmazonSearchForm_uiState",
"");
//dlg.QueryWord = "7-02-003343-1";
//dlg.From = "isbn";
// TODO: 保存窗口内的尺寸状态
Program.MainForm.AppInfo.LinkFormState(dlg, "TestForm_AmazonSearchForm_state");
dlg.ShowDialog(this);
Program.MainForm.AppInfo.UnlinkFormState(dlg);
Program.MainForm.AppInfo.SetString(
"TestForm",
"AmazonSearchForm_uiState",
dlg.UiState);
}
// 检查 dp2libraryXE 是否已经安装
private void MenuItem_group1_detectDp2libraryXEInstalled_Click(object sender, EventArgs e)
{
}
// parameters:
// strApplicationName "DigitalPlatform/dp2 V2/dp2内务 V2"
public static bool IsProductInstalled(string strApplicationName)
{
// string publisherName = "Publisher Name";
// string applicationName = "Application Name";
string shortcutPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Programs), strApplicationName) + ".appref-ms";
if (File.Exists(shortcutPath))
return true;
return false;
}
// parameters:
// strApplicationName "DigitalPlatform/dp2 V2/dp2内务 V2"
public static string GetShortcutFilePath(string strApplicationName)
{
// string publisherName = "Publisher Name";
// string applicationName = "Application Name";
return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Programs), strApplicationName) + ".appref-ms";
}
private void button_test_detectInstallation_Click(object sender, EventArgs e)
{
#if NO
bool bRet = IsProductInstalled("DigitalPlatform/dp2 V2/dp2Library XE");
MessageBox.Show(this, bRet.ToString());
#endif
Process.Start(GetShortcutFilePath("DigitalPlatform/dp2 V2/dp2Library XE"));
}
private void button_testGetMergeStyleDialog_Click(object sender, EventArgs e)
{
GetMergeStyleDialog dlg = new GetMergeStyleDialog();
MainForm.SetControlFont(dlg, this.Font, false);
dlg.ShowDialog(this);
}
private void button_test_loginAttack_Click(object sender, EventArgs e)
{
using (LibraryChannel channel = new LibraryChannel())
{
channel.Url = Program.MainForm.LibraryServerUrl;
channel.BeforeLogin -= new DigitalPlatform.LibraryClient.BeforeLoginEventHandle(Channel_BeforeLogin);
channel.BeforeLogin += new DigitalPlatform.LibraryClient.BeforeLoginEventHandle(Channel_BeforeLogin);
_stop = new DigitalPlatform.Stop();
_stop.Register(Program.MainForm.stopManager, true); // 和容器关联
_stop.OnStop += new StopEventHandler(this.DoStop);
_stop.Style = StopStyle.EnableHalfStop;
_stop.Initial("正在试探密码 ...");
_stop.BeginLoop();
this.button_test_loginAttack.Enabled = false;
this.numericUpDown_test_tryChannelCount.Enabled = false;
try
{
for (int i = 0; i < this.numericUpDown_test_tryChannelCount.Value; i++)
{
Application.DoEvents();
if (_stop != null && _stop.State != 0)
break;
string strUserName = "supervisor";
string strPassword = i.ToString();
string strRights = "";
string strLibraryCode = "";
string strOutputUserName = "";
string strError = "";
long lRet = channel.Login(
strUserName,
strPassword,
"",
out strOutputUserName,
out strRights,
out strLibraryCode,
out strError);
#if NO
if (lRet == -1)
{
if (channel.ErrorCode == DigitalPlatform.LibraryClient.localhost.ErrorCode.OutofSession)
break;
}
#endif
_stop.SetMessage(i.ToString() + " username=" + strUserName + " password=" + strPassword + " lRet = " + lRet.ToString() + " " + strError);
}
}
finally
{
this.numericUpDown_test_tryChannelCount.Enabled = true;
this.button_test_loginAttack.Enabled = true;
_stop.EndLoop();
_stop.OnStop -= new StopEventHandler(this.DoStop);
_stop.Initial("");
if (_stop != null) // 脱离关联
{
_stop.Unregister(); // 和容器关联
_stop = null;
}
}
}
}
private void button_testThrow_Click(object sender, EventArgs e)
{
throw new Exception("test throw exception");
}
private void button_openWindowsUpdateDialog_Click(object sender, EventArgs e)
{
WindowsUpdateDialog dlg = new WindowsUpdateDialog();
dlg.ShowDialog(this);
}
private void button_testRelationDialog_Click(object sender, EventArgs e)
{
RelationDialog dlg = new RelationDialog();
MainForm.SetControlFont(dlg, this.Font, false);
dlg.ProcSearchDictionary = SearchDictionary;
dlg.Show(this);
}
int SearchDictionary(
LibraryChannel channel,
Stop stop,
string strDbName,
string strKey,
string strMatchStyle,
int nMaxCount,
ref List<string> results,
out string strError)
{
return Program.MainForm.SearchDictionary(
channel,
stop,
strDbName,
strKey,
strMatchStyle,
nMaxCount,
ref results,
out strError);
}
private void button_kernelResTree_fill_Click(object sender, EventArgs e)
{
string strError = "";
#if NO
LibraryChannel channel = Program.MainForm.GetChannel();
try
{
int nRet = this.kernelResTree1.Fill(channel, out strError);
if (nRet == -1)
goto ERROR1;
}
finally
{
Program.MainForm.ReturnChannel(channel);
}
#endif
this.kernelResTree1.Fill();
return;
ERROR1:
MessageBox.Show(this, strError);
}
private void kernelResTree1_GetChannel(object sender, GetChannelEventArgs e)
{
e.Channel = Program.MainForm.GetChannel();
}
private void kernelResTree1_ReturnChannel(object sender, ReturnChannelEventArgs e)
{
Program.MainForm.ReturnChannel(e.Channel);
}
private void button_setBiblioInfo_request_Click(object sender, EventArgs e)
{
LibraryChannel channel = Program.MainForm.GetChannel();
try
{
byte[] baTimestamp = null;
string strComment = "";
string strOutputBiblioRecPath = "";
byte[] baOutputTimestamp = null;
string strError = "";
long lRet = channel.SetBiblioInfo(null,
this.textBox_setBiblioInfo_action.Text,
this.textBox_setBiblioInfo_biblioRecPath.Text,
this.textBox_setBiblioInfo_biblioType.Text,
this.textBox_setBiblioInfo_content.Text,
baTimestamp,
strComment,
out strOutputBiblioRecPath,
out baOutputTimestamp,
out strError);
MessageBox.Show(this, "lRet=" + lRet.ToString() + " , strOutputBiblioRecPath=" + strOutputBiblioRecPath + ", strError=" + strError);
}
finally
{
Program.MainForm.ReturnChannel(channel);
}
}
private void button_setBiblioInfo_getContentFromIso2709_Click(object sender, EventArgs e)
{
string strError = "";
OpenMarcFileDlg dlg = new OpenMarcFileDlg();
GuiUtil.SetControlFont(dlg, this.Font);
dlg.IsOutput = false;
dlg.ShowDialog(this);
if (dlg.DialogResult != DialogResult.OK)
return;
using (Stream s = File.OpenRead(dlg.FileName))
{
byte[] baRecord = null;
int nRet = MarcUtil.ReadMarcRecord(s,
dlg.Encoding,
true,
out baRecord,
out strError);
if (nRet == -1)
goto ERROR1;
this.textBox_setBiblioInfo_content.Text = Convert.ToBase64String(baRecord);
}
return;
ERROR1:
MessageBox.Show(this, strError);
}
private void button_login_login_Click(object sender, EventArgs e)
{
using (LibraryChannel channel = new LibraryChannel())
{
channel.Url = Program.MainForm.LibraryServerUrl;
string strOutputUserName = "";
string strRights = "";
string strLibraryCode = "";
string strError = "";
long lRet = channel.Login(this.textBox_login_userName.Text,
this.textBox_login_password.Text,
this.textBox_login_parameters.Text,
out strOutputUserName,
out strRights,
out strLibraryCode,
out strError);
MessageBox.Show(this, "lRet=" + lRet + ", strError='" + strError + "', strRights='" + strRights + "'");
}
}
private void button_testListProcess_Click(object sender, EventArgs e)
{
List<string> names = ProcessUtil.GetProcessNameList();
bool bTemp = false;
MessageDialog.Show(this,
"当前所有进程",
StringUtil.MakePathList(names, "\r\n"),
null,
ref bTemp);
names = GetDevicesList();
MessageDialog.Show(this,
"当前所有设备",
StringUtil.MakePathList(names, "\r\n"),
null,
ref bTemp);
}
public static List<string> GetDevicesList()
{
List<string> results = new List<string>();
ServiceController[] devices = ServiceController.GetDevices();
// 先检测驱动
foreach (ServiceController controller in devices)
{
results.Add(controller.DisplayName);
}
return results;
}
private void button_createDirectory_Click(object sender, EventArgs e)
{
string strDirectory = InputDlg.GetInput(
this,
"创建子目录",
"请指定要创建的子目录: ",
"c:\\temp");
if (strDirectory == null)
return;
PathUtil.TryCreateDir(strDirectory);
MessageBox.Show(this, "OK");
}
private void button_testStop_Click(object sender, EventArgs e)
{
// 启动若干线程,每个线程都在运行进度显示
}
UdpNotifier _udpNotifer = null;
private void button_sendUdpNotify_Click(object sender, EventArgs e)
{
if (_udpNotifer == null)
{
_udpNotifer = new UdpNotifier();
_udpNotifer.StartListening((m) =>
{
MessageBox.Show(this, $"received '{m}'");
});
}
string message = InputDlg.GetInput(this, "发送通知", "通知文字", "fingerprint,face");
if (message == null)
return;
UdpNotifier notifier = new UdpNotifier();
notifier.Notify(message);
MessageBox.Show(this, "发送成功");
}
}
} | 32.975819 | 161 | 0.519272 | [
"Apache-2.0"
] | donsllon/dp2 | dp2Circulation/TestForm.cs | 66,553 | C# |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace GUC.Types
{
public struct WorldTime
{
public static readonly WorldTime Zero = new WorldTime(0);
public const int SecondsPerDay = 86400;
public const int SecondsPerHour = 3600;
public const int SecondsPerMinute = 60;
int totalSeconds;
#region Constructors
public WorldTime(int totalSeconds)
{
this.totalSeconds = totalSeconds;
}
public WorldTime(int day, int hour, int minute, int second)
{
long totalSeconds = (long)second + (long)minute * SecondsPerMinute + (long)hour * SecondsPerHour + (long)day * SecondsPerDay;
if (totalSeconds > int.MaxValue)
throw new OverflowException("TotalSeconds is bigger than " + int.MaxValue);
else if (totalSeconds < int.MinValue)
throw new OverflowException("TotalSeconds is smaller than " + int.MinValue);
this.totalSeconds = (int)totalSeconds;
}
public WorldTime(int day, int hour)
: this(day, hour, 0, 0)
{ }
public WorldTime(int day, int hour, int minute)
: this(day, hour, minute, 0)
{
}
#endregion
#region Get Time Methods
public float GetTotalDays()
{
return this.totalSeconds / (float)SecondsPerDay;
}
public float GetTotalHours()
{
return this.totalSeconds / (float)SecondsPerHour;
}
public float GetTotalMinutes()
{
return this.totalSeconds / (float)SecondsPerMinute;
}
public int GetTotalSeconds()
{
return this.totalSeconds;
}
public int GetDay()
{
return this.totalSeconds / SecondsPerDay;
}
public int GetHour()
{
return this.totalSeconds % SecondsPerDay / SecondsPerHour;
}
public int GetMinute()
{
return this.totalSeconds % SecondsPerDay % SecondsPerHour / SecondsPerMinute;
}
public int GetSecond()
{
return this.totalSeconds % SecondsPerDay % SecondsPerHour % SecondsPerMinute;
}
#endregion
#region Operators
public static WorldTime operator -(WorldTime t)
{
return new WorldTime(-t.totalSeconds);
}
public static WorldTime operator ++(WorldTime t)
{
return new WorldTime(t.totalSeconds + 1);
}
public static WorldTime operator --(WorldTime t)
{
return new WorldTime(t.totalSeconds - 1);
}
public static WorldTime operator +(WorldTime t1, WorldTime t2)
{
return new WorldTime(t1.totalSeconds + t2.totalSeconds);
}
public static WorldTime operator +(WorldTime t, int min)
{
return new WorldTime(t.totalSeconds + min);
}
public static WorldTime operator +(int min, WorldTime t)
{
return new WorldTime(min + t.totalSeconds);
}
public static WorldTime operator -(WorldTime t1, WorldTime t2)
{
return new WorldTime(t1.totalSeconds - t2.totalSeconds);
}
public static WorldTime operator -(WorldTime t, int min)
{
return new WorldTime(t.totalSeconds - min);
}
public static WorldTime operator -(int min, WorldTime t)
{
return new WorldTime(min - t.totalSeconds);
}
public static WorldTime operator *(WorldTime t, int min)
{
return new WorldTime(t.totalSeconds * min);
}
public static WorldTime operator *(int min, WorldTime t)
{
return new WorldTime(min * t.totalSeconds);
}
public static WorldTime operator *(WorldTime t, float min)
{
return new WorldTime((int)(t.totalSeconds * min));
}
public static WorldTime operator *(float min, WorldTime t)
{
return new WorldTime((int)(min * t.totalSeconds));
}
public static WorldTime operator /(WorldTime t, int min)
{
return new WorldTime(t.totalSeconds / min);
}
public static WorldTime operator /(int min, WorldTime t)
{
return new WorldTime(min / t.totalSeconds);
}
public static WorldTime operator /(WorldTime t, float min)
{
return new WorldTime((int)(t.totalSeconds / min));
}
public static WorldTime operator /(float min, WorldTime t)
{
return new WorldTime((int)(min / t.totalSeconds));
}
public static bool operator >(WorldTime t1, WorldTime t2)
{
return t1.totalSeconds > t2.totalSeconds;
}
public static bool operator <(WorldTime t1, WorldTime t2)
{
return t1.totalSeconds < t2.totalSeconds;
}
public static bool operator ==(WorldTime t1, WorldTime t2)
{
return t1.totalSeconds == t2.totalSeconds;
}
public static bool operator !=(WorldTime t1, WorldTime t2)
{
return t1.totalSeconds != t2.totalSeconds;
}
public static bool operator >=(WorldTime t1, WorldTime t2)
{
return t1.totalSeconds >= t2.totalSeconds;
}
public static bool operator <=(WorldTime t1, WorldTime t2)
{
return t1.totalSeconds <= t2.totalSeconds;
}
#endregion
#region
public static bool TryParse(string s, out WorldTime time)
{
int seconds;
if (int.TryParse(s, out seconds))
{
time = new WorldTime(seconds);
return true;
}
// day:hour:min-parsing
if (TryParseDayHourMin(s, out time)) { return true; }
time = default(WorldTime);
return false;
}
public static bool TryParseDayHourMin (String timeString, out WorldTime igTime)
{
int day, hour, minute;
day = hour = minute = 0;
String[] timeStringArr;
int[] timeIntArr;
if (timeString == null)
{
igTime = default(WorldTime);
return false;
}
timeStringArr = timeString.Split(':');
Console.WriteLine("GOTCHA --> " + timeString.Contains(":"));
Console.WriteLine("GOTCHA --> " + (timeStringArr == null));
Console.WriteLine("GOTCHA --> " + timeStringArr.Length);
if ((!timeString.Contains(":")) || (timeStringArr == null) || (timeStringArr.Length < 1))
{
igTime = default(WorldTime);
return false;
}
timeIntArr = new int[timeStringArr.Length];
int tempInt = -1;
for (int t = 0; t < timeStringArr.Length; t++)
{
if (!int.TryParse(timeStringArr[t], out tempInt))
{
Console.WriteLine("BOOOOOOOM! --> " + timeStringArr[t]);
igTime = default(WorldTime);
return false;
}
switch (t)
{
case 0:
day = tempInt;
break;
case 1:
hour = tempInt;
break;
case 2:
minute = tempInt;
break;
default:
break;
}
}
igTime = new WorldTime(day, hour, minute);
return true;
}
public override string ToString()
{
return string.Format("WorldTime(day {0}, {1}:{2}:{3})", this.GetDay(),
this.GetHour(), this.GetMinute(), this.GetSecond());
//return this.totalSeconds.ToString();
}
public string ToString(bool onlySeconds)
{
if (onlySeconds) return this.ToString();
else return this.ToString();
}
public override bool Equals(object obj)
{
return obj is WorldTime && (WorldTime)obj == this;
}
public override int GetHashCode()
{
return this.totalSeconds;
}
#endregion
}
}
| 27.825806 | 137 | 0.522722 | [
"BSD-2-Clause"
] | JulianVo/SumpfkrautOnline-Khorinis | GUCClient/Types/WorldTime.cs | 8,628 | C# |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.