From 5f39b9a94d80db880fffae3fdfbf54e739b1101a Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Fri, 30 Jan 2026 00:40:22 -0500 Subject: [PATCH 1/5] Merger (#75) (#76) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ptr727 <2061579+ptr727@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- LanguageTags/.editorconfig | 3 +++ LanguageTags/LanguageTags.csproj | 11 ++++++----- LanguageTagsTests/LanguageTagsTests.csproj | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/LanguageTags/.editorconfig b/LanguageTags/.editorconfig index c9179fd..e7ba7f1 100644 --- a/LanguageTags/.editorconfig +++ b/LanguageTags/.editorconfig @@ -5,3 +5,6 @@ root = false # Ignore normalize strings to uppercase dotnet_diagnostic.CA1308.severity = none + +# Ignore missing XML comments +dotnet_diagnostic.CS1591.severity = none diff --git a/LanguageTags/LanguageTags.csproj b/LanguageTags/LanguageTags.csproj index dabc6d9..a69358d 100644 --- a/LanguageTags/LanguageTags.csproj +++ b/LanguageTags/LanguageTags.csproj @@ -10,6 +10,7 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags true 1.0.0.0 + true true true 1.0.0-pre @@ -29,13 +30,13 @@ net10.0 1.0.0.0 - - true - $(NoWarn);1591 - - + diff --git a/LanguageTagsTests/LanguageTagsTests.csproj b/LanguageTagsTests/LanguageTagsTests.csproj index e36b670..6a7849a 100644 --- a/LanguageTagsTests/LanguageTagsTests.csproj +++ b/LanguageTagsTests/LanguageTagsTests.csproj @@ -11,12 +11,12 @@ - - + all runtime; build; native; contentfiles; analyzers; buildtransitive + From e5e3d74fabb06f2e2165760b013beaf5dde4ed41 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sat, 31 Jan 2026 10:21:20 -0800 Subject: [PATCH 2/5] Refactor LanguageTag and LanguageTagBuilder for improved documentation and validation - Updated XML documentation in LanguageTag.cs to clarify return values and parsing behavior. - Enhanced LanguageTagBuilder methods to specify that they set subtags without validation. - Improved normalization and validation methods in LanguageTagParser to ensure null checks are handled properly. - Added remarks in LogOptions to clarify the effects of setting logger factory and logger after creation. - Streamlined async file handling in Rfc5646Data to use 'using' statements for better resource management. - Updated tests to inherit from SingleInstanceFixture for consistent test execution and resource management. - Refined exception handling in Program.cs to ensure proper logging and cleanup on errors. - General code cleanup and consistency improvements across various files. --- .editorconfig | 11 +++-- CODESTYLE.md | 28 ++++++++++--- LanguageTags.code-workspace | 3 ++ LanguageTags/Extensions.cs | 4 +- LanguageTags/Iso6392Data.cs | 36 +++++++++++------ LanguageTags/Iso6392DataGen.cs | 5 +++ LanguageTags/Iso6393Data.cs | 32 ++++++++++----- LanguageTags/Iso6393DataGen.cs | 5 +++ LanguageTags/LanguageLookup.cs | 8 +++- LanguageTags/LanguageTag.cs | 42 +++++++++++--------- LanguageTags/LanguageTagBuilder.cs | 32 +++++++++------ LanguageTags/LanguageTagParser.cs | 21 ++++------ LanguageTags/LogOptions.cs | 25 ++++++++++-- LanguageTags/Rfc5646Data.cs | 34 +++++++++++----- LanguageTags/Rfc5646DataGen.cs | 5 +++ LanguageTagsCreate/CommandLine.cs | 3 +- LanguageTagsCreate/CreateTagData.cs | 24 +++++------ LanguageTagsCreate/Extensions.cs | 4 +- LanguageTagsCreate/HttpClientFactory.cs | 10 +---- LanguageTagsCreate/LoggerFactory.cs | 32 +++++++++------ LanguageTagsCreate/Program.cs | 41 ++++++++++++------- LanguageTagsTests/.editorconfig | 9 +++++ LanguageTagsTests/Fixture.cs | 20 +++++----- LanguageTagsTests/Iso6392Tests.cs | 8 ++-- LanguageTagsTests/Iso6393Tests.cs | 8 ++-- LanguageTagsTests/LanguageLookupTests.cs | 2 +- LanguageTagsTests/LanguageTagBuilderTests.cs | 4 +- LanguageTagsTests/LanguageTagParserTests.cs | 2 +- LanguageTagsTests/LanguageTagTests.cs | 28 ++++++------- LanguageTagsTests/LogOptionsTests.cs | 4 +- LanguageTagsTests/Rfc5646Tests.cs | 8 ++-- 31 files changed, 313 insertions(+), 185 deletions(-) diff --git a/.editorconfig b/.editorconfig index 6be9a0e..bfbe233 100644 --- a/.editorconfig +++ b/.editorconfig @@ -22,7 +22,7 @@ insert_final_newline = true trim_trailing_whitespace = true # Markdown files -[*.{md}] +[*.md] end_of_line = crlf trim_trailing_whitespace = false @@ -39,7 +39,6 @@ indent_size = 2 # Json files [*.json] end_of_line = crlf -indent_size = 4 # Linux scripts [*.sh] @@ -73,7 +72,7 @@ csharp_prefer_simple_using_statement = true csharp_prefer_static_anonymous_function = true csharp_prefer_static_local_function = true csharp_prefer_system_threading_lock = true -csharp_preferred_modifier_order = public,private,protected,internal,file,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,required,volatile,async +csharp_preferred_modifier_order = public,private,protected,internal,file,static,abstract,sealed,virtual,override,readonly,unsafe,volatile,async,extern,new,partial:warning csharp_preserve_single_line_blocks = true csharp_preserve_single_line_statements = false csharp_space_after_cast = false @@ -204,3 +203,9 @@ dotnet_style_qualification_for_method = false dotnet_style_qualification_for_property = false dotnet_style_readonly_field = true dotnet_style_require_accessibility_modifiers = for_non_interface_members + +# ReSharper settings +resharper_csharp_trailing_comma_in_multiline_lists = true +resharper_csharp_var_for_built_in_types = false +resharper_csharp_var_when_type_is_apparent = false +resharper_csharp_var_when_type_is_not_apparent = false diff --git a/CODESTYLE.md b/CODESTYLE.md index 3952ddd..462f801 100644 --- a/CODESTYLE.md +++ b/CODESTYLE.md @@ -168,20 +168,38 @@ Note: Code snippets are illustrative examples only. Replace namespaces/types to - C#, XML, YAML, JSON, Windows scripts: CRLF - Linux scripts (`.sh`): LF -6. **`#region`**: Do not use. Prefer logical file/folder/namespace organization. -7. **Member ordering (StyleCop-like)**: Constants → fields → constructors → properties → indexers → methods → events → operators → finalizers → delegates → nested types +6. **`#region`**: Do not use regions. Prefer logical file/folder/namespace organization. +7. **Member ordering (StyleCop SA1201)**: const → static readonly → static fields → instance readonly fields → instance fields → constructors → public (events → properties → indexers → methods → operators) → non-public in same order → nested types ### Comments and Documentation 1. **XML documentation** - `true` - Missing XML comments for public APIs are suppressed (`.editorconfig`) - - Single-line summaries + - Must document all public surfaces. + - Single-line summaries, additional details in remarks, document input parameters, returns values, exceptions, and add crefs ```csharp /// - /// This property always returns a value < 1. + /// Example of a single line summary. /// + /// + /// Additional important details about usage. + /// Multiple lines if needed. + /// + /// + /// The quote category to request + /// + /// + /// A that can be used to cancel the request. + /// + /// + /// A containing the quote text. + /// + /// + /// Thrown when is not a supported value. + /// + public async Task GetQuoteOfTheDayAsync(string category, CancellationToken cancellationToken) {} ``` 2. **Code analysis suppressions** @@ -248,7 +266,7 @@ Note: Code snippets are illustrative examples only. Replace namespaces/types to ### Testing Conventions -1. **Framework**: xUnit with FluentAssertions +1. **Framework**: xUnit with AwesomeAssertions ```csharp [Fact] diff --git a/LanguageTags.code-workspace b/LanguageTags.code-workspace index 8f550b7..56b9862 100644 --- a/LanguageTags.code-workspace +++ b/LanguageTags.code-workspace @@ -13,6 +13,7 @@ "ANTLR", "arevela", "boont", + "chamí", "CLDR", "codegen", "csdevkit", @@ -20,6 +21,7 @@ "davidanson", "derbend", "dotnettools", + "Emberá", "extlang", "finalizers", "gruntfuggly", @@ -52,6 +54,7 @@ "pyfisch", "Qaaa", "Qabx", + "reparsed", "rspeer", "Serilog", "Simoncic", diff --git a/LanguageTags/Extensions.cs b/LanguageTags/Extensions.cs index b9e4b6e..7555971 100644 --- a/LanguageTags/Extensions.cs +++ b/LanguageTags/Extensions.cs @@ -11,7 +11,7 @@ internal bool LogAndPropagate( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return false; } @@ -20,7 +20,7 @@ internal bool LogAndHandle( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return true; } } diff --git a/LanguageTags/Iso6392Data.cs b/LanguageTags/Iso6392Data.cs index efa0d11..9df6e79 100644 --- a/LanguageTags/Iso6392Data.cs +++ b/LanguageTags/Iso6392Data.cs @@ -186,15 +186,10 @@ await JsonSerializer .ConfigureAwait(false); } - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] internal static async Task GenCodeAsync(string fileName, Iso6392Data iso6392) { ArgumentNullException.ThrowIfNull(iso6392); - StreamWriter writer = new( + using StreamWriter writer = new( new FileStream( fileName, FileMode.Create, @@ -208,18 +203,25 @@ internal static async Task GenCodeAsync(string fileName, Iso6392Data iso6392) { NewLine = "\r\n", }; - await using ConfiguredAsyncDisposable writerScope = writer.ConfigureAwait(false); - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); await WriteLineAsync("namespace ptr727.LanguageTags;"); await WriteLineAsync(string.Empty); await WriteLineAsync("/// "); await WriteLineAsync("/// Provides access to ISO 639-2 language code data."); await WriteLineAsync("/// "); + await WriteLineAsync( + $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Iso6392Data).FullName}\", \"1.0\")]" + ); await WriteLineAsync("public sealed partial class Iso6392Data"); await WriteLineAsync("{"); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// Creates an instance loaded from the embedded ISO 639-2 dataset." + ); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// The populated instance." + ); await WriteLineAsync(" public static Iso6392Data Create() =>"); await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -248,6 +250,10 @@ await WriteLineAsync( await WriteLineAsync(" ],"); await WriteLineAsync(" };"); await WriteLineAsync("}"); + return; + + ConfiguredTaskAwaitable WriteLineAsync(string value) => + writer.WriteLineAsync(value).ConfigureAwait(false); } /// @@ -258,19 +264,25 @@ await WriteLineAsync( /// /// Finds an ISO 639-2 language record by language code or description. /// + /// + /// Matching is case-insensitive and checks Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The matching or null if not found. + /// The first matching , or null when no match is found. public Iso6392Record? Find(string? languageTag, bool includeDescription) => Find(languageTag, includeDescription, LogOptions.CreateLogger()); /// /// Finds an ISO 639-2 language record by language code or description using the specified options. /// + /// + /// Matching is case-insensitive and checks Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The options used to configure logging. - /// The matching or null if not found. + /// The first matching , or null when no match is found. public Iso6392Record? Find(string? languageTag, bool includeDescription, Options? options) => Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); diff --git a/LanguageTags/Iso6392DataGen.cs b/LanguageTags/Iso6392DataGen.cs index ec4cf4a..54e9489 100644 --- a/LanguageTags/Iso6392DataGen.cs +++ b/LanguageTags/Iso6392DataGen.cs @@ -3,8 +3,13 @@ namespace ptr727.LanguageTags; /// /// Provides access to ISO 639-2 language code data. /// +[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Iso6392Data", "1.0")] public sealed partial class Iso6392Data { + /// + /// Creates an instance loaded from the embedded ISO 639-2 dataset. + /// + /// The populated instance. public static Iso6392Data Create() => new() { diff --git a/LanguageTags/Iso6393Data.cs b/LanguageTags/Iso6393Data.cs index b204a1b..03dd4c4 100644 --- a/LanguageTags/Iso6393Data.cs +++ b/LanguageTags/Iso6393Data.cs @@ -212,16 +212,11 @@ await JsonSerializer .ConfigureAwait(false); } - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] internal static async Task GenCodeAsync(string fileName, Iso6393Data iso6393) { ArgumentNullException.ThrowIfNull(iso6393); - StreamWriter writer = new( + using StreamWriter writer = new( new FileStream( fileName, FileMode.Create, @@ -235,18 +230,25 @@ internal static async Task GenCodeAsync(string fileName, Iso6393Data iso6393) { NewLine = "\r\n", }; - await using ConfiguredAsyncDisposable writerScope = writer.ConfigureAwait(false); - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); await WriteLineAsync("namespace ptr727.LanguageTags;"); await WriteLineAsync(string.Empty); await WriteLineAsync("/// "); await WriteLineAsync("/// Provides access to ISO 639-3 language code data."); await WriteLineAsync("/// "); + await WriteLineAsync( + $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Iso6393Data).FullName}\", \"1.0\")]" + ); await WriteLineAsync("public sealed partial class Iso6393Data"); await WriteLineAsync("{"); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// Creates an instance loaded from the embedded ISO 639-3 dataset." + ); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// The populated instance." + ); await WriteLineAsync(" public static Iso6393Data Create() =>"); await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -284,6 +286,10 @@ await WriteLineAsync( await WriteLineAsync(" ],"); await WriteLineAsync(" };"); await WriteLineAsync("}"); + return; + + ConfiguredTaskAwaitable WriteLineAsync(string value) => + writer.WriteLineAsync(value).ConfigureAwait(false); } /// @@ -294,6 +300,9 @@ await WriteLineAsync( /// /// Finds an ISO 639-3 language record by language code or description. /// + /// + /// Matching is case-insensitive and checks Id, Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The matching or null if not found. @@ -303,6 +312,9 @@ await WriteLineAsync( /// /// Finds an ISO 639-3 language record by language code or description using the specified options. /// + /// + /// Matching is case-insensitive and checks Id, Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The options used to configure logging. diff --git a/LanguageTags/Iso6393DataGen.cs b/LanguageTags/Iso6393DataGen.cs index df64bd4..f9eae24 100644 --- a/LanguageTags/Iso6393DataGen.cs +++ b/LanguageTags/Iso6393DataGen.cs @@ -3,8 +3,13 @@ namespace ptr727.LanguageTags; /// /// Provides access to ISO 639-3 language code data. /// +[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Iso6393Data", "1.0")] public sealed partial class Iso6393Data { + /// + /// Creates an instance loaded from the embedded ISO 639-3 dataset. + /// + /// The populated instance. public static Iso6393Data Create() => new() { diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs index bb67b2f..c6f7a98 100644 --- a/LanguageTags/LanguageLookup.cs +++ b/LanguageTags/LanguageLookup.cs @@ -120,7 +120,7 @@ public string GetIetfFromIso(string languageTag) /// Converts an IETF BCP 47 language tag to its ISO equivalent. /// /// The IETF BCP 47 language tag to convert. - /// The ISO language code, or "und" if the conversion fails. + /// The ISO 639-2/B language code, or "und" if the conversion fails. public string GetIsoFromIetf(string languageTag) { // Undetermined @@ -260,12 +260,18 @@ public bool IsMatch(string prefix, string languageTag) /// /// Determines if two language tags are equivalent (case-insensitive). /// + /// The first language tag. + /// The second language tag. + /// true when the tags are equal ignoring case; otherwise, false. public static bool AreEquivalent(string tag1, string tag2) => string.Equals(tag1, tag2, StringComparison.OrdinalIgnoreCase); /// /// Normalizes and compares two language tags for equivalence. /// + /// The first language tag. + /// The second language tag. + /// true when both tags can be parsed and normalize to the same value; otherwise, false. public static bool AreEquivalentNormalized(string tag1, string tag2) { LanguageTag? parsed1 = LanguageTag.Parse(tag1)?.Normalize(); diff --git a/LanguageTags/LanguageTag.cs b/LanguageTags/LanguageTag.cs index b0a04a2..3b530de 100644 --- a/LanguageTags/LanguageTag.cs +++ b/LanguageTags/LanguageTag.cs @@ -68,18 +68,18 @@ internal LanguageTag(LanguageTag languageTag) public PrivateUseTag PrivateUse { get; internal set; } /// - /// Parses a language tag string into a LanguageTag object. + /// Parses a language tag string into a instance. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// A parsed and normalized LanguageTag object, or null if parsing fails. + /// The parsed language tag, or null if parsing fails. public static LanguageTag? Parse(string tag) => new LanguageTagParser().Parse(tag); /// - /// Parses a language tag string into a LanguageTag object using the specified options. + /// Parses a language tag string into a instance using the specified options. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). /// The options used to configure logging. - /// A parsed and normalized LanguageTag object, or null if parsing fails. + /// The parsed language tag, or null if parsing fails. public static LanguageTag? Parse(string tag, Options? options) => new LanguageTagParser(options).Parse(tag); @@ -88,7 +88,7 @@ internal LanguageTag(LanguageTag languageTag) /// /// The language tag string to parse. /// The default tag to return if parsing fails (defaults to "und"). - /// The parsed tag or the default tag. + /// The parsed tag, the supplied default tag, or "und" if parsing fails and no default is provided. public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = null) { LanguageTag? parsed = Parse(tag); @@ -99,7 +99,7 @@ public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = n /// Parses and normalizes a language tag string. /// /// The language tag string. - /// A normalized language tag or null if parsing/normalization fails. + /// A normalized language tag, or null if parsing fails. public static LanguageTag? ParseAndNormalize(string tag) => Parse(tag)?.Normalize(); /// @@ -107,15 +107,15 @@ public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = n /// /// The language tag string. /// The options used to configure logging. - /// A normalized language tag or null if parsing/normalization fails. + /// A normalized language tag, or null if parsing fails. public static LanguageTag? ParseAndNormalize(string tag, Options? options) => Parse(tag, options)?.Normalize(options); /// - /// Tries to parse a language tag string into a LanguageTag object. + /// Tries to parse a language tag string into a instance. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// When this method returns, contains the parsed LanguageTag if successful, or null if parsing fails. + /// When this method returns, contains the parsed language tag if successful, or null if parsing fails. /// true if the tag was successfully parsed; otherwise, false. public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? result) { @@ -124,10 +124,10 @@ public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? res } /// - /// Tries to parse a language tag string into a LanguageTag object using the specified options. + /// Tries to parse a language tag string into a instance using the specified options. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// When this method returns, contains the parsed LanguageTag if successful, or null if parsing fails. + /// When this method returns, contains the parsed language tag if successful, or null if parsing fails. /// The options used to configure logging. /// true if the tag was successfully parsed; otherwise, false. public static bool TryParse( @@ -147,13 +147,16 @@ public static bool TryParse( public static LanguageTagBuilder CreateBuilder() => new(); /// - /// Validates this language tag. + /// Validates this language tag for RFC 5646 structural correctness. /// - /// true if the tag is valid; otherwise, false. + /// + /// This method validates structure and duplication rules only; it does not validate subtags against the registry. + /// + /// true if the tag is structurally valid; otherwise, false. public bool Validate() => LanguageTagParser.Validate(this); /// - /// Gets whether this language tag is valid according to RFC 5646 rules. + /// Gets whether this language tag is structurally valid according to RFC 5646 rules. /// public bool IsValid => Validate(); @@ -174,7 +177,10 @@ public static bool TryParse( /// /// Converts this language tag to its string representation. /// - /// A string representation of the language tag (e.g., "en-US", "zh-Hans-CN"). + /// + /// A string representation of the language tag (e.g., "en-US", "zh-Hans-CN"), or an empty string + /// when no subtags are present. + /// public override string ToString() { StringBuilder stringBuilder = new(); @@ -214,7 +220,7 @@ public override string ToString() { _ = stringBuilder.Append('-'); } - _ = stringBuilder.Append(PrivateUse.ToString()); + _ = stringBuilder.Append(PrivateUse); } return stringBuilder.ToString(); } @@ -316,7 +322,7 @@ public ExtensionTag() /// /// Converts this extension tag to its string representation. /// - /// A string representation of the extension tag (e.g., "u-ca-buddhist"). + /// A string representation of the extension tag (e.g., "u-ca-buddhist"), or an empty string when no tags are present. public override string ToString() => Tags.IsEmpty ? string.Empty : $"{Prefix}-{string.Join('-', Tags)}"; @@ -387,7 +393,7 @@ public PrivateUseTag() /// /// Converts this private use tag to its string representation. /// - /// A string representation of the private use tag (e.g., "x-private"). + /// A string representation of the private use tag (e.g., "x-private"), or an empty string when no tags are present. public override string ToString() => Tags.IsEmpty ? string.Empty : $"{Prefix}-{string.Join('-', Tags)}"; diff --git a/LanguageTags/LanguageTagBuilder.cs b/LanguageTags/LanguageTagBuilder.cs index 8e9fd78..f482cf5 100644 --- a/LanguageTags/LanguageTagBuilder.cs +++ b/LanguageTags/LanguageTagBuilder.cs @@ -8,7 +8,7 @@ public sealed class LanguageTagBuilder private readonly LanguageTag _languageTag = new(); /// - /// Sets the primary language subtag. + /// Sets the primary language subtag without validation. /// /// The language code (e.g., "en", "zh"). /// The builder instance for method chaining. @@ -19,7 +19,7 @@ public LanguageTagBuilder Language(string value) } /// - /// Sets the extended language subtag. + /// Sets the extended language subtag without validation. /// /// The extended language code (e.g., "yue" for zh-yue). /// The builder instance for method chaining. @@ -30,7 +30,7 @@ public LanguageTagBuilder ExtendedLanguage(string value) } /// - /// Sets the script subtag. + /// Sets the script subtag without validation. /// /// The ISO 15924 script code (e.g., "Hans", "Latn"). /// The builder instance for method chaining. @@ -41,7 +41,7 @@ public LanguageTagBuilder Script(string value) } /// - /// Sets the region subtag. + /// Sets the region subtag without validation. /// /// The ISO 3166-1 country code or UN M.49 region code (e.g., "US", "CN"). /// The builder instance for method chaining. @@ -52,7 +52,7 @@ public LanguageTagBuilder Region(string value) } /// - /// Adds a variant subtag. + /// Adds a variant subtag without validation. /// /// The variant code to add. /// The builder instance for method chaining. @@ -63,7 +63,7 @@ public LanguageTagBuilder VariantAdd(string value) } /// - /// Adds multiple variant subtags. + /// Adds multiple variant subtags without validation. /// /// The variant codes to add. /// The builder instance for method chaining. @@ -76,7 +76,7 @@ public LanguageTagBuilder VariantAddRange(IEnumerable values) } /// - /// Adds an extension subtag with the specified prefix and values. + /// Adds an extension subtag with the specified prefix and values without validation. /// /// The single-character extension prefix (e.g., 'u' for Unicode extensions). /// The extension values. @@ -97,7 +97,7 @@ public LanguageTagBuilder ExtensionAdd(char prefix, IEnumerable values) } /// - /// Adds a private use subtag. + /// Adds a private use subtag without validation. /// /// The private use value to add. /// The builder instance for method chaining. @@ -109,7 +109,7 @@ public LanguageTagBuilder PrivateUseAdd(string value) } /// - /// Adds multiple private use subtags. + /// Adds multiple private use subtags without validation. /// /// The private use values to add. /// The builder instance for method chaining. @@ -123,22 +123,28 @@ public LanguageTagBuilder PrivateUseAddRange(IEnumerable values) } /// - /// Builds and returns the constructed language tag. + /// Builds and returns the constructed language tag without validation or normalization. /// - /// The constructed . + /// The constructed instance; the builder continues to mutate this instance. public LanguageTag Build() => _languageTag; /// /// Builds and normalizes the constructed language tag according to RFC 5646 rules. /// - /// A normalized or null if normalization fails. + /// + /// Normalization does not validate the tag; call on the result if needed. + /// + /// A normalized . public LanguageTag? Normalize() => new LanguageTagParser().Normalize(_languageTag); /// /// Builds and normalizes the constructed language tag according to RFC 5646 rules using the specified options. /// /// The options used to configure logging. - /// A normalized or null if normalization fails. + /// + /// Normalization does not validate the tag; call on the result if needed. + /// + /// A normalized . public LanguageTag? Normalize(Options? options) => new LanguageTagParser(options).Normalize(_languageTag); } diff --git a/LanguageTags/LanguageTagParser.cs b/LanguageTags/LanguageTagParser.cs index e489098..8474201 100644 --- a/LanguageTags/LanguageTagParser.cs +++ b/LanguageTags/LanguageTagParser.cs @@ -365,7 +365,7 @@ private bool ParseExtension() private static bool ValidatePrivateUsePrefix(string tag) => // x - !string.IsNullOrEmpty(tag) && tag.Length == 1 && tag[0] == PrivateUseTag.Prefix; + !string.IsNullOrEmpty(tag) && tag is [PrivateUseTag.Prefix]; private static bool ValidatePrivateUse(string tag) => // 1 to 8 chars @@ -594,19 +594,15 @@ private bool ParsePrivateUse() return parsedTag == null ? null : Normalize(parsedTag); } - internal LanguageTag? Normalize(LanguageTag languageTag) + internal LanguageTag Normalize(LanguageTag languageTag) { + ArgumentNullException.ThrowIfNull(languageTag); + // Canonicalization of Language Tags // https://www.rfc-editor.org/rfc/rfc5646#section-4.5 - if (languageTag == null) - { - return null; - } - - string originalTag = languageTag.ToString(); - // Create a copy and do not modify the original + string originalTag = languageTag.ToString(); LanguageTag normalizeTag = new(languageTag); // Language with preferred value @@ -756,14 +752,11 @@ .. _rfc5646.RecordList.Where(record => internal static bool Validate(LanguageTag languageTag) { + ArgumentNullException.ThrowIfNull(languageTag); + // Classes of Conformance // https://www.rfc-editor.org/rfc/rfc5646#section-2.2.9 - if (languageTag == null) - { - return false; - } - // Validate tags if (!string.IsNullOrEmpty(languageTag.Language) && !ValidateLanguage(languageTag.Language)) { diff --git a/LanguageTags/LogOptions.cs b/LanguageTags/LogOptions.cs index cd6a85b..0451d1d 100644 --- a/LanguageTags/LogOptions.cs +++ b/LanguageTags/LogOptions.cs @@ -13,6 +13,9 @@ public static class LogOptions /// /// Gets or sets the logger factory used to create category loggers. /// + /// + /// Changes to this property after loggers have been created will not affect existing cached loggers. + /// public static ILoggerFactory LoggerFactory { get => Volatile.Read(ref s_loggerFactory); @@ -20,8 +23,11 @@ public static ILoggerFactory LoggerFactory } /// - /// Gets or sets the global fallback logger. + /// Gets or sets the global fallback logger used when no factory is configured. /// + /// + /// Changes to this property after loggers have been created will not affect existing cached loggers. + /// public static ILogger Logger { get => Volatile.Read(ref s_logger); @@ -66,13 +72,16 @@ public static ILogger CreateLogger(string categoryName) public static ILogger CreateLogger(string categoryName, Options? options) => options is null ? CreateLogger(categoryName) : options.LoggerFactory is not null ? options.LoggerFactory.CreateLogger(categoryName) - : options.Logger is not null ? options.Logger - : CreateLogger(categoryName); + : options.Logger ?? CreateLogger(categoryName); /// /// Configures the library to use the specified logger factory. /// /// The factory to use for new loggers. + /// + /// This will only affect loggers created after this call. + /// Existing cached loggers remain unchanged. + /// public static void SetFactory(ILoggerFactory loggerFactory) => LoggerFactory = loggerFactory; /// @@ -82,6 +91,9 @@ public static ILogger CreateLogger(string categoryName, Options? options) => /// /// true when the factory was set because no factory was configured; otherwise, false. /// + /// + /// Use this method for one-time initialization to avoid overwriting an existing factory. + /// public static bool TrySetFactory(ILoggerFactory loggerFactory) { ILoggerFactory candidate = loggerFactory ?? NullLoggerFactory.Instance; @@ -98,6 +110,10 @@ public static bool TrySetFactory(ILoggerFactory loggerFactory) /// Configures the library to use the specified global logger. /// /// The logger used as the global fallback. + /// + /// This will only affect loggers created after this call. + /// Existing cached loggers remain unchanged. + /// public static void SetLogger(ILogger logger) => Logger = logger; /// @@ -107,6 +123,9 @@ public static bool TrySetFactory(ILoggerFactory loggerFactory) /// /// true when the logger was set because no logger was configured; otherwise, false. /// + /// + /// Use this method for one-time initialization to avoid overwriting an existing logger. + /// public static bool TrySetLogger(ILogger logger) { ILogger candidate = logger ?? NullLogger.Instance; diff --git a/LanguageTags/Rfc5646Data.cs b/LanguageTags/Rfc5646Data.cs index 95ee1ba..43f01e6 100644 --- a/LanguageTags/Rfc5646Data.cs +++ b/LanguageTags/Rfc5646Data.cs @@ -168,16 +168,11 @@ await JsonSerializer .ConfigureAwait(false); } - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Reliability", - "CA2007:Consider calling ConfigureAwait on the awaited task", - Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" - )] internal static async Task GenCodeAsync(string fileName, Rfc5646Data rfc5646) { ArgumentNullException.ThrowIfNull(rfc5646); - StreamWriter writer = new( + using StreamWriter writer = new( new FileStream( fileName, FileMode.Create, @@ -191,10 +186,6 @@ internal static async Task GenCodeAsync(string fileName, Rfc5646Data rfc5646) { NewLine = "\r\n", }; - await using ConfiguredAsyncDisposable writerScope = writer.ConfigureAwait(false); - - ConfiguredTaskAwaitable WriteLineAsync(string value) => - writer.WriteLineAsync(value).ConfigureAwait(false); await WriteLineAsync("namespace ptr727.LanguageTags;"); await WriteLineAsync(string.Empty); @@ -203,8 +194,19 @@ await WriteLineAsync( "/// Provides access to RFC 5646 / BCP 47 language subtag registry data." ); await WriteLineAsync("/// "); + await WriteLineAsync( + $"[System.CodeDom.Compiler.GeneratedCode(\"{typeof(Rfc5646Data).FullName}\", \"1.0\")]" + ); await WriteLineAsync("public sealed partial class Rfc5646Data"); await WriteLineAsync("{"); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// Creates an instance loaded from the embedded RFC 5646 subtag registry dataset." + ); + await WriteLineAsync(" /// "); + await WriteLineAsync( + " /// The populated instance." + ); await WriteLineAsync(" public static Rfc5646Data Create() =>"); await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -260,6 +262,10 @@ await WriteLineAsync( await WriteLineAsync(" ],"); await WriteLineAsync(" };"); await WriteLineAsync("}"); + return; + + ConfiguredTaskAwaitable WriteLineAsync(string value) => + writer.WriteLineAsync(value).ConfigureAwait(false); } internal sealed class Parser @@ -297,7 +303,7 @@ public async Task ReadAttributesAsync(StreamReader lineReader) } // Multiline record starts with two spaces - // Peek at the next line an look for a space + // Peek at the next line and look for a space while (true) { // Read next line to check for multiline continuation @@ -495,6 +501,9 @@ private static Rfc5646Record.RecordScope ScopeFromString(string value) => /// /// Finds a language subtag record by tag, subtag, preferred value, or description. /// + /// + /// Matching is case-insensitive and checks Tag, SubTag, PreferredValue, then (optionally) Description. + /// /// The language tag, subtag, or description to search for. /// If true, searches in the description field; otherwise, only searches tags and subtags. /// The matching or null if not found. @@ -504,6 +513,9 @@ private static Rfc5646Record.RecordScope ScopeFromString(string value) => /// /// Finds a language subtag record by tag, subtag, preferred value, or description using the specified options. /// + /// + /// Matching is case-insensitive and checks Tag, SubTag, PreferredValue, then (optionally) Description. + /// /// The language tag, subtag, or description to search for. /// If true, searches in the description field; otherwise, only searches tags and subtags. /// The options used to configure logging. diff --git a/LanguageTags/Rfc5646DataGen.cs b/LanguageTags/Rfc5646DataGen.cs index b0c3175..813e964 100644 --- a/LanguageTags/Rfc5646DataGen.cs +++ b/LanguageTags/Rfc5646DataGen.cs @@ -3,8 +3,13 @@ namespace ptr727.LanguageTags; /// /// Provides access to RFC 5646 / BCP 47 language subtag registry data. /// +[System.CodeDom.Compiler.GeneratedCode("ptr727.LanguageTags.Rfc5646Data", "1.0")] public sealed partial class Rfc5646Data { + /// + /// Creates an instance loaded from the embedded RFC 5646 subtag registry dataset. + /// + /// The populated instance. public static Rfc5646Data Create() => new() { diff --git a/LanguageTagsCreate/CommandLine.cs b/LanguageTagsCreate/CommandLine.cs index 1501e0f..f2eee13 100644 --- a/LanguageTagsCreate/CommandLine.cs +++ b/LanguageTagsCreate/CommandLine.cs @@ -12,7 +12,8 @@ internal sealed class CommandLine private static readonly FrozenSet s_cliBypassList = FrozenSet.Create( StringComparer.OrdinalIgnoreCase, - ["--help", "--version"] + "--help", + "--version" ); internal CommandLine(string[] args) diff --git a/LanguageTagsCreate/CreateTagData.cs b/LanguageTagsCreate/CreateTagData.cs index fceea1e..7a62a39 100644 --- a/LanguageTagsCreate/CreateTagData.cs +++ b/LanguageTagsCreate/CreateTagData.cs @@ -1,5 +1,3 @@ -using System.Runtime.CompilerServices; - namespace ptr727.LanguageTags.Create; internal sealed class CreateTagData( @@ -46,9 +44,9 @@ await DownloadFileAsync(new Uri(Rfc5646Data.DataUri), _rfc5646DataFile) internal async Task CreateJsonDataAsync() { - ArgumentNullException.ThrowIfNull(_iso6392DataFile, nameof(_iso6392DataFile)); - ArgumentNullException.ThrowIfNull(_iso6393DataFile, nameof(_iso6393DataFile)); - ArgumentNullException.ThrowIfNull(_rfc5646DataFile, nameof(_rfc5646DataFile)); + ArgumentNullException.ThrowIfNull(_iso6392DataFile); + ArgumentNullException.ThrowIfNull(_iso6393DataFile); + ArgumentNullException.ThrowIfNull(_rfc5646DataFile); // Convert data files to JSON Log.Information("Converting data files to JSON ..."); @@ -76,9 +74,9 @@ internal async Task CreateJsonDataAsync() internal async Task GenerateCodeAsync() { - ArgumentNullException.ThrowIfNull(_iso6392, nameof(_iso6392)); - ArgumentNullException.ThrowIfNull(_iso6393, nameof(_iso6393)); - ArgumentNullException.ThrowIfNull(_rfc5646, nameof(_rfc5646)); + ArgumentNullException.ThrowIfNull(_iso6392); + ArgumentNullException.ThrowIfNull(_iso6393); + ArgumentNullException.ThrowIfNull(_rfc5646); // Generate code files Log.Information("Generating code files ..."); @@ -103,18 +101,17 @@ internal async Task GenerateCodeAsync() private async Task DownloadFileAsync(Uri uri, string fileName) { - ArgumentNullException.ThrowIfNull(uri, nameof(uri)); - ArgumentException.ThrowIfNullOrWhiteSpace(fileName, nameof(fileName)); + ArgumentNullException.ThrowIfNull(uri); + ArgumentException.ThrowIfNullOrWhiteSpace(fileName); Log.Information("Downloading \"{Uri}\" to \"{FileName}\" ...", uri.ToString(), fileName); - Stream httpStream = await HttpClientFactory + using Stream httpStream = await HttpClientFactory .GetHttpClient() .GetStreamAsync(uri, cancellationToken) .ConfigureAwait(false); - await using ConfiguredAsyncDisposable httpStreamScope = httpStream.ConfigureAwait(false); - FileStream fileStream = new( + using FileStream fileStream = new( fileName, FileMode.Create, FileAccess.Write, @@ -122,7 +119,6 @@ private async Task DownloadFileAsync(Uri uri, string fileName) 8192, FileOptions.Asynchronous | FileOptions.SequentialScan ); - await using ConfiguredAsyncDisposable fileStreamScope = fileStream.ConfigureAwait(false); await httpStream.CopyToAsync(fileStream, cancellationToken).ConfigureAwait(false); } diff --git a/LanguageTagsCreate/Extensions.cs b/LanguageTagsCreate/Extensions.cs index f55b44d..b7a4c34 100644 --- a/LanguageTagsCreate/Extensions.cs +++ b/LanguageTagsCreate/Extensions.cs @@ -34,7 +34,7 @@ internal bool LogAndPropagate( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return false; } @@ -43,7 +43,7 @@ internal bool LogAndHandle( [CallerMemberName] string function = "unknown" ) { - LogCatchException(logger, function, exception); + logger.LogCatchException(function, exception); return true; } } diff --git a/LanguageTagsCreate/HttpClientFactory.cs b/LanguageTagsCreate/HttpClientFactory.cs index db37c50..f84cb7a 100644 --- a/LanguageTagsCreate/HttpClientFactory.cs +++ b/LanguageTagsCreate/HttpClientFactory.cs @@ -29,10 +29,7 @@ private static ResilienceHandler CreateResilienceHandler() => ShouldHandle = args => ValueTask.FromResult( args.Outcome.Exception != null - || ( - args.Outcome.Result != null - && !args.Outcome.Result.IsSuccessStatusCode - ) + || args.Outcome.Result is { IsSuccessStatusCode: false } ), } ) @@ -46,10 +43,7 @@ private static ResilienceHandler CreateResilienceHandler() => ShouldHandle = args => ValueTask.FromResult( args.Outcome.Exception != null - || ( - args.Outcome.Result != null - && !args.Outcome.Result.IsSuccessStatusCode - ) + || args.Outcome.Result is { IsSuccessStatusCode: false } ), } ) diff --git a/LanguageTagsCreate/LoggerFactory.cs b/LanguageTagsCreate/LoggerFactory.cs index bf604a4..41ca455 100644 --- a/LanguageTagsCreate/LoggerFactory.cs +++ b/LanguageTagsCreate/LoggerFactory.cs @@ -1,4 +1,3 @@ -using Serilog.Debugging; using Serilog.Extensions.Logging; using Serilog.Sinks.SystemConsole.Themes; @@ -7,27 +6,34 @@ namespace ptr727.LanguageTags.Create; internal static class LoggerFactory { private static readonly Lazy s_serilogLoggerFactory = new(() => - new SerilogLoggerFactory(Log.Logger, dispose: false) - ); + { + // Use already configured Log.Logger if set, else create a new logger factory + Serilog.ILogger logger = ReferenceEquals(Log.Logger, Serilog.Core.Logger.None) + ? Create() + : Log.Logger; + bool disposeLogger = !ReferenceEquals(logger, Log.Logger); + return new SerilogLoggerFactory(logger, dispose: disposeLogger); + }); - internal static Serilog.ILogger Create(Options options) + internal static Serilog.ILogger Create(Options? options = null) { - // Enable Serilog debug output to the console - SelfLog.Enable(Console.Error); + // Log to the console LoggerConfiguration loggerConfiguration = new LoggerConfiguration() - .MinimumLevel.Is(options.Level) + .MinimumLevel.Is(options?.Level ?? LogEventLevel.Information) .MinimumLevel.Override( typeof(LogExtensions.LogOverride).FullName!, LogEventLevel.Verbose ) .Enrich.WithThreadId() + .Enrich.WithThreadName() .WriteTo.Console( theme: AnsiConsoleTheme.Code, - formatProvider: CultureInfo.InvariantCulture + formatProvider: CultureInfo.InvariantCulture, + outputTemplate: "[{Timestamp:HH:mm:ss} {Level:u3}] [t:{ThreadId}{ThreadName}] {Message:lj}{NewLine}{Exception}" ); - // Add file sink if logFile is specified - if (!string.IsNullOrEmpty(options.File)) + // Log to file + if (!string.IsNullOrEmpty(options?.File)) { if (options.FileClear && File.Exists(options.File)) { @@ -35,13 +41,13 @@ internal static Serilog.ILogger Create(Options options) } _ = loggerConfiguration.WriteTo.File( options.File, - formatProvider: CultureInfo.InvariantCulture + formatProvider: CultureInfo.InvariantCulture, + outputTemplate: "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz} {Level:u3}] [t:{ThreadId}{ThreadName}] {Message:lj}{NewLine}{Exception}" ); } // Create logger - Log.Logger = loggerConfiguration.CreateLogger(); - return Log.Logger; + return loggerConfiguration.CreateLogger(); } internal static ILoggerFactory CreateLoggerFactory() => s_serilogLoggerFactory.Value; diff --git a/LanguageTagsCreate/Program.cs b/LanguageTagsCreate/Program.cs index c904236..66e8812 100644 --- a/LanguageTagsCreate/Program.cs +++ b/LanguageTagsCreate/Program.cs @@ -10,24 +10,37 @@ CancellationToken cancellationToken internal static async Task Main(string[] args) { - // Parse commandline - CommandLine commandLine = new(args); - - // Bypass startup for errors or help and version commands - if (CommandLine.BypassStartup(commandLine.Result)) + try { - return await commandLine.Result.InvokeAsync().ConfigureAwait(false); - } + // Parse commandline + CommandLine commandLine = new(args); + commandLine.Result.InvocationConfiguration.EnableDefaultExceptionHandler = false; + commandLine.Result.InvocationConfiguration.ProcessTerminationTimeout = null; - // Create logger - _ = LoggerFactory.Create(commandLine.CreateOptions(commandLine.Result).LogOptions); - Log.Logger.LogOverrideContext().Information("Starting: {Args}", args); + // Bypass startup for errors or help and version commands + if (CommandLine.BypassStartup(commandLine.Result)) + { + return await commandLine.Result.InvokeAsync().ConfigureAwait(false); + } - // Initialize library with static logger - LogOptions.SetFactory(LoggerFactory.CreateLoggerFactory()); + // Create logger + Log.Logger = LoggerFactory.Create( + commandLine.CreateOptions(commandLine.Result).LogOptions + ); + LogOptions.SetFactory(LoggerFactory.CreateLoggerFactory()); - // Invoke command - return await commandLine.Result.InvokeAsync().ConfigureAwait(false); + // Invoke command + Log.Logger.LogOverrideContext().Information("Starting: {Args}", args); + return await commandLine.Result.InvokeAsync().ConfigureAwait(false); + } + catch (Exception ex) when (Log.Logger.LogAndHandle(ex)) + { + return 1; + } + finally + { + await Log.CloseAndFlushAsync().ConfigureAwait(false); + } } internal async Task ExecuteAsync() diff --git a/LanguageTagsTests/.editorconfig b/LanguageTagsTests/.editorconfig index 9acafa5..1b0e933 100644 --- a/LanguageTagsTests/.editorconfig +++ b/LanguageTagsTests/.editorconfig @@ -8,3 +8,12 @@ dotnet_diagnostic.CA1707.severity = none # Ignore unused private members dotnet_diagnostic.IDE0052.severity = none + +# Ignore expression value is never used +dotnet_diagnostic.IDE0058.severity = none + +# Ignore missing XML docs for public test APIs +dotnet_diagnostic.CS1591.severity = none + +# Ignore making public types internal +dotnet_diagnostic.CA1515.severity = none diff --git a/LanguageTagsTests/Fixture.cs b/LanguageTagsTests/Fixture.cs index 5e35a36..454a5b0 100644 --- a/LanguageTagsTests/Fixture.cs +++ b/LanguageTagsTests/Fixture.cs @@ -1,18 +1,20 @@ +// Single instance for all tests in assembly +[assembly: AssemblyFixture(typeof(ptr727.LanguageTags.Tests.SingleInstanceFixture))] + namespace ptr727.LanguageTags.Tests; -[CollectionDefinition("DisableParallelDefinition", DisableParallelization = true)] +public sealed class DisableParallelDefinition; + [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Maintainability", - "CA1515:Consider making public types internal", - Justification = "https://xunit.net/docs/running-tests-in-parallel" + "Design", + "CA1063:Implement IDisposable Correctly", + Justification = "No unmanaged resources to dispose" )] -public sealed class DisableParallelDefinition { } - -internal static class Fixture // : IDisposable +public class SingleInstanceFixture : IDisposable { - // public void Dispose() => GC.SuppressFinalize(this); + public void Dispose() => GC.SuppressFinalize(this); - public static string GetDataFilePath(string fileName) => + protected static string GetDataFilePath(string fileName) => Path.GetFullPath( Path.Combine(AppContext.BaseDirectory, "../../../../LanguageData", fileName) ); diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs index d12b6bf..3e7967f 100644 --- a/LanguageTagsTests/Iso6392Tests.cs +++ b/LanguageTagsTests/Iso6392Tests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class Iso6392Tests +public sealed class Iso6392Tests : SingleInstanceFixture { [Fact] public void Create() @@ -14,7 +14,7 @@ public void Create() public async Task LoadData() { Iso6392Data iso6392 = await Iso6392Data.LoadDataAsync( - Fixture.GetDataFilePath(Iso6392Data.DataFileName) + GetDataFilePath(Iso6392Data.DataFileName) ); _ = iso6392.Should().NotBeNull(); _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); @@ -24,7 +24,7 @@ public async Task LoadData() public async Task LoadJson() { Iso6392Data? iso6392 = await Iso6392Data.LoadJsonAsync( - Fixture.GetDataFilePath(Iso6392Data.DataFileName + ".json") + GetDataFilePath(Iso6392Data.DataFileName + ".json") ); _ = iso6392.Should().NotBeNull(); } @@ -41,7 +41,7 @@ public async Task SaveJsonAsync_RoundTrip() await Iso6392Data.SaveJsonAsync(tempFile, iso6392); Iso6392Data? roundTrip = await Iso6392Data.LoadJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); - _ = roundTrip!.RecordList.Length.Should().Be(iso6392.RecordList.Length); + _ = roundTrip.RecordList.Length.Should().Be(iso6392.RecordList.Length); } finally { diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs index ecd914e..2857b9e 100644 --- a/LanguageTagsTests/Iso6393Tests.cs +++ b/LanguageTagsTests/Iso6393Tests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class Iso6393Tests +public sealed class Iso6393Tests : SingleInstanceFixture { [Fact] public void Create() @@ -14,7 +14,7 @@ public void Create() public async Task LoadData() { Iso6393Data iso6393 = await Iso6393Data.LoadDataAsync( - Fixture.GetDataFilePath(Iso6393Data.DataFileName) + GetDataFilePath(Iso6393Data.DataFileName) ); _ = iso6393.Should().NotBeNull(); _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); @@ -24,7 +24,7 @@ public async Task LoadData() public async Task LoadJson() { Iso6393Data? iso6393 = await Iso6393Data.LoadJsonAsync( - Fixture.GetDataFilePath(Iso6393Data.DataFileName + ".json") + GetDataFilePath(Iso6393Data.DataFileName + ".json") ); _ = iso6393.Should().NotBeNull(); } @@ -41,7 +41,7 @@ public async Task SaveJsonAsync_RoundTrip() await Iso6393Data.SaveJsonAsync(tempFile, iso6393); Iso6393Data? roundTrip = await Iso6393Data.LoadJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); - _ = roundTrip!.RecordList.Length.Should().Be(iso6393.RecordList.Length); + _ = roundTrip.RecordList.Length.Should().Be(iso6393.RecordList.Length); } finally { diff --git a/LanguageTagsTests/LanguageLookupTests.cs b/LanguageTagsTests/LanguageLookupTests.cs index 6cacae0..55c4d57 100644 --- a/LanguageTagsTests/LanguageLookupTests.cs +++ b/LanguageTagsTests/LanguageLookupTests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class LanguageLookupTests +public sealed class LanguageLookupTests : SingleInstanceFixture { [Theory] [InlineData("afr", "af")] diff --git a/LanguageTagsTests/LanguageTagBuilderTests.cs b/LanguageTagsTests/LanguageTagBuilderTests.cs index 1455ff8..a042074 100644 --- a/LanguageTagsTests/LanguageTagBuilderTests.cs +++ b/LanguageTagsTests/LanguageTagBuilderTests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public sealed class LanguageTagBuilderTests +public sealed class LanguageTagBuilderTests : SingleInstanceFixture { [Fact] public void Build_Pass() @@ -106,7 +106,7 @@ public void Normalize_WithOptions_Pass() .PrivateUseAdd("private") .Normalize(options); _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be("en-GB-boont-r-extended-sequence-x-private"); } diff --git a/LanguageTagsTests/LanguageTagParserTests.cs b/LanguageTagsTests/LanguageTagParserTests.cs index eb51c1c..47a23b0 100644 --- a/LanguageTagsTests/LanguageTagParserTests.cs +++ b/LanguageTagsTests/LanguageTagParserTests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageTagParserTests +public class LanguageTagParserTests : SingleInstanceFixture { [Theory] [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] diff --git a/LanguageTagsTests/LanguageTagTests.cs b/LanguageTagsTests/LanguageTagTests.cs index bc30cd2..d9ed1ae 100644 --- a/LanguageTagsTests/LanguageTagTests.cs +++ b/LanguageTagsTests/LanguageTagTests.cs @@ -2,7 +2,7 @@ namespace ptr727.LanguageTags.Tests; -public class LanguageTagTests +public class LanguageTagTests : SingleInstanceFixture { [Theory] [InlineData("en-US")] @@ -13,7 +13,7 @@ public void Parse_Static_Pass(string tag) { LanguageTag? languageTag = LanguageTag.Parse(tag); _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); } @@ -27,7 +27,7 @@ public void Parse_WithOptions_Pass(string tag) Options options = new(); LanguageTag? languageTag = LanguageTag.Parse(tag, options); _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); } @@ -69,7 +69,7 @@ public void TryParse_Success(string tag) bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag); _ = result.Should().BeTrue(); _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); } @@ -83,7 +83,7 @@ public void TryParse_WithOptions_Success(string tag) bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag, options); _ = result.Should().BeTrue(); _ = languageTag.Should().NotBeNull(); - _ = languageTag!.Validate().Should().BeTrue(); + _ = languageTag.Validate().Should().BeTrue(); _ = languageTag.ToString().Should().Be(tag); } @@ -144,9 +144,9 @@ public void Normalize_Instance_Pass(string tag, string normalized) LanguageTag? languageTag = LanguageTag.Parse(tag); _ = languageTag.Should().NotBeNull(); - LanguageTag? normalizedTag = languageTag!.Normalize(); + LanguageTag? normalizedTag = languageTag.Normalize(); _ = normalizedTag.Should().NotBeNull(); - _ = normalizedTag!.Validate().Should().BeTrue(); + _ = normalizedTag.Validate().Should().BeTrue(); _ = normalizedTag.ToString().Should().Be(normalized); } @@ -176,7 +176,7 @@ public void Parse_Normalize_Roundtrip() LanguageTag? parsed = LanguageTag.Parse(original); _ = parsed.Should().NotBeNull(); - LanguageTag? normalized = parsed!.Normalize(); + LanguageTag? normalized = parsed.Normalize(); _ = normalized.Should().NotBeNull(); _ = normalized.ToString().Should().Be("en-GB-boont"); @@ -212,7 +212,7 @@ public void ParseAndNormalize_ValidTag_ReturnsNormalized(string tag, string expe { LanguageTag? result = LanguageTag.ParseAndNormalize(tag); _ = result.Should().NotBeNull(); - _ = result!.ToString().Should().Be(expected); + _ = result.ToString().Should().Be(expected); } [Fact] @@ -233,7 +233,7 @@ string expected Options options = new(); LanguageTag? result = LanguageTag.ParseAndNormalize(tag, options); _ = result.Should().NotBeNull(); - _ = result!.ToString().Should().Be(expected); + _ = result.ToString().Should().Be(expected); } [Fact] @@ -249,7 +249,7 @@ public void IsValid_Property_ValidTag_ReturnsTrue() { LanguageTag? tag = LanguageTag.Parse("en-US"); _ = tag.Should().NotBeNull(); - _ = tag!.IsValid.Should().BeTrue(); + _ = tag.IsValid.Should().BeTrue(); } [Theory] @@ -311,7 +311,7 @@ public void Equals_SameTags_ReturnsTrue() _ = tag1.Should().NotBeNull(); _ = tag2.Should().NotBeNull(); - _ = tag1!.Equals(tag2).Should().BeTrue(); + _ = tag1.Equals(tag2).Should().BeTrue(); _ = tag1.Equals((object?)tag2).Should().BeTrue(); } @@ -323,7 +323,7 @@ public void Equals_DifferentTags_ReturnsFalse() _ = tag1.Should().NotBeNull(); _ = tag2.Should().NotBeNull(); - _ = tag1!.Equals(tag2).Should().BeFalse(); + _ = tag1.Equals(tag2).Should().BeFalse(); } [Fact] @@ -498,7 +498,7 @@ public void LanguageTag_PropertiesAreReadable(string tag) _ = languageTag.Should().NotBeNull(); // Verify all properties are accessible - _ = languageTag!.Language.Should().NotBeNull(); + _ = languageTag.Language.Should().NotBeNull(); _ = languageTag.ExtendedLanguage.Should().NotBeNull(); _ = languageTag.Script.Should().NotBeNull(); _ = languageTag.Region.Should().NotBeNull(); diff --git a/LanguageTagsTests/LogOptionsTests.cs b/LanguageTagsTests/LogOptionsTests.cs index df5806c..a5bcb03 100644 --- a/LanguageTagsTests/LogOptionsTests.cs +++ b/LanguageTagsTests/LogOptionsTests.cs @@ -3,8 +3,8 @@ namespace ptr727.LanguageTags.Tests; -[Collection("DisableParallelDefinition")] -public sealed class LogOptionsTests +[Collection("Sequential Test Collection")] +public sealed class LogOptionsTests : SingleInstanceFixture { [Fact] public void CreateLogger_UsesFactory_WhenFactorySet() diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs index ca98999..bf6b33d 100644 --- a/LanguageTagsTests/Rfc5646Tests.cs +++ b/LanguageTagsTests/Rfc5646Tests.cs @@ -1,6 +1,6 @@ namespace ptr727.LanguageTags.Tests; -public class Rfc5646Tests +public class Rfc5646Tests : SingleInstanceFixture { [Fact] public void Create() @@ -15,7 +15,7 @@ public void Create() public async Task LoadData() { Rfc5646Data rfc5646 = await Rfc5646Data.LoadDataAsync( - Fixture.GetDataFilePath(Rfc5646Data.DataFileName) + GetDataFilePath(Rfc5646Data.DataFileName) ); _ = rfc5646.Should().NotBeNull(); _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); @@ -25,7 +25,7 @@ public async Task LoadData() public async Task LoadJson() { Rfc5646Data? rfc5646 = await Rfc5646Data.LoadJsonAsync( - Fixture.GetDataFilePath(Rfc5646Data.DataFileName + ".json") + GetDataFilePath(Rfc5646Data.DataFileName + ".json") ); _ = rfc5646.Should().NotBeNull(); _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); @@ -43,7 +43,7 @@ public async Task SaveJsonAsync_RoundTrip() await Rfc5646Data.SaveJsonAsync(tempFile, rfc5646); Rfc5646Data? roundTrip = await Rfc5646Data.LoadJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); - _ = roundTrip!.RecordList.Length.Should().Be(rfc5646.RecordList.Length); + _ = roundTrip.RecordList.Length.Should().Be(rfc5646.RecordList.Length); } finally { From 8cff555fef4ec32b356052c2479d415e2ff2c2d8 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sat, 31 Jan 2026 16:22:36 -0800 Subject: [PATCH 3/5] Refactor language tag loading and parsing methods for improved error handling and logging - Removed unused logger options from LoadDataAsync methods in Iso6392Data, Iso6393Data, and Rfc5646Data classes. - Enhanced error handling by throwing InvalidDataException when no data is found during loading. - Updated Find methods in Iso6392Data, Iso6393Data, and Rfc5646Data to throw ArgumentNullException for null inputs. - Modified LanguageTag and LanguageTagBuilder classes to streamline normalization methods. - Improved logging options handling in LogOptions class, ensuring proper fallback mechanisms. - Updated tests for Iso6392Tests, Iso6393Tests, Rfc5646Tests to validate new error handling and logging behavior. - Removed redundant normalization tests from LanguageTagBuilderTests. --- LanguageTags.code-workspace | 1 - LanguageTags/Iso6392Data.cs | 66 +++-------- LanguageTags/Iso6393Data.cs | 66 +++-------- LanguageTags/LanguageLookup.cs | 20 +++- LanguageTags/LanguageTag.cs | 65 ++++------- LanguageTags/LanguageTagBuilder.cs | 13 +-- LanguageTags/LogOptions.cs | 117 ++++++++++++++----- LanguageTags/Rfc5646Data.cs | 67 +++-------- LanguageTagsTests/Iso6392Tests.cs | 15 ++- LanguageTagsTests/Iso6393Tests.cs | 15 ++- LanguageTagsTests/LanguageTagBuilderTests.cs | 19 --- LanguageTagsTests/LogOptionsTests.cs | 102 ++++++++++++++-- LanguageTagsTests/Rfc5646Tests.cs | 15 ++- 13 files changed, 306 insertions(+), 275 deletions(-) diff --git a/LanguageTags.code-workspace b/LanguageTags.code-workspace index 56b9862..98d217f 100644 --- a/LanguageTags.code-workspace +++ b/LanguageTags.code-workspace @@ -102,7 +102,6 @@ "github.vscode-github-actions", "ms-azuretools.vscode-docker", "ms-dotnettools.csdevkit", - "sanjulaganepola.github-local-actions", "yzhang.markdown-all-in-one", ] } diff --git a/LanguageTags/Iso6392Data.cs b/LanguageTags/Iso6392Data.cs index 9df6e79..2f7b2c3 100644 --- a/LanguageTags/Iso6392Data.cs +++ b/LanguageTags/Iso6392Data.cs @@ -14,19 +14,11 @@ public sealed partial class Iso6392Data /// Loads ISO 639-2 data from a file asynchronously. /// /// The path to the data file. + /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . + /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName) => - LoadDataAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads ISO 639-2 data from a file asynchronously using the specified options. - /// - /// The path to the data file. - /// The options used to configure logging. - /// The loaded . - /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options) => + public static Task LoadDataAsync(string fileName, Options? options = null) => LoadDataAsync(fileName, LogOptions.CreateLogger(options)); [System.Diagnostics.CodeAnalysis.SuppressMessage( @@ -107,25 +99,12 @@ private static async Task LoadDataAsync(string fileName, ILogger lo /// Loads ISO 639-2 data from a JSON file asynchronously. /// /// The path to the JSON file. - /// - /// The loaded , or null when deserialization yields no data. - /// - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName) => - LoadJsonAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads ISO 639-2 data from a JSON file asynchronously using the specified options. - /// - /// The path to the JSON file. - /// The options used to configure logging. - /// - /// The loaded , or null when deserialization yields no data. - /// + /// The options used to configure logging. If null, uses default logging configuration. + /// The loaded . + /// Thrown when the file contains invalid data. /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options) => + public static Task LoadJsonAsync(string fileName, Options? options = null) => LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); [System.Diagnostics.CodeAnalysis.SuppressMessage( @@ -133,7 +112,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + private static async Task LoadJsonAsync(string fileName, ILogger logger) { try { @@ -151,12 +130,10 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (data == null) { logger.LogDataLoadEmpty(nameof(Iso6392Data), fileName); - } - else - { - logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); + throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}"); } + logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); return data; } catch (Exception exception) @@ -270,23 +247,14 @@ ConfiguredTaskAwaitable WriteLineAsync(string value) => /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The first matching , or null when no match is found. - public Iso6392Record? Find(string? languageTag, bool includeDescription) => - Find(languageTag, includeDescription, LogOptions.CreateLogger()); - - /// - /// Finds an ISO 639-2 language record by language code or description using the specified options. - /// - /// - /// Matching is case-insensitive and checks Part 2/B, Part 2/T, Part 1, then (optionally) reference name. - /// - /// The language code or description to search for. - /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The options used to configure logging. - /// The first matching , or null when no match is found. - public Iso6392Record? Find(string? languageTag, bool includeDescription, Options? options) => - Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); + /// Thrown when is null. + public Iso6392Record? Find(string languageTag, bool includeDescription) + { + ArgumentNullException.ThrowIfNull(languageTag); + return Find(languageTag, includeDescription, LogOptions.CreateLogger()); + } - private Iso6392Record? Find(string? languageTag, bool includeDescription, ILogger logger) + private Iso6392Record? Find(string languageTag, bool includeDescription, ILogger logger) { if (string.IsNullOrEmpty(languageTag)) { diff --git a/LanguageTags/Iso6393Data.cs b/LanguageTags/Iso6393Data.cs index 03dd4c4..e8a25ad 100644 --- a/LanguageTags/Iso6393Data.cs +++ b/LanguageTags/Iso6393Data.cs @@ -15,19 +15,11 @@ public sealed partial class Iso6393Data /// Loads ISO 639-3 data from a file asynchronously. /// /// The path to the data file. + /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . + /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName) => - LoadDataAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads ISO 639-3 data from a file asynchronously using the specified options. - /// - /// The path to the data file. - /// The options used to configure logging. - /// The loaded . - /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options) => + public static Task LoadDataAsync(string fileName, Options? options = null) => LoadDataAsync(fileName, LogOptions.CreateLogger(options)); [System.Diagnostics.CodeAnalysis.SuppressMessage( @@ -133,25 +125,12 @@ private static async Task LoadDataAsync(string fileName, ILogger lo /// Loads ISO 639-3 data from a JSON file asynchronously. /// /// The path to the JSON file. - /// - /// The loaded , or null when deserialization yields no data. - /// - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName) => - LoadJsonAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads ISO 639-3 data from a JSON file asynchronously using the specified options. - /// - /// The path to the JSON file. - /// The options used to configure logging. - /// - /// The loaded , or null when deserialization yields no data. - /// + /// The options used to configure logging. If null, uses default logging configuration. + /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options) => + /// Thrown when the file contains invalid data. + public static Task LoadJsonAsync(string fileName, Options? options = null) => LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); [System.Diagnostics.CodeAnalysis.SuppressMessage( @@ -159,7 +138,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + private static async Task LoadJsonAsync(string fileName, ILogger logger) { try { @@ -177,12 +156,10 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (data == null) { logger.LogDataLoadEmpty(nameof(Iso6393Data), fileName); - } - else - { - logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); + throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}"); } + logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); return data; } catch (Exception exception) @@ -306,23 +283,14 @@ ConfiguredTaskAwaitable WriteLineAsync(string value) => /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The matching or null if not found. - public Iso6393Record? Find(string? languageTag, bool includeDescription) => - Find(languageTag, includeDescription, LogOptions.CreateLogger()); - - /// - /// Finds an ISO 639-3 language record by language code or description using the specified options. - /// - /// - /// Matching is case-insensitive and checks Id, Part 2/B, Part 2/T, Part 1, then (optionally) reference name. - /// - /// The language code or description to search for. - /// If true, searches in the reference name field; otherwise, only searches language codes. - /// The options used to configure logging. - /// The matching or null if not found. - public Iso6393Record? Find(string? languageTag, bool includeDescription, Options? options) => - Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); + /// Thrown when is null. + public Iso6393Record? Find(string languageTag, bool includeDescription) + { + ArgumentNullException.ThrowIfNull(languageTag); + return Find(languageTag, includeDescription, LogOptions.CreateLogger()); + } - private Iso6393Record? Find(string? languageTag, bool includeDescription, ILogger logger) + private Iso6393Record? Find(string languageTag, bool includeDescription, ILogger logger) { if (string.IsNullOrEmpty(languageTag)) { diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs index c6f7a98..40b342d 100644 --- a/LanguageTags/LanguageLookup.cs +++ b/LanguageTags/LanguageLookup.cs @@ -84,8 +84,14 @@ public string GetIetfFromIso(string languageTag) if (iso6393 != null) { // Find a matching subtag record from the ISO 639-3 or ISO 639-1 tag - subtag = _rfc5646.Find(iso6393.Id, false); - subtag ??= _rfc5646.Find(iso6393.Part1, false); + if (!string.IsNullOrEmpty(iso6393.Id)) + { + subtag = _rfc5646.Find(iso6393.Id, false); + } + if (subtag == null && !string.IsNullOrEmpty(iso6393.Part1)) + { + subtag = _rfc5646.Find(iso6393.Part1, false); + } if (subtag != null) { return subtag.TagValue; @@ -97,8 +103,14 @@ public string GetIetfFromIso(string languageTag) if (iso6392 != null) { // Find a matching RFC 5646 record from the ISO 639-2 or ISO 639-1 tag - subtag = _rfc5646.Find(iso6392.Part2B, false); - subtag ??= _rfc5646.Find(iso6392.Part1, false); + if (!string.IsNullOrEmpty(iso6392.Part2B)) + { + subtag = _rfc5646.Find(iso6392.Part2B, false); + } + if (subtag == null && !string.IsNullOrEmpty(iso6392.Part1)) + { + subtag = _rfc5646.Find(iso6392.Part1, false); + } if (subtag != null) { return subtag.TagValue; diff --git a/LanguageTags/LanguageTag.cs b/LanguageTags/LanguageTag.cs index 3b530de..04777df 100644 --- a/LanguageTags/LanguageTag.cs +++ b/LanguageTags/LanguageTag.cs @@ -71,16 +71,9 @@ internal LanguageTag(LanguageTag languageTag) /// Parses a language tag string into a instance. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). + /// The options used to configure logging. If null, uses default logging configuration. /// The parsed language tag, or null if parsing fails. - public static LanguageTag? Parse(string tag) => new LanguageTagParser().Parse(tag); - - /// - /// Parses a language tag string into a instance using the specified options. - /// - /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// The options used to configure logging. - /// The parsed language tag, or null if parsing fails. - public static LanguageTag? Parse(string tag, Options? options) => + public static LanguageTag? Parse(string tag, Options? options = null) => new LanguageTagParser(options).Parse(tag); /// @@ -88,52 +81,44 @@ internal LanguageTag(LanguageTag languageTag) /// /// The language tag string to parse. /// The default tag to return if parsing fails (defaults to "und"). + /// The options used to configure logging. If null, uses default logging configuration. /// The parsed tag, the supplied default tag, or "und" if parsing fails and no default is provided. - public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = null) + public static LanguageTag ParseOrDefault( + string tag, + LanguageTag? defaultTag = null, + Options? options = null + ) { - LanguageTag? parsed = Parse(tag); - return parsed ?? defaultTag ?? Parse(LanguageLookup.Undetermined)!; + LanguageTag? parsed = Parse(tag, options); + return parsed ?? defaultTag ?? Parse(LanguageLookup.Undetermined, options)!; } /// /// Parses and normalizes a language tag string. /// /// The language tag string. + /// The options used to configure logging. If null, uses default logging configuration. /// A normalized language tag, or null if parsing fails. - public static LanguageTag? ParseAndNormalize(string tag) => Parse(tag)?.Normalize(); - - /// - /// Parses and normalizes a language tag string using the specified options. - /// - /// The language tag string. - /// The options used to configure logging. - /// A normalized language tag, or null if parsing fails. - public static LanguageTag? ParseAndNormalize(string tag, Options? options) => - Parse(tag, options)?.Normalize(options); - - /// - /// Tries to parse a language tag string into a instance. - /// - /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// When this method returns, contains the parsed language tag if successful, or null if parsing fails. - /// true if the tag was successfully parsed; otherwise, false. - public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? result) + /// + /// Logging for both parsing and normalization uses the provided when supplied. + /// + public static LanguageTag? ParseAndNormalize(string tag, Options? options = null) { - result = Parse(tag); - return result != null; + LanguageTag? parsed = Parse(tag, options); + return parsed == null ? null : new LanguageTagParser(options).Normalize(parsed); } /// - /// Tries to parse a language tag string into a instance using the specified options. + /// Tries to parse a language tag string into a instance. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). /// When this method returns, contains the parsed language tag if successful, or null if parsing fails. - /// The options used to configure logging. + /// The options used to configure logging. If null, uses default logging configuration. /// true if the tag was successfully parsed; otherwise, false. public static bool TryParse( string tag, [NotNullWhen(true)] out LanguageTag? result, - Options? options + Options? options = null ) { result = Parse(tag, options); @@ -164,15 +149,7 @@ public static bool TryParse( /// Normalizes this language tag according to RFC 5646 rules. /// /// A normalized copy of this language tag. - public LanguageTag? Normalize() => new LanguageTagParser().Normalize(this); - - /// - /// Normalizes this language tag according to RFC 5646 rules using the specified options. - /// - /// The options used to configure logging. - /// A normalized copy of this language tag. - public LanguageTag? Normalize(Options? options) => - new LanguageTagParser(options).Normalize(this); + public LanguageTag Normalize() => new LanguageTagParser().Normalize(this); /// /// Converts this language tag to its string representation. diff --git a/LanguageTags/LanguageTagBuilder.cs b/LanguageTags/LanguageTagBuilder.cs index f482cf5..c5f53bf 100644 --- a/LanguageTags/LanguageTagBuilder.cs +++ b/LanguageTags/LanguageTagBuilder.cs @@ -135,16 +135,5 @@ public LanguageTagBuilder PrivateUseAddRange(IEnumerable values) /// Normalization does not validate the tag; call on the result if needed. /// /// A normalized . - public LanguageTag? Normalize() => new LanguageTagParser().Normalize(_languageTag); - - /// - /// Builds and normalizes the constructed language tag according to RFC 5646 rules using the specified options. - /// - /// The options used to configure logging. - /// - /// Normalization does not validate the tag; call on the result if needed. - /// - /// A normalized . - public LanguageTag? Normalize(Options? options) => - new LanguageTagParser(options).Normalize(_languageTag); + public LanguageTag Normalize() => new LanguageTagParser().Normalize(_languageTag); } diff --git a/LanguageTags/LogOptions.cs b/LanguageTags/LogOptions.cs index 0451d1d..58633c5 100644 --- a/LanguageTags/LogOptions.cs +++ b/LanguageTags/LogOptions.cs @@ -34,45 +34,110 @@ public static ILogger Logger set => _ = Interlocked.Exchange(ref s_logger, value ?? NullLogger.Instance); } - /// - /// Creates a logger for the specified type using the current factory or fallback logger. - /// - /// The type used to derive the logger category. - /// The configured logger for the category. - public static ILogger CreateLogger() => CreateLogger(typeof(T).FullName ?? typeof(T).Name); - /// /// Creates a logger for the specified type using the provided options or global configuration. /// /// The type used to derive the logger category. - /// The options used to configure logging. + /// The options used to configure logging. If null, uses global configuration. /// The configured logger for the category. - public static ILogger CreateLogger(Options? options) => + /// + /// + /// When options is provided, the logger is resolved using this priority order: + /// + /// options.Logger if set + /// options.LoggerFactory if set, creating a logger for the category + /// Global Logger if set + /// Global LoggerFactory if set, creating a logger for the category + /// + /// + /// + /// When options is null, the global logger is resolved using this priority order: + /// + /// Global Logger if set + /// Global LoggerFactory if set, creating a logger for the category + /// + /// + /// + /// Null logger instances are treated as not configured. + /// + /// + public static ILogger CreateLogger(Options? options = null) => CreateLogger(typeof(T).FullName ?? typeof(T).Name, options); /// - /// Creates a logger for the specified category using the current factory or fallback logger. + /// Creates a logger for the specified category using the provided options or global configuration. /// /// The category name for the logger. + /// The options used to configure logging. If null, uses global configuration. /// The configured logger for the category. - public static ILogger CreateLogger(string categoryName) + /// + /// Thrown when is null. + /// + /// + /// Thrown when is empty or whitespace. + /// + /// + /// + /// When options is provided, the logger is resolved using this priority order: + /// + /// options.Logger if set + /// options.LoggerFactory if set, creating a logger for the category + /// Global Logger if set + /// Global LoggerFactory if set, creating a logger for the category + /// + /// + /// + /// When options is null, the global logger is resolved using this priority order: + /// + /// Global Logger if set + /// Global LoggerFactory if set, creating a logger for the category + /// + /// + /// + /// Null logger instances are treated as not configured. + /// + /// + [System.Diagnostics.CodeAnalysis.SuppressMessage( + "Style", + "IDE0046:Convert to conditional expression", + Justification = "Logic clarity." + )] + public static ILogger CreateLogger(string categoryName, Options? options = null) { - ILoggerFactory loggerFactory = LoggerFactory; - return !ReferenceEquals(loggerFactory, NullLoggerFactory.Instance) - ? loggerFactory.CreateLogger(categoryName) - : Logger; - } + ArgumentNullException.ThrowIfNull(categoryName); + if (string.IsNullOrWhiteSpace(categoryName)) + { + throw new ArgumentException("Category name must not be empty.", nameof(categoryName)); + } - /// - /// Creates a logger for the specified category using the provided options or global configuration. - /// - /// The category name for the logger. - /// The options used to configure logging. - /// The configured logger for the category. - public static ILogger CreateLogger(string categoryName, Options? options) => - options is null ? CreateLogger(categoryName) - : options.LoggerFactory is not null ? options.LoggerFactory.CreateLogger(categoryName) - : options.Logger ?? CreateLogger(categoryName); + if (options is not null) + { + if (options.Logger is not null && !ReferenceEquals(options.Logger, NullLogger.Instance)) + { + return options.Logger; + } + + if ( + options.LoggerFactory is not null + && !ReferenceEquals(options.LoggerFactory, NullLoggerFactory.Instance) + ) + { + return options.LoggerFactory.CreateLogger(categoryName); + } + } + + if (!ReferenceEquals(Logger, NullLogger.Instance)) + { + return Logger; + } + + if (!ReferenceEquals(LoggerFactory, NullLoggerFactory.Instance)) + { + return LoggerFactory.CreateLogger(categoryName); + } + + return NullLogger.Instance; + } /// /// Configures the library to use the specified logger factory. diff --git a/LanguageTags/Rfc5646Data.cs b/LanguageTags/Rfc5646Data.cs index 43f01e6..400d190 100644 --- a/LanguageTags/Rfc5646Data.cs +++ b/LanguageTags/Rfc5646Data.cs @@ -16,19 +16,11 @@ public sealed partial class Rfc5646Data /// Loads RFC 5646 data from a file asynchronously. /// /// The path to the data file. + /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . + /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName) => - LoadDataAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads RFC 5646 data from a file asynchronously using the specified options. - /// - /// The path to the data file. - /// The options used to configure logging. - /// The loaded . - /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options) => + public static Task LoadDataAsync(string fileName, Options? options = null) => LoadDataAsync(fileName, LogOptions.CreateLogger(options)); [System.Diagnostics.CodeAnalysis.SuppressMessage( @@ -72,6 +64,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { logger.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); + throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); } Rfc5646Data data = new() { FileDate = fileDate, RecordList = [.. recordList] }; @@ -89,25 +82,12 @@ private static async Task LoadDataAsync(string fileName, ILogger lo /// Loads RFC 5646 data from a JSON file asynchronously. /// /// The path to the JSON file. - /// - /// The loaded , or null when deserialization yields no data. - /// - /// Thrown when the file cannot be read. - /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName) => - LoadJsonAsync(fileName, LogOptions.CreateLogger()); - - /// - /// Loads RFC 5646 data from a JSON file asynchronously using the specified options. - /// - /// The path to the JSON file. - /// The options used to configure logging. - /// - /// The loaded , or null when deserialization yields no data. - /// + /// The options used to configure logging. If null, uses default logging configuration. + /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options) => + /// Thrown when the file contains invalid data. + public static Task LoadJsonAsync(string fileName, Options? options = null) => LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); [System.Diagnostics.CodeAnalysis.SuppressMessage( @@ -115,7 +95,7 @@ private static async Task LoadDataAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + private static async Task LoadJsonAsync(string fileName, ILogger logger) { try { @@ -133,12 +113,10 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (data == null) { logger.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); - } - else - { - logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); + throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); } + logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); return data; } catch (Exception exception) @@ -507,23 +485,14 @@ private static Rfc5646Record.RecordScope ScopeFromString(string value) => /// The language tag, subtag, or description to search for. /// If true, searches in the description field; otherwise, only searches tags and subtags. /// The matching or null if not found. - public Rfc5646Record? Find(string? languageTag, bool includeDescription) => - Find(languageTag, includeDescription, LogOptions.CreateLogger()); - - /// - /// Finds a language subtag record by tag, subtag, preferred value, or description using the specified options. - /// - /// - /// Matching is case-insensitive and checks Tag, SubTag, PreferredValue, then (optionally) Description. - /// - /// The language tag, subtag, or description to search for. - /// If true, searches in the description field; otherwise, only searches tags and subtags. - /// The options used to configure logging. - /// The matching or null if not found. - public Rfc5646Record? Find(string? languageTag, bool includeDescription, Options? options) => - Find(languageTag, includeDescription, LogOptions.CreateLogger(options)); + /// Thrown when is null. + public Rfc5646Record? Find(string languageTag, bool includeDescription) + { + ArgumentNullException.ThrowIfNull(languageTag); + return Find(languageTag, includeDescription, LogOptions.CreateLogger()); + } - private Rfc5646Record? Find(string? languageTag, bool includeDescription, ILogger logger) + private Rfc5646Record? Find(string languageTag, bool includeDescription, ILogger logger) { if (string.IsNullOrEmpty(languageTag)) { diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs index 3e7967f..452b337 100644 --- a/LanguageTagsTests/Iso6392Tests.cs +++ b/LanguageTagsTests/Iso6392Tests.cs @@ -91,13 +91,18 @@ public void Find_Fail(string input) _ = record.Should().BeNull(); } - [Theory] - [InlineData(null)] - [InlineData("")] - public void Find_NullOrEmpty_ReturnsNull(string? input) + [Fact] + public void Find_Null_ThrowsArgumentNullException() { Iso6392Data iso6392 = Iso6392Data.Create(); - Iso6392Record? record = iso6392.Find(input, false); + _ = Assert.Throws(() => iso6392.Find(null!, false)); + } + + [Fact] + public void Find_Empty_ReturnsNull() + { + Iso6392Data iso6392 = Iso6392Data.Create(); + Iso6392Record? record = iso6392.Find(string.Empty, false); _ = record.Should().BeNull(); } } diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs index 2857b9e..e1017db 100644 --- a/LanguageTagsTests/Iso6393Tests.cs +++ b/LanguageTagsTests/Iso6393Tests.cs @@ -91,13 +91,18 @@ public void Find_Fail(string input) _ = record.Should().BeNull(); } - [Theory] - [InlineData(null)] - [InlineData("")] - public void Find_NullOrEmpty_ReturnsNull(string? input) + [Fact] + public void Find_Null_ThrowsArgumentNullException() { Iso6393Data iso6393 = Iso6393Data.Create(); - Iso6393Record? record = iso6393.Find(input, false); + _ = Assert.Throws(() => iso6393.Find(null!, false)); + } + + [Fact] + public void Find_Empty_ReturnsNull() + { + Iso6393Data iso6393 = Iso6393Data.Create(); + Iso6393Record? record = iso6393.Find(string.Empty, false); _ = record.Should().BeNull(); } } diff --git a/LanguageTagsTests/LanguageTagBuilderTests.cs b/LanguageTagsTests/LanguageTagBuilderTests.cs index a042074..cb91560 100644 --- a/LanguageTagsTests/LanguageTagBuilderTests.cs +++ b/LanguageTagsTests/LanguageTagBuilderTests.cs @@ -91,25 +91,6 @@ public void Normalize_Pass() _ = languageTag.ToString().Should().Be("en-a-aaa-bbb-b-ccc-x-a-ccc"); } - [Fact] - public void Normalize_WithOptions_Pass() - { - Options options = new(); - - // en-Latn-GB-boont-r-extended-sequence-x-private - LanguageTag? languageTag = new LanguageTagBuilder() - .Language("en") - .Script("latn") - .Region("gb") - .VariantAdd("boont") - .ExtensionAdd('r', ["extended", "sequence"]) - .PrivateUseAdd("private") - .Normalize(options); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be("en-GB-boont-r-extended-sequence-x-private"); - } - [Fact] public void Build_Fail() { diff --git a/LanguageTagsTests/LogOptionsTests.cs b/LanguageTagsTests/LogOptionsTests.cs index a5bcb03..26bd4cb 100644 --- a/LanguageTagsTests/LogOptionsTests.cs +++ b/LanguageTagsTests/LogOptionsTests.cs @@ -7,7 +7,7 @@ namespace ptr727.LanguageTags.Tests; public sealed class LogOptionsTests : SingleInstanceFixture { [Fact] - public void CreateLogger_UsesFactory_WhenFactorySet() + public void CreateLogger_UsesLogger_WhenBothSet() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; ILogger originalLogger = LogOptions.Logger; @@ -21,8 +21,10 @@ public void CreateLogger_UsesFactory_WhenFactorySet() ILogger logger = LogOptions.CreateLogger("category"); - _ = logger.Should().BeSameAs(testFactory.Logger); - _ = testFactory.LastCategory.Should().Be("category"); + // Logger should take precedence over LoggerFactory + _ = logger.Should().BeSameAs(testLogger); + // Factory should not be called + _ = testFactory.LastCategory.Should().BeNull(); } finally { @@ -55,7 +57,7 @@ public void CreateLogger_UsesLogger_WhenFactoryDefault() } [Fact] - public void CreateLogger_WithOptions_UsesOptionsFactory() + public void CreateLogger_WithOptions_UsesOptionsLoggerFirst() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; ILogger originalLogger = LogOptions.Logger; @@ -70,8 +72,10 @@ public void CreateLogger_WithOptions_UsesOptionsFactory() ILogger logger = LogOptions.CreateLogger("category", options); - _ = logger.Should().BeSameAs(testFactory.Logger); - _ = testFactory.LastCategory.Should().Be("category"); + // Logger should take precedence over LoggerFactory + _ = logger.Should().BeSameAs(testLogger); + // Factory should not be called + _ = testFactory.LastCategory.Should().BeNull(); } finally { @@ -105,18 +109,94 @@ public void CreateLogger_WithOptions_UsesOptionsLoggerWhenNoFactory() } } + [Fact] + public void CreateLogger_WithOptions_UsesOptionsFactoryWhenLoggerNotSet() + { + ILoggerFactory originalFactory = LogOptions.LoggerFactory; + ILogger originalLogger = LogOptions.Logger; + using TestLoggerFactory testFactory = new(); + Options options = new() { LoggerFactory = testFactory }; + + try + { + LogOptions.LoggerFactory = NullLoggerFactory.Instance; + LogOptions.Logger = NullLogger.Instance; + + ILogger logger = LogOptions.CreateLogger("category", options); + + // Factory should be used when Logger is not set + _ = logger.Should().BeSameAs(testFactory.Logger); + _ = testFactory.LastCategory.Should().Be("category"); + } + finally + { + LogOptions.LoggerFactory = originalFactory; + LogOptions.Logger = originalLogger; + } + } + [Fact] public void CreateLogger_WithOptions_FallsBackToGlobal() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; ILogger originalLogger = LogOptions.Logger; using TestLoggerFactory testFactory = new(); + TestLogger testLogger = new(); Options options = new(); try { LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = new TestLogger(); + LogOptions.Logger = testLogger; + + ILogger logger = LogOptions.CreateLogger("category", options); + + _ = logger.Should().BeSameAs(testLogger); + _ = testFactory.LastCategory.Should().BeNull(); + } + finally + { + LogOptions.LoggerFactory = originalFactory; + LogOptions.Logger = originalLogger; + } + } + + [Fact] + public void CreateLogger_FallsBackToFactory_WhenGlobalLoggerIsNullLogger() + { + ILoggerFactory originalFactory = LogOptions.LoggerFactory; + ILogger originalLogger = LogOptions.Logger; + using TestLoggerFactory testFactory = new(); + + try + { + LogOptions.LoggerFactory = testFactory; + LogOptions.Logger = NullLogger.Instance; + + ILogger logger = LogOptions.CreateLogger("category"); + + _ = logger.Should().BeSameAs(testFactory.Logger); + _ = testFactory.LastCategory.Should().Be("category"); + } + finally + { + LogOptions.LoggerFactory = originalFactory; + LogOptions.Logger = originalLogger; + } + } + + [Fact] + public void CreateLogger_WithOptions_IgnoresNullLoggerAndFallsBackToFactory() + { + ILoggerFactory originalFactory = LogOptions.LoggerFactory; + ILogger originalLogger = LogOptions.Logger; + using TestLoggerFactory testFactory = new(); + Options options = new() { Logger = NullLogger.Instance, LoggerFactory = testFactory }; + + try + { + LogOptions.LoggerFactory = NullLoggerFactory.Instance; + LogOptions.Logger = NullLogger.Instance; ILogger logger = LogOptions.CreateLogger("category", options); @@ -130,6 +210,14 @@ public void CreateLogger_WithOptions_FallsBackToGlobal() } } + [Fact] + public void CreateLogger_WithNullCategory_ThrowsArgumentNullException() => + _ = Assert.Throws(() => LogOptions.CreateLogger(null!)); + + [Fact] + public void CreateLogger_WithEmptyCategory_ThrowsArgumentException() => + _ = Assert.Throws(() => LogOptions.CreateLogger(" ")); + [Fact] public void TrySetFactory_WhenUnset_ReturnsTrueAndSets() { diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs index bf6b33d..9a021c2 100644 --- a/LanguageTagsTests/Rfc5646Tests.cs +++ b/LanguageTagsTests/Rfc5646Tests.cs @@ -100,13 +100,18 @@ public void Find_Fail(string input) _ = record.Should().BeNull(); } - [Theory] - [InlineData(null)] - [InlineData("")] - public void Find_NullOrEmpty_ReturnsNull(string? input) + [Fact] + public void Find_Null_ThrowsArgumentNullException() { Rfc5646Data rfc5646 = Rfc5646Data.Create(); - Rfc5646Record? record = rfc5646.Find(input, false); + _ = Assert.Throws(() => rfc5646.Find(null!, false)); + } + + [Fact] + public void Find_Empty_ReturnsNull() + { + Rfc5646Data rfc5646 = Rfc5646Data.Create(); + Rfc5646Record? record = rfc5646.Find(string.Empty, false); _ = record.Should().BeNull(); } From 35dad16ee9f9ab7342ae5e5e2cb4d3f74bb45db9 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sun, 1 Feb 2026 08:59:01 -0800 Subject: [PATCH 4/5] Refactor language tag library for improved logging and async IO - Removed Options class as it was no longer needed for logging configuration. - Updated Rfc5646Data, Iso6392Data, and Iso6393Data classes to use async methods for loading and saving data. - Changed method names from LoadDataAsync and LoadJsonAsync to FromDataAsync and FromJsonAsync for consistency. - Implemented logging directly within data classes using ILogger. - Updated tests to reflect changes in method names and removed references to the Options class. - Revised README to document breaking changes and new usage patterns. --- .github/copilot-instructions.md | 114 +- AGENTS.md | 23 +- HISTORY.md | 10 +- LanguageTags/Iso6392Data.cs | 80 +- LanguageTags/Iso6393Data.cs | 86 +- LanguageTags/Iso6393DataGen.cs | 7927 +++++++++++++++++++++++++ LanguageTags/LanguageLookup.cs | 15 +- LanguageTags/LanguageSchema.cs | 14 - LanguageTags/LanguageTag.cs | 34 +- LanguageTags/LanguageTagParser.cs | 34 +- LanguageTags/LogOptions.cs | 170 +- LanguageTags/Options.cs | 17 - LanguageTags/Rfc5646Data.cs | 94 +- LanguageTagsCreate/CreateTagData.cs | 18 +- LanguageTagsTests/Iso6392Tests.cs | 37 +- LanguageTagsTests/Iso6393Tests.cs | 37 +- LanguageTagsTests/LanguageTagTests.cs | 82 - LanguageTagsTests/LogOptionsTests.cs | 218 +- LanguageTagsTests/Rfc5646Tests.cs | 36 +- README.md | 58 +- 20 files changed, 8320 insertions(+), 784 deletions(-) delete mode 100644 LanguageTags/Options.cs diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index aa228eb..6d6c964 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -28,11 +28,10 @@ - Converts to JSON and generates C# code files - Target framework: .NET 10.0 -- **LanguageTagsTests** (`LanguageTagsTests/LanguageTagsTests.csproj`) - - xUnit test suite with 211+ comprehensive tests - - Uses AwesomeAssertions for test assertions - - 100% coverage of all public APIs - - Target framework: .NET 10.0 +- **LanguageTagsTests** (`LanguageTagsTests/LanguageTagsTests.csproj`) + - xUnit test suite with comprehensive coverage + - Uses AwesomeAssertions for test assertions + - Target framework: .NET 10.0 ### Key Directories @@ -56,12 +55,9 @@ The main public API for working with language tags: **Static Factory Methods:** - `Parse(string tag)`: Parse a language tag string, returns null on failure -- `Parse(string tag, Options? options)`: Parse with per-call logging options - `TryParse(string tag, out LanguageTag? result)`: Safe parsing with out parameter -- `TryParse(string tag, out LanguageTag? result, Options? options)`: Safe parsing with per-call logging options - `ParseOrDefault(string tag, LanguageTag? defaultTag = null)`: Parse with fallback to "und" - `ParseAndNormalize(string tag)`: Parse and normalize in one step -- `ParseAndNormalize(string tag, Options? options)`: Parse and normalize with per-call logging options - `CreateBuilder()`: Create a fluent builder instance - `FromLanguage(string language)`: Factory for simple language tags - `FromLanguageRegion(string language, string region)`: Factory for language+region tags @@ -77,10 +73,9 @@ The main public API for working with language tags: - `PrivateUse`: PrivateUseTag object - `IsValid`: Property to check if tag is valid -**Instance Methods:** -- `Validate()`: Verify tag correctness -- `Normalize()`: Return normalized copy of tag -- `Normalize(Options? options)`: Return normalized copy with per-call logging options +**Instance Methods:** +- `Validate()`: Verify structural correctness +- `Normalize()`: Return normalized copy of tag (does not validate) - `ToString()`: String representation - `Equals()`: Equality comparison (case-insensitive) - `GetHashCode()`: Hash code for collections @@ -107,8 +102,7 @@ Fluent builder for constructing language tags: - `PrivateUseAdd(string value)`: Add private use tag - `PrivateUseAddRange(IEnumerable values)`: Add multiple private use tags - `Build()`: Return constructed tag (no validation) -- `Normalize()`: Return normalized tag (with validation) -- `Normalize(Options? options)`: Return normalized tag with per-call logging options +- `Normalize()`: Return normalized tag (no validation) ### LanguageTagParser Class (LanguageTagParser.cs) @@ -138,56 +132,77 @@ Provides language code conversion and matching: - `GetIsoFromIetf(string languageTag)`: Convert IETF to ISO format - `IsMatch(string prefix, string languageTag)`: Prefix matching for content selection -**Construction:** -- `new LanguageLookup(Options? options = null)`: Optional per-instance logging +### LogOptions Class (LogOptions.cs) + +Static class for configuring global logging for the entire library: + +**Properties:** +- `LoggerFactory`: Gets or sets the global logger factory for creating category loggers + +**Methods:** +- `SetFactory(ILoggerFactory loggerFactory)`: Configure the library to use a logger factory +- `TrySetFactory(ILoggerFactory loggerFactory)`: Set factory only if none is configured + +**Logger Resolution Priority:** +1. `LoggerFactory` property (when not `NullLoggerFactory`) +2. `NullLogger.Instance` (default fallback) + +**Important Notes:** +- Loggers are created and cached at time of use by each class instance +- Changes to `LoggerFactory` after a logger is created do not affect existing cached loggers +- Only new logger requests use updated configuration ### Data Models -#### Iso6392Data.cs -- ISO 639-2 language codes (3-letter bibliographic/terminologic codes) -- **Public Methods:** - - `Create()`: Load embedded data - - `LoadDataAsync(string fileName)`: Load from file - - `LoadJsonAsync(string fileName)`: Load from JSON - - `Find(string? languageTag, bool includeDescription)`: Find record by tag - - `Find(string? languageTag, bool includeDescription, Options? options)`: Find record by tag with logging options +#### Iso6392Data.cs +- ISO 639-2 language codes (3-letter bibliographic/terminologic codes) +- **Public Methods:** + - `Create()`: Load embedded data + - `FromDataAsync(string fileName)`: Load from file + - `FromJsonAsync(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Internal Methods:** `SaveJsonAsync(string fileName)`, `SaveCodeAsync(string fileName)` - **Record Properties:** `Part2B`, `Part2T`, `Part1`, `RefName` -#### Iso6393Data.cs -- ISO 639-3 language codes (comprehensive language codes) -- **Public Methods:** - - `Create()`: Load embedded data - - `LoadDataAsync(string fileName)`: Load from file - - `LoadJsonAsync(string fileName)`: Load from JSON - - `Find(string? languageTag, bool includeDescription)`: Find record by tag - - `Find(string? languageTag, bool includeDescription, Options? options)`: Find record by tag with logging options +#### Iso6393Data.cs +- ISO 639-3 language codes (comprehensive language codes) +- **Public Methods:** + - `Create()`: Load embedded data + - `FromDataAsync(string fileName)`: Load from file + - `FromJsonAsync(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Internal Methods:** `SaveJsonAsync(string fileName)`, `SaveCodeAsync(string fileName)` - **Record Properties:** `Id`, `Part2B`, `Part2T`, `Part1`, `Scope`, `LanguageType`, `RefName`, `Comment` -#### Rfc5646Data.cs -- RFC 5646 / BCP 47 language subtag registry -- **Public Methods:** - - `Create()`: Load embedded data - - `LoadDataAsync(string fileName)`: Load from file - - `LoadJsonAsync(string fileName)`: Load from JSON - - `Find(string? languageTag, bool includeDescription)`: Find record by tag - - `Find(string? languageTag, bool includeDescription, Options? options)`: Find record by tag with logging options -- **Properties:** `FileDate`, `RecordList` -- **Record Properties:** `Type`, `Tag`, `SubTag`, `Description` (ImmutableArray), `Added`, `SuppressScript`, `Scope`, `MacroLanguage`, `Deprecated`, `Comments` (ImmutableArray), `Prefix` (ImmutableArray), `PreferredValue`, `TagAny` +#### Rfc5646Data.cs +- RFC 5646 / BCP 47 language subtag registry +- **Public Methods:** + - `Create()`: Load embedded data + - `FromDataAsync(string fileName)`: Load from file + - `FromJsonAsync(string fileName)`: Load from JSON + - `Find(string? languageTag, bool includeDescription)`: Find record by tag +- **Properties:** `FileDate`, `RecordList` +- **Internal Methods:** `SaveJsonAsync(string fileName)`, `SaveCodeAsync(string fileName)` +- **Record Properties:** `Type`, `Tag`, `SubTag`, `Description` (ImmutableArray), `Added`, `SuppressScript`, `Scope`, `MacroLanguage`, `Deprecated`, `Comments` (ImmutableArray), `Prefix` (ImmutableArray), `PreferredValue`, `TagValue` - **Enums:** - `RecordType`: None, Language, ExtLanguage, Script, Variant, Grandfathered, Region, Redundant - `RecordScope`: None, MacroLanguage, Collection, Special, PrivateUse #### Supporting Classes -**ExtensionTag:** +**ExtensionTag (sealed record):** - `Prefix`: Single-character extension prefix (char) - `Tags`: ImmutableArray of extension values - `ToString()`: Format as "prefix-tag1-tag2" +- `Normalize()`: Returns normalized copy with sorted, lowercase tags +- `Equals()`: Case-insensitive equality comparison -**PrivateUseTag:** +**PrivateUseTag (sealed record):** - `Prefix`: Constant 'x' - `Tags`: ImmutableArray of private use values - `ToString()`: Format as "x-tag1-tag2" +- `Normalize()`: Returns normalized copy with sorted, lowercase tags +- `Equals()`: Case-insensitive equality comparison ### Language Tag Structure @@ -273,24 +288,24 @@ LanguageTag tag = LanguageTag.ParseOrDefault(input); // Falls back to "und" ## Recent API Changes -### Changed (Breaking) +### Changed (Breaking) - `LanguageTagParser` is now internal (use `LanguageTag.Parse()` instead) - Properties changed from `IList` to `ImmutableArray`: - `VariantList` → `Variants` - `ExtensionList` → `Extensions` - `TagList` → `Tags` -- Data file APIs are async-only: `LoadDataAsync()`/`LoadJsonAsync()`; sync versions removed +- Data file APIs are async-only and use static creators: `FromDataAsync()`/`FromJsonAsync()` +- Logging configuration now uses `ILoggerFactory` only; `ILogger` support was removed from `LogOptions` - Tag construction requires use of factory methods or builder (constructors are internal) ### Added (Non-Breaking) - `LanguageTag.ParseOrDefault()`: Safe parsing with fallback - `LanguageTag.ParseAndNormalize()`: Combined parse and normalize -- `LanguageTag.ParseAndNormalize(string, Options?)`: Combined parse and normalize with logging options - `LanguageTag.IsValid`: Property for validation - `LanguageTag.FromLanguage()`, `FromLanguageRegion()`, `FromLanguageScriptRegion()`: Factory methods - `IEquatable` implementation with operators -- Options-aware logging for parsing/normalization and lookup (`Options` + `LogOptions`) -- `LanguageLookup` supports optional logging via primary constructor +- `LogOptions` static class for global logging configuration with `ILoggerFactory` +- `ExtensionTag` and `PrivateUseTag` are now sealed records with `Normalize()` and case-insensitive `Equals()` methods - Comprehensive XML documentation for all public APIs ## Future Improvements @@ -300,7 +315,6 @@ Consider these areas for enhancement: - Implement comprehensive subtag content validation against registry data - Add more language lookup and validation features - Improve error messages and diagnostics -- Consider making `ExtensionTag` and `PrivateUseTag` immutable records ## Contributing diff --git a/AGENTS.md b/AGENTS.md index 5ee89e1..4d1feaa 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -30,20 +30,21 @@ For comprehensive coding standards and detailed conventions, refer to [`.github/ ### Key Components -**Public API Classes:** - -- `LanguageTag`: Main class for working with language tags (parse, build, normalize, validate) -- `LanguageTagBuilder`: Fluent builder for constructing language tags -- `LanguageLookup`: Language code conversion and matching (IETF ↔ ISO) -- `Iso6392Data`: ISO 639-2 language code data -- `Iso6393Data`: ISO 639-3 language code data -- `Rfc5646Data`: RFC 5646 / BCP 47 language subtag registry data -- `ExtensionTag`: Represents extension subtags -- `PrivateUseTag`: Represents private use subtags +**Public API Classes:** + +- `LanguageTag`: Main class for working with language tags (parse, build, normalize, validate) +- `LanguageTagBuilder`: Fluent builder for constructing language tags +- `LanguageLookup`: Language code conversion and matching (IETF ↔ ISO) +- `Iso6392Data`: ISO 639-2 language code data (`Create()`, `FromDataAsync()`, `FromJsonAsync()`) +- `Iso6393Data`: ISO 639-3 language code data (`Create()`, `FromDataAsync()`, `FromJsonAsync()`) +- `Rfc5646Data`: RFC 5646 / BCP 47 language subtag registry data (`Create()`, `FromDataAsync()`, `FromJsonAsync()`) +- `ExtensionTag`: Represents extension subtags (sealed record) +- `PrivateUseTag`: Represents private use subtags (sealed record) +- `LogOptions`: Static class for configuring library-wide logging via `ILoggerFactory` **Internal Classes:** -- `LanguageTagParser`: Internal parser (use `LanguageTag.Parse()` instead) +- `LanguageTagParser`: Internal parser implementation (use `LanguageTag.Parse()` instead) ## Authoritative References diff --git a/HISTORY.md b/HISTORY.md index 2e7d830..6ff8cd5 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -5,11 +5,11 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. ## Release History - Version 1.2: - - Refactored the project to follow standard patterns across other projects. - - IO APIs are now async-only (`LoadDataAsync`, `LoadJsonAsync`, `SaveJsonAsync`, `GenCodeAsync`). - - Added logging support for `ILogger` or `ILoggerFactory` per class instance or statically. - - JSON load/save and codegen now stream directly to/from files, no intermediate text buffers. - + - Refactored the project to follow standard patterns used across other projects. + - Added logging support configured through `LogOptions.SetFactory(ILoggerFactory)`. + - ⚠️ IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`'. + - ⚠️ Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync() + - IO now streams directly to/from from code/files without intermediate text buffers. - Version 1.1: - .NET 10 and AOT support. - Refactored public surfaces to minimize internals exposure. diff --git a/LanguageTags/Iso6392Data.cs b/LanguageTags/Iso6392Data.cs index 2f7b2c3..dd18726 100644 --- a/LanguageTags/Iso6392Data.cs +++ b/LanguageTags/Iso6392Data.cs @@ -1,4 +1,5 @@ using System.Runtime.CompilerServices; +using System.Text.Json.Serialization; namespace ptr727.LanguageTags; @@ -10,23 +11,38 @@ public sealed partial class Iso6392Data internal const string DataUri = "https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt"; internal const string DataFileName = "iso6392"; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; + + [JsonConstructor] + internal Iso6392Data() { } + + /// + /// Gets the collection of ISO 639-2 language records. + /// + [JsonInclude] + public ImmutableArray RecordList { get; internal set; } = []; + /// - /// Loads ISO 639-2 data from a file asynchronously. + /// Creates an instance from a data file asynchronously. /// /// The path to the data file. - /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options = null) => - LoadDataAsync(fileName, LogOptions.CreateLogger(options)); + public static async Task FromDataAsync(string fileName) + { + Iso6392Data iso6392Data = new(); + await iso6392Data.LoadDataAsync(fileName).ConfigureAwait(false); + return iso6392Data; + } [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadDataAsync(string fileName, ILogger logger) + private async Task LoadDataAsync(string fileName) { // https://www.loc.gov/standards/iso639-2/ascii_8bits.html // Alpha-3 (bibliographic) code @@ -80,40 +96,36 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { - logger.LogDataLoadEmpty(nameof(Iso6392Data), fileName); + Log.LogDataLoadEmpty(nameof(Iso6392Data), fileName); throw new InvalidDataException($"No data found in ISO 639-2 file: {fileName}"); } - Iso6392Data data = new() { RecordList = [.. recordList] }; - logger.LogDataLoaded(nameof(Iso6392Data), fileName, data.RecordList.Length); - return data; + RecordList = [.. recordList]; + Log.LogDataLoaded(nameof(Iso6392Data), fileName, RecordList.Length); } catch (Exception exception) { - logger.LogDataLoadFailed(nameof(Iso6392Data), fileName, exception); + Log.LogDataLoadFailed(nameof(Iso6392Data), fileName, exception); throw; } } /// - /// Loads ISO 639-2 data from a JSON file asynchronously. + /// Creates an instance from a JSON file asynchronously. /// /// The path to the JSON file. - /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . /// Thrown when the file contains invalid data. /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. - public static Task LoadJsonAsync(string fileName, Options? options = null) => - LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); - [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + public static async Task FromJsonAsync(string fileName) { + ILogger logger = LogOptions.CreateLogger(); try { await using FileStream fileStream = new( @@ -148,7 +160,7 @@ private static async Task LoadJsonAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - internal static async Task SaveJsonAsync(string fileName, Iso6392Data iso6392) + internal async Task SaveJsonAsync(string fileName) { await using FileStream fileStream = new( fileName, @@ -159,13 +171,12 @@ internal static async Task SaveJsonAsync(string fileName, Iso6392Data iso6392) FileOptions.Asynchronous | FileOptions.SequentialScan ); await JsonSerializer - .SerializeAsync(fileStream, iso6392, LanguageJsonContext.Default.Iso6392Data) + .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Iso6392Data) .ConfigureAwait(false); } - internal static async Task GenCodeAsync(string fileName, Iso6392Data iso6392) + internal async Task SaveCodeAsync(string fileName) { - ArgumentNullException.ThrowIfNull(iso6392); using StreamWriter writer = new( new FileStream( fileName, @@ -205,7 +216,7 @@ await WriteLineAsync( await WriteLineAsync(" RecordList ="); await WriteLineAsync(" ["); - foreach (Iso6392Record record in iso6392.RecordList) + foreach (Iso6392Record record in RecordList) { await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -233,32 +244,21 @@ ConfiguredTaskAwaitable WriteLineAsync(string value) => writer.WriteLineAsync(value).ConfigureAwait(false); } - /// - /// Gets the collection of ISO 639-2 language records. - /// - public required ImmutableArray RecordList { get; init; } - /// /// Finds an ISO 639-2 language record by language code or description. /// /// /// Matching is case-insensitive and checks Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// Null or empty values return null. /// /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The first matching , or null when no match is found. - /// Thrown when is null. public Iso6392Record? Find(string languageTag, bool includeDescription) - { - ArgumentNullException.ThrowIfNull(languageTag); - return Find(languageTag, includeDescription, LogOptions.CreateLogger()); - } - - private Iso6392Record? Find(string languageTag, bool includeDescription, ILogger logger) { if (string.IsNullOrEmpty(languageTag)) { - logger.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); return null; } @@ -275,7 +275,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } @@ -286,7 +286,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } } @@ -301,7 +301,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } } @@ -316,7 +316,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } @@ -327,13 +327,13 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6392Data), languageTag, includeDescription); return record; } } // Not found - logger.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6392Data), languageTag, includeDescription); return null; } } diff --git a/LanguageTags/Iso6393Data.cs b/LanguageTags/Iso6393Data.cs index e8a25ad..e5abf4d 100644 --- a/LanguageTags/Iso6393Data.cs +++ b/LanguageTags/Iso6393Data.cs @@ -1,4 +1,5 @@ using System.Runtime.CompilerServices; +using System.Text.Json.Serialization; namespace ptr727.LanguageTags; @@ -11,23 +12,38 @@ public sealed partial class Iso6393Data "https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab"; internal const string DataFileName = "iso6393"; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; + + [JsonConstructor] + internal Iso6393Data() { } + + /// + /// Gets the collection of ISO 639-3 language records. + /// + [JsonInclude] + public ImmutableArray RecordList { get; internal set; } = []; + /// - /// Loads ISO 639-3 data from a file asynchronously. + /// Creates an instance from a data file asynchronously. /// /// The path to the data file. - /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options = null) => - LoadDataAsync(fileName, LogOptions.CreateLogger(options)); + public static async Task FromDataAsync(string fileName) + { + Iso6393Data iso6393Data = new(); + await iso6393Data.LoadDataAsync(fileName).ConfigureAwait(false); + return iso6393Data; + } [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadDataAsync(string fileName, ILogger logger) + private async Task LoadDataAsync(string fileName) { // https://iso639-3.sil.org/code_tables/download_tables // Id char(3) NOT NULL, The three-letter 639-3 identifier @@ -106,40 +122,36 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { - logger.LogDataLoadEmpty(nameof(Iso6393Data), fileName); + Log.LogDataLoadEmpty(nameof(Iso6393Data), fileName); throw new InvalidDataException($"No data found in ISO 639-3 file: {fileName}"); } - Iso6393Data data = new() { RecordList = [.. recordList] }; - logger.LogDataLoaded(nameof(Iso6393Data), fileName, data.RecordList.Length); - return data; + RecordList = [.. recordList]; + Log.LogDataLoaded(nameof(Iso6393Data), fileName, RecordList.Length); } catch (Exception exception) { - logger.LogDataLoadFailed(nameof(Iso6393Data), fileName, exception); + Log.LogDataLoadFailed(nameof(Iso6393Data), fileName, exception); throw; } } /// - /// Loads ISO 639-3 data from a JSON file asynchronously. + /// Creates an instance from a JSON file asynchronously. /// /// The path to the JSON file. - /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. /// Thrown when the file contains invalid data. - public static Task LoadJsonAsync(string fileName, Options? options = null) => - LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); - [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + public static async Task FromJsonAsync(string fileName) { + ILogger logger = LogOptions.CreateLogger(); try { await using FileStream fileStream = new( @@ -174,7 +186,7 @@ private static async Task LoadJsonAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - internal static async Task SaveJsonAsync(string fileName, Iso6393Data iso6393) + internal async Task SaveJsonAsync(string fileName) { await using FileStream fileStream = new( fileName, @@ -185,14 +197,12 @@ internal static async Task SaveJsonAsync(string fileName, Iso6393Data iso6393) FileOptions.Asynchronous | FileOptions.SequentialScan ); await JsonSerializer - .SerializeAsync(fileStream, iso6393, LanguageJsonContext.Default.Iso6393Data) + .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Iso6393Data) .ConfigureAwait(false); } - internal static async Task GenCodeAsync(string fileName, Iso6393Data iso6393) + internal async Task SaveCodeAsync(string fileName) { - ArgumentNullException.ThrowIfNull(iso6393); - using StreamWriter writer = new( new FileStream( fileName, @@ -232,7 +242,7 @@ await WriteLineAsync( await WriteLineAsync(" RecordList ="); await WriteLineAsync(" ["); - foreach (Iso6393Record record in iso6393.RecordList) + foreach (Iso6393Record record in RecordList) { await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -257,6 +267,9 @@ await WriteLineAsync( await WriteLineAsync( $" RefName = {LanguageSchema.GetCodeGenString(record.RefName)}," ); + await WriteLineAsync( + $" Comment = {LanguageSchema.GetCodeGenString(record.Comment)}," + ); await WriteLineAsync(" },"); } @@ -269,32 +282,21 @@ ConfiguredTaskAwaitable WriteLineAsync(string value) => writer.WriteLineAsync(value).ConfigureAwait(false); } - /// - /// Gets the collection of ISO 639-3 language records. - /// - public required ImmutableArray RecordList { get; init; } - /// /// Finds an ISO 639-3 language record by language code or description. /// /// /// Matching is case-insensitive and checks Id, Part 2/B, Part 2/T, Part 1, then (optionally) reference name. + /// Null or empty values return null. /// /// The language code or description to search for. /// If true, searches in the reference name field; otherwise, only searches language codes. /// The matching or null if not found. - /// Thrown when is null. public Iso6393Record? Find(string languageTag, bool includeDescription) - { - ArgumentNullException.ThrowIfNull(languageTag); - return Find(languageTag, includeDescription, LogOptions.CreateLogger()); - } - - private Iso6393Record? Find(string languageTag, bool includeDescription, ILogger logger) { if (string.IsNullOrEmpty(languageTag)) { - logger.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); return null; } @@ -311,7 +313,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } @@ -322,7 +324,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } @@ -333,7 +335,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } } @@ -348,7 +350,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } } @@ -363,7 +365,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } @@ -374,13 +376,13 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Iso6393Data), languageTag, includeDescription); return record; } } // Not found - logger.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Iso6393Data), languageTag, includeDescription); return null; } } diff --git a/LanguageTags/Iso6393DataGen.cs b/LanguageTags/Iso6393DataGen.cs index f9eae24..fe80433 100644 --- a/LanguageTags/Iso6393DataGen.cs +++ b/LanguageTags/Iso6393DataGen.cs @@ -24,6 +24,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghotuo", + Comment = null, }, new() { @@ -34,6 +35,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alumu-Tesu", + Comment = null, }, new() { @@ -44,6 +46,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ari", + Comment = null, }, new() { @@ -54,6 +57,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amal", + Comment = null, }, new() { @@ -64,6 +68,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arbëreshë Albanian", + Comment = null, }, new() { @@ -74,6 +79,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aranadan", + Comment = null, }, new() { @@ -84,6 +90,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambrak", + Comment = null, }, new() { @@ -94,6 +101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abu' Arapesh", + Comment = null, }, new() { @@ -104,6 +112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arifama-Miniafia", + Comment = null, }, new() { @@ -114,6 +123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ankave", + Comment = null, }, new() { @@ -124,6 +134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afade", + Comment = null, }, new() { @@ -134,6 +145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anambé", + Comment = null, }, new() { @@ -144,6 +156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Saharan Arabic", + Comment = null, }, new() { @@ -154,6 +167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pará Arára", + Comment = null, }, new() { @@ -164,6 +178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eastern Abnaki", + Comment = null, }, new() { @@ -174,6 +189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afar", + Comment = null, }, new() { @@ -184,6 +200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aasáx", + Comment = null, }, new() { @@ -194,6 +211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arvanitika Albanian", + Comment = null, }, new() { @@ -204,6 +222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abau", + Comment = null, }, new() { @@ -214,6 +233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Solong", + Comment = null, }, new() { @@ -224,6 +244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandobo Atas", + Comment = null, }, new() { @@ -234,6 +255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amarasi", + Comment = null, }, new() { @@ -244,6 +266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abé", + Comment = null, }, new() { @@ -254,6 +277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankon", + Comment = null, }, new() { @@ -264,6 +288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambala Ayta", + Comment = null, }, new() { @@ -274,6 +299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manide", + Comment = null, }, new() { @@ -284,6 +310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Abnaki", + Comment = null, }, new() { @@ -294,6 +321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abai Sungai", + Comment = null, }, new() { @@ -304,6 +332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abaga", + Comment = null, }, new() { @@ -314,6 +343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajiki Arabic", + Comment = null, }, new() { @@ -324,6 +354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abidji", + Comment = null, }, new() { @@ -334,6 +365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Bea", + Comment = null, }, new() { @@ -344,6 +376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abkhazian", + Comment = null, }, new() { @@ -354,6 +387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lampung Nyo", + Comment = null, }, new() { @@ -364,6 +398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abanyom", + Comment = null, }, new() { @@ -374,6 +409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abua", + Comment = null, }, new() { @@ -384,6 +420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abon", + Comment = null, }, new() { @@ -394,6 +431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abellen Ayta", + Comment = null, }, new() { @@ -404,6 +442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abaza", + Comment = null, }, new() { @@ -414,6 +453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abron", + Comment = null, }, new() { @@ -424,6 +464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambonese Malay", + Comment = null, }, new() { @@ -434,6 +475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambulas", + Comment = null, }, new() { @@ -444,6 +486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abure", + Comment = null, }, new() { @@ -454,6 +497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baharna Arabic", + Comment = null, }, new() { @@ -464,6 +508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pal", + Comment = null, }, new() { @@ -474,6 +519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inabaknon", + Comment = null, }, new() { @@ -484,6 +530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aneme Wake", + Comment = null, }, new() { @@ -494,6 +541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abui", + Comment = null, }, new() { @@ -504,6 +552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achagua", + Comment = null, }, new() { @@ -514,6 +563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Áncá", + Comment = null, }, new() { @@ -524,6 +574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gikyode", + Comment = null, }, new() { @@ -534,6 +585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achinese", + Comment = null, }, new() { @@ -544,6 +596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saint Lucian Creole French", + Comment = null, }, new() { @@ -554,6 +607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Acoli", + Comment = null, }, new() { @@ -564,6 +618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Cari", + Comment = null, }, new() { @@ -574,6 +629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Kora", + Comment = null, }, new() { @@ -584,6 +640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Akar-Bale", + Comment = null, }, new() { @@ -594,6 +651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesopotamian Arabic", + Comment = null, }, new() { @@ -604,6 +662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achang", + Comment = null, }, new() { @@ -614,6 +673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Acipa", + Comment = null, }, new() { @@ -624,6 +684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ta'izzi-Adeni Arabic", + Comment = null, }, new() { @@ -634,6 +695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achi", + Comment = null, }, new() { @@ -644,6 +706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Acroá", + Comment = null, }, new() { @@ -654,6 +717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achterhoeks", + Comment = null, }, new() { @@ -664,6 +728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achuar-Shiwiar", + Comment = null, }, new() { @@ -674,6 +739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Achumawi", + Comment = null, }, new() { @@ -684,6 +750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hijazi Arabic", + Comment = null, }, new() { @@ -694,6 +761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omani Arabic", + Comment = null, }, new() { @@ -704,6 +772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cypriot Arabic", + Comment = null, }, new() { @@ -714,6 +783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Acheron", + Comment = null, }, new() { @@ -724,6 +794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adangme", + Comment = null, }, new() { @@ -734,6 +805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atauran", + Comment = null, }, new() { @@ -744,6 +816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lidzonka", + Comment = null, }, new() { @@ -754,6 +827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adele", + Comment = null, }, new() { @@ -764,6 +838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhofari Arabic", + Comment = null, }, new() { @@ -774,6 +849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andegerebinha", + Comment = null, }, new() { @@ -784,6 +860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adhola", + Comment = null, }, new() { @@ -794,6 +871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adi", + Comment = null, }, new() { @@ -804,6 +882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adioukrou", + Comment = null, }, new() { @@ -814,6 +893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galo", + Comment = null, }, new() { @@ -824,6 +904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adang", + Comment = null, }, new() { @@ -834,6 +915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abu", + Comment = null, }, new() { @@ -844,6 +926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adangbe", + Comment = null, }, new() { @@ -854,6 +937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adonara", + Comment = null, }, new() { @@ -864,6 +948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adamorobe Sign Language", + Comment = null, }, new() { @@ -874,6 +959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adnyamathanha", + Comment = null, }, new() { @@ -884,6 +970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aduge", + Comment = null, }, new() { @@ -894,6 +981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amundava", + Comment = null, }, new() { @@ -904,6 +992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amdo Tibetan", + Comment = null, }, new() { @@ -914,6 +1003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adyghe", + Comment = null, }, new() { @@ -924,6 +1014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adzera", + Comment = null, }, new() { @@ -934,6 +1025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Areba", + Comment = null, }, new() { @@ -944,6 +1036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunisian Arabic", + Comment = null, }, new() { @@ -954,6 +1047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saidi Arabic", + Comment = null, }, new() { @@ -964,6 +1058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Argentine Sign Language", + Comment = null, }, new() { @@ -974,6 +1069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeast Pashai", + Comment = null, }, new() { @@ -984,6 +1080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haeke", + Comment = null, }, new() { @@ -994,6 +1091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambele", + Comment = null, }, new() { @@ -1004,6 +1102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arem", + Comment = null, }, new() { @@ -1014,6 +1113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Armenian Sign Language", + Comment = null, }, new() { @@ -1024,6 +1124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aer", + Comment = null, }, new() { @@ -1034,6 +1135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Arrernte", + Comment = null, }, new() { @@ -1044,6 +1146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Alsea", + Comment = null, }, new() { @@ -1054,6 +1157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akeu", + Comment = null, }, new() { @@ -1064,6 +1168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambakich", + Comment = null, }, new() { @@ -1074,6 +1179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amele", + Comment = null, }, new() { @@ -1084,6 +1190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aeka", + Comment = null, }, new() { @@ -1094,6 +1201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gulf Arabic", + Comment = null, }, new() { @@ -1104,6 +1212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andai", + Comment = null, }, new() { @@ -1114,6 +1223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Putukwam", + Comment = null, }, new() { @@ -1124,6 +1234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afghan Sign Language", + Comment = null, }, new() { @@ -1134,6 +1245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Afrihili", + Comment = null, }, new() { @@ -1144,6 +1256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akrukay", + Comment = null, }, new() { @@ -1154,6 +1267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanubae", + Comment = null, }, new() { @@ -1164,6 +1278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Defaka", + Comment = null, }, new() { @@ -1174,6 +1289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eloyi", + Comment = null, }, new() { @@ -1184,6 +1300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tapei", + Comment = null, }, new() { @@ -1194,6 +1311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afrikaans", + Comment = null, }, new() { @@ -1204,6 +1322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afro-Seminole Creole", + Comment = null, }, new() { @@ -1214,6 +1333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Afitti", + Comment = null, }, new() { @@ -1224,6 +1344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awutu", + Comment = null, }, new() { @@ -1234,6 +1355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obokuitai", + Comment = null, }, new() { @@ -1244,6 +1366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aguano", + Comment = null, }, new() { @@ -1254,6 +1377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Legbo", + Comment = null, }, new() { @@ -1264,6 +1388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agatu", + Comment = null, }, new() { @@ -1274,6 +1399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agarabi", + Comment = null, }, new() { @@ -1284,6 +1410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angal", + Comment = null, }, new() { @@ -1294,6 +1421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arguni", + Comment = null, }, new() { @@ -1304,6 +1432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angor", + Comment = null, }, new() { @@ -1314,6 +1443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngelima", + Comment = null, }, new() { @@ -1324,6 +1454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agariya", + Comment = null, }, new() { @@ -1334,6 +1465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Argobba", + Comment = null, }, new() { @@ -1344,6 +1476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isarog Agta", + Comment = null, }, new() { @@ -1354,6 +1487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fembe", + Comment = null, }, new() { @@ -1364,6 +1498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angaataha", + Comment = null, }, new() { @@ -1374,6 +1509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agutaynen", + Comment = null, }, new() { @@ -1384,6 +1520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tainae", + Comment = null, }, new() { @@ -1394,6 +1531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aghem", + Comment = null, }, new() { @@ -1404,6 +1542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aguaruna", + Comment = null, }, new() { @@ -1414,6 +1553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Esimbi", + Comment = null, }, new() { @@ -1424,6 +1564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Cagayan Agta", + Comment = null, }, new() { @@ -1434,6 +1575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aguacateco", + Comment = null, }, new() { @@ -1444,6 +1586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Remontado Dumagat", + Comment = null, }, new() { @@ -1454,6 +1597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kahua", + Comment = null, }, new() { @@ -1464,6 +1608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aghul", + Comment = null, }, new() { @@ -1474,6 +1619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Alta", + Comment = null, }, new() { @@ -1484,6 +1630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mt. Iriga Agta", + Comment = null, }, new() { @@ -1494,6 +1641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahanta", + Comment = null, }, new() { @@ -1504,6 +1652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Axamb", + Comment = null, }, new() { @@ -1514,6 +1663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qimant", + Comment = null, }, new() { @@ -1524,6 +1674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aghu", + Comment = null, }, new() { @@ -1534,6 +1685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiagbamrin Aizi", + Comment = null, }, new() { @@ -1544,6 +1696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akha", + Comment = null, }, new() { @@ -1554,6 +1707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igo", + Comment = null, }, new() { @@ -1564,6 +1718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mobumrin Aizi", + Comment = null, }, new() { @@ -1574,6 +1729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Àhàn", + Comment = null, }, new() { @@ -1584,6 +1740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ahom", + Comment = null, }, new() { @@ -1594,6 +1751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aproumu Aizi", + Comment = null, }, new() { @@ -1604,6 +1762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahirani", + Comment = null, }, new() { @@ -1614,6 +1773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashe", + Comment = null, }, new() { @@ -1624,6 +1784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahtena", + Comment = null, }, new() { @@ -1634,6 +1795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arosi", + Comment = null, }, new() { @@ -1644,6 +1806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ainu (China)", + Comment = null, }, new() { @@ -1654,6 +1817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ainbai", + Comment = null, }, new() { @@ -1664,6 +1828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Alngith", + Comment = null, }, new() { @@ -1674,6 +1839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amara", + Comment = null, }, new() { @@ -1684,6 +1850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agi", + Comment = null, }, new() { @@ -1694,6 +1861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Antigua and Barbuda Creole English", + Comment = null, }, new() { @@ -1704,6 +1872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ai-Cham", + Comment = null, }, new() { @@ -1714,6 +1883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assyrian Neo-Aramaic", + Comment = null, }, new() { @@ -1724,6 +1894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lishanid Noshan", + Comment = null, }, new() { @@ -1734,6 +1905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ake", + Comment = null, }, new() { @@ -1744,6 +1916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aimele", + Comment = null, }, new() { @@ -1754,6 +1927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aimol", + Comment = null, }, new() { @@ -1764,6 +1938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ainu (Japan)", + Comment = null, }, new() { @@ -1774,6 +1949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aiton", + Comment = null, }, new() { @@ -1784,6 +1960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burumakok", + Comment = null, }, new() { @@ -1794,6 +1971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aimaq", + Comment = null, }, new() { @@ -1804,6 +1982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Airoran", + Comment = null, }, new() { @@ -1814,6 +1993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arikem", + Comment = null, }, new() { @@ -1824,6 +2004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aari", + Comment = null, }, new() { @@ -1834,6 +2015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aighon", + Comment = null, }, new() { @@ -1844,6 +2026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ali", + Comment = null, }, new() { @@ -1854,6 +2037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aja (South Sudan)", + Comment = null, }, new() { @@ -1864,6 +2048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aja (Benin)", + Comment = null, }, new() { @@ -1874,6 +2059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ajië", + Comment = null, }, new() { @@ -1884,6 +2070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andajin", + Comment = null, }, new() { @@ -1894,6 +2081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Jewish Sign Language", + Comment = null, }, new() { @@ -1904,6 +2092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Moroccan Arabic", + Comment = null, }, new() { @@ -1914,6 +2103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ajawa", + Comment = null, }, new() { @@ -1924,6 +2114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amri Karbi", + Comment = null, }, new() { @@ -1934,6 +2125,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Akan", + Comment = null, }, new() { @@ -1944,6 +2136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Angkola", + Comment = null, }, new() { @@ -1954,6 +2147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpur", + Comment = null, }, new() { @@ -1964,6 +2158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukpet-Ehom", + Comment = null, }, new() { @@ -1974,6 +2169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akawaio", + Comment = null, }, new() { @@ -1984,6 +2180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akpa", + Comment = null, }, new() { @@ -1994,6 +2191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anakalangu", + Comment = null, }, new() { @@ -2004,6 +2202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angal Heneng", + Comment = null, }, new() { @@ -2014,6 +2213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aiome", + Comment = null, }, new() { @@ -2024,6 +2224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Jeru", + Comment = null, }, new() { @@ -2034,6 +2235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Akkadian", + Comment = null, }, new() { @@ -2044,6 +2246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aklanon", + Comment = null, }, new() { @@ -2054,6 +2257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Bo", + Comment = null, }, new() { @@ -2064,6 +2268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akurio", + Comment = null, }, new() { @@ -2074,6 +2279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siwu", + Comment = null, }, new() { @@ -2084,6 +2290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ak", + Comment = null, }, new() { @@ -2094,6 +2301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Araki", + Comment = null, }, new() { @@ -2104,6 +2312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akaselem", + Comment = null, }, new() { @@ -2114,6 +2323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akolet", + Comment = null, }, new() { @@ -2124,6 +2334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akum", + Comment = null, }, new() { @@ -2134,6 +2345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akhvakh", + Comment = null, }, new() { @@ -2144,6 +2356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akwa", + Comment = null, }, new() { @@ -2154,6 +2367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Kede", + Comment = null, }, new() { @@ -2164,6 +2378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aka-Kol", + Comment = null, }, new() { @@ -2174,6 +2389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alabama", + Comment = null, }, new() { @@ -2184,6 +2400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alago", + Comment = null, }, new() { @@ -2194,6 +2411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qawasqar", + Comment = null, }, new() { @@ -2204,6 +2422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alladian", + Comment = null, }, new() { @@ -2214,6 +2433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aleut", + Comment = null, }, new() { @@ -2224,6 +2444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alege", + Comment = null, }, new() { @@ -2234,6 +2455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alawa", + Comment = null, }, new() { @@ -2244,6 +2466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amaimon", + Comment = null, }, new() { @@ -2254,6 +2477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alangan", + Comment = null, }, new() { @@ -2264,6 +2488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alak", + Comment = null, }, new() { @@ -2274,6 +2499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Allar", + Comment = null, }, new() { @@ -2284,6 +2510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amblong", + Comment = null, }, new() { @@ -2294,6 +2521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gheg Albanian", + Comment = null, }, new() { @@ -2304,6 +2532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larike-Wakasihu", + Comment = null, }, new() { @@ -2314,6 +2543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alune", + Comment = null, }, new() { @@ -2324,6 +2554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algonquin", + Comment = null, }, new() { @@ -2334,6 +2565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alutor", + Comment = null, }, new() { @@ -2344,6 +2576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tosk Albanian", + Comment = null, }, new() { @@ -2354,6 +2587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Altai", + Comment = null, }, new() { @@ -2364,6 +2598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "'Are'are", + Comment = null, }, new() { @@ -2374,6 +2609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alaba-K’abeena", + Comment = null, }, new() { @@ -2384,6 +2620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amol", + Comment = null, }, new() { @@ -2394,6 +2631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alyawarr", + Comment = null, }, new() { @@ -2404,6 +2642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alur", + Comment = null, }, new() { @@ -2414,6 +2653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Amanayé", + Comment = null, }, new() { @@ -2424,6 +2664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambo", + Comment = null, }, new() { @@ -2434,6 +2675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amahuaca", + Comment = null, }, new() { @@ -2444,6 +2686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanesha'", + Comment = null, }, new() { @@ -2454,6 +2697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamer-Banna", + Comment = null, }, new() { @@ -2464,6 +2708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amurdak", + Comment = null, }, new() { @@ -2474,6 +2719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amharic", + Comment = null, }, new() { @@ -2484,6 +2730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amis", + Comment = null, }, new() { @@ -2494,6 +2741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amdang", + Comment = null, }, new() { @@ -2504,6 +2752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambai", + Comment = null, }, new() { @@ -2514,6 +2763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "War-Jaintia", + Comment = null, }, new() { @@ -2524,6 +2774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ama (Papua New Guinea)", + Comment = null, }, new() { @@ -2534,6 +2785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amanab", + Comment = null, }, new() { @@ -2544,6 +2796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amo", + Comment = null, }, new() { @@ -2554,6 +2807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alamblak", + Comment = null, }, new() { @@ -2564,6 +2818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amahai", + Comment = null, }, new() { @@ -2574,6 +2829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amarakaeri", + Comment = null, }, new() { @@ -2584,6 +2840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Amami-Oshima", + Comment = null, }, new() { @@ -2594,6 +2851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amto", + Comment = null, }, new() { @@ -2604,6 +2862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guerrero Amuzgo", + Comment = null, }, new() { @@ -2614,6 +2873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambelau", + Comment = null, }, new() { @@ -2624,6 +2884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Neo-Aramaic", + Comment = null, }, new() { @@ -2634,6 +2895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anmatyerre", + Comment = null, }, new() { @@ -2644,6 +2906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ami", + Comment = null, }, new() { @@ -2654,6 +2917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Atampaya", + Comment = null, }, new() { @@ -2664,6 +2928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Andaqui", + Comment = null, }, new() { @@ -2674,6 +2939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Andoa", + Comment = null, }, new() { @@ -2684,6 +2950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngas", + Comment = null, }, new() { @@ -2694,6 +2961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ansus", + Comment = null, }, new() { @@ -2704,6 +2972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xârâcùù", + Comment = null, }, new() { @@ -2714,6 +2983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Animere", + Comment = null, }, new() { @@ -2724,6 +2994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old English (ca. 450-1100)", + Comment = null, }, new() { @@ -2734,6 +3005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nend", + Comment = null, }, new() { @@ -2744,6 +3016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andi", + Comment = null, }, new() { @@ -2754,6 +3027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anor", + Comment = null, }, new() { @@ -2764,6 +3038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goemai", + Comment = null, }, new() { @@ -2774,6 +3049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anu-Hkongso Chin", + Comment = null, }, new() { @@ -2784,6 +3060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anal", + Comment = null, }, new() { @@ -2794,6 +3071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obolo", + Comment = null, }, new() { @@ -2804,6 +3082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andoque", + Comment = null, }, new() { @@ -2814,6 +3093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angika", + Comment = null, }, new() { @@ -2824,6 +3104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jarawa (India)", + Comment = null, }, new() { @@ -2834,6 +3115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andh", + Comment = null, }, new() { @@ -2844,6 +3126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Anserma", + Comment = null, }, new() { @@ -2854,6 +3137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Antakarinya", + Comment = null, }, new() { @@ -2864,6 +3148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anuak", + Comment = null, }, new() { @@ -2874,6 +3159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Denya", + Comment = null, }, new() { @@ -2884,6 +3170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anaang", + Comment = null, }, new() { @@ -2894,6 +3181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andra-Hus", + Comment = null, }, new() { @@ -2904,6 +3192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anyin", + Comment = null, }, new() { @@ -2914,6 +3203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anem", + Comment = null, }, new() { @@ -2924,6 +3214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angolar", + Comment = null, }, new() { @@ -2934,6 +3225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abom", + Comment = null, }, new() { @@ -2944,6 +3236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pemon", + Comment = null, }, new() { @@ -2954,6 +3247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andarum", + Comment = null, }, new() { @@ -2964,6 +3258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angal Enen", + Comment = null, }, new() { @@ -2974,6 +3269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bragat", + Comment = null, }, new() { @@ -2984,6 +3280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angoram", + Comment = null, }, new() { @@ -2994,6 +3291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anindilyakwa", + Comment = null, }, new() { @@ -3004,6 +3302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mufian", + Comment = null, }, new() { @@ -3014,6 +3313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arhö", + Comment = null, }, new() { @@ -3024,6 +3324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alor", + Comment = null, }, new() { @@ -3034,6 +3335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ömie", + Comment = null, }, new() { @@ -3044,6 +3346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumbita Arapesh", + Comment = null, }, new() { @@ -3054,6 +3357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aore", + Comment = null, }, new() { @@ -3064,6 +3368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taikat", + Comment = null, }, new() { @@ -3074,6 +3379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atong (India)", + Comment = null, }, new() { @@ -3084,6 +3390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "A'ou", + Comment = null, }, new() { @@ -3094,6 +3401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atorada", + Comment = null, }, new() { @@ -3104,6 +3412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uab Meto", + Comment = null, }, new() { @@ -3114,6 +3423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa'a", + Comment = null, }, new() { @@ -3124,6 +3434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Levantine Arabic", + Comment = null, }, new() { @@ -3134,6 +3445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sudanese Arabic", + Comment = null, }, new() { @@ -3144,6 +3456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukiyip", + Comment = null, }, new() { @@ -3154,6 +3467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahanan Agta", + Comment = null, }, new() { @@ -3164,6 +3478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ampanang", + Comment = null, }, new() { @@ -3174,6 +3489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Athpariya", + Comment = null, }, new() { @@ -3184,6 +3500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apiaká", + Comment = null, }, new() { @@ -3194,6 +3511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jicarilla Apache", + Comment = null, }, new() { @@ -3204,6 +3522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiowa Apache", + Comment = null, }, new() { @@ -3214,6 +3533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lipan Apache", + Comment = null, }, new() { @@ -3224,6 +3544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mescalero-Chiricahua Apache", + Comment = null, }, new() { @@ -3234,6 +3555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apinayé", + Comment = null, }, new() { @@ -3244,6 +3566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambul", + Comment = null, }, new() { @@ -3254,6 +3577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apma", + Comment = null, }, new() { @@ -3264,6 +3588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "A-Pucikwar", + Comment = null, }, new() { @@ -3274,6 +3599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arop-Lokep", + Comment = null, }, new() { @@ -3284,6 +3610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arop-Sissano", + Comment = null, }, new() { @@ -3294,6 +3621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apatani", + Comment = null, }, new() { @@ -3304,6 +3632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apurinã", + Comment = null, }, new() { @@ -3314,6 +3643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Alapmunte", + Comment = null, }, new() { @@ -3324,6 +3654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Apache", + Comment = null, }, new() { @@ -3334,6 +3665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aputai", + Comment = null, }, new() { @@ -3344,6 +3676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apalaí", + Comment = null, }, new() { @@ -3354,6 +3687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Safeyoka", + Comment = null, }, new() { @@ -3364,6 +3698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Archi", + Comment = null, }, new() { @@ -3374,6 +3709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ampari Dogon", + Comment = null, }, new() { @@ -3384,6 +3720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arigidi", + Comment = null, }, new() { @@ -3394,6 +3731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aninka", + Comment = null, }, new() { @@ -3404,6 +3742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atohwaim", + Comment = null, }, new() { @@ -3414,6 +3753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Alta", + Comment = null, }, new() { @@ -3424,6 +3764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Atakapa", + Comment = null, }, new() { @@ -3434,6 +3775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arhâ", + Comment = null, }, new() { @@ -3444,6 +3786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angaité", + Comment = null, }, new() { @@ -3454,6 +3797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akuntsu", + Comment = null, }, new() { @@ -3464,6 +3808,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Arabic", + Comment = null, }, new() { @@ -3474,6 +3819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Arabic", + Comment = null, }, new() { @@ -3484,6 +3830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Official Aramaic (700-300 BCE)", + Comment = null, }, new() { @@ -3494,6 +3841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arabana", + Comment = null, }, new() { @@ -3504,6 +3852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Arrarnta", + Comment = null, }, new() { @@ -3514,6 +3863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aragonese", + Comment = null, }, new() { @@ -3524,6 +3874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arhuaco", + Comment = null, }, new() { @@ -3534,6 +3885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arikara", + Comment = null, }, new() { @@ -3544,6 +3896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arapaso", + Comment = null, }, new() { @@ -3554,6 +3907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arikapú", + Comment = null, }, new() { @@ -3564,6 +3918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arabela", + Comment = null, }, new() { @@ -3574,6 +3929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapudungun", + Comment = null, }, new() { @@ -3584,6 +3940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Araona", + Comment = null, }, new() { @@ -3594,6 +3951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arapaho", + Comment = null, }, new() { @@ -3604,6 +3962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Arabic", + Comment = null, }, new() { @@ -3614,6 +3973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karo (Brazil)", + Comment = null, }, new() { @@ -3624,6 +3984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Najdi Arabic", + Comment = null, }, new() { @@ -3634,6 +3995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aruá (Amazonas State)", + Comment = null, }, new() { @@ -3644,6 +4006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arbore", + Comment = null, }, new() { @@ -3654,6 +4017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arawak", + Comment = null, }, new() { @@ -3664,6 +4028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruá (Rodonia State)", + Comment = null, }, new() { @@ -3674,6 +4039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moroccan Arabic", + Comment = null, }, new() { @@ -3684,6 +4050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Egyptian Arabic", + Comment = null, }, new() { @@ -3694,6 +4061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asu (Tanzania)", + Comment = null, }, new() { @@ -3704,6 +4072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assiniboine", + Comment = null, }, new() { @@ -3714,6 +4083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Casuarina Coast Asmat", + Comment = null, }, new() { @@ -3724,6 +4094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "American Sign Language", + Comment = null, }, new() { @@ -3734,6 +4105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Auslan", + Comment = null, }, new() { @@ -3744,6 +4116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cishingini", + Comment = null, }, new() { @@ -3754,6 +4127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Abishira", + Comment = null, }, new() { @@ -3764,6 +4138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buruwai", + Comment = null, }, new() { @@ -3774,6 +4149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sari", + Comment = null, }, new() { @@ -3784,6 +4160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashkun", + Comment = null, }, new() { @@ -3794,6 +4171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asilulu", + Comment = null, }, new() { @@ -3804,6 +4182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assamese", + Comment = null, }, new() { @@ -3814,6 +4193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xingú Asuriní", + Comment = null, }, new() { @@ -3824,6 +4204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dano", + Comment = null, }, new() { @@ -3834,6 +4215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Algerian Sign Language", + Comment = null, }, new() { @@ -3844,6 +4226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Austrian Sign Language", + Comment = null, }, new() { @@ -3854,6 +4237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asuri", + Comment = null, }, new() { @@ -3864,6 +4248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipulo", + Comment = null, }, new() { @@ -3874,6 +4259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asturian", + Comment = null, }, new() { @@ -3884,6 +4270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tocantins Asurini", + Comment = null, }, new() { @@ -3894,6 +4281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asoa", + Comment = null, }, new() { @@ -3904,6 +4292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Australian Aborigines Sign Language", + Comment = null, }, new() { @@ -3914,6 +4303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muratayak", + Comment = null, }, new() { @@ -3924,6 +4314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaosakor Asmat", + Comment = null, }, new() { @@ -3934,6 +4325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "As", + Comment = null, }, new() { @@ -3944,6 +4336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pele-Ata", + Comment = null, }, new() { @@ -3954,6 +4347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaiwa", + Comment = null, }, new() { @@ -3964,6 +4358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Atsahuaca", + Comment = null, }, new() { @@ -3974,6 +4369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ata Manobo", + Comment = null, }, new() { @@ -3984,6 +4380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atemble", + Comment = null, }, new() { @@ -3994,6 +4391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ivbie North-Okpela-Arhe", + Comment = null, }, new() { @@ -4004,6 +4402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Attié", + Comment = null, }, new() { @@ -4014,6 +4413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atikamekw", + Comment = null, }, new() { @@ -4024,6 +4424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ati", + Comment = null, }, new() { @@ -4034,6 +4435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mt. Iraya Agta", + Comment = null, }, new() { @@ -4044,6 +4446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ata", + Comment = null, }, new() { @@ -4054,6 +4457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashtiani", + Comment = null, }, new() { @@ -4064,6 +4468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atong (Cameroon)", + Comment = null, }, new() { @@ -4074,6 +4479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pudtol Atta", + Comment = null, }, new() { @@ -4084,6 +4490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aralle-Tabulahan", + Comment = null, }, new() { @@ -4094,6 +4501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waimiri-Atroari", + Comment = null, }, new() { @@ -4104,6 +4512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gros Ventre", + Comment = null, }, new() { @@ -4114,6 +4523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pamplona Atta", + Comment = null, }, new() { @@ -4124,6 +4534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reel", + Comment = null, }, new() { @@ -4134,6 +4545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Altai", + Comment = null, }, new() { @@ -4144,6 +4556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atsugewi", + Comment = null, }, new() { @@ -4154,6 +4567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arutani", + Comment = null, }, new() { @@ -4164,6 +4578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aneityum", + Comment = null, }, new() { @@ -4174,6 +4589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arta", + Comment = null, }, new() { @@ -4184,6 +4600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asumboa", + Comment = null, }, new() { @@ -4194,6 +4611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alugu", + Comment = null, }, new() { @@ -4204,6 +4622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waorani", + Comment = null, }, new() { @@ -4214,6 +4633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anuta", + Comment = null, }, new() { @@ -4224,6 +4644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aguna", + Comment = null, }, new() { @@ -4234,6 +4655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aushi", + Comment = null, }, new() { @@ -4244,6 +4666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anuki", + Comment = null, }, new() { @@ -4254,6 +4677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awjilah", + Comment = null, }, new() { @@ -4264,6 +4688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Heyo", + Comment = null, }, new() { @@ -4274,6 +4699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aulua", + Comment = null, }, new() { @@ -4284,6 +4710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asu (Nigeria)", + Comment = null, }, new() { @@ -4294,6 +4721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molmo One", + Comment = null, }, new() { @@ -4304,6 +4732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Auyokawa", + Comment = null, }, new() { @@ -4314,6 +4743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makayam", + Comment = null, }, new() { @@ -4324,6 +4754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anus", + Comment = null, }, new() { @@ -4334,6 +4765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruek", + Comment = null, }, new() { @@ -4344,6 +4776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Austral", + Comment = null, }, new() { @@ -4354,6 +4787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Auye", + Comment = null, }, new() { @@ -4364,6 +4798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awyi", + Comment = null, }, new() { @@ -4374,6 +4809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aurá", + Comment = null, }, new() { @@ -4384,6 +4820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awiyaana", + Comment = null, }, new() { @@ -4394,6 +4831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uzbeki Arabic", + Comment = null, }, new() { @@ -4404,6 +4842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avaric", + Comment = null, }, new() { @@ -4414,6 +4853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avau", + Comment = null, }, new() { @@ -4424,6 +4864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alviri-Vidari", + Comment = null, }, new() { @@ -4434,6 +4875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Avestan", + Comment = null, }, new() { @@ -4444,6 +4886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avikam", + Comment = null, }, new() { @@ -4454,6 +4897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Kotava", + Comment = null, }, new() { @@ -4464,6 +4908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Egyptian Bedawi Arabic", + Comment = null, }, new() { @@ -4474,6 +4919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Angkamuthi", + Comment = null, }, new() { @@ -4484,6 +4930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avatime", + Comment = null, }, new() { @@ -4494,6 +4941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Agavotaguerra", + Comment = null, }, new() { @@ -4504,6 +4952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aushiri", + Comment = null, }, new() { @@ -4514,6 +4963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Au", + Comment = null, }, new() { @@ -4524,6 +4974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avokaya", + Comment = null, }, new() { @@ -4534,6 +4985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Avá-Canoeiro", + Comment = null, }, new() { @@ -4544,6 +4996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awadhi", + Comment = null, }, new() { @@ -4554,6 +5007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awa (Papua New Guinea)", + Comment = null, }, new() { @@ -4564,6 +5018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cicipu", + Comment = null, }, new() { @@ -4574,6 +5029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awetí", + Comment = null, }, new() { @@ -4584,6 +5040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Anguthimri", + Comment = null, }, new() { @@ -4594,6 +5051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awbono", + Comment = null, }, new() { @@ -4604,6 +5062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aekyom", + Comment = null, }, new() { @@ -4614,6 +5073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Awabakal", + Comment = null, }, new() { @@ -4624,6 +5084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arawum", + Comment = null, }, new() { @@ -4634,6 +5095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awngi", + Comment = null, }, new() { @@ -4644,6 +5106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awak", + Comment = null, }, new() { @@ -4654,6 +5117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awera", + Comment = null, }, new() { @@ -4664,6 +5128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Awyu", + Comment = null, }, new() { @@ -4674,6 +5139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Araweté", + Comment = null, }, new() { @@ -4684,6 +5150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Awyu", + Comment = null, }, new() { @@ -4694,6 +5161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jair Awyu", + Comment = null, }, new() { @@ -4704,6 +5172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awun", + Comment = null, }, new() { @@ -4714,6 +5183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awara", + Comment = null, }, new() { @@ -4724,6 +5194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Edera Awyu", + Comment = null, }, new() { @@ -4734,6 +5205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Abipon", + Comment = null, }, new() { @@ -4744,6 +5216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ayerrerenge", + Comment = null, }, new() { @@ -4754,6 +5227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mato Grosso Arára", + Comment = null, }, new() { @@ -4764,6 +5238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaka (Central African Republic)", + Comment = null, }, new() { @@ -4774,6 +5249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Southern Aranda", + Comment = null, }, new() { @@ -4784,6 +5260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Armenian", + Comment = null, }, new() { @@ -4794,6 +5271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xârâgurè", + Comment = null, }, new() { @@ -4804,6 +5282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awar", + Comment = null, }, new() { @@ -4814,6 +5293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayizo Gbe", + Comment = null, }, new() { @@ -4824,6 +5304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Aymara", + Comment = null, }, new() { @@ -4834,6 +5315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ayabadhu", + Comment = null, }, new() { @@ -4844,6 +5326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayere", + Comment = null, }, new() { @@ -4854,6 +5337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ginyanga", + Comment = null, }, new() { @@ -4864,6 +5348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadrami Arabic", + Comment = null, }, new() { @@ -4874,6 +5359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leyigha", + Comment = null, }, new() { @@ -4884,6 +5370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akuku", + Comment = null, }, new() { @@ -4894,6 +5381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libyan Arabic", + Comment = null, }, new() { @@ -4904,6 +5392,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Aymara", + Comment = null, }, new() { @@ -4914,6 +5403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanaani Arabic", + Comment = null, }, new() { @@ -4924,6 +5414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayoreo", + Comment = null, }, new() { @@ -4934,6 +5425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Mesopotamian Arabic", + Comment = null, }, new() { @@ -4944,6 +5436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayi (Papua New Guinea)", + Comment = null, }, new() { @@ -4954,6 +5447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Aymara", + Comment = null, }, new() { @@ -4964,6 +5458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sorsogon Ayta", + Comment = null, }, new() { @@ -4974,6 +5469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magbukun Ayta", + Comment = null, }, new() { @@ -4984,6 +5480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayu", + Comment = null, }, new() { @@ -4994,6 +5491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mai Brat", + Comment = null, }, new() { @@ -5004,6 +5502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Azha", + Comment = null, }, new() { @@ -5014,6 +5513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Azerbaijani", + Comment = null, }, new() { @@ -5024,6 +5524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Durango Nahuatl", + Comment = null, }, new() { @@ -5034,6 +5535,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Azerbaijani", + Comment = null, }, new() { @@ -5044,6 +5546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Pedro Amuzgos Amuzgo", + Comment = null, }, new() { @@ -5054,6 +5557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Azerbaijani", + Comment = null, }, new() { @@ -5064,6 +5568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipalapa Amuzgo", + Comment = null, }, new() { @@ -5074,6 +5579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Durango Nahuatl", + Comment = null, }, new() { @@ -5084,6 +5590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awing", + Comment = null, }, new() { @@ -5094,6 +5601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faire Atta", + Comment = null, }, new() { @@ -5104,6 +5612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Puebla Nahuatl", + Comment = null, }, new() { @@ -5114,6 +5623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babatana", + Comment = null, }, new() { @@ -5124,6 +5634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bainouk-Gunyuño", + Comment = null, }, new() { @@ -5134,6 +5645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badui", + Comment = null, }, new() { @@ -5144,6 +5656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baré", + Comment = null, }, new() { @@ -5154,6 +5667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nubaca", + Comment = null, }, new() { @@ -5164,6 +5678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuki", + Comment = null, }, new() { @@ -5174,6 +5689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahamas Creole English", + Comment = null, }, new() { @@ -5184,6 +5700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barakai", + Comment = null, }, new() { @@ -5194,6 +5711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bashkir", + Comment = null, }, new() { @@ -5204,6 +5722,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Baluchi", + Comment = null, }, new() { @@ -5214,6 +5733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambara", + Comment = null, }, new() { @@ -5224,6 +5744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balinese", + Comment = null, }, new() { @@ -5234,6 +5755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waimaha", + Comment = null, }, new() { @@ -5244,6 +5766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantawa", + Comment = null, }, new() { @@ -5254,6 +5777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bavarian", + Comment = null, }, new() { @@ -5264,6 +5788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basa (Cameroon)", + Comment = null, }, new() { @@ -5274,6 +5799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bada (Nigeria)", + Comment = null, }, new() { @@ -5284,6 +5810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vengo", + Comment = null, }, new() { @@ -5294,6 +5821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambili-Bambui", + Comment = null, }, new() { @@ -5304,6 +5832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamun", + Comment = null, }, new() { @@ -5314,6 +5843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batuley", + Comment = null, }, new() { @@ -5324,6 +5854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baatonum", + Comment = null, }, new() { @@ -5334,6 +5865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barai", + Comment = null, }, new() { @@ -5344,6 +5876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Toba", + Comment = null, }, new() { @@ -5354,6 +5887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bau", + Comment = null, }, new() { @@ -5364,6 +5898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangba", + Comment = null, }, new() { @@ -5374,6 +5909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baibai", + Comment = null, }, new() { @@ -5384,6 +5920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barama", + Comment = null, }, new() { @@ -5394,6 +5931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bugan", + Comment = null, }, new() { @@ -5404,6 +5942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barombi", + Comment = null, }, new() { @@ -5414,6 +5953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghomálá'", + Comment = null, }, new() { @@ -5424,6 +5964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babanki", + Comment = null, }, new() { @@ -5434,6 +5975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bats", + Comment = null, }, new() { @@ -5444,6 +5986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babango", + Comment = null, }, new() { @@ -5454,6 +5997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uneapa", + Comment = null, }, new() { @@ -5464,6 +6008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Bobo Madaré", + Comment = null, }, new() { @@ -5474,6 +6019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Central Banda", + Comment = null, }, new() { @@ -5484,6 +6030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamali", + Comment = null, }, new() { @@ -5494,6 +6041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Girawa", + Comment = null, }, new() { @@ -5504,6 +6052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakpinka", + Comment = null, }, new() { @@ -5514,6 +6063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mburku", + Comment = null, }, new() { @@ -5524,6 +6074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulung (Nigeria)", + Comment = null, }, new() { @@ -5534,6 +6085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karnai", + Comment = null, }, new() { @@ -5544,6 +6096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baba", + Comment = null, }, new() { @@ -5554,6 +6107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bubia", + Comment = null, }, new() { @@ -5564,6 +6118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Befang", + Comment = null, }, new() { @@ -5574,6 +6129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Bai", + Comment = null, }, new() { @@ -5584,6 +6140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bainouk-Samik", + Comment = null, }, new() { @@ -5594,6 +6151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Balochi", + Comment = null, }, new() { @@ -5604,6 +6162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Babar", + Comment = null, }, new() { @@ -5614,6 +6173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamenyam", + Comment = null, }, new() { @@ -5624,6 +6184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamu", + Comment = null, }, new() { @@ -5634,6 +6195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Pokur", + Comment = null, }, new() { @@ -5644,6 +6206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bariai", + Comment = null, }, new() { @@ -5654,6 +6217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baoulé", + Comment = null, }, new() { @@ -5664,6 +6228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bardi", + Comment = null, }, new() { @@ -5674,6 +6239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunuba", + Comment = null, }, new() { @@ -5684,6 +6250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Bikol", + Comment = null, }, new() { @@ -5694,6 +6261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bannoni", + Comment = null, }, new() { @@ -5704,6 +6272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bali (Nigeria)", + Comment = null, }, new() { @@ -5714,6 +6283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaluli", + Comment = null, }, new() { @@ -5724,6 +6294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bali (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -5734,6 +6305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bench", + Comment = null, }, new() { @@ -5744,6 +6316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babine", + Comment = null, }, new() { @@ -5754,6 +6327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kohumono", + Comment = null, }, new() { @@ -5764,6 +6338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bendi", + Comment = null, }, new() { @@ -5774,6 +6349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awad Bing", + Comment = null, }, new() { @@ -5784,6 +6360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shoo-Minda-Nye", + Comment = null, }, new() { @@ -5794,6 +6371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bana", + Comment = null, }, new() { @@ -5804,6 +6382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bacama", + Comment = null, }, new() { @@ -5814,6 +6393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bainouk-Gunyaamolo", + Comment = null, }, new() { @@ -5824,6 +6404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bayot", + Comment = null, }, new() { @@ -5834,6 +6415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basap", + Comment = null, }, new() { @@ -5844,6 +6426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Baudó", + Comment = null, }, new() { @@ -5854,6 +6437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunama", + Comment = null, }, new() { @@ -5864,6 +6448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bade", + Comment = null, }, new() { @@ -5874,6 +6459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biage", + Comment = null, }, new() { @@ -5884,6 +6470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonggi", + Comment = null, }, new() { @@ -5894,6 +6481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baka (South Sudan)", + Comment = null, }, new() { @@ -5904,6 +6492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burun", + Comment = null, }, new() { @@ -5914,6 +6503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bai (South Sudan)", + Comment = null, }, new() { @@ -5924,6 +6514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budukh", + Comment = null, }, new() { @@ -5934,6 +6525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian Bajau", + Comment = null, }, new() { @@ -5944,6 +6536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buduma", + Comment = null, }, new() { @@ -5954,6 +6547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baldemu", + Comment = null, }, new() { @@ -5964,6 +6558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morom", + Comment = null, }, new() { @@ -5974,6 +6569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bende", + Comment = null, }, new() { @@ -5984,6 +6580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahnar", + Comment = null, }, new() { @@ -5994,6 +6591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Coast Bajau", + Comment = null, }, new() { @@ -6004,6 +6602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burunge", + Comment = null, }, new() { @@ -6014,6 +6613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokoto", + Comment = null, }, new() { @@ -6024,6 +6624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroko", + Comment = null, }, new() { @@ -6034,6 +6635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo Parja", + Comment = null, }, new() { @@ -6044,6 +6646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baham", + Comment = null, }, new() { @@ -6054,6 +6657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budong-Budong", + Comment = null, }, new() { @@ -6064,6 +6668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bandjalang", + Comment = null, }, new() { @@ -6074,6 +6679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badeshi", + Comment = null, }, new() { @@ -6084,6 +6690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beaver", + Comment = null, }, new() { @@ -6094,6 +6701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bebele", + Comment = null, }, new() { @@ -6104,6 +6712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iceve-Maci", + Comment = null, }, new() { @@ -6114,6 +6723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bedoanas", + Comment = null, }, new() { @@ -6124,6 +6734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Byangsi", + Comment = null, }, new() { @@ -6134,6 +6745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benabena", + Comment = null, }, new() { @@ -6144,6 +6756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belait", + Comment = null, }, new() { @@ -6154,6 +6767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biali", + Comment = null, }, new() { @@ -6164,6 +6778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bekati'", + Comment = null, }, new() { @@ -6174,6 +6789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beja", + Comment = null, }, new() { @@ -6184,6 +6800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bebeli", + Comment = null, }, new() { @@ -6194,6 +6811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belarusian", + Comment = null, }, new() { @@ -6204,6 +6822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bemba (Zambia)", + Comment = null, }, new() { @@ -6214,6 +6833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bengali", + Comment = null, }, new() { @@ -6224,6 +6844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beami", + Comment = null, }, new() { @@ -6234,6 +6855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Besoa", + Comment = null, }, new() { @@ -6244,6 +6866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beembe", + Comment = null, }, new() { @@ -6254,6 +6877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Besme", + Comment = null, }, new() { @@ -6264,6 +6888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guiberoua Béte", + Comment = null, }, new() { @@ -6274,6 +6899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blagar", + Comment = null, }, new() { @@ -6284,6 +6910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daloa Bété", + Comment = null, }, new() { @@ -6294,6 +6921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Betawi", + Comment = null, }, new() { @@ -6304,6 +6932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jur Modo", + Comment = null, }, new() { @@ -6314,6 +6943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beli (Papua New Guinea)", + Comment = null, }, new() { @@ -6324,6 +6954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bena (Tanzania)", + Comment = null, }, new() { @@ -6334,6 +6965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bari", + Comment = null, }, new() { @@ -6344,6 +6976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pauri Bareli", + Comment = null, }, new() { @@ -6354,6 +6987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panyi Bai", + Comment = null, }, new() { @@ -6364,6 +6998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafut", + Comment = null, }, new() { @@ -6374,6 +7009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Betaf", + Comment = null, }, new() { @@ -6384,6 +7020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bofi", + Comment = null, }, new() { @@ -6394,6 +7031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busang Kayan", + Comment = null, }, new() { @@ -6404,6 +7042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blafe", + Comment = null, }, new() { @@ -6414,6 +7053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "British Sign Language", + Comment = null, }, new() { @@ -6424,6 +7064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafanji", + Comment = null, }, new() { @@ -6434,6 +7075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ban Khor Sign Language", + Comment = null, }, new() { @@ -6444,6 +7086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Ndélé", + Comment = null, }, new() { @@ -6454,6 +7097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mmen", + Comment = null, }, new() { @@ -6464,6 +7108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunak", + Comment = null, }, new() { @@ -6474,6 +7119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malba Birifor", + Comment = null, }, new() { @@ -6484,6 +7130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beba", + Comment = null, }, new() { @@ -6494,6 +7141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badaga", + Comment = null, }, new() { @@ -6504,6 +7152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bazigar", + Comment = null, }, new() { @@ -6514,6 +7163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Bai", + Comment = null, }, new() { @@ -6524,6 +7174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balti", + Comment = null, }, new() { @@ -6534,6 +7185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gahri", + Comment = null, }, new() { @@ -6544,6 +7196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondo", + Comment = null, }, new() { @@ -6554,6 +7207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantayanon", + Comment = null, }, new() { @@ -6564,6 +7218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagheli", + Comment = null, }, new() { @@ -6574,6 +7229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahasu Pahari", + Comment = null, }, new() { @@ -6584,6 +7240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwamhi-Wuri", + Comment = null, }, new() { @@ -6594,6 +7251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bobongko", + Comment = null, }, new() { @@ -6604,6 +7262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haryanvi", + Comment = null, }, new() { @@ -6614,6 +7273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rathwi Bareli", + Comment = null, }, new() { @@ -6624,6 +7284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauria", + Comment = null, }, new() { @@ -6634,6 +7295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangandu", + Comment = null, }, new() { @@ -6644,6 +7306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bugun", + Comment = null, }, new() { @@ -6654,6 +7317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giangan", + Comment = null, }, new() { @@ -6664,6 +7328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangolan", + Comment = null, }, new() { @@ -6674,6 +7339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bit", + Comment = null, }, new() { @@ -6684,6 +7350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo (Laos)", + Comment = null, }, new() { @@ -6694,6 +7361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Balochi", + Comment = null, }, new() { @@ -6704,6 +7372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Koga", + Comment = null, }, new() { @@ -6714,6 +7383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Balochi", + Comment = null, }, new() { @@ -6724,6 +7394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagri", + Comment = null, }, new() { @@ -6734,6 +7405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bawm Chin", + Comment = null, }, new() { @@ -6744,6 +7416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagabawa", + Comment = null, }, new() { @@ -6754,6 +7427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bughotu", + Comment = null, }, new() { @@ -6764,6 +7438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbongno", + Comment = null, }, new() { @@ -6774,6 +7449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warkay-Bipim", + Comment = null, }, new() { @@ -6784,6 +7460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhatri", + Comment = null, }, new() { @@ -6794,6 +7471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balkan Gagauz Turkish", + Comment = null, }, new() { @@ -6804,6 +7482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benggoi", + Comment = null, }, new() { @@ -6814,6 +7493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banggai", + Comment = null, }, new() { @@ -6824,6 +7504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bharia", + Comment = null, }, new() { @@ -6834,6 +7515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhili", + Comment = null, }, new() { @@ -6844,6 +7526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biga", + Comment = null, }, new() { @@ -6854,6 +7537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhadrawahi", + Comment = null, }, new() { @@ -6864,6 +7548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhaya", + Comment = null, }, new() { @@ -6874,6 +7559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odiai", + Comment = null, }, new() { @@ -6884,6 +7570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binandere", + Comment = null, }, new() { @@ -6894,6 +7581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukharic", + Comment = null, }, new() { @@ -6904,6 +7592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhilali", + Comment = null, }, new() { @@ -6914,6 +7603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahing", + Comment = null, }, new() { @@ -6924,6 +7614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bimin", + Comment = null, }, new() { @@ -6934,6 +7625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bathari", + Comment = null, }, new() { @@ -6944,6 +7636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bohtan Neo-Aramaic", + Comment = null, }, new() { @@ -6954,6 +7647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhojpuri", + Comment = null, }, new() { @@ -6964,6 +7658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bima", + Comment = null, }, new() { @@ -6974,6 +7669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukang Besi South", + Comment = null, }, new() { @@ -6984,6 +7680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bara Malagasy", + Comment = null, }, new() { @@ -6994,6 +7691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buwal", + Comment = null, }, new() { @@ -7004,6 +7702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhattiyali", + Comment = null, }, new() { @@ -7014,6 +7713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhunjia", + Comment = null, }, new() { @@ -7024,6 +7724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahau", + Comment = null, }, new() { @@ -7034,6 +7735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biak", + Comment = null, }, new() { @@ -7044,6 +7746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhalay", + Comment = null, }, new() { @@ -7054,6 +7757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhele", + Comment = null, }, new() { @@ -7064,6 +7768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bada (Indonesia)", + Comment = null, }, new() { @@ -7074,6 +7779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badimaya", + Comment = null, }, new() { @@ -7084,6 +7790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bissa", + Comment = null, }, new() { @@ -7094,6 +7801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bidiyo", + Comment = null, }, new() { @@ -7104,6 +7812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bepour", + Comment = null, }, new() { @@ -7114,6 +7823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biafada", + Comment = null, }, new() { @@ -7124,6 +7834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biangai", + Comment = null, }, new() { @@ -7134,6 +7845,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Bikol", + Comment = null, }, new() { @@ -7144,6 +7856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bile", + Comment = null, }, new() { @@ -7154,6 +7867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bimoba", + Comment = null, }, new() { @@ -7164,6 +7878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bini", + Comment = null, }, new() { @@ -7174,6 +7889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nai", + Comment = null, }, new() { @@ -7184,6 +7900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bila", + Comment = null, }, new() { @@ -7194,6 +7911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bipi", + Comment = null, }, new() { @@ -7204,6 +7922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bisorio", + Comment = null, }, new() { @@ -7214,6 +7933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bislama", + Comment = null, }, new() { @@ -7224,6 +7944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berinomo", + Comment = null, }, new() { @@ -7234,6 +7955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biete", + Comment = null, }, new() { @@ -7244,6 +7966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Birifor", + Comment = null, }, new() { @@ -7254,6 +7977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kol (Cameroon)", + Comment = null, }, new() { @@ -7264,6 +7988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bijori", + Comment = null, }, new() { @@ -7274,6 +7999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birhor", + Comment = null, }, new() { @@ -7284,6 +8010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baloi", + Comment = null, }, new() { @@ -7294,6 +8021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budza", + Comment = null, }, new() { @@ -7304,6 +8032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Banggarla", + Comment = null, }, new() { @@ -7314,6 +8043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bariji", + Comment = null, }, new() { @@ -7324,6 +8054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biao-Jiao Mien", + Comment = null, }, new() { @@ -7334,6 +8065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barzani Jewish Neo-Aramaic", + Comment = null, }, new() { @@ -7344,6 +8076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bidyogo", + Comment = null, }, new() { @@ -7354,6 +8087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahinemo", + Comment = null, }, new() { @@ -7364,6 +8098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burji", + Comment = null, }, new() { @@ -7374,6 +8109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanauji", + Comment = null, }, new() { @@ -7384,6 +8120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barok", + Comment = null, }, new() { @@ -7394,6 +8131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulu (Papua New Guinea)", + Comment = null, }, new() { @@ -7404,6 +8142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bajelani", + Comment = null, }, new() { @@ -7414,6 +8153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banjar", + Comment = null, }, new() { @@ -7424,6 +8164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mid-Southern Banda", + Comment = null, }, new() { @@ -7434,6 +8175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanamaket", + Comment = null, }, new() { @@ -7444,6 +8186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binumarien", + Comment = null, }, new() { @@ -7454,6 +8197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bajan", + Comment = null, }, new() { @@ -7464,6 +8208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balanta-Ganja", + Comment = null, }, new() { @@ -7474,6 +8219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busuu", + Comment = null, }, new() { @@ -7484,6 +8230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bedjond", + Comment = null, }, new() { @@ -7494,6 +8241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakwé", + Comment = null, }, new() { @@ -7504,6 +8252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banao Itneg", + Comment = null, }, new() { @@ -7514,6 +8263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bayali", + Comment = null, }, new() { @@ -7524,6 +8274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baruga", + Comment = null, }, new() { @@ -7534,6 +8285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyak", + Comment = null, }, new() { @@ -7544,6 +8296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baka (Cameroon)", + Comment = null, }, new() { @@ -7554,6 +8307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binukid", + Comment = null, }, new() { @@ -7564,6 +8318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beeke", + Comment = null, }, new() { @@ -7574,6 +8329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buraka", + Comment = null, }, new() { @@ -7584,6 +8340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakoko", + Comment = null, }, new() { @@ -7594,6 +8351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baki", + Comment = null, }, new() { @@ -7604,6 +8362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pande", + Comment = null, }, new() { @@ -7614,6 +8373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brokskat", + Comment = null, }, new() { @@ -7624,6 +8384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berik", + Comment = null, }, new() { @@ -7634,6 +8395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kom (Cameroon)", + Comment = null, }, new() { @@ -7644,6 +8406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukitan", + Comment = null, }, new() { @@ -7654,6 +8417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwa'", + Comment = null, }, new() { @@ -7664,6 +8428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boko (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -7674,6 +8439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakairí", + Comment = null, }, new() { @@ -7684,6 +8450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakumpai", + Comment = null, }, new() { @@ -7694,6 +8461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sorsoganon", + Comment = null, }, new() { @@ -7704,6 +8472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boloki", + Comment = null, }, new() { @@ -7714,6 +8483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buhid", + Comment = null, }, new() { @@ -7724,6 +8494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bekwarra", + Comment = null, }, new() { @@ -7734,6 +8505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bekwel", + Comment = null, }, new() { @@ -7744,6 +8516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baikeno", + Comment = null, }, new() { @@ -7754,6 +8527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokyi", + Comment = null, }, new() { @@ -7764,6 +8538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bungku", + Comment = null, }, new() { @@ -7774,6 +8549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siksika", + Comment = null, }, new() { @@ -7784,6 +8560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilua", + Comment = null, }, new() { @@ -7794,6 +8571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bella Coola", + Comment = null, }, new() { @@ -7804,6 +8582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolango", + Comment = null, }, new() { @@ -7814,6 +8593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balanta-Kentohe", + Comment = null, }, new() { @@ -7824,6 +8604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buol", + Comment = null, }, new() { @@ -7834,6 +8615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuwaa", + Comment = null, }, new() { @@ -7844,6 +8626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolia", + Comment = null, }, new() { @@ -7854,6 +8637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolongan", + Comment = null, }, new() { @@ -7864,6 +8648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa'o Karen", + Comment = null, }, new() { @@ -7874,6 +8659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Biloxi", + Comment = null, }, new() { @@ -7884,6 +8670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beli (South Sudan)", + Comment = null, }, new() { @@ -7894,6 +8681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Catanduanes Bikol", + Comment = null, }, new() { @@ -7904,6 +8692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anii", + Comment = null, }, new() { @@ -7914,6 +8703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blablanga", + Comment = null, }, new() { @@ -7924,6 +8714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baluan-Pam", + Comment = null, }, new() { @@ -7934,6 +8725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Blang", + Comment = null, }, new() { @@ -7944,6 +8736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balaesang", + Comment = null, }, new() { @@ -7954,6 +8747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Dam", + Comment = null, }, new() { @@ -7964,6 +8758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kibala", + Comment = null, }, new() { @@ -7974,6 +8769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balangao", + Comment = null, }, new() { @@ -7984,6 +8780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mag-Indi Ayta", + Comment = null, }, new() { @@ -7994,6 +8791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Notre", + Comment = null, }, new() { @@ -8004,6 +8802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balantak", + Comment = null, }, new() { @@ -8014,6 +8813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lame", + Comment = null, }, new() { @@ -8024,6 +8824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bembe", + Comment = null, }, new() { @@ -8034,6 +8835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biem", + Comment = null, }, new() { @@ -8044,6 +8846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Manduri", + Comment = null, }, new() { @@ -8054,6 +8857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limassa", + Comment = null, }, new() { @@ -8064,6 +8868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bom-Kim", + Comment = null, }, new() { @@ -8074,6 +8879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamwe", + Comment = null, }, new() { @@ -8084,6 +8890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kein", + Comment = null, }, new() { @@ -8094,6 +8901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagirmi", + Comment = null, }, new() { @@ -8104,6 +8912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bote-Majhi", + Comment = null, }, new() { @@ -8114,6 +8923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghayavi", + Comment = null, }, new() { @@ -8124,6 +8934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomboli", + Comment = null, }, new() { @@ -8134,6 +8945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Betsimisaraka Malagasy", + Comment = null, }, new() { @@ -8144,6 +8956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bina (Papua New Guinea)", + Comment = null, }, new() { @@ -8154,6 +8967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambalang", + Comment = null, }, new() { @@ -8164,6 +8978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgebi", + Comment = null, }, new() { @@ -8174,6 +8989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomu", + Comment = null, }, new() { @@ -8184,6 +9000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muinane", + Comment = null, }, new() { @@ -8194,6 +9011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilma Kanuri", + Comment = null, }, new() { @@ -8204,6 +9022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biao Mon", + Comment = null, }, new() { @@ -8214,6 +9033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somba-Siawari", + Comment = null, }, new() { @@ -8224,6 +9044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bum", + Comment = null, }, new() { @@ -8234,6 +9055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomwali", + Comment = null, }, new() { @@ -8244,6 +9066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baimak", + Comment = null, }, new() { @@ -8254,6 +9077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baramu", + Comment = null, }, new() { @@ -8264,6 +9088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonerate", + Comment = null, }, new() { @@ -8274,6 +9099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bookan", + Comment = null, }, new() { @@ -8284,6 +9110,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Bontok", + Comment = null, }, new() { @@ -8294,6 +9121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda (Indonesia)", + Comment = null, }, new() { @@ -8304,6 +9132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bintauna", + Comment = null, }, new() { @@ -8314,6 +9143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masiwang", + Comment = null, }, new() { @@ -8324,6 +9154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benga", + Comment = null, }, new() { @@ -8334,6 +9165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangi", + Comment = null, }, new() { @@ -8344,6 +9176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Tawbuid", + Comment = null, }, new() { @@ -8354,6 +9187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bierebo", + Comment = null, }, new() { @@ -8364,6 +9198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boon", + Comment = null, }, new() { @@ -8374,6 +9209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batanga", + Comment = null, }, new() { @@ -8384,6 +9220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunun", + Comment = null, }, new() { @@ -8394,6 +9231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantoanon", + Comment = null, }, new() { @@ -8404,6 +9242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bola", + Comment = null, }, new() { @@ -8414,6 +9253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bantik", + Comment = null, }, new() { @@ -8424,6 +9264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Butmas-Tur", + Comment = null, }, new() { @@ -8434,6 +9275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bundeli", + Comment = null, }, new() { @@ -8444,6 +9286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bentong", + Comment = null, }, new() { @@ -8454,6 +9297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonerif", + Comment = null, }, new() { @@ -8464,6 +9308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bisis", + Comment = null, }, new() { @@ -8474,6 +9319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangubangu", + Comment = null, }, new() { @@ -8484,6 +9330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bintulu", + Comment = null, }, new() { @@ -8494,6 +9341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beezen", + Comment = null, }, new() { @@ -8504,6 +9352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bora", + Comment = null, }, new() { @@ -8514,6 +9363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aweer", + Comment = null, }, new() { @@ -8524,6 +9374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibetan", + Comment = null, }, new() { @@ -8534,6 +9385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundabli-Mufu", + Comment = null, }, new() { @@ -8544,6 +9396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolon", + Comment = null, }, new() { @@ -8554,6 +9407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamako Sign Language", + Comment = null, }, new() { @@ -8564,6 +9418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boma", + Comment = null, }, new() { @@ -8574,6 +9429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barbareño", + Comment = null, }, new() { @@ -8584,6 +9440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anjam", + Comment = null, }, new() { @@ -8594,6 +9451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonjo", + Comment = null, }, new() { @@ -8604,6 +9462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bole", + Comment = null, }, new() { @@ -8614,6 +9473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berom", + Comment = null, }, new() { @@ -8624,6 +9484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bine", + Comment = null, }, new() { @@ -8634,6 +9495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiemacèwè Bozo", + Comment = null, }, new() { @@ -8644,6 +9506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonkiman", + Comment = null, }, new() { @@ -8654,6 +9517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bogaya", + Comment = null, }, new() { @@ -8664,6 +9528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borôro", + Comment = null, }, new() { @@ -8674,6 +9539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bosnian", + Comment = null, }, new() { @@ -8684,6 +9550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bongo", + Comment = null, }, new() { @@ -8694,6 +9561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondei", + Comment = null, }, new() { @@ -8704,6 +9572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuwuli", + Comment = null, }, new() { @@ -8714,6 +9583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Rema", + Comment = null, }, new() { @@ -8724,6 +9594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buamu", + Comment = null, }, new() { @@ -8734,6 +9605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo (Central African Republic)", + Comment = null, }, new() { @@ -8744,6 +9616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiéyaxo Bozo", + Comment = null, }, new() { @@ -8754,6 +9627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daakaka", + Comment = null, }, new() { @@ -8764,6 +9638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbuk", + Comment = null, }, new() { @@ -8774,6 +9649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Banda", + Comment = null, }, new() { @@ -8784,6 +9660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauni", + Comment = null, }, new() { @@ -8794,6 +9671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonggo", + Comment = null, }, new() { @@ -8804,6 +9682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Botlikh", + Comment = null, }, new() { @@ -8814,6 +9693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagupi", + Comment = null, }, new() { @@ -8824,6 +9704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binji", + Comment = null, }, new() { @@ -8834,6 +9715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orowe", + Comment = null, }, new() { @@ -8844,6 +9726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Broome Pearling Lugger Pidgin", + Comment = null, }, new() { @@ -8854,6 +9737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biyom", + Comment = null, }, new() { @@ -8864,6 +9748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzao Min", + Comment = null, }, new() { @@ -8874,6 +9759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anasi", + Comment = null, }, new() { @@ -8884,6 +9770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaure", + Comment = null, }, new() { @@ -8894,6 +9781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda Malay", + Comment = null, }, new() { @@ -8904,6 +9792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koronadal Blaan", + Comment = null, }, new() { @@ -8914,6 +9803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarangani Blaan", + Comment = null, }, new() { @@ -8924,6 +9814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barrow Point", + Comment = null, }, new() { @@ -8934,6 +9825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bongu", + Comment = null, }, new() { @@ -8944,6 +9836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bian Marind", + Comment = null, }, new() { @@ -8954,6 +9847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo (Papua New Guinea)", + Comment = null, }, new() { @@ -8964,6 +9858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palya Bareli", + Comment = null, }, new() { @@ -8974,6 +9869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bishnupriya", + Comment = null, }, new() { @@ -8984,6 +9880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilba", + Comment = null, }, new() { @@ -8994,6 +9891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tchumbuli", + Comment = null, }, new() { @@ -9004,6 +9902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagusa", + Comment = null, }, new() { @@ -9014,6 +9913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boko (Benin)", + Comment = null, }, new() { @@ -9024,6 +9924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bung", + Comment = null, }, new() { @@ -9034,6 +9935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baga Kaloum", + Comment = null, }, new() { @@ -9044,6 +9946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bago-Kusuntu", + Comment = null, }, new() { @@ -9054,6 +9957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baima", + Comment = null, }, new() { @@ -9064,6 +9968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakhtiari", + Comment = null, }, new() { @@ -9074,6 +9979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bandial", + Comment = null, }, new() { @@ -9084,6 +9990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Mbrès", + Comment = null, }, new() { @@ -9094,6 +10001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karian", + Comment = null, }, new() { @@ -9104,6 +10012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wumboko", + Comment = null, }, new() { @@ -9114,6 +10023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgarian Sign Language", + Comment = null, }, new() { @@ -9124,6 +10034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balo", + Comment = null, }, new() { @@ -9134,6 +10045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busa", + Comment = null, }, new() { @@ -9144,6 +10056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biritai", + Comment = null, }, new() { @@ -9154,6 +10067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burusu", + Comment = null, }, new() { @@ -9164,6 +10078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bosngun", + Comment = null, }, new() { @@ -9174,6 +10089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamukumbit", + Comment = null, }, new() { @@ -9184,6 +10100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boguru", + Comment = null, }, new() { @@ -9194,6 +10111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro Wachi", + Comment = null, }, new() { @@ -9204,6 +10122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buru (Nigeria)", + Comment = null, }, new() { @@ -9214,6 +10133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baangi", + Comment = null, }, new() { @@ -9224,6 +10144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bengkala Sign Language", + Comment = null, }, new() { @@ -9234,6 +10155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakaka", + Comment = null, }, new() { @@ -9244,6 +10166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Braj", + Comment = null, }, new() { @@ -9254,6 +10177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brao", + Comment = null, }, new() { @@ -9264,6 +10188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Berbice Creole Dutch", + Comment = null, }, new() { @@ -9274,6 +10199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baraamu", + Comment = null, }, new() { @@ -9284,6 +10210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Breton", + Comment = null, }, new() { @@ -9294,6 +10221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bira", + Comment = null, }, new() { @@ -9304,6 +10232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baure", + Comment = null, }, new() { @@ -9314,6 +10243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brahui", + Comment = null, }, new() { @@ -9324,6 +10254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokpwe", + Comment = null, }, new() { @@ -9334,6 +10265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bieria", + Comment = null, }, new() { @@ -9344,6 +10276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Birked", + Comment = null, }, new() { @@ -9354,6 +10287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birwa", + Comment = null, }, new() { @@ -9364,6 +10298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barambu", + Comment = null, }, new() { @@ -9374,6 +10309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boruca", + Comment = null, }, new() { @@ -9384,6 +10320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brokkat", + Comment = null, }, new() { @@ -9394,6 +10331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barapasi", + Comment = null, }, new() { @@ -9404,6 +10342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Breri", + Comment = null, }, new() { @@ -9414,6 +10353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birao", + Comment = null, }, new() { @@ -9424,6 +10364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baras", + Comment = null, }, new() { @@ -9434,6 +10375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bitare", + Comment = null, }, new() { @@ -9444,6 +10386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Bru", + Comment = null, }, new() { @@ -9454,6 +10397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Bru", + Comment = null, }, new() { @@ -9464,6 +10408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bellari", + Comment = null, }, new() { @@ -9474,6 +10419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo (India)", + Comment = null, }, new() { @@ -9484,6 +10430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burui", + Comment = null, }, new() { @@ -9494,6 +10441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilbil", + Comment = null, }, new() { @@ -9504,6 +10452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abinomn", + Comment = null, }, new() { @@ -9514,6 +10463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brunei Bisaya", + Comment = null, }, new() { @@ -9524,6 +10474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassari", + Comment = null, }, new() { @@ -9534,6 +10485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wushi", + Comment = null, }, new() { @@ -9544,6 +10496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauchi", + Comment = null, }, new() { @@ -9554,6 +10507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bashkardi", + Comment = null, }, new() { @@ -9564,6 +10518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kati", + Comment = null, }, new() { @@ -9574,6 +10529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassossi", + Comment = null, }, new() { @@ -9584,6 +10540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangwinji", + Comment = null, }, new() { @@ -9594,6 +10551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burushaski", + Comment = null, }, new() { @@ -9604,6 +10562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Basa-Gumna", + Comment = null, }, new() { @@ -9614,6 +10573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busami", + Comment = null, }, new() { @@ -9624,6 +10584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barasana-Eduria", + Comment = null, }, new() { @@ -9634,6 +10595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buso", + Comment = null, }, new() { @@ -9644,6 +10606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baga Sitemu", + Comment = null, }, new() { @@ -9654,6 +10617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassa", + Comment = null, }, new() { @@ -9664,6 +10628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bassa-Kontagora", + Comment = null, }, new() { @@ -9674,6 +10639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akoose", + Comment = null, }, new() { @@ -9684,6 +10650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basketo", + Comment = null, }, new() { @@ -9694,6 +10661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bahonsuai", + Comment = null, }, new() { @@ -9704,6 +10672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baga Sobané", + Comment = null, }, new() { @@ -9714,6 +10683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baiso", + Comment = null, }, new() { @@ -9724,6 +10694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangkam", + Comment = null, }, new() { @@ -9734,6 +10705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabah Bisaya", + Comment = null, }, new() { @@ -9744,6 +10716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bata", + Comment = null, }, new() { @@ -9754,6 +10727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bati (Cameroon)", + Comment = null, }, new() { @@ -9764,6 +10738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Dairi", + Comment = null, }, new() { @@ -9774,6 +10749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gamo-Ningi", + Comment = null, }, new() { @@ -9784,6 +10760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birgit", + Comment = null, }, new() { @@ -9794,6 +10771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagnoa Bété", + Comment = null, }, new() { @@ -9804,6 +10782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biatah Bidayuh", + Comment = null, }, new() { @@ -9814,6 +10793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burate", + Comment = null, }, new() { @@ -9824,6 +10804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bacanese Malay", + Comment = null, }, new() { @@ -9834,6 +10815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Mandailing", + Comment = null, }, new() { @@ -9844,6 +10826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ratagnon", + Comment = null, }, new() { @@ -9854,6 +10837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rinconada Bikol", + Comment = null, }, new() { @@ -9864,6 +10848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budibud", + Comment = null, }, new() { @@ -9874,6 +10859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batek", + Comment = null, }, new() { @@ -9884,6 +10870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baetora", + Comment = null, }, new() { @@ -9894,6 +10881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Simalungun", + Comment = null, }, new() { @@ -9904,6 +10892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bete-Bendi", + Comment = null, }, new() { @@ -9914,6 +10903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batu", + Comment = null, }, new() { @@ -9924,6 +10914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bateri", + Comment = null, }, new() { @@ -9934,6 +10925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Butuanon", + Comment = null, }, new() { @@ -9944,6 +10936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Karo", + Comment = null, }, new() { @@ -9954,6 +10947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bobot", + Comment = null, }, new() { @@ -9964,6 +10958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak Alas-Kluet", + Comment = null, }, new() { @@ -9974,6 +10969,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Buriat", + Comment = null, }, new() { @@ -9984,6 +10980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bua", + Comment = null, }, new() { @@ -9994,6 +10991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bushi", + Comment = null, }, new() { @@ -10004,6 +11002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ntcham", + Comment = null, }, new() { @@ -10014,6 +11013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Beothuk", + Comment = null, }, new() { @@ -10024,6 +11024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bushoong", + Comment = null, }, new() { @@ -10034,6 +11035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buginese", + Comment = null, }, new() { @@ -10044,6 +11046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Younuo Bunu", + Comment = null, }, new() { @@ -10054,6 +11057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bongili", + Comment = null, }, new() { @@ -10064,6 +11068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basa-Gurmana", + Comment = null, }, new() { @@ -10074,6 +11079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bugawac", + Comment = null, }, new() { @@ -10084,6 +11090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulgarian", + Comment = null, }, new() { @@ -10094,6 +11101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulu (Cameroon)", + Comment = null, }, new() { @@ -10104,6 +11112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sherbro", + Comment = null, }, new() { @@ -10114,6 +11123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Terei", + Comment = null, }, new() { @@ -10124,6 +11134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busoa", + Comment = null, }, new() { @@ -10134,6 +11145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brem", + Comment = null, }, new() { @@ -10144,6 +11156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokobaru", + Comment = null, }, new() { @@ -10154,6 +11167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bungain", + Comment = null, }, new() { @@ -10164,6 +11178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budu", + Comment = null, }, new() { @@ -10174,6 +11189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bun", + Comment = null, }, new() { @@ -10184,6 +11200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bubi", + Comment = null, }, new() { @@ -10194,6 +11211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boghom", + Comment = null, }, new() { @@ -10204,6 +11222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bullom So", + Comment = null, }, new() { @@ -10214,6 +11233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukwen", + Comment = null, }, new() { @@ -10224,6 +11244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barein", + Comment = null, }, new() { @@ -10234,6 +11255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bube", + Comment = null, }, new() { @@ -10244,6 +11266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baelelea", + Comment = null, }, new() { @@ -10254,6 +11277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baeggu", + Comment = null, }, new() { @@ -10264,6 +11288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berau Malay", + Comment = null, }, new() { @@ -10274,6 +11299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boor", + Comment = null, }, new() { @@ -10284,6 +11310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonkeng", + Comment = null, }, new() { @@ -10294,6 +11321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bure", + Comment = null, }, new() { @@ -10304,6 +11332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belanda Viri", + Comment = null, }, new() { @@ -10314,6 +11343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baan", + Comment = null, }, new() { @@ -10324,6 +11354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukat", + Comment = null, }, new() { @@ -10334,6 +11365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolivian Sign Language", + Comment = null, }, new() { @@ -10344,6 +11376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bamunka", + Comment = null, }, new() { @@ -10354,6 +11387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buna", + Comment = null, }, new() { @@ -10364,6 +11398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolgo", + Comment = null, }, new() { @@ -10374,6 +11409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumang", + Comment = null, }, new() { @@ -10384,6 +11420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birri", + Comment = null, }, new() { @@ -10394,6 +11431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burarra", + Comment = null, }, new() { @@ -10404,6 +11442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bati (Indonesia)", + Comment = null, }, new() { @@ -10414,6 +11453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukit Malay", + Comment = null, }, new() { @@ -10424,6 +11464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baniva", + Comment = null, }, new() { @@ -10434,6 +11475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boga", + Comment = null, }, new() { @@ -10444,6 +11486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibole", + Comment = null, }, new() { @@ -10454,6 +11497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baybayanon", + Comment = null, }, new() { @@ -10464,6 +11508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauzi", + Comment = null, }, new() { @@ -10474,6 +11519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwatoo", + Comment = null, }, new() { @@ -10484,6 +11530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namosi-Naitasiri-Serua", + Comment = null, }, new() { @@ -10494,6 +11541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwile", + Comment = null, }, new() { @@ -10504,6 +11552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwaidoka", + Comment = null, }, new() { @@ -10514,6 +11563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwe Karen", + Comment = null, }, new() { @@ -10524,6 +11574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boselewa", + Comment = null, }, new() { @@ -10534,6 +11585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barwe", + Comment = null, }, new() { @@ -10544,6 +11596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bishuo", + Comment = null, }, new() { @@ -10554,6 +11607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baniwa", + Comment = null, }, new() { @@ -10564,6 +11618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Láá Láá Bwamu", + Comment = null, }, new() { @@ -10574,6 +11629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bauwaki", + Comment = null, }, new() { @@ -10584,6 +11640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwela", + Comment = null, }, new() { @@ -10594,6 +11651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biwat", + Comment = null, }, new() { @@ -10604,6 +11662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wunai Bunu", + Comment = null, }, new() { @@ -10614,6 +11673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boro (Ethiopia)", + Comment = null, }, new() { @@ -10624,6 +11684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandobo Bawah", + Comment = null, }, new() { @@ -10634,6 +11695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Bobo Madaré", + Comment = null, }, new() { @@ -10644,6 +11706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bura-Pabir", + Comment = null, }, new() { @@ -10654,6 +11717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomboma", + Comment = null, }, new() { @@ -10664,6 +11728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafaw-Balong", + Comment = null, }, new() { @@ -10674,6 +11739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buli (Ghana)", + Comment = null, }, new() { @@ -10684,6 +11750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwa", + Comment = null, }, new() { @@ -10694,6 +11761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bu-Nao Bunu", + Comment = null, }, new() { @@ -10704,6 +11772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cwi Bwamu", + Comment = null, }, new() { @@ -10714,6 +11783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwisi", + Comment = null, }, new() { @@ -10724,6 +11794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tairaha", + Comment = null, }, new() { @@ -10734,6 +11805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belanda Bor", + Comment = null, }, new() { @@ -10744,6 +11816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molengue", + Comment = null, }, new() { @@ -10754,6 +11827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pela", + Comment = null, }, new() { @@ -10764,6 +11838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Birale", + Comment = null, }, new() { @@ -10774,6 +11849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilur", + Comment = null, }, new() { @@ -10784,6 +11860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangala", + Comment = null, }, new() { @@ -10794,6 +11871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buhutu", + Comment = null, }, new() { @@ -10804,6 +11882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pirlatapa", + Comment = null, }, new() { @@ -10814,6 +11893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bayungu", + Comment = null, }, new() { @@ -10824,6 +11904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukusu", + Comment = null, }, new() { @@ -10834,6 +11915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jalkunan", + Comment = null, }, new() { @@ -10844,6 +11926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongolia Buriat", + Comment = null, }, new() { @@ -10854,6 +11937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burduna", + Comment = null, }, new() { @@ -10864,6 +11948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barikanchi", + Comment = null, }, new() { @@ -10874,6 +11959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bebil", + Comment = null, }, new() { @@ -10884,6 +11970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beele", + Comment = null, }, new() { @@ -10894,6 +11981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russia Buriat", + Comment = null, }, new() { @@ -10904,6 +11992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Busam", + Comment = null, }, new() { @@ -10914,6 +12003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "China Buriat", + Comment = null, }, new() { @@ -10924,6 +12014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berakou", + Comment = null, }, new() { @@ -10934,6 +12025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankagooma", + Comment = null, }, new() { @@ -10944,6 +12036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binahari", + Comment = null, }, new() { @@ -10954,6 +12047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batak", + Comment = null, }, new() { @@ -10964,6 +12058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bikya", + Comment = null, }, new() { @@ -10974,6 +12069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubaghara", + Comment = null, }, new() { @@ -10984,6 +12080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benyadu'", + Comment = null, }, new() { @@ -10994,6 +12091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pouye", + Comment = null, }, new() { @@ -11004,6 +12102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bete", + Comment = null, }, new() { @@ -11014,6 +12113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Baygo", + Comment = null, }, new() { @@ -11024,6 +12124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhujel", + Comment = null, }, new() { @@ -11034,6 +12135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buyu", + Comment = null, }, new() { @@ -11044,6 +12146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bina (Nigeria)", + Comment = null, }, new() { @@ -11054,6 +12157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biao", + Comment = null, }, new() { @@ -11064,6 +12168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bayono", + Comment = null, }, new() { @@ -11074,6 +12179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bidjara", + Comment = null, }, new() { @@ -11084,6 +12190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilin", + Comment = null, }, new() { @@ -11094,6 +12201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biyo", + Comment = null, }, new() { @@ -11104,6 +12212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumaji", + Comment = null, }, new() { @@ -11114,6 +12223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Basay", + Comment = null, }, new() { @@ -11124,6 +12234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baruya", + Comment = null, }, new() { @@ -11134,6 +12245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burak", + Comment = null, }, new() { @@ -11144,6 +12256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Berti", + Comment = null, }, new() { @@ -11154,6 +12267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Medumba", + Comment = null, }, new() { @@ -11164,6 +12278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belhariya", + Comment = null, }, new() { @@ -11174,6 +12289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qaqet", + Comment = null, }, new() { @@ -11184,6 +12300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banaro", + Comment = null, }, new() { @@ -11194,6 +12311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bandi", + Comment = null, }, new() { @@ -11204,6 +12322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andio", + Comment = null, }, new() { @@ -11214,6 +12333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Betsimisaraka Malagasy", + Comment = null, }, new() { @@ -11224,6 +12344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bribri", + Comment = null, }, new() { @@ -11234,6 +12355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jenaama Bozo", + Comment = null, }, new() { @@ -11244,6 +12366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boikin", + Comment = null, }, new() { @@ -11254,6 +12377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Babuza", + Comment = null, }, new() { @@ -11264,6 +12388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapos Buang", + Comment = null, }, new() { @@ -11274,6 +12399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bisu", + Comment = null, }, new() { @@ -11284,6 +12410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belize Kriol English", + Comment = null, }, new() { @@ -11294,6 +12421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nicaragua Creole English", + Comment = null, }, new() { @@ -11304,6 +12432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boano (Sulawesi)", + Comment = null, }, new() { @@ -11314,6 +12443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolondo", + Comment = null, }, new() { @@ -11324,6 +12454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Boano (Maluku)", + Comment = null, }, new() { @@ -11334,6 +12465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bozaba", + Comment = null, }, new() { @@ -11344,6 +12476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemberano", + Comment = null, }, new() { @@ -11354,6 +12487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buli (Indonesia)", + Comment = null, }, new() { @@ -11364,6 +12498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Biri", + Comment = null, }, new() { @@ -11374,6 +12509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brazilian Sign Language", + Comment = null, }, new() { @@ -11384,6 +12520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Brithenig", + Comment = null, }, new() { @@ -11394,6 +12531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmeso", + Comment = null, }, new() { @@ -11404,6 +12542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naami", + Comment = null, }, new() { @@ -11414,6 +12553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basa (Nigeria)", + Comment = null, }, new() { @@ -11424,6 +12564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kɛlɛngaxo Bozo", + Comment = null, }, new() { @@ -11434,6 +12575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obanliku", + Comment = null, }, new() { @@ -11444,6 +12586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Evant", + Comment = null, }, new() { @@ -11454,6 +12597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chortí", + Comment = null, }, new() { @@ -11464,6 +12608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garifuna", + Comment = null, }, new() { @@ -11474,6 +12619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuj", + Comment = null, }, new() { @@ -11484,6 +12630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caddo", + Comment = null, }, new() { @@ -11494,6 +12641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lehar", + Comment = null, }, new() { @@ -11504,6 +12652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Carrier", + Comment = null, }, new() { @@ -11514,6 +12663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nivaclé", + Comment = null, }, new() { @@ -11524,6 +12674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cahuarano", + Comment = null, }, new() { @@ -11534,6 +12685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chané", + Comment = null, }, new() { @@ -11544,6 +12696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaqchikel", + Comment = null, }, new() { @@ -11554,6 +12707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carolinian", + Comment = null, }, new() { @@ -11564,6 +12718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cemuhî", + Comment = null, }, new() { @@ -11574,6 +12729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chambri", + Comment = null, }, new() { @@ -11584,6 +12740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chácobo", + Comment = null, }, new() { @@ -11594,6 +12751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chipaya", + Comment = null, }, new() { @@ -11604,6 +12762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Car Nicobarese", + Comment = null, }, new() { @@ -11614,6 +12773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galibi Carib", + Comment = null, }, new() { @@ -11624,6 +12784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsimané", + Comment = null, }, new() { @@ -11634,6 +12795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Catalan", + Comment = null, }, new() { @@ -11644,6 +12806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cavineña", + Comment = null, }, new() { @@ -11654,6 +12817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Callawalla", + Comment = null, }, new() { @@ -11664,6 +12828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiquitano", + Comment = null, }, new() { @@ -11674,6 +12839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cayuga", + Comment = null, }, new() { @@ -11684,6 +12850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Canichana", + Comment = null, }, new() { @@ -11694,6 +12861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cabiyarí", + Comment = null, }, new() { @@ -11704,6 +12872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carapana", + Comment = null, }, new() { @@ -11714,6 +12883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carijona", + Comment = null, }, new() { @@ -11724,6 +12894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chimila", + Comment = null, }, new() { @@ -11734,6 +12905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chachi", + Comment = null, }, new() { @@ -11744,6 +12916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Cabe", + Comment = null, }, new() { @@ -11754,6 +12927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chavacano", + Comment = null, }, new() { @@ -11764,6 +12938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bualkhaw Chin", + Comment = null, }, new() { @@ -11774,6 +12949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyahkur", + Comment = null, }, new() { @@ -11784,6 +12960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izora", + Comment = null, }, new() { @@ -11794,6 +12971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsucuba", + Comment = null, }, new() { @@ -11804,6 +12982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cashibo-Cacataibo", + Comment = null, }, new() { @@ -11814,6 +12993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cashinahua", + Comment = null, }, new() { @@ -11824,6 +13004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chayahuita", + Comment = null, }, new() { @@ -11834,6 +13015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Candoshi-Shapra", + Comment = null, }, new() { @@ -11844,6 +13026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cacua", + Comment = null, }, new() { @@ -11854,6 +13037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinabalian", + Comment = null, }, new() { @@ -11864,6 +13048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carabayo", + Comment = null, }, new() { @@ -11874,6 +13059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamicuro", + Comment = null, }, new() { @@ -11884,6 +13070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cafundo Creole", + Comment = null, }, new() { @@ -11894,6 +13081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chopi", + Comment = null, }, new() { @@ -11904,6 +13092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samba Daka", + Comment = null, }, new() { @@ -11914,6 +13103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atsam", + Comment = null, }, new() { @@ -11924,6 +13114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasanga", + Comment = null, }, new() { @@ -11934,6 +13125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cutchi-Swahili", + Comment = null, }, new() { @@ -11944,6 +13136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaccan Creole Malay", + Comment = null, }, new() { @@ -11954,6 +13147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Comaltepec Chinantec", + Comment = null, }, new() { @@ -11964,6 +13158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chakma", + Comment = null, }, new() { @@ -11974,6 +13169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cacaopera", + Comment = null, }, new() { @@ -11984,6 +13180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Choni", + Comment = null, }, new() { @@ -11994,6 +13191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chenchu", + Comment = null, }, new() { @@ -12004,6 +13202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiru", + Comment = null, }, new() { @@ -12014,6 +13213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chambeali", + Comment = null, }, new() { @@ -12024,6 +13224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chodri", + Comment = null, }, new() { @@ -12034,6 +13235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Churahi", + Comment = null, }, new() { @@ -12044,6 +13246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chepang", + Comment = null, }, new() { @@ -12054,6 +13257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaudangsi", + Comment = null, }, new() { @@ -12064,6 +13268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Dong Chinese", + Comment = null, }, new() { @@ -12074,6 +13279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cinda-Regi-Tiyal", + Comment = null, }, new() { @@ -12084,6 +13290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chadian Sign Language", + Comment = null, }, new() { @@ -12094,6 +13301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chadong", + Comment = null, }, new() { @@ -12104,6 +13312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koda", + Comment = null, }, new() { @@ -12114,6 +13323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Chehalis", + Comment = null, }, new() { @@ -12124,6 +13334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cebuano", + Comment = null, }, new() { @@ -12134,6 +13345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamacoco", + Comment = null, }, new() { @@ -12144,6 +13356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Khumi Chin", + Comment = null, }, new() { @@ -12154,6 +13367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cen", + Comment = null, }, new() { @@ -12164,6 +13378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Czech", + Comment = null, }, new() { @@ -12174,6 +13389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Centúúm", + Comment = null, }, new() { @@ -12184,6 +13400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekai Chin", + Comment = null, }, new() { @@ -12194,6 +13411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dijim-Bwilim", + Comment = null, }, new() { @@ -12204,6 +13422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cara", + Comment = null, }, new() { @@ -12214,6 +13433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Como Karim", + Comment = null, }, new() { @@ -12224,6 +13444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Falam Chin", + Comment = null, }, new() { @@ -12234,6 +13455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Changriwa", + Comment = null, }, new() { @@ -12244,6 +13466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagayanen", + Comment = null, }, new() { @@ -12254,6 +13477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiga", + Comment = null, }, new() { @@ -12264,6 +13488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chocangacakha", + Comment = null, }, new() { @@ -12274,6 +13499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamorro", + Comment = null, }, new() { @@ -12284,6 +13510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chibcha", + Comment = null, }, new() { @@ -12294,6 +13521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Catawba", + Comment = null, }, new() { @@ -12304,6 +13532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Oaxaca Chontal", + Comment = null, }, new() { @@ -12314,6 +13543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chechen", + Comment = null, }, new() { @@ -12324,6 +13554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabasco Chontal", + Comment = null, }, new() { @@ -12334,6 +13565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chagatai", + Comment = null, }, new() { @@ -12344,6 +13576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chinook", + Comment = null, }, new() { @@ -12354,6 +13587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ojitlán Chinantec", + Comment = null, }, new() { @@ -12364,6 +13598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuukese", + Comment = null, }, new() { @@ -12374,6 +13609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cahuilla", + Comment = null, }, new() { @@ -12384,6 +13620,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mari (Russia)", + Comment = null, }, new() { @@ -12394,6 +13631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinook jargon", + Comment = null, }, new() { @@ -12404,6 +13642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Choctaw", + Comment = null, }, new() { @@ -12414,6 +13653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chipewyan", + Comment = null, }, new() { @@ -12424,6 +13664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quiotepec Chinantec", + Comment = null, }, new() { @@ -12434,6 +13675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cherokee", + Comment = null, }, new() { @@ -12444,6 +13686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cholón", + Comment = null, }, new() { @@ -12454,6 +13697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Church Slavic", + Comment = null, }, new() { @@ -12464,6 +13708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuvash", + Comment = null, }, new() { @@ -12474,6 +13719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuwabu", + Comment = null, }, new() { @@ -12484,6 +13730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chantyal", + Comment = null, }, new() { @@ -12494,6 +13741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cheyenne", + Comment = null, }, new() { @@ -12504,6 +13752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ozumacín Chinantec", + Comment = null, }, new() { @@ -12514,6 +13763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cia-Cia", + Comment = null, }, new() { @@ -12524,6 +13774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ci Gbe", + Comment = null, }, new() { @@ -12534,6 +13785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chickasaw", + Comment = null, }, new() { @@ -12544,6 +13796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chimariko", + Comment = null, }, new() { @@ -12554,6 +13807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cineni", + Comment = null, }, new() { @@ -12564,6 +13818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinali", + Comment = null, }, new() { @@ -12574,6 +13829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chitkuli Kinnauri", + Comment = null, }, new() { @@ -12584,6 +13840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cimbrian", + Comment = null, }, new() { @@ -12594,6 +13851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cinta Larga", + Comment = null, }, new() { @@ -12604,6 +13862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiapanec", + Comment = null, }, new() { @@ -12614,6 +13873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiri", + Comment = null, }, new() { @@ -12624,6 +13884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chippewa", + Comment = null, }, new() { @@ -12634,6 +13895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaima", + Comment = null, }, new() { @@ -12644,6 +13906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Cham", + Comment = null, }, new() { @@ -12654,6 +13917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chru", + Comment = null, }, new() { @@ -12664,6 +13928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Upper Chehalis", + Comment = null, }, new() { @@ -12674,6 +13939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chamalal", + Comment = null, }, new() { @@ -12684,6 +13950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chokwe", + Comment = null, }, new() { @@ -12694,6 +13961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Cham", + Comment = null, }, new() { @@ -12704,6 +13972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chenapian", + Comment = null, }, new() { @@ -12714,6 +13983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashéninka Pajonal", + Comment = null, }, new() { @@ -12724,6 +13994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cabécar", + Comment = null, }, new() { @@ -12734,6 +14005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shor", + Comment = null, }, new() { @@ -12744,6 +14016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuave", + Comment = null, }, new() { @@ -12754,6 +14027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jinyu Chinese", + Comment = null, }, new() { @@ -12764,6 +14038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Kurdish", + Comment = null, }, new() { @@ -12774,6 +14049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chak", + Comment = null, }, new() { @@ -12784,6 +14060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cibak", + Comment = null, }, new() { @@ -12794,6 +14071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chakavian", + Comment = null, }, new() { @@ -12804,6 +14082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaang Chin", + Comment = null, }, new() { @@ -12814,6 +14093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anufo", + Comment = null, }, new() { @@ -12824,6 +14104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kajakse", + Comment = null, }, new() { @@ -12834,6 +14115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kairak", + Comment = null, }, new() { @@ -12844,6 +14126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tayo", + Comment = null, }, new() { @@ -12854,6 +14137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chukot", + Comment = null, }, new() { @@ -12864,6 +14148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koasati", + Comment = null, }, new() { @@ -12874,6 +14159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kavalan", + Comment = null, }, new() { @@ -12884,6 +14170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caka", + Comment = null, }, new() { @@ -12894,6 +14181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cakfem-Mushere", + Comment = null, }, new() { @@ -12904,6 +14192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cakchiquel-Quiché Mixed Language", + Comment = null, }, new() { @@ -12914,6 +14203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ron", + Comment = null, }, new() { @@ -12924,6 +14214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chilcotin", + Comment = null, }, new() { @@ -12934,6 +14225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaldean Neo-Aramaic", + Comment = null, }, new() { @@ -12944,6 +14236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lealao Chinantec", + Comment = null, }, new() { @@ -12954,6 +14247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chilisso", + Comment = null, }, new() { @@ -12964,6 +14258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chakali", + Comment = null, }, new() { @@ -12974,6 +14269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laitu Chin", + Comment = null, }, new() { @@ -12984,6 +14280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idu-Mishmi", + Comment = null, }, new() { @@ -12994,6 +14291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chala", + Comment = null, }, new() { @@ -13004,6 +14302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Klallam", + Comment = null, }, new() { @@ -13014,6 +14313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lowland Oaxaca Chontal", + Comment = null, }, new() { @@ -13024,6 +14324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Sanskrit", + Comment = null, }, new() { @@ -13034,6 +14335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lautu Chin", + Comment = null, }, new() { @@ -13044,6 +14346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caluyanun", + Comment = null, }, new() { @@ -13054,6 +14357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chulym", + Comment = null, }, new() { @@ -13064,6 +14368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Highland Chatino", + Comment = null, }, new() { @@ -13074,6 +14379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maa", + Comment = null, }, new() { @@ -13084,6 +14390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cerma", + Comment = null, }, new() { @@ -13094,6 +14401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Mongolian", + Comment = null, }, new() { @@ -13104,6 +14412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Chamí", + Comment = null, }, new() { @@ -13114,6 +14423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Campalagian", + Comment = null, }, new() { @@ -13124,6 +14434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Michigamea", + Comment = null, }, new() { @@ -13134,6 +14445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandarin Chinese", + Comment = null, }, new() { @@ -13144,6 +14456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Mnong", + Comment = null, }, new() { @@ -13154,6 +14467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mro-Khimi Chin", + Comment = null, }, new() { @@ -13164,6 +14478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Messapic", + Comment = null, }, new() { @@ -13174,6 +14489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Camtho", + Comment = null, }, new() { @@ -13184,6 +14500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Changthang", + Comment = null, }, new() { @@ -13194,6 +14511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinbon Chin", + Comment = null, }, new() { @@ -13204,6 +14522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Côông", + Comment = null, }, new() { @@ -13214,6 +14533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Qiang", + Comment = null, }, new() { @@ -13224,6 +14544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hakha Chin", + Comment = null, }, new() { @@ -13234,6 +14555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asháninka", + Comment = null, }, new() { @@ -13244,6 +14566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khumi Chin", + Comment = null, }, new() { @@ -13254,6 +14577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lalana Chinantec", + Comment = null, }, new() { @@ -13264,6 +14588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Con", + Comment = null, }, new() { @@ -13274,6 +14599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ping Chinese", + Comment = null, }, new() { @@ -13284,6 +14610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chung", + Comment = null, }, new() { @@ -13294,6 +14621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Montenegrin", + Comment = null, }, new() { @@ -13304,6 +14632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Asmat", + Comment = null, }, new() { @@ -13314,6 +14643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepetotutla Chinantec", + Comment = null, }, new() { @@ -13324,6 +14654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chenoua", + Comment = null, }, new() { @@ -13334,6 +14665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngawn Chin", + Comment = null, }, new() { @@ -13344,6 +14676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Cornish", + Comment = null, }, new() { @@ -13354,6 +14687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cocos Islands Malay", + Comment = null, }, new() { @@ -13364,6 +14698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chicomuceltec", + Comment = null, }, new() { @@ -13374,6 +14709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cocopa", + Comment = null, }, new() { @@ -13384,6 +14720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cocama-Cocamilla", + Comment = null, }, new() { @@ -13394,6 +14731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koreguaje", + Comment = null, }, new() { @@ -13404,6 +14742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Colorado", + Comment = null, }, new() { @@ -13414,6 +14753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chong", + Comment = null, }, new() { @@ -13424,6 +14764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chonyi-Dzihana-Kauma", + Comment = null, }, new() { @@ -13434,6 +14775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cochimi", + Comment = null, }, new() { @@ -13444,6 +14786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Teresa Cora", + Comment = null, }, new() { @@ -13454,6 +14797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Columbia-Wenatchi", + Comment = null, }, new() { @@ -13464,6 +14808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Comanche", + Comment = null, }, new() { @@ -13474,6 +14819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cofán", + Comment = null, }, new() { @@ -13484,6 +14830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Comox", + Comment = null, }, new() { @@ -13494,6 +14841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coptic", + Comment = null, }, new() { @@ -13504,6 +14852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coquille", + Comment = null, }, new() { @@ -13514,6 +14863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cornish", + Comment = null, }, new() { @@ -13524,6 +14874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Corsican", + Comment = null, }, new() { @@ -13534,6 +14885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caquinte", + Comment = null, }, new() { @@ -13544,6 +14896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wamey", + Comment = null, }, new() { @@ -13554,6 +14907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cao Miao", + Comment = null, }, new() { @@ -13564,6 +14918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cowlitz", + Comment = null, }, new() { @@ -13574,6 +14929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanti", + Comment = null, }, new() { @@ -13584,6 +14940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chochotec", + Comment = null, }, new() { @@ -13594,6 +14951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palantla Chinantec", + Comment = null, }, new() { @@ -13604,6 +14962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ucayali-Yurúa Ashéninka", + Comment = null, }, new() { @@ -13614,6 +14973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ajyíninka Apurucayali", + Comment = null, }, new() { @@ -13624,6 +14984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cappadocian Greek", + Comment = null, }, new() { @@ -13634,6 +14995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinese Pidgin English", + Comment = null, }, new() { @@ -13644,6 +15006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cherepon", + Comment = null, }, new() { @@ -13654,6 +15017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpeego", + Comment = null, }, new() { @@ -13664,6 +15028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Capiznon", + Comment = null, }, new() { @@ -13674,6 +15039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pichis Ashéninka", + Comment = null, }, new() { @@ -13684,6 +15050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pu-Xian Chinese", + Comment = null, }, new() { @@ -13694,6 +15061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Ucayali Ashéninka", + Comment = null, }, new() { @@ -13704,6 +15072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuanqiandian Cluster Miao", + Comment = null, }, new() { @@ -13714,6 +15083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chara", + Comment = null, }, new() { @@ -13724,6 +15094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Island Carib", + Comment = null, }, new() { @@ -13734,6 +15105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lonwolwol", + Comment = null, }, new() { @@ -13744,6 +15116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coeur d'Alene", + Comment = null, }, new() { @@ -13754,6 +15127,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Cree", + Comment = null, }, new() { @@ -13764,6 +15138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Caramanta", + Comment = null, }, new() { @@ -13774,6 +15149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Michif", + Comment = null, }, new() { @@ -13784,6 +15160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Crimean Tatar", + Comment = null, }, new() { @@ -13794,6 +15171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sãotomense", + Comment = null, }, new() { @@ -13804,6 +15182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern East Cree", + Comment = null, }, new() { @@ -13814,6 +15193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plains Cree", + Comment = null, }, new() { @@ -13824,6 +15204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern East Cree", + Comment = null, }, new() { @@ -13834,6 +15215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moose Cree", + Comment = null, }, new() { @@ -13844,6 +15226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Nayar Cora", + Comment = null, }, new() { @@ -13854,6 +15237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Crow", + Comment = null, }, new() { @@ -13864,6 +15248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyo'wujwa Chorote", + Comment = null, }, new() { @@ -13874,6 +15259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Carolina Algonquian", + Comment = null, }, new() { @@ -13884,6 +15270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seselwa Creole French", + Comment = null, }, new() { @@ -13894,6 +15281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyojwa'ja Chorote", + Comment = null, }, new() { @@ -13904,6 +15292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chaura", + Comment = null, }, new() { @@ -13914,6 +15303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chrau", + Comment = null, }, new() { @@ -13924,6 +15314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carrier", + Comment = null, }, new() { @@ -13934,6 +15325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cori", + Comment = null, }, new() { @@ -13944,6 +15336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cruzeño", + Comment = null, }, new() { @@ -13954,6 +15347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiltepec Chinantec", + Comment = null, }, new() { @@ -13964,6 +15358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashubian", + Comment = null, }, new() { @@ -13974,6 +15369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Catalan Sign Language", + Comment = null, }, new() { @@ -13984,6 +15380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiangmai Sign Language", + Comment = null, }, new() { @@ -13994,6 +15391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Czech Sign Language", + Comment = null, }, new() { @@ -14004,6 +15402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuba Sign Language", + Comment = null, }, new() { @@ -14014,6 +15413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chilean Sign Language", + Comment = null, }, new() { @@ -14024,6 +15424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asho Chin", + Comment = null, }, new() { @@ -14034,6 +15435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coast Miwok", + Comment = null, }, new() { @@ -14044,6 +15446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songlai Chin", + Comment = null, }, new() { @@ -14054,6 +15457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jola-Kasa", + Comment = null, }, new() { @@ -14064,6 +15468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chinese Sign Language", + Comment = null, }, new() { @@ -14074,6 +15479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Sierra Miwok", + Comment = null, }, new() { @@ -14084,6 +15490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Colombian Sign Language", + Comment = null, }, new() { @@ -14094,6 +15501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sochiapam Chinantec", + Comment = null, }, new() { @@ -14104,6 +15512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ping Chinese", + Comment = null, }, new() { @@ -14114,6 +15523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Croatia Sign Language", + Comment = null, }, new() { @@ -14124,6 +15534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Costa Rican Sign Language", + Comment = null, }, new() { @@ -14134,6 +15545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southern Ohlone", + Comment = null, }, new() { @@ -14144,6 +15556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ohlone", + Comment = null, }, new() { @@ -14154,6 +15567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumtu Chin", + Comment = null, }, new() { @@ -14164,6 +15578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swampy Cree", + Comment = null, }, new() { @@ -14174,6 +15589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cambodian Sign Language", + Comment = null, }, new() { @@ -14184,6 +15600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siyin Chin", + Comment = null, }, new() { @@ -14194,6 +15611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coos", + Comment = null, }, new() { @@ -14204,6 +15622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tataltepec Chatino", + Comment = null, }, new() { @@ -14214,6 +15633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chetco", + Comment = null, }, new() { @@ -14224,6 +15644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tedim Chin", + Comment = null, }, new() { @@ -14234,6 +15655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepinapa Chinantec", + Comment = null, }, new() { @@ -14244,6 +15666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chittagonian", + Comment = null, }, new() { @@ -14254,6 +15677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thaiphum Chin", + Comment = null, }, new() { @@ -14264,6 +15688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlacoatzintepec Chinantec", + Comment = null, }, new() { @@ -14274,6 +15699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chitimacha", + Comment = null, }, new() { @@ -14284,6 +15710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chhintange", + Comment = null, }, new() { @@ -14294,6 +15721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Catío", + Comment = null, }, new() { @@ -14304,6 +15732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Highland Chatino", + Comment = null, }, new() { @@ -14314,6 +15743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Catanduanes Bikol", + Comment = null, }, new() { @@ -14324,6 +15754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayanad Chetti", + Comment = null, }, new() { @@ -14334,6 +15765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chol", + Comment = null, }, new() { @@ -14344,6 +15776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moundadan Chetty", + Comment = null, }, new() { @@ -14354,6 +15787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zacatepec Chatino", + Comment = null, }, new() { @@ -14364,6 +15798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cua", + Comment = null, }, new() { @@ -14374,6 +15809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cubeo", + Comment = null, }, new() { @@ -14384,6 +15820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usila Chinantec", + Comment = null, }, new() { @@ -14394,6 +15831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chuka", + Comment = null, }, new() { @@ -14404,6 +15842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuiba", + Comment = null, }, new() { @@ -14414,6 +15853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mashco Piro", + Comment = null, }, new() { @@ -14424,6 +15864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Blas Kuna", + Comment = null, }, new() { @@ -14434,6 +15875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Culina", + Comment = null, }, new() { @@ -14444,6 +15886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cumanagoto", + Comment = null, }, new() { @@ -14454,6 +15897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cupeño", + Comment = null, }, new() { @@ -14464,6 +15908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cun", + Comment = null, }, new() { @@ -14474,6 +15919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chhulung", + Comment = null, }, new() { @@ -14484,6 +15930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teutila Cuicatec", + Comment = null, }, new() { @@ -14494,6 +15941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Ya", + Comment = null, }, new() { @@ -14504,6 +15952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuvok", + Comment = null, }, new() { @@ -14514,6 +15963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chukwa", + Comment = null, }, new() { @@ -14524,6 +15974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepeuxila Cuicatec", + Comment = null, }, new() { @@ -14534,6 +15985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuitlatec", + Comment = null, }, new() { @@ -14544,6 +15996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chug", + Comment = null, }, new() { @@ -14554,6 +16007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valle Nacional Chinantec", + Comment = null, }, new() { @@ -14564,6 +16018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabwa", + Comment = null, }, new() { @@ -14574,6 +16029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maindo", + Comment = null, }, new() { @@ -14584,6 +16040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woods Cree", + Comment = null, }, new() { @@ -14594,6 +16051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwere", + Comment = null, }, new() { @@ -14604,6 +16062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chewong", + Comment = null, }, new() { @@ -14614,6 +16073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuwaataay", + Comment = null, }, new() { @@ -14624,6 +16084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cha'ari", + Comment = null, }, new() { @@ -14634,6 +16095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nopala Chatino", + Comment = null, }, new() { @@ -14644,6 +16106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cayubaba", + Comment = null, }, new() { @@ -14654,6 +16117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welsh", + Comment = null, }, new() { @@ -14664,6 +16128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuyonon", + Comment = null, }, new() { @@ -14674,6 +16139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huizhou Chinese", + Comment = null, }, new() { @@ -14684,6 +16150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Knaanic", + Comment = null, }, new() { @@ -14694,6 +16161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zenzontepec Chatino", + Comment = null, }, new() { @@ -14704,6 +16172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Zhong Chinese", + Comment = null, }, new() { @@ -14714,6 +16183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zotung Chin", + Comment = null, }, new() { @@ -14724,6 +16194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dangaléat", + Comment = null, }, new() { @@ -14734,6 +16205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dambi", + Comment = null, }, new() { @@ -14744,6 +16216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marik", + Comment = null, }, new() { @@ -14754,6 +16227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duupa", + Comment = null, }, new() { @@ -14764,6 +16238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagbani", + Comment = null, }, new() { @@ -14774,6 +16249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwahatike", + Comment = null, }, new() { @@ -14784,6 +16260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Day", + Comment = null, }, new() { @@ -14794,6 +16271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dar Fur Daju", + Comment = null, }, new() { @@ -14804,6 +16282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dakota", + Comment = null, }, new() { @@ -14814,6 +16293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dahalo", + Comment = null, }, new() { @@ -14824,6 +16304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Damakawa", + Comment = null, }, new() { @@ -14834,6 +16315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danish", + Comment = null, }, new() { @@ -14844,6 +16326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daai Chin", + Comment = null, }, new() { @@ -14854,6 +16337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dandami Maria", + Comment = null, }, new() { @@ -14864,6 +16348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dargwa", + Comment = null, }, new() { @@ -14874,6 +16359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daho-Doo", + Comment = null, }, new() { @@ -14884,6 +16370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dar Sila Daju", + Comment = null, }, new() { @@ -14894,6 +16381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taita", + Comment = null, }, new() { @@ -14904,6 +16392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Davawenyo", + Comment = null, }, new() { @@ -14914,6 +16403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dayi", + Comment = null, }, new() { @@ -14924,6 +16414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moi-Wadea", + Comment = null, }, new() { @@ -14934,6 +16425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangime", + Comment = null, }, new() { @@ -14944,6 +16436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deno", + Comment = null, }, new() { @@ -14954,6 +16447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dadiya", + Comment = null, }, new() { @@ -14964,6 +16458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dabe", + Comment = null, }, new() { @@ -14974,6 +16469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Edopi", + Comment = null, }, new() { @@ -14984,6 +16480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogul Dom Dogon", + Comment = null, }, new() { @@ -14994,6 +16491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doka", + Comment = null, }, new() { @@ -15004,6 +16502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ida'an", + Comment = null, }, new() { @@ -15014,6 +16513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyirbal", + Comment = null, }, new() { @@ -15024,6 +16524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duguri", + Comment = null, }, new() { @@ -15034,6 +16535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duriankere", + Comment = null, }, new() { @@ -15044,6 +16546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dulbu", + Comment = null, }, new() { @@ -15054,6 +16557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duwai", + Comment = null, }, new() { @@ -15064,6 +16568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daba", + Comment = null, }, new() { @@ -15074,6 +16579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dabarre", + Comment = null, }, new() { @@ -15084,6 +16590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ben Tey Dogon", + Comment = null, }, new() { @@ -15094,6 +16601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondum Dom Dogon", + Comment = null, }, new() { @@ -15104,6 +16612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungu", + Comment = null, }, new() { @@ -15114,6 +16623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankan Tey Dogon", + Comment = null, }, new() { @@ -15124,6 +16634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibiyaso", + Comment = null, }, new() { @@ -15134,6 +16645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deccan", + Comment = null, }, new() { @@ -15144,6 +16656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Negerhollands", + Comment = null, }, new() { @@ -15154,6 +16667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dadi Dadi", + Comment = null, }, new() { @@ -15164,6 +16678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongotono", + Comment = null, }, new() { @@ -15174,6 +16689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doondo", + Comment = null, }, new() { @@ -15184,6 +16700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fataluku", + Comment = null, }, new() { @@ -15194,6 +16711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Goodenough", + Comment = null, }, new() { @@ -15204,6 +16722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaru", + Comment = null, }, new() { @@ -15214,6 +16733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dendi (Benin)", + Comment = null, }, new() { @@ -15224,6 +16744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dido", + Comment = null, }, new() { @@ -15234,6 +16755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dhudhuroa", + Comment = null, }, new() { @@ -15244,6 +16766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Donno So Dogon", + Comment = null, }, new() { @@ -15254,6 +16777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawera-Daweloor", + Comment = null, }, new() { @@ -15264,6 +16788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagik", + Comment = null, }, new() { @@ -15274,6 +16799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dedua", + Comment = null, }, new() { @@ -15284,6 +16810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dewoin", + Comment = null, }, new() { @@ -15294,6 +16821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dezfuli", + Comment = null, }, new() { @@ -15304,6 +16832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Degema", + Comment = null, }, new() { @@ -15314,6 +16843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dehwari", + Comment = null, }, new() { @@ -15324,6 +16854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Demisa", + Comment = null, }, new() { @@ -15334,6 +16865,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Delaware", + Comment = null, }, new() { @@ -15344,6 +16876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dem", + Comment = null, }, new() { @@ -15354,6 +16887,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Slave (Athapascan)", + Comment = null, }, new() { @@ -15364,6 +16898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pidgin Delaware", + Comment = null, }, new() { @@ -15374,6 +16909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dendi (Central African Republic)", + Comment = null, }, new() { @@ -15384,6 +16920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deori", + Comment = null, }, new() { @@ -15394,6 +16931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Desano", + Comment = null, }, new() { @@ -15404,6 +16942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "German", + Comment = null, }, new() { @@ -15414,6 +16953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domung", + Comment = null, }, new() { @@ -15424,6 +16964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dengese", + Comment = null, }, new() { @@ -15434,6 +16975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Dagaare", + Comment = null, }, new() { @@ -15444,6 +16986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bunoge Dogon", + Comment = null, }, new() { @@ -15454,6 +16997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Casiguran Dumagat Agta", + Comment = null, }, new() { @@ -15464,6 +17008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagaari Dioula", + Comment = null, }, new() { @@ -15474,6 +17019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Degenan", + Comment = null, }, new() { @@ -15484,6 +17030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doga", + Comment = null, }, new() { @@ -15494,6 +17041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dghwede", + Comment = null, }, new() { @@ -15504,6 +17052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Dagara", + Comment = null, }, new() { @@ -15514,6 +17063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dagba", + Comment = null, }, new() { @@ -15524,6 +17074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andaandi", + Comment = null, }, new() { @@ -15534,6 +17085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dagoman", + Comment = null, }, new() { @@ -15544,6 +17096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogri (individual language)", + Comment = null, }, new() { @@ -15554,6 +17107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlicho", + Comment = null, }, new() { @@ -15564,6 +17118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogoso", + Comment = null, }, new() { @@ -15574,6 +17129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ndra'ngith", + Comment = null, }, new() { @@ -15584,6 +17140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Daungwurrung", + Comment = null, }, new() { @@ -15594,6 +17151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doghoro", + Comment = null, }, new() { @@ -15604,6 +17162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daga", + Comment = null, }, new() { @@ -15614,6 +17173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhundari", + Comment = null, }, new() { @@ -15624,6 +17184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhangu-Djangu", + Comment = null, }, new() { @@ -15634,6 +17195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhimal", + Comment = null, }, new() { @@ -15644,6 +17206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhalandji", + Comment = null, }, new() { @@ -15654,6 +17217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zemba", + Comment = null, }, new() { @@ -15664,6 +17228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhanki", + Comment = null, }, new() { @@ -15674,6 +17239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhodia", + Comment = null, }, new() { @@ -15684,6 +17250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhargari", + Comment = null, }, new() { @@ -15694,6 +17261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhaiso", + Comment = null, }, new() { @@ -15704,6 +17272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dhurga", + Comment = null, }, new() { @@ -15714,6 +17283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dehu", + Comment = null, }, new() { @@ -15724,6 +17294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhanwar (Nepal)", + Comment = null, }, new() { @@ -15734,6 +17305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhungaloo", + Comment = null, }, new() { @@ -15744,6 +17316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dia", + Comment = null, }, new() { @@ -15754,6 +17327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Central Dinka", + Comment = null, }, new() { @@ -15764,6 +17338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakota Dida", + Comment = null, }, new() { @@ -15774,6 +17349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Didinga", + Comment = null, }, new() { @@ -15784,6 +17360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dieri", + Comment = null, }, new() { @@ -15794,6 +17371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Digo", + Comment = null, }, new() { @@ -15804,6 +17382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumiai", + Comment = null, }, new() { @@ -15814,6 +17393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dimbong", + Comment = null, }, new() { @@ -15824,6 +17404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dai", + Comment = null, }, new() { @@ -15834,6 +17415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Dinka", + Comment = null, }, new() { @@ -15844,6 +17426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dilling", + Comment = null, }, new() { @@ -15854,6 +17437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dime", + Comment = null, }, new() { @@ -15864,6 +17448,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Dinka", + Comment = null, }, new() { @@ -15874,6 +17459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibo", + Comment = null, }, new() { @@ -15884,6 +17470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeastern Dinka", + Comment = null, }, new() { @@ -15894,6 +17481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dimli (individual language)", + Comment = null, }, new() { @@ -15904,6 +17492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dirim", + Comment = null, }, new() { @@ -15914,6 +17503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dimasa", + Comment = null, }, new() { @@ -15924,6 +17514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diriku", + Comment = null, }, new() { @@ -15934,6 +17525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhivehi", + Comment = null, }, new() { @@ -15944,6 +17536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Dinka", + Comment = null, }, new() { @@ -15954,6 +17547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dixon Reef", + Comment = null, }, new() { @@ -15964,6 +17558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diuwe", + Comment = null, }, new() { @@ -15974,6 +17569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ding", + Comment = null, }, new() { @@ -15984,6 +17580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djadjawurrung", + Comment = null, }, new() { @@ -15994,6 +17591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djinba", + Comment = null, }, new() { @@ -16004,6 +17602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dar Daju Daju", + Comment = null, }, new() { @@ -16014,6 +17613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djamindjung", + Comment = null, }, new() { @@ -16024,6 +17624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zarma", + Comment = null, }, new() { @@ -16034,6 +17635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djangun", + Comment = null, }, new() { @@ -16044,6 +17646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djinang", + Comment = null, }, new() { @@ -16054,6 +17657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djeebbana", + Comment = null, }, new() { @@ -16064,6 +17668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Maroon Creole", + Comment = null, }, new() { @@ -16074,6 +17679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamsay Dogon", + Comment = null, }, new() { @@ -16084,6 +17690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jawoyn", + Comment = null, }, new() { @@ -16094,6 +17701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jangkang", + Comment = null, }, new() { @@ -16104,6 +17712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djambarrpuyngu", + Comment = null, }, new() { @@ -16114,6 +17723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapriman", + Comment = null, }, new() { @@ -16124,6 +17734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djawi", + Comment = null, }, new() { @@ -16134,6 +17745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dakpakha", + Comment = null, }, new() { @@ -16144,6 +17756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadung", + Comment = null, }, new() { @@ -16154,6 +17767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dakka", + Comment = null, }, new() { @@ -16164,6 +17778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuijau", + Comment = null, }, new() { @@ -16174,6 +17789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Dinka", + Comment = null, }, new() { @@ -16184,6 +17800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazagway", + Comment = null, }, new() { @@ -16194,6 +17811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dolgan", + Comment = null, }, new() { @@ -16204,6 +17822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dahalik", + Comment = null, }, new() { @@ -16214,6 +17833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dalmatian", + Comment = null, }, new() { @@ -16224,6 +17844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darlong", + Comment = null, }, new() { @@ -16234,6 +17855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duma", + Comment = null, }, new() { @@ -16244,6 +17866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mombo Dogon", + Comment = null, }, new() { @@ -16254,6 +17877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gavak", + Comment = null, }, new() { @@ -16264,6 +17888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Madhi Madhi", + Comment = null, }, new() { @@ -16274,6 +17899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dugwor", + Comment = null, }, new() { @@ -16284,6 +17910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Medefaidrin", + Comment = null, }, new() { @@ -16294,6 +17921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Kinabatangan", + Comment = null, }, new() { @@ -16304,6 +17932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domaaki", + Comment = null, }, new() { @@ -16314,6 +17943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dameli", + Comment = null, }, new() { @@ -16324,6 +17954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dama", + Comment = null, }, new() { @@ -16334,6 +17965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemedzung", + Comment = null, }, new() { @@ -16344,6 +17976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Damar", + Comment = null, }, new() { @@ -16354,6 +17987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dampelas", + Comment = null, }, new() { @@ -16364,6 +17998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dubu", + Comment = null, }, new() { @@ -16374,6 +18009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumpas", + Comment = null, }, new() { @@ -16384,6 +18020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mudburra", + Comment = null, }, new() { @@ -16394,6 +18031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dema", + Comment = null, }, new() { @@ -16404,6 +18042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Demta", + Comment = null, }, new() { @@ -16414,6 +18053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Grand Valley Dani", + Comment = null, }, new() { @@ -16424,6 +18064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daonda", + Comment = null, }, new() { @@ -16434,6 +18075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndendeule", + Comment = null, }, new() { @@ -16444,6 +18086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungan", + Comment = null, }, new() { @@ -16454,6 +18097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Grand Valley Dani", + Comment = null, }, new() { @@ -16464,6 +18108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dan", + Comment = null, }, new() { @@ -16474,6 +18119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dengka", + Comment = null, }, new() { @@ -16484,6 +18130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzùùngoo", + Comment = null, }, new() { @@ -16494,6 +18141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndrulo", + Comment = null, }, new() { @@ -16504,6 +18152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danaru", + Comment = null, }, new() { @@ -16514,6 +18163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mid Grand Valley Dani", + Comment = null, }, new() { @@ -16524,6 +18174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danau", + Comment = null, }, new() { @@ -16534,6 +18185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danu", + Comment = null, }, new() { @@ -16544,6 +18196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Dani", + Comment = null, }, new() { @@ -16554,6 +18207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dení", + Comment = null, }, new() { @@ -16564,6 +18218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dom", + Comment = null, }, new() { @@ -16574,6 +18229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dobu", + Comment = null, }, new() { @@ -16584,6 +18240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Dong", + Comment = null, }, new() { @@ -16594,6 +18251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doe", + Comment = null, }, new() { @@ -16604,6 +18262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domu", + Comment = null, }, new() { @@ -16614,6 +18273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dong", + Comment = null, }, new() { @@ -16624,6 +18284,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Dogri (macrolanguage)", + Comment = null, }, new() { @@ -16634,6 +18295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dondo", + Comment = null, }, new() { @@ -16644,6 +18306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doso", + Comment = null, }, new() { @@ -16654,6 +18317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toura (Papua New Guinea)", + Comment = null, }, new() { @@ -16664,6 +18328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongo", + Comment = null, }, new() { @@ -16674,6 +18339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lukpa", + Comment = null, }, new() { @@ -16684,6 +18350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dominican Sign Language", + Comment = null, }, new() { @@ -16694,6 +18361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dori'o", + Comment = null, }, new() { @@ -16704,6 +18372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dogosé", + Comment = null, }, new() { @@ -16714,6 +18383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dass", + Comment = null, }, new() { @@ -16724,6 +18394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dombe", + Comment = null, }, new() { @@ -16734,6 +18405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doyayo", + Comment = null, }, new() { @@ -16744,6 +18416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bussa", + Comment = null, }, new() { @@ -16754,6 +18427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dompo", + Comment = null, }, new() { @@ -16764,6 +18438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dorze", + Comment = null, }, new() { @@ -16774,6 +18449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papar", + Comment = null, }, new() { @@ -16784,6 +18460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dair", + Comment = null, }, new() { @@ -16794,6 +18471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minderico", + Comment = null, }, new() { @@ -16804,6 +18482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darmiya", + Comment = null, }, new() { @@ -16814,6 +18493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dolpo", + Comment = null, }, new() { @@ -16824,6 +18504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rungus", + Comment = null, }, new() { @@ -16834,6 +18515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "C'Lela", + Comment = null, }, new() { @@ -16844,6 +18526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paakantyi", + Comment = null, }, new() { @@ -16854,6 +18537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Damar", + Comment = null, }, new() { @@ -16864,6 +18548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daro-Matu Melanau", + Comment = null, }, new() { @@ -16874,6 +18559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dura", + Comment = null, }, new() { @@ -16884,6 +18570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gedeo", + Comment = null, }, new() { @@ -16894,6 +18581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Drents", + Comment = null, }, new() { @@ -16904,6 +18592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rukai", + Comment = null, }, new() { @@ -16914,6 +18603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darai", + Comment = null, }, new() { @@ -16924,6 +18614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Sorbian", + Comment = null, }, new() { @@ -16934,6 +18625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dutch Sign Language", + Comment = null, }, new() { @@ -16944,6 +18636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daasanach", + Comment = null, }, new() { @@ -16954,6 +18647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Disa", + Comment = null, }, new() { @@ -16964,6 +18658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dokshi", + Comment = null, }, new() { @@ -16974,6 +18669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Danish Sign Language", + Comment = null, }, new() { @@ -16984,6 +18680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dusner", + Comment = null, }, new() { @@ -16994,6 +18691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Desiya", + Comment = null, }, new() { @@ -17004,6 +18702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tadaksahak", + Comment = null, }, new() { @@ -17014,6 +18713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mardin Sign Language", + Comment = null, }, new() { @@ -17024,6 +18724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daur", + Comment = null, }, new() { @@ -17034,6 +18735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labuk-Kinabatangan Kadazan", + Comment = null, }, new() { @@ -17044,6 +18746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ditidaht", + Comment = null, }, new() { @@ -17054,6 +18757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Adithinngithigh", + Comment = null, }, new() { @@ -17064,6 +18768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ana Tinga Dogon", + Comment = null, }, new() { @@ -17074,6 +18779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tene Kan Dogon", + Comment = null, }, new() { @@ -17084,6 +18790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomo Kan Dogon", + Comment = null, }, new() { @@ -17094,6 +18801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daatsʼíin", + Comment = null, }, new() { @@ -17104,6 +18812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tommo So Dogon", + Comment = null, }, new() { @@ -17114,6 +18823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadazan Dusun", + Comment = null, }, new() { @@ -17124,6 +18834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lotud", + Comment = null, }, new() { @@ -17134,6 +18845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toro So Dogon", + Comment = null, }, new() { @@ -17144,6 +18856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toro Tegu Dogon", + Comment = null, }, new() { @@ -17154,6 +18867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tebul Ure Dogon", + Comment = null, }, new() { @@ -17164,6 +18878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dotyali", + Comment = null, }, new() { @@ -17174,6 +18889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duala", + Comment = null, }, new() { @@ -17184,6 +18900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dubli", + Comment = null, }, new() { @@ -17194,6 +18911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duna", + Comment = null, }, new() { @@ -17204,6 +18922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umiray Dumaget Agta", + Comment = null, }, new() { @@ -17214,6 +18933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumbea", + Comment = null, }, new() { @@ -17224,6 +18944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duruma", + Comment = null, }, new() { @@ -17234,6 +18955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungra Bhil", + Comment = null, }, new() { @@ -17244,6 +18966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumun", + Comment = null, }, new() { @@ -17254,6 +18977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uyajitaya", + Comment = null, }, new() { @@ -17264,6 +18988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alabat Island Agta", + Comment = null, }, new() { @@ -17274,6 +18999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Dutch (ca. 1050-1350)", + Comment = null, }, new() { @@ -17284,6 +19010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dusun Deyah", + Comment = null, }, new() { @@ -17294,6 +19021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dupaninan Agta", + Comment = null, }, new() { @@ -17304,6 +19032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duano", + Comment = null, }, new() { @@ -17314,6 +19043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dusun Malang", + Comment = null, }, new() { @@ -17324,6 +19054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dii", + Comment = null, }, new() { @@ -17334,6 +19065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dumi", + Comment = null, }, new() { @@ -17344,6 +19076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Drung", + Comment = null, }, new() { @@ -17354,6 +19087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duvle", + Comment = null, }, new() { @@ -17364,6 +19098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dusun Witu", + Comment = null, }, new() { @@ -17374,6 +19109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duungooma", + Comment = null, }, new() { @@ -17384,6 +19120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dicamay Agta", + Comment = null, }, new() { @@ -17394,6 +19131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Duli-Gey", + Comment = null, }, new() { @@ -17404,6 +19142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duau", + Comment = null, }, new() { @@ -17414,6 +19153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diri", + Comment = null, }, new() { @@ -17424,6 +19164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawik Kui", + Comment = null, }, new() { @@ -17434,6 +19175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawro", + Comment = null, }, new() { @@ -17444,6 +19186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Dutton World Speedwords", + Comment = null, }, new() { @@ -17454,6 +19197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhuwal", + Comment = null, }, new() { @@ -17464,6 +19208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dawawa", + Comment = null, }, new() { @@ -17474,6 +19219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhuwaya", + Comment = null, }, new() { @@ -17484,6 +19230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dewas Rai", + Comment = null, }, new() { @@ -17494,6 +19241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyan", + Comment = null, }, new() { @@ -17504,6 +19252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dyaberdyaber", + Comment = null, }, new() { @@ -17514,6 +19263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dyugun", + Comment = null, }, new() { @@ -17524,6 +19274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Villa Viciosa Agta", + Comment = null, }, new() { @@ -17534,6 +19285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djimini Senoufo", + Comment = null, }, new() { @@ -17544,6 +19296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhutanese Sign Language", + Comment = null, }, new() { @@ -17554,6 +19307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanda Dom Dogon", + Comment = null, }, new() { @@ -17564,6 +19318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyangadi", + Comment = null, }, new() { @@ -17574,6 +19329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jola-Fonyi", + Comment = null, }, new() { @@ -17584,6 +19340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyarim", + Comment = null, }, new() { @@ -17594,6 +19351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dyula", + Comment = null, }, new() { @@ -17604,6 +19362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djabugay", + Comment = null, }, new() { @@ -17614,6 +19373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunzu", + Comment = null, }, new() { @@ -17624,6 +19384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daza", + Comment = null, }, new() { @@ -17634,6 +19395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Djiwarli", + Comment = null, }, new() { @@ -17644,6 +19406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dazaga", + Comment = null, }, new() { @@ -17654,6 +19417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzalakha", + Comment = null, }, new() { @@ -17664,6 +19428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzando", + Comment = null, }, new() { @@ -17674,6 +19439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dzongkha", + Comment = null, }, new() { @@ -17684,6 +19450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karenggapa", + Comment = null, }, new() { @@ -17694,6 +19461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beginci", + Comment = null, }, new() { @@ -17704,6 +19472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ebughu", + Comment = null, }, new() { @@ -17714,6 +19483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Bontok", + Comment = null, }, new() { @@ -17724,6 +19494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Ebo", + Comment = null, }, new() { @@ -17734,6 +19505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ebrié", + Comment = null, }, new() { @@ -17744,6 +19516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Embu", + Comment = null, }, new() { @@ -17754,6 +19527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Eteocretan", + Comment = null, }, new() { @@ -17764,6 +19538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ecuadorian Sign Language", + Comment = null, }, new() { @@ -17774,6 +19549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Eteocypriot", + Comment = null, }, new() { @@ -17784,6 +19560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "E", + Comment = null, }, new() { @@ -17794,6 +19571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efai", + Comment = null, }, new() { @@ -17804,6 +19582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efe", + Comment = null, }, new() { @@ -17814,6 +19593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efik", + Comment = null, }, new() { @@ -17824,6 +19604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ega", + Comment = null, }, new() { @@ -17834,6 +19615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emilian", + Comment = null, }, new() { @@ -17844,6 +19626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Benamanga", + Comment = null, }, new() { @@ -17854,6 +19637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eggon", + Comment = null, }, new() { @@ -17864,6 +19648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Egyptian (Ancient)", + Comment = null, }, new() { @@ -17874,6 +19659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miyakubo Sign Language", + Comment = null, }, new() { @@ -17884,6 +19670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ehueun", + Comment = null, }, new() { @@ -17894,6 +19681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eipomek", + Comment = null, }, new() { @@ -17904,6 +19692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eitiep", + Comment = null, }, new() { @@ -17914,6 +19703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Askopan", + Comment = null, }, new() { @@ -17924,6 +19714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ejamat", + Comment = null, }, new() { @@ -17934,6 +19725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekajuk", + Comment = null, }, new() { @@ -17944,6 +19736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekit", + Comment = null, }, new() { @@ -17954,6 +19747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekari", + Comment = null, }, new() { @@ -17964,6 +19758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eki", + Comment = null, }, new() { @@ -17974,6 +19769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Estonian", + Comment = null, }, new() { @@ -17984,6 +19780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kol (Bangladesh)", + Comment = null, }, new() { @@ -17994,6 +19791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elip", + Comment = null, }, new() { @@ -18004,6 +19802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koti", + Comment = null, }, new() { @@ -18014,6 +19813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ekpeye", + Comment = null, }, new() { @@ -18024,6 +19824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yace", + Comment = null, }, new() { @@ -18034,6 +19835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Kayah", + Comment = null, }, new() { @@ -18044,6 +19846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elepi", + Comment = null, }, new() { @@ -18054,6 +19857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Hugeirat", + Comment = null, }, new() { @@ -18064,6 +19868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nding", + Comment = null, }, new() { @@ -18074,6 +19879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elkei", + Comment = null, }, new() { @@ -18084,6 +19890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modern Greek (1453-)", + Comment = null, }, new() { @@ -18094,6 +19901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eleme", + Comment = null, }, new() { @@ -18104,6 +19912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Molo", + Comment = null, }, new() { @@ -18114,6 +19923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elu", + Comment = null, }, new() { @@ -18124,6 +19934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Elamite", + Comment = null, }, new() { @@ -18134,6 +19945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emai-Iuleha-Ora", + Comment = null, }, new() { @@ -18144,6 +19956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Embaloh", + Comment = null, }, new() { @@ -18154,6 +19967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emerillon", + Comment = null, }, new() { @@ -18164,6 +19978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Meohang", + Comment = null, }, new() { @@ -18174,6 +19989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mussau-Emira", + Comment = null, }, new() { @@ -18184,6 +20000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Maninkakan", + Comment = null, }, new() { @@ -18194,6 +20011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mamulique", + Comment = null, }, new() { @@ -18204,6 +20022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eman", + Comment = null, }, new() { @@ -18214,6 +20033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Emberá", + Comment = null, }, new() { @@ -18224,6 +20044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Minyag", + Comment = null, }, new() { @@ -18234,6 +20055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacific Gulf Yupik", + Comment = null, }, new() { @@ -18244,6 +20066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Muria", + Comment = null, }, new() { @@ -18254,6 +20077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emplawas", + Comment = null, }, new() { @@ -18264,6 +20088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erromintxela", + Comment = null, }, new() { @@ -18274,6 +20099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Epigraphic Mayan", + Comment = null, }, new() { @@ -18284,6 +20110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbessa", + Comment = null, }, new() { @@ -18294,6 +20121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apali", + Comment = null, }, new() { @@ -18304,6 +20132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Markweeta", + Comment = null, }, new() { @@ -18314,6 +20143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "En", + Comment = null, }, new() { @@ -18324,6 +20154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ende", + Comment = null, }, new() { @@ -18334,6 +20165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Forest Enets", + Comment = null, }, new() { @@ -18344,6 +20176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "English", + Comment = null, }, new() { @@ -18354,6 +20187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tundra Enets", + Comment = null, }, new() { @@ -18364,6 +20198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enlhet", + Comment = null, }, new() { @@ -18374,6 +20209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle English (1100-1500)", + Comment = null, }, new() { @@ -18384,6 +20220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Engenni", + Comment = null, }, new() { @@ -18394,6 +20231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enggano", + Comment = null, }, new() { @@ -18404,6 +20242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enga", + Comment = null, }, new() { @@ -18414,6 +20253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emumu", + Comment = null, }, new() { @@ -18424,6 +20264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enu", + Comment = null, }, new() { @@ -18434,6 +20275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enwan (Edo State)", + Comment = null, }, new() { @@ -18444,6 +20286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enwan (Akwa Ibom State)", + Comment = null, }, new() { @@ -18454,6 +20297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enxet", + Comment = null, }, new() { @@ -18464,6 +20308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beti (Côte d'Ivoire)", + Comment = null, }, new() { @@ -18474,6 +20319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Epie", + Comment = null, }, new() { @@ -18484,6 +20330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Esperanto", + Comment = null, }, new() { @@ -18494,6 +20341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eravallan", + Comment = null, }, new() { @@ -18504,6 +20352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sie", + Comment = null, }, new() { @@ -18514,6 +20363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eruwa", + Comment = null, }, new() { @@ -18524,6 +20374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogea", + Comment = null, }, new() { @@ -18534,6 +20385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Efate", + Comment = null, }, new() { @@ -18544,6 +20396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Horpa", + Comment = null, }, new() { @@ -18554,6 +20407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Erre", + Comment = null, }, new() { @@ -18564,6 +20418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ersu", + Comment = null, }, new() { @@ -18574,6 +20429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eritai", + Comment = null, }, new() { @@ -18584,6 +20440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erokwanas", + Comment = null, }, new() { @@ -18594,6 +20451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ese Ejja", + Comment = null, }, new() { @@ -18604,6 +20462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aheri Gondi", + Comment = null, }, new() { @@ -18614,6 +20473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eshtehardi", + Comment = null, }, new() { @@ -18624,6 +20484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Alaskan Inupiatun", + Comment = null, }, new() { @@ -18634,6 +20495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Alaska Inupiatun", + Comment = null, }, new() { @@ -18644,6 +20506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Egypt Sign Language", + Comment = null, }, new() { @@ -18654,6 +20517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Esuma", + Comment = null, }, new() { @@ -18664,6 +20528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salvadoran Sign Language", + Comment = null, }, new() { @@ -18674,6 +20539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Estonian Sign Language", + Comment = null, }, new() { @@ -18684,6 +20550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Esselen", + Comment = null, }, new() { @@ -18694,6 +20561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Siberian Yupik", + Comment = null, }, new() { @@ -18704,6 +20572,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Estonian", + Comment = null, }, new() { @@ -18714,6 +20583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Yupik", + Comment = null, }, new() { @@ -18724,6 +20594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eskayan", + Comment = null, }, new() { @@ -18734,6 +20605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Etebi", + Comment = null, }, new() { @@ -18744,6 +20616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Etchemin", + Comment = null, }, new() { @@ -18754,6 +20627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ethiopian Sign Language", + Comment = null, }, new() { @@ -18764,6 +20638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eton (Vanuatu)", + Comment = null, }, new() { @@ -18774,6 +20649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eton (Cameroon)", + Comment = null, }, new() { @@ -18784,6 +20660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Edolo", + Comment = null, }, new() { @@ -18794,6 +20671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yekhee", + Comment = null, }, new() { @@ -18804,6 +20682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Etruscan", + Comment = null, }, new() { @@ -18814,6 +20693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ejagham", + Comment = null, }, new() { @@ -18824,6 +20704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eten", + Comment = null, }, new() { @@ -18834,6 +20715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semimi", + Comment = null, }, new() { @@ -18844,6 +20726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eudeve", + Comment = null, }, new() { @@ -18854,6 +20737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Basque", + Comment = null, }, new() { @@ -18864,6 +20748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Even", + Comment = null, }, new() { @@ -18874,6 +20759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uvbie", + Comment = null, }, new() { @@ -18884,6 +20770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Evenki", + Comment = null, }, new() { @@ -18894,6 +20781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewe", + Comment = null, }, new() { @@ -18904,6 +20792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewondo", + Comment = null, }, new() { @@ -18914,6 +20803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Extremaduran", + Comment = null, }, new() { @@ -18924,6 +20814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eyak", + Comment = null, }, new() { @@ -18934,6 +20825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keiyo", + Comment = null, }, new() { @@ -18944,6 +20836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ezaa", + Comment = null, }, new() { @@ -18954,6 +20847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uzekwe", + Comment = null, }, new() { @@ -18964,6 +20858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fasu", + Comment = null, }, new() { @@ -18974,6 +20869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fa d'Ambu", + Comment = null, }, new() { @@ -18984,6 +20880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagi", + Comment = null, }, new() { @@ -18994,6 +20891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fagani", + Comment = null, }, new() { @@ -19004,6 +20902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finongan", + Comment = null, }, new() { @@ -19014,6 +20913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baissa Fali", + Comment = null, }, new() { @@ -19024,6 +20924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faiwol", + Comment = null, }, new() { @@ -19034,6 +20935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faita", + Comment = null, }, new() { @@ -19044,6 +20946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fang (Cameroon)", + Comment = null, }, new() { @@ -19054,6 +20957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Fali", + Comment = null, }, new() { @@ -19064,6 +20968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fam", + Comment = null, }, new() { @@ -19074,6 +20979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fang (Equatorial Guinea)", + Comment = null, }, new() { @@ -19084,6 +20990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faroese", + Comment = null, }, new() { @@ -19094,6 +21001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paloor", + Comment = null, }, new() { @@ -19104,6 +21012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fataleka", + Comment = null, }, new() { @@ -19114,6 +21023,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Persian", + Comment = null, }, new() { @@ -19124,6 +21034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanti", + Comment = null, }, new() { @@ -19134,6 +21045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fayu", + Comment = null, }, new() { @@ -19144,6 +21056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fala", + Comment = null, }, new() { @@ -19154,6 +21067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Fars", + Comment = null, }, new() { @@ -19164,6 +21078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Fars", + Comment = null, }, new() { @@ -19174,6 +21089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Albay Bikol", + Comment = null, }, new() { @@ -19184,6 +21100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quebec Sign Language", + Comment = null, }, new() { @@ -19194,6 +21111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Feroge", + Comment = null, }, new() { @@ -19204,6 +21122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foia Foia", + Comment = null, }, new() { @@ -19214,6 +21133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maasina Fulfulde", + Comment = null, }, new() { @@ -19224,6 +21144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fongoro", + Comment = null, }, new() { @@ -19234,6 +21155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nobiin", + Comment = null, }, new() { @@ -19244,6 +21166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fyer", + Comment = null, }, new() { @@ -19254,6 +21177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Faifi", + Comment = null, }, new() { @@ -19264,6 +21188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fijian", + Comment = null, }, new() { @@ -19274,6 +21199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Filipino", + Comment = null, }, new() { @@ -19284,6 +21210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finnish", + Comment = null, }, new() { @@ -19294,6 +21221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fipa", + Comment = null, }, new() { @@ -19304,6 +21232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Firan", + Comment = null, }, new() { @@ -19314,6 +21243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tornedalen Finnish", + Comment = null, }, new() { @@ -19324,6 +21254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fiwaga", + Comment = null, }, new() { @@ -19334,6 +21265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirya-Konzəl", + Comment = null, }, new() { @@ -19344,6 +21276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kven Finnish", + Comment = null, }, new() { @@ -19354,6 +21287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalispel-Pend d'Oreille", + Comment = null, }, new() { @@ -19364,6 +21298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foau", + Comment = null, }, new() { @@ -19374,6 +21309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fali", + Comment = null, }, new() { @@ -19384,6 +21320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Fali", + Comment = null, }, new() { @@ -19394,6 +21331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Flinders Island", + Comment = null, }, new() { @@ -19404,6 +21342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fuliiru", + Comment = null, }, new() { @@ -19414,6 +21353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Flaaitaal", + Comment = null, }, new() { @@ -19424,6 +21364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fe'fe'", + Comment = null, }, new() { @@ -19434,6 +21375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Far Western Muria", + Comment = null, }, new() { @@ -19444,6 +21386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanbak", + Comment = null, }, new() { @@ -19454,6 +21397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fanagalo", + Comment = null, }, new() { @@ -19464,6 +21408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fania", + Comment = null, }, new() { @@ -19474,6 +21419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foodo", + Comment = null, }, new() { @@ -19484,6 +21430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foi", + Comment = null, }, new() { @@ -19494,6 +21441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Foma", + Comment = null, }, new() { @@ -19504,6 +21452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fon", + Comment = null, }, new() { @@ -19514,6 +21463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fore", + Comment = null, }, new() { @@ -19524,6 +21474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Siraya", + Comment = null, }, new() { @@ -19534,6 +21485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fernando Po Creole English", + Comment = null, }, new() { @@ -19544,6 +21496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fas", + Comment = null, }, new() { @@ -19554,6 +21507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "French", + Comment = null, }, new() { @@ -19564,6 +21518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajun French", + Comment = null, }, new() { @@ -19574,6 +21529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fordata", + Comment = null, }, new() { @@ -19584,6 +21540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Frankish", + Comment = null, }, new() { @@ -19594,6 +21551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle French (ca. 1400-1600)", + Comment = null, }, new() { @@ -19604,6 +21562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old French (842-ca. 1400)", + Comment = null, }, new() { @@ -19614,6 +21573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arpitan", + Comment = null, }, new() { @@ -19624,6 +21584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Forak", + Comment = null, }, new() { @@ -19634,6 +21595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Frisian", + Comment = null, }, new() { @@ -19644,6 +21606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Frisian", + Comment = null, }, new() { @@ -19654,6 +21617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fortsenal", + Comment = null, }, new() { @@ -19664,6 +21628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Frisian", + Comment = null, }, new() { @@ -19674,6 +21639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finnish Sign Language", + Comment = null, }, new() { @@ -19684,6 +21650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "French Sign Language", + Comment = null, }, new() { @@ -19694,6 +21661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Finland-Swedish Sign Language", + Comment = null, }, new() { @@ -19704,6 +21672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adamawa Fulfulde", + Comment = null, }, new() { @@ -19714,6 +21683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pulaar", + Comment = null, }, new() { @@ -19724,6 +21694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Futuna", + Comment = null, }, new() { @@ -19734,6 +21705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borgu Fulfulde", + Comment = null, }, new() { @@ -19744,6 +21716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pular", + Comment = null, }, new() { @@ -19754,6 +21727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Niger Fulfulde", + Comment = null, }, new() { @@ -19764,6 +21738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagirmi Fulfulde", + Comment = null, }, new() { @@ -19774,6 +21749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ko", + Comment = null, }, new() { @@ -19784,6 +21760,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Fulah", + Comment = null, }, new() { @@ -19794,6 +21771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fum", + Comment = null, }, new() { @@ -19804,6 +21782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fulniô", + Comment = null, }, new() { @@ -19814,6 +21793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central-Eastern Niger Fulfulde", + Comment = null, }, new() { @@ -19824,6 +21804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Friulian", + Comment = null, }, new() { @@ -19834,6 +21815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Futuna-Aniwa", + Comment = null, }, new() { @@ -19844,6 +21826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Furu", + Comment = null, }, new() { @@ -19854,6 +21837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigerian Fulfulde", + Comment = null, }, new() { @@ -19864,6 +21848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fuyug", + Comment = null, }, new() { @@ -19874,6 +21859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fur", + Comment = null, }, new() { @@ -19884,6 +21870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fwâi", + Comment = null, }, new() { @@ -19894,6 +21881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fwe", + Comment = null, }, new() { @@ -19904,6 +21892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ga", + Comment = null, }, new() { @@ -19914,6 +21903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gabri", + Comment = null, }, new() { @@ -19924,6 +21914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mixed Great Andamanese", + Comment = null, }, new() { @@ -19934,6 +21925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaddang", + Comment = null, }, new() { @@ -19944,6 +21936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guarequena", + Comment = null, }, new() { @@ -19954,6 +21947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gende", + Comment = null, }, new() { @@ -19964,6 +21958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagauz", + Comment = null, }, new() { @@ -19974,6 +21969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alekano", + Comment = null, }, new() { @@ -19984,6 +21980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borei", + Comment = null, }, new() { @@ -19994,6 +21991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gadsup", + Comment = null, }, new() { @@ -20004,6 +22002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamkonora", + Comment = null, }, new() { @@ -20014,6 +22013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galolen", + Comment = null, }, new() { @@ -20024,6 +22024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kandawo", + Comment = null, }, new() { @@ -20034,6 +22035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gan Chinese", + Comment = null, }, new() { @@ -20044,6 +22046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gants", + Comment = null, }, new() { @@ -20054,6 +22057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gal", + Comment = null, }, new() { @@ -20064,6 +22068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gata'", + Comment = null, }, new() { @@ -20074,6 +22079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galeya", + Comment = null, }, new() { @@ -20084,6 +22090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adiwasi Garasia", + Comment = null, }, new() { @@ -20094,6 +22101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenati", + Comment = null, }, new() { @@ -20104,6 +22112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mudhili Gadaba", + Comment = null, }, new() { @@ -20114,6 +22123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nobonob", + Comment = null, }, new() { @@ -20124,6 +22134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borana-Arsi-Guji Oromo", + Comment = null, }, new() { @@ -20134,6 +22145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gayo", + Comment = null, }, new() { @@ -20144,6 +22156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Central Oromo", + Comment = null, }, new() { @@ -20154,6 +22167,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Gbaya (Central African Republic)", + Comment = null, }, new() { @@ -20164,6 +22178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaytetye", + Comment = null, }, new() { @@ -20174,6 +22189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karajarri", + Comment = null, }, new() { @@ -20184,6 +22200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niksek", + Comment = null, }, new() { @@ -20194,6 +22211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaikundi", + Comment = null, }, new() { @@ -20204,6 +22222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbanziri", + Comment = null, }, new() { @@ -20214,6 +22233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Defi Gbe", + Comment = null, }, new() { @@ -20224,6 +22244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galela", + Comment = null, }, new() { @@ -20234,6 +22255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bodo Gadaba", + Comment = null, }, new() { @@ -20244,6 +22266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaddi", + Comment = null, }, new() { @@ -20254,6 +22277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamit", + Comment = null, }, new() { @@ -20264,6 +22288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garhwali", + Comment = null, }, new() { @@ -20274,6 +22299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mo'da", + Comment = null, }, new() { @@ -20284,6 +22310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Grebo", + Comment = null, }, new() { @@ -20294,6 +22321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya-Bossangoa", + Comment = null, }, new() { @@ -20304,6 +22332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya-Bozoum", + Comment = null, }, new() { @@ -20314,6 +22343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbagyi", + Comment = null, }, new() { @@ -20324,6 +22354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbesi Gbe", + Comment = null, }, new() { @@ -20334,6 +22365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagadu", + Comment = null, }, new() { @@ -20344,6 +22376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbanu", + Comment = null, }, new() { @@ -20354,6 +22387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gabi-Gabi", + Comment = null, }, new() { @@ -20364,6 +22398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Xwla Gbe", + Comment = null, }, new() { @@ -20374,6 +22409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbari", + Comment = null, }, new() { @@ -20384,6 +22420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zoroastrian Dari", + Comment = null, }, new() { @@ -20394,6 +22431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mali", + Comment = null, }, new() { @@ -20404,6 +22442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ganggalida", + Comment = null, }, new() { @@ -20414,6 +22453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Galice", + Comment = null, }, new() { @@ -20424,6 +22464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guadeloupean Creole French", + Comment = null, }, new() { @@ -20434,6 +22475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Grenadian Creole English", + Comment = null, }, new() { @@ -20444,6 +22486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaina", + Comment = null, }, new() { @@ -20454,6 +22497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guianese Creole French", + Comment = null, }, new() { @@ -20464,6 +22508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Colonia Tovar German", + Comment = null, }, new() { @@ -20474,6 +22519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gade Lohar", + Comment = null, }, new() { @@ -20484,6 +22530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pottangi Ollar Gadaba", + Comment = null, }, new() { @@ -20494,6 +22541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gugu Badhun", + Comment = null, }, new() { @@ -20504,6 +22552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gedaged", + Comment = null, }, new() { @@ -20514,6 +22563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gude", + Comment = null, }, new() { @@ -20524,6 +22574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guduf-Gava", + Comment = null, }, new() { @@ -20534,6 +22585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ga'dang", + Comment = null, }, new() { @@ -20544,6 +22596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gadjerawang", + Comment = null, }, new() { @@ -20554,6 +22607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gundi", + Comment = null, }, new() { @@ -20564,6 +22618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurdjar", + Comment = null, }, new() { @@ -20574,6 +22629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gadang", + Comment = null, }, new() { @@ -20584,6 +22640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dirasha", + Comment = null, }, new() { @@ -20594,6 +22651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laal", + Comment = null, }, new() { @@ -20604,6 +22662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umanakaina", + Comment = null, }, new() { @@ -20614,6 +22673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghodoberi", + Comment = null, }, new() { @@ -20624,6 +22684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mehri", + Comment = null, }, new() { @@ -20634,6 +22695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wipi", + Comment = null, }, new() { @@ -20644,6 +22706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghandruk Sign Language", + Comment = null, }, new() { @@ -20654,6 +22717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kungardutyi", + Comment = null, }, new() { @@ -20664,6 +22728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gudu", + Comment = null, }, new() { @@ -20674,6 +22739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Godwari", + Comment = null, }, new() { @@ -20684,6 +22750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geruma", + Comment = null, }, new() { @@ -20694,6 +22761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kire", + Comment = null, }, new() { @@ -20704,6 +22772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gboloo Grebo", + Comment = null, }, new() { @@ -20714,6 +22783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gade", + Comment = null, }, new() { @@ -20724,6 +22794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gerai", + Comment = null, }, new() { @@ -20734,6 +22805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gengle", + Comment = null, }, new() { @@ -20744,6 +22816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hutterite German", + Comment = null, }, new() { @@ -20754,6 +22827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gebe", + Comment = null, }, new() { @@ -20764,6 +22838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gen", + Comment = null, }, new() { @@ -20774,6 +22849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ywom", + Comment = null, }, new() { @@ -20784,6 +22860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ut-Ma'in", + Comment = null, }, new() { @@ -20794,6 +22871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geme", + Comment = null, }, new() { @@ -20804,6 +22882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geser-Gorom", + Comment = null, }, new() { @@ -20814,6 +22893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eviya", + Comment = null, }, new() { @@ -20824,6 +22904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gera", + Comment = null, }, new() { @@ -20834,6 +22915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garre", + Comment = null, }, new() { @@ -20844,6 +22926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enya", + Comment = null, }, new() { @@ -20854,6 +22937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Geez", + Comment = null, }, new() { @@ -20864,6 +22948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patpatar", + Comment = null, }, new() { @@ -20874,6 +22959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gafat", + Comment = null, }, new() { @@ -20884,6 +22970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gao", + Comment = null, }, new() { @@ -20894,6 +22981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbii", + Comment = null, }, new() { @@ -20904,6 +22992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gugadj", + Comment = null, }, new() { @@ -20914,6 +23003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurr-goni", + Comment = null, }, new() { @@ -20924,6 +23014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurgula", + Comment = null, }, new() { @@ -20934,6 +23025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kungarakany", + Comment = null, }, new() { @@ -20944,6 +23036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganglau", + Comment = null, }, new() { @@ -20954,6 +23047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gitua", + Comment = null, }, new() { @@ -20964,6 +23058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gagu", + Comment = null, }, new() { @@ -20974,6 +23069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gogodala", + Comment = null, }, new() { @@ -20984,6 +23080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghadamès", + Comment = null, }, new() { @@ -20994,6 +23091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hiberno-Scottish Gaelic", + Comment = null, }, new() { @@ -21004,6 +23102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ghale", + Comment = null, }, new() { @@ -21014,6 +23113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ghale", + Comment = null, }, new() { @@ -21024,6 +23124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geko Karen", + Comment = null, }, new() { @@ -21034,6 +23135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghulfan", + Comment = null, }, new() { @@ -21044,6 +23146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghanongga", + Comment = null, }, new() { @@ -21054,6 +23157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghomara", + Comment = null, }, new() { @@ -21064,6 +23168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghera", + Comment = null, }, new() { @@ -21074,6 +23179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guhu-Samane", + Comment = null, }, new() { @@ -21084,6 +23190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuke", + Comment = null, }, new() { @@ -21094,6 +23201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kija", + Comment = null, }, new() { @@ -21104,6 +23212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gibanawa", + Comment = null, }, new() { @@ -21114,6 +23223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gail", + Comment = null, }, new() { @@ -21124,6 +23234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gidar", + Comment = null, }, new() { @@ -21134,6 +23245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaɓogbo", + Comment = null, }, new() { @@ -21144,6 +23256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goaria", + Comment = null, }, new() { @@ -21154,6 +23267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Githabul", + Comment = null, }, new() { @@ -21164,6 +23278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Girirra", + Comment = null, }, new() { @@ -21174,6 +23289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilbertese", + Comment = null, }, new() { @@ -21184,6 +23300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimi (Eastern Highlands)", + Comment = null, }, new() { @@ -21194,6 +23311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hinukh", + Comment = null, }, new() { @@ -21204,6 +23322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimi (West New Britain)", + Comment = null, }, new() { @@ -21214,6 +23333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Green Gelao", + Comment = null, }, new() { @@ -21224,6 +23344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Red Gelao", + Comment = null, }, new() { @@ -21234,6 +23355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Giziga", + Comment = null, }, new() { @@ -21244,6 +23366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gitxsan", + Comment = null, }, new() { @@ -21254,6 +23377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mulao", + Comment = null, }, new() { @@ -21264,6 +23388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "White Gelao", + Comment = null, }, new() { @@ -21274,6 +23399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilima", + Comment = null, }, new() { @@ -21284,6 +23410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giyug", + Comment = null, }, new() { @@ -21294,6 +23421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Giziga", + Comment = null, }, new() { @@ -21304,6 +23432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachi Koli", + Comment = null, }, new() { @@ -21314,6 +23443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gunditjmara", + Comment = null, }, new() { @@ -21324,6 +23454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gonja", + Comment = null, }, new() { @@ -21334,6 +23465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurindji Kriol", + Comment = null, }, new() { @@ -21344,6 +23476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gujari", + Comment = null, }, new() { @@ -21354,6 +23487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guya", + Comment = null, }, new() { @@ -21364,6 +23498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magɨ (Madang Province)", + Comment = null, }, new() { @@ -21374,6 +23509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndai", + Comment = null, }, new() { @@ -21384,6 +23520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gokana", + Comment = null, }, new() { @@ -21394,6 +23531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kok-Nar", + Comment = null, }, new() { @@ -21404,6 +23542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guinea Kpelle", + Comment = null, }, new() { @@ -21414,6 +23553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "ǂUngkue", + Comment = null, }, new() { @@ -21424,6 +23564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Scottish Gaelic", + Comment = null, }, new() { @@ -21434,6 +23575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Belning", + Comment = null, }, new() { @@ -21444,6 +23586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bon Gula", + Comment = null, }, new() { @@ -21454,6 +23597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanai", + Comment = null, }, new() { @@ -21464,6 +23608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irish", + Comment = null, }, new() { @@ -21474,6 +23619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galician", + Comment = null, }, new() { @@ -21484,6 +23630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Pashai", + Comment = null, }, new() { @@ -21494,6 +23641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula Iro", + Comment = null, }, new() { @@ -21504,6 +23652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilaki", + Comment = null, }, new() { @@ -21514,6 +23663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garlali", + Comment = null, }, new() { @@ -21524,6 +23674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Galambu", + Comment = null, }, new() { @@ -21534,6 +23685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Glaro-Twabo", + Comment = null, }, new() { @@ -21544,6 +23696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula (Chad)", + Comment = null, }, new() { @@ -21554,6 +23707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manx", + Comment = null, }, new() { @@ -21564,6 +23718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Glavda", + Comment = null, }, new() { @@ -21574,6 +23729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gule", + Comment = null, }, new() { @@ -21584,6 +23740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gambera", + Comment = null, }, new() { @@ -21594,6 +23751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula'alaa", + Comment = null, }, new() { @@ -21604,6 +23762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mághdì", + Comment = null, }, new() { @@ -21614,6 +23773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magɨyi", + Comment = null, }, new() { @@ -21624,6 +23784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle High German (ca. 1050-1500)", + Comment = null, }, new() { @@ -21634,6 +23795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Low German", + Comment = null, }, new() { @@ -21644,6 +23806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya-Mbodomo", + Comment = null, }, new() { @@ -21654,6 +23817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimnime", + Comment = null, }, new() { @@ -21664,6 +23828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mirning", + Comment = null, }, new() { @@ -21674,6 +23839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumalu", + Comment = null, }, new() { @@ -21684,6 +23850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamo", + Comment = null, }, new() { @@ -21694,6 +23861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magoma", + Comment = null, }, new() { @@ -21704,6 +23872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Mycenaean Greek", + Comment = null, }, new() { @@ -21714,6 +23883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mgbolizhia", + Comment = null, }, new() { @@ -21724,6 +23894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaansa", + Comment = null, }, new() { @@ -21734,6 +23905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gangte", + Comment = null, }, new() { @@ -21744,6 +23916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guanche", + Comment = null, }, new() { @@ -21754,6 +23927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zulgo-Gemzek", + Comment = null, }, new() { @@ -21764,6 +23938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganang", + Comment = null, }, new() { @@ -21774,6 +23949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngangam", + Comment = null, }, new() { @@ -21784,6 +23960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lere", + Comment = null, }, new() { @@ -21794,6 +23971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gooniyandi", + Comment = null, }, new() { @@ -21804,6 +23982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngen", + Comment = null, }, new() { @@ -21814,6 +23993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǁGana", + Comment = null, }, new() { @@ -21824,6 +24004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gangulu", + Comment = null, }, new() { @@ -21834,6 +24015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ginuman", + Comment = null, }, new() { @@ -21844,6 +24026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumatj", + Comment = null, }, new() { @@ -21854,6 +24037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Gondi", + Comment = null, }, new() { @@ -21864,6 +24048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gana", + Comment = null, }, new() { @@ -21874,6 +24059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gureng Gureng", + Comment = null, }, new() { @@ -21884,6 +24070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guntai", + Comment = null, }, new() { @@ -21894,6 +24081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gnau", + Comment = null, }, new() { @@ -21904,6 +24092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Bolivian Guaraní", + Comment = null, }, new() { @@ -21914,6 +24103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganzi", + Comment = null, }, new() { @@ -21924,6 +24114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guro", + Comment = null, }, new() { @@ -21934,6 +24125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Playero", + Comment = null, }, new() { @@ -21944,6 +24136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorakor", + Comment = null, }, new() { @@ -21954,6 +24147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Godié", + Comment = null, }, new() { @@ -21964,6 +24158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gongduk", + Comment = null, }, new() { @@ -21974,6 +24169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gofa", + Comment = null, }, new() { @@ -21984,6 +24180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gogo", + Comment = null, }, new() { @@ -21994,6 +24191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old High German (ca. 750-1050)", + Comment = null, }, new() { @@ -22004,6 +24202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gobasi", + Comment = null, }, new() { @@ -22014,6 +24213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gowlan", + Comment = null, }, new() { @@ -22024,6 +24224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gowli", + Comment = null, }, new() { @@ -22034,6 +24235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gola", + Comment = null, }, new() { @@ -22044,6 +24246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goan Konkani", + Comment = null, }, new() { @@ -22054,6 +24257,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Gondi", + Comment = null, }, new() { @@ -22064,6 +24268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gone Dau", + Comment = null, }, new() { @@ -22074,6 +24279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yeretuar", + Comment = null, }, new() { @@ -22084,6 +24290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorap", + Comment = null, }, new() { @@ -22094,6 +24301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorontalo", + Comment = null, }, new() { @@ -22104,6 +24312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gronings", + Comment = null, }, new() { @@ -22114,6 +24323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Gothic", + Comment = null, }, new() { @@ -22124,6 +24334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gavar", + Comment = null, }, new() { @@ -22134,6 +24345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goo", + Comment = null, }, new() { @@ -22144,6 +24356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorowa", + Comment = null, }, new() { @@ -22154,6 +24367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gobu", + Comment = null, }, new() { @@ -22164,6 +24378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Goundo", + Comment = null, }, new() { @@ -22174,6 +24389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gozarkhani", + Comment = null, }, new() { @@ -22184,6 +24400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gupa-Abawa", + Comment = null, }, new() { @@ -22194,6 +24411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghanaian Pidgin English", + Comment = null, }, new() { @@ -22204,6 +24422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taiap", + Comment = null, }, new() { @@ -22214,6 +24433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ga'anda", + Comment = null, }, new() { @@ -22224,6 +24444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guiqiong", + Comment = null, }, new() { @@ -22234,6 +24455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guana (Brazil)", + Comment = null, }, new() { @@ -22244,6 +24466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gor", + Comment = null, }, new() { @@ -22254,6 +24477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qau", + Comment = null, }, new() { @@ -22264,6 +24488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajput Garasia", + Comment = null, }, new() { @@ -22274,6 +24499,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Grebo", + Comment = null, }, new() { @@ -22284,6 +24510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Greek (to 1453)", + Comment = null, }, new() { @@ -22294,6 +24521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guruntum-Mbaaru", + Comment = null, }, new() { @@ -22304,6 +24532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madi", + Comment = null, }, new() { @@ -22314,6 +24543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbiri-Niragu", + Comment = null, }, new() { @@ -22324,6 +24554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghari", + Comment = null, }, new() { @@ -22334,6 +24565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Grebo", + Comment = null, }, new() { @@ -22344,6 +24576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota Marudu Talantang", + Comment = null, }, new() { @@ -22354,6 +24587,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Guarani", + Comment = null, }, new() { @@ -22364,6 +24598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Groma", + Comment = null, }, new() { @@ -22374,6 +24609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gorovu", + Comment = null, }, new() { @@ -22384,6 +24620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taznatit", + Comment = null, }, new() { @@ -22394,6 +24631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gresi", + Comment = null, }, new() { @@ -22404,6 +24642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garo", + Comment = null, }, new() { @@ -22414,6 +24653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kistane", + Comment = null, }, new() { @@ -22424,6 +24664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Grebo", + Comment = null, }, new() { @@ -22434,6 +24675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gweda", + Comment = null, }, new() { @@ -22444,6 +24686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guriaso", + Comment = null, }, new() { @@ -22454,6 +24697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barclayville Grebo", + Comment = null, }, new() { @@ -22464,6 +24708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guramalum", + Comment = null, }, new() { @@ -22474,6 +24719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ghanaian Sign Language", + Comment = null, }, new() { @@ -22484,6 +24730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "German Sign Language", + Comment = null, }, new() { @@ -22494,6 +24741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gusilay", + Comment = null, }, new() { @@ -22504,6 +24752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guatemalan Sign Language", + Comment = null, }, new() { @@ -22514,6 +24763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nema", + Comment = null, }, new() { @@ -22524,6 +24774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Gbaya", + Comment = null, }, new() { @@ -22534,6 +24785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wasembo", + Comment = null, }, new() { @@ -22544,6 +24796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Greek Sign Language", + Comment = null, }, new() { @@ -22554,6 +24807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss German", + Comment = null, }, new() { @@ -22564,6 +24818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guató", + Comment = null, }, new() { @@ -22574,6 +24829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aghu-Tharnggala", + Comment = null, }, new() { @@ -22584,6 +24840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shiki", + Comment = null, }, new() { @@ -22594,6 +24851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guajajára", + Comment = null, }, new() { @@ -22604,6 +24862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayuu", + Comment = null, }, new() { @@ -22614,6 +24873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yocoboué Dida", + Comment = null, }, new() { @@ -22624,6 +24884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurindji", + Comment = null, }, new() { @@ -22634,6 +24895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gupapuyngu", + Comment = null, }, new() { @@ -22644,6 +24906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paraguayan Guaraní", + Comment = null, }, new() { @@ -22654,6 +24917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guahibo", + Comment = null, }, new() { @@ -22664,6 +24928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Bolivian Guaraní", + Comment = null, }, new() { @@ -22674,6 +24939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gujarati", + Comment = null, }, new() { @@ -22684,6 +24950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumuz", + Comment = null, }, new() { @@ -22694,6 +24961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sea Island Creole English", + Comment = null, }, new() { @@ -22704,6 +24972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guambiano", + Comment = null, }, new() { @@ -22714,6 +24983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbyá Guaraní", + Comment = null, }, new() { @@ -22724,6 +24994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guayabero", + Comment = null, }, new() { @@ -22734,6 +25005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gunwinggu", + Comment = null, }, new() { @@ -22744,6 +25016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aché", + Comment = null, }, new() { @@ -22754,6 +25027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Farefare", + Comment = null, }, new() { @@ -22764,6 +25038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guinean Sign Language", + Comment = null, }, new() { @@ -22774,6 +25049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maléku Jaíka", + Comment = null, }, new() { @@ -22784,6 +25060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanomamö", + Comment = null, }, new() { @@ -22794,6 +25071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gun", + Comment = null, }, new() { @@ -22804,6 +25082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gourmanchéma", + Comment = null, }, new() { @@ -22814,6 +25093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gusii", + Comment = null, }, new() { @@ -22824,6 +25104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guana (Paraguay)", + Comment = null, }, new() { @@ -22834,6 +25115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guanano", + Comment = null, }, new() { @@ -22844,6 +25126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duwet", + Comment = null, }, new() { @@ -22854,6 +25137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Golin", + Comment = null, }, new() { @@ -22864,6 +25148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guajá", + Comment = null, }, new() { @@ -22874,6 +25159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gulay", + Comment = null, }, new() { @@ -22884,6 +25170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurmana", + Comment = null, }, new() { @@ -22894,6 +25181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuku-Yalanji", + Comment = null, }, new() { @@ -22904,6 +25192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gavião Do Jiparaná", + Comment = null, }, new() { @@ -22914,6 +25203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pará Gavião", + Comment = null, }, new() { @@ -22924,6 +25214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurung", + Comment = null, }, new() { @@ -22934,6 +25225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gumawana", + Comment = null, }, new() { @@ -22944,6 +25236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guyani", + Comment = null, }, new() { @@ -22954,6 +25247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbato", + Comment = null, }, new() { @@ -22964,6 +25258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwa", + Comment = null, }, new() { @@ -22974,6 +25269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gawri", + Comment = null, }, new() { @@ -22984,6 +25280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gawwada", + Comment = null, }, new() { @@ -22994,6 +25291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gweno", + Comment = null, }, new() { @@ -23004,6 +25302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gowro", + Comment = null, }, new() { @@ -23014,6 +25313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moo", + Comment = null, }, new() { @@ -23024,6 +25324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwichʼin", + Comment = null, }, new() { @@ -23034,6 +25335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǀGwi", + Comment = null, }, new() { @@ -23044,6 +25346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Awngthim", + Comment = null, }, new() { @@ -23054,6 +25357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwandara", + Comment = null, }, new() { @@ -23064,6 +25368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwere", + Comment = null, }, new() { @@ -23074,6 +25379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gawar-Bati", + Comment = null, }, new() { @@ -23084,6 +25390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guwamu", + Comment = null, }, new() { @@ -23094,6 +25401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwini", + Comment = null, }, new() { @@ -23104,6 +25412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gua", + Comment = null, }, new() { @@ -23114,6 +25423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wè Southern", + Comment = null, }, new() { @@ -23124,6 +25434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Gbaya", + Comment = null, }, new() { @@ -23134,6 +25445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garus", + Comment = null, }, new() { @@ -23144,6 +25456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayardild", + Comment = null, }, new() { @@ -23154,6 +25467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gyem", + Comment = null, }, new() { @@ -23164,6 +25478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gungabula", + Comment = null, }, new() { @@ -23174,6 +25489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbayi", + Comment = null, }, new() { @@ -23184,6 +25500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gyele", + Comment = null, }, new() { @@ -23194,6 +25511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gayil", + Comment = null, }, new() { @@ -23204,6 +25522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngäbere", + Comment = null, }, new() { @@ -23214,6 +25533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guyanese Creole English", + Comment = null, }, new() { @@ -23224,6 +25544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gyalsumdo", + Comment = null, }, new() { @@ -23234,6 +25555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guarayu", + Comment = null, }, new() { @@ -23244,6 +25566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gunya", + Comment = null, }, new() { @@ -23254,6 +25577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geji", + Comment = null, }, new() { @@ -23264,6 +25588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganza", + Comment = null, }, new() { @@ -23274,6 +25599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gazi", + Comment = null, }, new() { @@ -23284,6 +25610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gane", + Comment = null, }, new() { @@ -23294,6 +25621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hän", + Comment = null, }, new() { @@ -23304,6 +25632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanoi Sign Language", + Comment = null, }, new() { @@ -23314,6 +25643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gurani", + Comment = null, }, new() { @@ -23324,6 +25654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hatam", + Comment = null, }, new() { @@ -23334,6 +25665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Oromo", + Comment = null, }, new() { @@ -23344,6 +25676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haiphong Sign Language", + Comment = null, }, new() { @@ -23354,6 +25687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanga", + Comment = null, }, new() { @@ -23364,6 +25698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hahon", + Comment = null, }, new() { @@ -23374,6 +25709,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Haida", + Comment = null, }, new() { @@ -23384,6 +25720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hajong", + Comment = null, }, new() { @@ -23394,6 +25731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hakka Chinese", + Comment = null, }, new() { @@ -23404,6 +25742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halang", + Comment = null, }, new() { @@ -23414,6 +25753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hewa", + Comment = null, }, new() { @@ -23424,6 +25764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hangaza", + Comment = null, }, new() { @@ -23434,6 +25775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hakö", + Comment = null, }, new() { @@ -23444,6 +25786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hupla", + Comment = null, }, new() { @@ -23454,6 +25797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ha", + Comment = null, }, new() { @@ -23464,6 +25808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harari", + Comment = null, }, new() { @@ -23474,6 +25819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haisla", + Comment = null, }, new() { @@ -23484,6 +25830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haitian", + Comment = null, }, new() { @@ -23494,6 +25841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hausa", + Comment = null, }, new() { @@ -23504,6 +25852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Havu", + Comment = null, }, new() { @@ -23514,6 +25863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hawaiian", + Comment = null, }, new() { @@ -23524,6 +25874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Haida", + Comment = null, }, new() { @@ -23534,6 +25885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haya", + Comment = null, }, new() { @@ -23544,6 +25896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hazaragi", + Comment = null, }, new() { @@ -23554,6 +25907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamba", + Comment = null, }, new() { @@ -23564,6 +25918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huba", + Comment = null, }, new() { @@ -23574,6 +25929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Heiban", + Comment = null, }, new() { @@ -23584,6 +25940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Hebrew", + Comment = null, }, new() { @@ -23594,6 +25951,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Serbo-Croatian", + Comment = "Code element for 639-1 has been deprecated", }, new() { @@ -23604,6 +25962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Habu", + Comment = null, }, new() { @@ -23614,6 +25973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Andaman Creole Hindi", + Comment = null, }, new() { @@ -23624,6 +25984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huichol", + Comment = null, }, new() { @@ -23634,6 +25995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Haida", + Comment = null, }, new() { @@ -23644,6 +26006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Honduras Sign Language", + Comment = null, }, new() { @@ -23654,6 +26017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadiyya", + Comment = null, }, new() { @@ -23664,6 +26028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Qiandong Miao", + Comment = null, }, new() { @@ -23674,6 +26039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hebrew", + Comment = null, }, new() { @@ -23684,6 +26050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Herdé", + Comment = null, }, new() { @@ -23694,6 +26061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Helong", + Comment = null, }, new() { @@ -23704,6 +26072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hehe", + Comment = null, }, new() { @@ -23714,6 +26083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Heiltsuk", + Comment = null, }, new() { @@ -23724,6 +26094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hemba", + Comment = null, }, new() { @@ -23734,6 +26105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Herero", + Comment = null, }, new() { @@ -23744,6 +26116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haiǁom", + Comment = null, }, new() { @@ -23754,6 +26127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haigwai", + Comment = null, }, new() { @@ -23764,6 +26138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hoia Hoia", + Comment = null, }, new() { @@ -23774,6 +26149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerak", + Comment = null, }, new() { @@ -23784,6 +26160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hoyahoya", + Comment = null, }, new() { @@ -23794,6 +26171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamang", + Comment = null, }, new() { @@ -23804,6 +26182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hibito", + Comment = null, }, new() { @@ -23814,6 +26193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hidatsa", + Comment = null, }, new() { @@ -23824,6 +26204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fiji Hindi", + Comment = null, }, new() { @@ -23834,6 +26215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamwe", + Comment = null, }, new() { @@ -23844,6 +26226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pamosu", + Comment = null, }, new() { @@ -23854,6 +26237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hinduri", + Comment = null, }, new() { @@ -23864,6 +26248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hijuk", + Comment = null, }, new() { @@ -23874,6 +26259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seit-Kaitetu", + Comment = null, }, new() { @@ -23884,6 +26270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiligaynon", + Comment = null, }, new() { @@ -23894,6 +26281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hindi", + Comment = null, }, new() { @@ -23904,6 +26292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsoa", + Comment = null, }, new() { @@ -23914,6 +26303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Himarimã", + Comment = null, }, new() { @@ -23924,6 +26314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hittite", + Comment = null, }, new() { @@ -23934,6 +26325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiw", + Comment = null, }, new() { @@ -23944,6 +26336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hixkaryána", + Comment = null, }, new() { @@ -23954,6 +26347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haji", + Comment = null, }, new() { @@ -23964,6 +26358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kahe", + Comment = null, }, new() { @@ -23974,6 +26369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunde", + Comment = null, }, new() { @@ -23984,6 +26380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khah", + Comment = null, }, new() { @@ -23994,6 +26391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunjara-Kaina Ke", + Comment = null, }, new() { @@ -24004,6 +26402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mel-Khaonh", + Comment = null, }, new() { @@ -24014,6 +26413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hong Kong Sign Language", + Comment = null, }, new() { @@ -24024,6 +26424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halia", + Comment = null, }, new() { @@ -24034,6 +26435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halbi", + Comment = null, }, new() { @@ -24044,6 +26446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halang Doan", + Comment = null, }, new() { @@ -24054,6 +26457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hlersu", + Comment = null, }, new() { @@ -24064,6 +26468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matu Chin", + Comment = null, }, new() { @@ -24074,6 +26479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hieroglyphic Luwian", + Comment = null, }, new() { @@ -24084,6 +26490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Mashan Hmong", + Comment = null, }, new() { @@ -24094,6 +26501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Humburi Senni Songhay", + Comment = null, }, new() { @@ -24104,6 +26512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Huishui Hmong", + Comment = null, }, new() { @@ -24114,6 +26523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Large Flowery Miao", + Comment = null, }, new() { @@ -24124,6 +26534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Huishui Hmong", + Comment = null, }, new() { @@ -24134,6 +26545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Don", + Comment = null, }, new() { @@ -24144,6 +26556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Guiyang Hmong", + Comment = null, }, new() { @@ -24154,6 +26567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Huishui Hmong", + Comment = null, }, new() { @@ -24164,6 +26578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Huishui Hmong", + Comment = null, }, new() { @@ -24174,6 +26589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ge", + Comment = null, }, new() { @@ -24184,6 +26600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Maek", + Comment = null, }, new() { @@ -24194,6 +26611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luopohe Hmong", + Comment = null, }, new() { @@ -24204,6 +26622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Mashan Hmong", + Comment = null, }, new() { @@ -24214,6 +26633,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Hmong", + Comment = null, }, new() { @@ -24224,6 +26644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hiri Motu", + Comment = null, }, new() { @@ -24234,6 +26655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Mashan Hmong", + Comment = null, }, new() { @@ -24244,6 +26666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Qiandong Miao", + Comment = null, }, new() { @@ -24254,6 +26677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmar", + Comment = null, }, new() { @@ -24264,6 +26688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Qiandong Miao", + Comment = null, }, new() { @@ -24274,6 +26699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamtai", + Comment = null, }, new() { @@ -24284,6 +26710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hamap", + Comment = null, }, new() { @@ -24294,6 +26721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Dô", + Comment = null, }, new() { @@ -24304,6 +26732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Mashan Hmong", + Comment = null, }, new() { @@ -24314,6 +26743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Guiyang Hmong", + Comment = null, }, new() { @@ -24324,6 +26754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Shua", + Comment = null, }, new() { @@ -24334,6 +26765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mina (Cameroon)", + Comment = null, }, new() { @@ -24344,6 +26776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Hindko", + Comment = null, }, new() { @@ -24354,6 +26787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chhattisgarhi", + Comment = null, }, new() { @@ -24364,6 +26798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungu", + Comment = null, }, new() { @@ -24374,6 +26809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǁAni", + Comment = null, }, new() { @@ -24384,6 +26820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hani", + Comment = null, }, new() { @@ -24394,6 +26831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Njua", + Comment = null, }, new() { @@ -24404,6 +26842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hainanese", + Comment = null, }, new() { @@ -24414,6 +26853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanunoo", + Comment = null, }, new() { @@ -24424,6 +26864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Hindko", + Comment = null, }, new() { @@ -24434,6 +26875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caribbean Hindustani", + Comment = null, }, new() { @@ -24444,6 +26886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hung", + Comment = null, }, new() { @@ -24454,6 +26897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hoava", + Comment = null, }, new() { @@ -24464,6 +26908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mari (Madang Province)", + Comment = null, }, new() { @@ -24474,6 +26919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ho", + Comment = null, }, new() { @@ -24484,6 +26930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Holma", + Comment = null, }, new() { @@ -24494,6 +26941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Horom", + Comment = null, }, new() { @@ -24504,6 +26952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hobyót", + Comment = null, }, new() { @@ -24514,6 +26963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holikachuk", + Comment = null, }, new() { @@ -24524,6 +26974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadothi", + Comment = null, }, new() { @@ -24534,6 +26985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holu", + Comment = null, }, new() { @@ -24544,6 +26996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Homa", + Comment = null, }, new() { @@ -24554,6 +27007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holoholo", + Comment = null, }, new() { @@ -24564,6 +27018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hopi", + Comment = null, }, new() { @@ -24574,6 +27029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Horo", + Comment = null, }, new() { @@ -24584,6 +27040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ho Chi Minh City Sign Language", + Comment = null, }, new() { @@ -24594,6 +27051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hote", + Comment = null, }, new() { @@ -24604,6 +27062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hovongan", + Comment = null, }, new() { @@ -24614,6 +27073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Honi", + Comment = null, }, new() { @@ -24624,6 +27084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Holiya", + Comment = null, }, new() { @@ -24634,6 +27095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hozo", + Comment = null, }, new() { @@ -24644,6 +27106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hpon", + Comment = null, }, new() { @@ -24654,6 +27117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hawai'i Sign Language (HSL)", + Comment = null, }, new() { @@ -24664,6 +27128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hrangkhol", + Comment = null, }, new() { @@ -24674,6 +27139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niwer Mil", + Comment = null, }, new() { @@ -24684,6 +27150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hre", + Comment = null, }, new() { @@ -24694,6 +27161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haruku", + Comment = null, }, new() { @@ -24704,6 +27172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Horned Miao", + Comment = null, }, new() { @@ -24714,6 +27183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haroi", + Comment = null, }, new() { @@ -24724,6 +27194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nhirrpi", + Comment = null, }, new() { @@ -24734,6 +27205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hértevin", + Comment = null, }, new() { @@ -24744,6 +27216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hruso", + Comment = null, }, new() { @@ -24754,6 +27227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Croatian", + Comment = null, }, new() { @@ -24764,6 +27238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warwar Feni", + Comment = null, }, new() { @@ -24774,6 +27249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunsrik", + Comment = null, }, new() { @@ -24784,6 +27260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harzani", + Comment = null, }, new() { @@ -24794,6 +27271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Sorbian", + Comment = null, }, new() { @@ -24804,6 +27282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungarian Sign Language", + Comment = null, }, new() { @@ -24814,6 +27293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hausa Sign Language", + Comment = null, }, new() { @@ -24824,6 +27304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xiang Chinese", + Comment = null, }, new() { @@ -24834,6 +27315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harsusi", + Comment = null, }, new() { @@ -24844,6 +27326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hoti", + Comment = null, }, new() { @@ -24854,6 +27337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minica Huitoto", + Comment = null, }, new() { @@ -24864,6 +27348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hadza", + Comment = null, }, new() { @@ -24874,6 +27359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hitu", + Comment = null, }, new() { @@ -24884,6 +27370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Hittite", + Comment = null, }, new() { @@ -24894,6 +27381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huambisa", + Comment = null, }, new() { @@ -24904,6 +27392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǂHua", + Comment = null, }, new() { @@ -24914,6 +27403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaulu", + Comment = null, }, new() { @@ -24924,6 +27414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Francisco Del Mar Huave", + Comment = null, }, new() { @@ -24934,6 +27425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Humene", + Comment = null, }, new() { @@ -24944,6 +27436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huachipaeri", + Comment = null, }, new() { @@ -24954,6 +27447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huilliche", + Comment = null, }, new() { @@ -24964,6 +27458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huli", + Comment = null, }, new() { @@ -24974,6 +27469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Guiyang Hmong", + Comment = null, }, new() { @@ -24984,6 +27480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hulung", + Comment = null, }, new() { @@ -24994,6 +27491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hula", + Comment = null, }, new() { @@ -25004,6 +27502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungana", + Comment = null, }, new() { @@ -25014,6 +27513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hungarian", + Comment = null, }, new() { @@ -25024,6 +27524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hu", + Comment = null, }, new() { @@ -25034,6 +27535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hupa", + Comment = null, }, new() { @@ -25044,6 +27546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsat", + Comment = null, }, new() { @@ -25054,6 +27557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halkomelem", + Comment = null, }, new() { @@ -25064,6 +27568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huastec", + Comment = null, }, new() { @@ -25074,6 +27579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Humla", + Comment = null, }, new() { @@ -25084,6 +27590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murui Huitoto", + Comment = null, }, new() { @@ -25094,6 +27601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Mateo Del Mar Huave", + Comment = null, }, new() { @@ -25104,6 +27612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hukumina", + Comment = null, }, new() { @@ -25114,6 +27623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nüpode Huitoto", + Comment = null, }, new() { @@ -25124,6 +27634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hulaulá", + Comment = null, }, new() { @@ -25134,6 +27645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hunzib", + Comment = null, }, new() { @@ -25144,6 +27656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haitian Vodoun Culture Language", + Comment = null, }, new() { @@ -25154,6 +27667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Dionisio Del Mar Huave", + Comment = null, }, new() { @@ -25164,6 +27678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haveke", + Comment = null, }, new() { @@ -25174,6 +27689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabu", + Comment = null, }, new() { @@ -25184,6 +27700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María Del Mar Huave", + Comment = null, }, new() { @@ -25194,6 +27711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wané", + Comment = null, }, new() { @@ -25204,6 +27722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hawai'i Creole English", + Comment = null, }, new() { @@ -25214,6 +27733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hwana", + Comment = null, }, new() { @@ -25224,6 +27744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hya", + Comment = null, }, new() { @@ -25234,6 +27755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Armenian", + Comment = null, }, new() { @@ -25244,6 +27766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Armenian", + Comment = null, }, new() { @@ -25254,6 +27777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iaai", + Comment = null, }, new() { @@ -25264,6 +27788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iatmul", + Comment = null, }, new() { @@ -25274,6 +27799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purari", + Comment = null, }, new() { @@ -25284,6 +27810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iban", + Comment = null, }, new() { @@ -25294,6 +27821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibibio", + Comment = null, }, new() { @@ -25304,6 +27832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwaidja", + Comment = null, }, new() { @@ -25314,6 +27843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akpes", + Comment = null, }, new() { @@ -25324,6 +27854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibanag", + Comment = null, }, new() { @@ -25334,6 +27865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bih", + Comment = null, }, new() { @@ -25344,6 +27876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibaloi", + Comment = null, }, new() { @@ -25354,6 +27887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agoi", + Comment = null, }, new() { @@ -25364,6 +27898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibino", + Comment = null, }, new() { @@ -25374,6 +27909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igbo", + Comment = null, }, new() { @@ -25384,6 +27920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibuoro", + Comment = null, }, new() { @@ -25394,6 +27931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibu", + Comment = null, }, new() { @@ -25404,6 +27942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibani", + Comment = null, }, new() { @@ -25414,6 +27953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Ica", + Comment = null, }, new() { @@ -25424,6 +27964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Etkywan", + Comment = null, }, new() { @@ -25434,6 +27975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Icelandic Sign Language", + Comment = null, }, new() { @@ -25444,6 +27986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Islander Creole English", + Comment = null, }, new() { @@ -25454,6 +27997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idakho-Isukha-Tiriki", + Comment = null, }, new() { @@ -25464,6 +28008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indo-Portuguese", + Comment = null, }, new() { @@ -25474,6 +28019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idon", + Comment = null, }, new() { @@ -25484,6 +28030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Idaca", + Comment = null, }, new() { @@ -25494,6 +28041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idere", + Comment = null, }, new() { @@ -25504,6 +28052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idi", + Comment = null, }, new() { @@ -25514,6 +28063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Ido", + Comment = null, }, new() { @@ -25524,6 +28074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indri", + Comment = null, }, new() { @@ -25534,6 +28085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idesa", + Comment = null, }, new() { @@ -25544,6 +28096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idaté", + Comment = null, }, new() { @@ -25554,6 +28107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Idoma", + Comment = null, }, new() { @@ -25564,6 +28118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amganad Ifugao", + Comment = null, }, new() { @@ -25574,6 +28129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batad Ifugao", + Comment = null, }, new() { @@ -25584,6 +28140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ifè", + Comment = null, }, new() { @@ -25594,6 +28151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ifo", + Comment = null, }, new() { @@ -25604,6 +28162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuwali Ifugao", + Comment = null, }, new() { @@ -25614,6 +28173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Fuumu", + Comment = null, }, new() { @@ -25624,6 +28184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayoyao Ifugao", + Comment = null, }, new() { @@ -25634,6 +28195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keley-I Kallahan", + Comment = null, }, new() { @@ -25644,6 +28206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ebira", + Comment = null, }, new() { @@ -25654,6 +28217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igede", + Comment = null, }, new() { @@ -25664,6 +28228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igana", + Comment = null, }, new() { @@ -25674,6 +28239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igala", + Comment = null, }, new() { @@ -25684,6 +28250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanggape", + Comment = null, }, new() { @@ -25694,6 +28261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ignaciano", + Comment = null, }, new() { @@ -25704,6 +28272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isebe", + Comment = null, }, new() { @@ -25714,6 +28283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interglossa", + Comment = null, }, new() { @@ -25724,6 +28294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Igwe", + Comment = null, }, new() { @@ -25734,6 +28305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iha Based Pidgin", + Comment = null, }, new() { @@ -25744,6 +28316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ihievbe", + Comment = null, }, new() { @@ -25754,6 +28327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iha", + Comment = null, }, new() { @@ -25764,6 +28338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bidhawal", + Comment = null, }, new() { @@ -25774,6 +28349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sichuan Yi", + Comment = null, }, new() { @@ -25784,6 +28360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Thiin", + Comment = null, }, new() { @@ -25794,6 +28371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izon", + Comment = null, }, new() { @@ -25804,6 +28382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Biseni", + Comment = null, }, new() { @@ -25814,6 +28393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ede Ije", + Comment = null, }, new() { @@ -25824,6 +28404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalabari", + Comment = null, }, new() { @@ -25834,6 +28415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Ijo", + Comment = null, }, new() { @@ -25844,6 +28426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Canadian Inuktitut", + Comment = null, }, new() { @@ -25854,6 +28437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikhin-Arokho", + Comment = null, }, new() { @@ -25864,6 +28448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iko", + Comment = null, }, new() { @@ -25874,6 +28459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ika", + Comment = null, }, new() { @@ -25884,6 +28470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikulu", + Comment = null, }, new() { @@ -25894,6 +28481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olulumo-Ikom", + Comment = null, }, new() { @@ -25904,6 +28492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikpeshi", + Comment = null, }, new() { @@ -25914,6 +28503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ikaranggal", + Comment = null, }, new() { @@ -25924,6 +28514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inuit Sign Language", + Comment = null, }, new() { @@ -25934,6 +28525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inuinnaqtun", + Comment = null, }, new() { @@ -25944,6 +28536,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Inuktitut", + Comment = null, }, new() { @@ -25954,6 +28547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iku-Gora-Ankwa", + Comment = null, }, new() { @@ -25964,6 +28558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikwere", + Comment = null, }, new() { @@ -25974,6 +28569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ik", + Comment = null, }, new() { @@ -25984,6 +28580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikizu", + Comment = null, }, new() { @@ -25994,6 +28591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ile Ape", + Comment = null, }, new() { @@ -26004,6 +28602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ila", + Comment = null, }, new() { @@ -26014,6 +28613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interlingue", + Comment = null, }, new() { @@ -26024,6 +28624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garig-Ilgar", + Comment = null, }, new() { @@ -26034,6 +28635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ili Turki", + Comment = null, }, new() { @@ -26044,6 +28646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilongot", + Comment = null, }, new() { @@ -26054,6 +28657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranun (Malaysia)", + Comment = null, }, new() { @@ -26064,6 +28668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iloko", + Comment = null, }, new() { @@ -26074,6 +28679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranun (Philippines)", + Comment = null, }, new() { @@ -26084,6 +28690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "International Sign", + Comment = null, }, new() { @@ -26094,6 +28701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ili'uun", + Comment = null, }, new() { @@ -26104,6 +28712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilue", + Comment = null, }, new() { @@ -26114,6 +28723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mala Malasar", + Comment = null, }, new() { @@ -26124,6 +28734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anamgura", + Comment = null, }, new() { @@ -26134,6 +28745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Miluk", + Comment = null, }, new() { @@ -26144,6 +28756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imonda", + Comment = null, }, new() { @@ -26154,6 +28767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imbongu", + Comment = null, }, new() { @@ -26164,6 +28778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imroing", + Comment = null, }, new() { @@ -26174,6 +28789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Marsian", + Comment = null, }, new() { @@ -26184,6 +28800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imotong", + Comment = null, }, new() { @@ -26194,6 +28811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Milyan", + Comment = null, }, new() { @@ -26204,6 +28822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interlingua (International Auxiliary Language Association)", + Comment = null, }, new() { @@ -26214,6 +28833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inga", + Comment = null, }, new() { @@ -26224,6 +28844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian", + Comment = null, }, new() { @@ -26234,6 +28855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Degexit'an", + Comment = null, }, new() { @@ -26244,6 +28866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ingush", + Comment = null, }, new() { @@ -26254,6 +28877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jungle Inga", + Comment = null, }, new() { @@ -26264,6 +28888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indonesian Sign Language", + Comment = null, }, new() { @@ -26274,6 +28899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Minaean", + Comment = null, }, new() { @@ -26284,6 +28910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isinai", + Comment = null, }, new() { @@ -26294,6 +28921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inoke-Yate", + Comment = null, }, new() { @@ -26304,6 +28932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iñapari", + Comment = null, }, new() { @@ -26314,6 +28943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indian Sign Language", + Comment = null, }, new() { @@ -26324,6 +28954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Intha", + Comment = null, }, new() { @@ -26334,6 +28965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ineseño", + Comment = null, }, new() { @@ -26344,6 +28976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inor", + Comment = null, }, new() { @@ -26354,6 +28987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuma-Irumu", + Comment = null, }, new() { @@ -26364,6 +28998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Iowa-Oto", + Comment = null, }, new() { @@ -26374,6 +29009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipili", + Comment = null, }, new() { @@ -26384,6 +29020,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Inupiaq", + Comment = null, }, new() { @@ -26394,6 +29031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ipiko", + Comment = null, }, new() { @@ -26404,6 +29042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iquito", + Comment = null, }, new() { @@ -26414,6 +29053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikwo", + Comment = null, }, new() { @@ -26424,6 +29064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iresim", + Comment = null, }, new() { @@ -26434,6 +29075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irarutu", + Comment = null, }, new() { @@ -26444,6 +29086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rigwe", + Comment = null, }, new() { @@ -26454,6 +29097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iraqw", + Comment = null, }, new() { @@ -26464,6 +29108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irántxe", + Comment = null, }, new() { @@ -26474,6 +29119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ir", + Comment = null, }, new() { @@ -26484,6 +29130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irula", + Comment = null, }, new() { @@ -26494,6 +29141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamberau", + Comment = null, }, new() { @@ -26504,6 +29152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iraya", + Comment = null, }, new() { @@ -26514,6 +29163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isabi", + Comment = null, }, new() { @@ -26524,6 +29174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isconahua", + Comment = null, }, new() { @@ -26534,6 +29185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isnag", + Comment = null, }, new() { @@ -26544,6 +29196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Italian Sign Language", + Comment = null, }, new() { @@ -26554,6 +29207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Irish Sign Language", + Comment = null, }, new() { @@ -26564,6 +29218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Esan", + Comment = null, }, new() { @@ -26574,6 +29229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkem-Nkum", + Comment = null, }, new() { @@ -26584,6 +29240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ishkashimi", + Comment = null, }, new() { @@ -26594,6 +29251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Icelandic", + Comment = null, }, new() { @@ -26604,6 +29262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masimasi", + Comment = null, }, new() { @@ -26614,6 +29273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isanzu", + Comment = null, }, new() { @@ -26624,6 +29284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isoko", + Comment = null, }, new() { @@ -26634,6 +29295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Israeli Sign Language", + Comment = null, }, new() { @@ -26644,6 +29306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Istriot", + Comment = null, }, new() { @@ -26654,6 +29317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isu (Menchum Division)", + Comment = null, }, new() { @@ -26664,6 +29328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Interslavic", + Comment = null, }, new() { @@ -26674,6 +29339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Italian", + Comment = null, }, new() { @@ -26684,6 +29350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Binongan Itneg", + Comment = null, }, new() { @@ -26694,6 +29361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tidung", + Comment = null, }, new() { @@ -26704,6 +29372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Itene", + Comment = null, }, new() { @@ -26714,6 +29383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inlaod Itneg", + Comment = null, }, new() { @@ -26724,6 +29394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Italian", + Comment = null, }, new() { @@ -26734,6 +29405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itelmen", + Comment = null, }, new() { @@ -26744,6 +29416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itu Mbon Uzo", + Comment = null, }, new() { @@ -26754,6 +29427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itonama", + Comment = null, }, new() { @@ -26764,6 +29438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iteri", + Comment = null, }, new() { @@ -26774,6 +29449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isekiri", + Comment = null, }, new() { @@ -26784,6 +29460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maeng Itneg", + Comment = null, }, new() { @@ -26794,6 +29471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itawit", + Comment = null, }, new() { @@ -26804,6 +29482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ito", + Comment = null, }, new() { @@ -26814,6 +29493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itik", + Comment = null, }, new() { @@ -26824,6 +29504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moyadan Itneg", + Comment = null, }, new() { @@ -26834,6 +29515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itzá", + Comment = null, }, new() { @@ -26844,6 +29526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iu Mien", + Comment = null, }, new() { @@ -26854,6 +29537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibatan", + Comment = null, }, new() { @@ -26864,6 +29548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ivatan", + Comment = null, }, new() { @@ -26874,6 +29559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "I-Wak", + Comment = null, }, new() { @@ -26884,6 +29570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwam", + Comment = null, }, new() { @@ -26894,6 +29581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwur", + Comment = null, }, new() { @@ -26904,6 +29592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sepik Iwam", + Comment = null, }, new() { @@ -26914,6 +29603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixcatec", + Comment = null, }, new() { @@ -26924,6 +29614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixil", + Comment = null, }, new() { @@ -26934,6 +29625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyayu", + Comment = null, }, new() { @@ -26944,6 +29636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesaka", + Comment = null, }, new() { @@ -26954,6 +29647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaka (Congo)", + Comment = null, }, new() { @@ -26964,6 +29658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ingrian", + Comment = null, }, new() { @@ -26974,6 +29669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kizamani", + Comment = null, }, new() { @@ -26984,6 +29680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izere", + Comment = null, }, new() { @@ -26994,6 +29691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Izii", + Comment = null, }, new() { @@ -27004,6 +29702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamamadí", + Comment = null, }, new() { @@ -27014,6 +29713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hyam", + Comment = null, }, new() { @@ -27024,6 +29724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Popti'", + Comment = null, }, new() { @@ -27034,6 +29735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jahanka", + Comment = null, }, new() { @@ -27044,6 +29746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yabem", + Comment = null, }, new() { @@ -27054,6 +29757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jara", + Comment = null, }, new() { @@ -27064,6 +29768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jah Hut", + Comment = null, }, new() { @@ -27074,6 +29779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zazao", + Comment = null, }, new() { @@ -27084,6 +29790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jakun", + Comment = null, }, new() { @@ -27094,6 +29801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yalahatan", + Comment = null, }, new() { @@ -27104,6 +29812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamaican Creole English", + Comment = null, }, new() { @@ -27114,6 +29823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jandai", + Comment = null, }, new() { @@ -27124,6 +29834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanyuwa", + Comment = null, }, new() { @@ -27134,6 +29845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaqay", + Comment = null, }, new() { @@ -27144,6 +29856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "New Caledonian Javanese", + Comment = null, }, new() { @@ -27154,6 +29867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jakati", + Comment = null, }, new() { @@ -27164,6 +29878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaur", + Comment = null, }, new() { @@ -27174,6 +29889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Javanese", + Comment = null, }, new() { @@ -27184,6 +29900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jambi Malay", + Comment = null, }, new() { @@ -27194,6 +29911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yan-nhangu", + Comment = null, }, new() { @@ -27204,6 +29922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jawe", + Comment = null, }, new() { @@ -27214,6 +29933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Berber", + Comment = null, }, new() { @@ -27224,6 +29944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Badjiri", + Comment = null, }, new() { @@ -27234,6 +29955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arandai", + Comment = null, }, new() { @@ -27244,6 +29966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barikewa", + Comment = null, }, new() { @@ -27254,6 +29977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bijim", + Comment = null, }, new() { @@ -27264,6 +29988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafusi", + Comment = null, }, new() { @@ -27274,6 +29999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Lojban", + Comment = null, }, new() { @@ -27284,6 +30010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jofotek-Bromnya", + Comment = null, }, new() { @@ -27294,6 +30021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jabutí", + Comment = null, }, new() { @@ -27304,6 +30032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jukun Takum", + Comment = null, }, new() { @@ -27314,6 +30043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yawijibaya", + Comment = null, }, new() { @@ -27324,6 +30054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamaican Country Sign Language", + Comment = null, }, new() { @@ -27334,6 +30065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krymchak", + Comment = null, }, new() { @@ -27344,6 +30076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jad", + Comment = null, }, new() { @@ -27354,6 +30087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jadgali", + Comment = null, }, new() { @@ -27364,6 +30098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Tat", + Comment = null, }, new() { @@ -27374,6 +30109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jebero", + Comment = null, }, new() { @@ -27384,6 +30120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jerung", + Comment = null, }, new() { @@ -27394,6 +30131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jeh", + Comment = null, }, new() { @@ -27404,6 +30142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yei", + Comment = null, }, new() { @@ -27414,6 +30153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jeri Kuo", + Comment = null, }, new() { @@ -27424,6 +30164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yelmek", + Comment = null, }, new() { @@ -27434,6 +30175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dza", + Comment = null, }, new() { @@ -27444,6 +30186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jere", + Comment = null, }, new() { @@ -27454,6 +30197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manem", + Comment = null, }, new() { @@ -27464,6 +30208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jonkor Bourmataguil", + Comment = null, }, new() { @@ -27474,6 +30219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngbee", + Comment = null, }, new() { @@ -27484,6 +30230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Georgian", + Comment = null, }, new() { @@ -27494,6 +30241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gwak", + Comment = null, }, new() { @@ -27504,6 +30252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngomba", + Comment = null, }, new() { @@ -27514,6 +30263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jehai", + Comment = null, }, new() { @@ -27524,6 +30274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jhankot Sign Language", + Comment = null, }, new() { @@ -27534,6 +30285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jina", + Comment = null, }, new() { @@ -27544,6 +30296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jibu", + Comment = null, }, new() { @@ -27554,6 +30307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tol", + Comment = null, }, new() { @@ -27564,6 +30318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bu (Kaduna State)", + Comment = null, }, new() { @@ -27574,6 +30329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jilbe", + Comment = null, }, new() { @@ -27584,6 +30340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jingulu", + Comment = null, }, new() { @@ -27594,6 +30351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "sTodsde", + Comment = null, }, new() { @@ -27604,6 +30362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiiddu", + Comment = null, }, new() { @@ -27614,6 +30373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jilim", + Comment = null, }, new() { @@ -27624,6 +30384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jimi (Cameroon)", + Comment = null, }, new() { @@ -27634,6 +30395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiamao", + Comment = null, }, new() { @@ -27644,6 +30406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guanyinqiao", + Comment = null, }, new() { @@ -27654,6 +30417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jita", + Comment = null, }, new() { @@ -27664,6 +30428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Youle Jinuo", + Comment = null, }, new() { @@ -27674,6 +30439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shuar", + Comment = null, }, new() { @@ -27684,6 +30450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buyuan Jinuo", + Comment = null, }, new() { @@ -27694,6 +30461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jejueo", + Comment = null, }, new() { @@ -27704,6 +30472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bankal", + Comment = null, }, new() { @@ -27714,6 +30483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaera", + Comment = null, }, new() { @@ -27724,6 +30494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mobwa Karen", + Comment = null, }, new() { @@ -27734,6 +30505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kubo", + Comment = null, }, new() { @@ -27744,6 +30516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paku Karen", + Comment = null, }, new() { @@ -27754,6 +30527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (India)", + Comment = null, }, new() { @@ -27764,6 +30538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amami Koniya Sign Language", + Comment = null, }, new() { @@ -27774,6 +30549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labir", + Comment = null, }, new() { @@ -27784,6 +30560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngile", + Comment = null, }, new() { @@ -27794,6 +30571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamaican Sign Language", + Comment = null, }, new() { @@ -27804,6 +30582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dima", + Comment = null, }, new() { @@ -27814,6 +30593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zumbun", + Comment = null, }, new() { @@ -27824,6 +30604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machame", + Comment = null, }, new() { @@ -27834,6 +30615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamdena", + Comment = null, }, new() { @@ -27844,6 +30626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jimi (Nigeria)", + Comment = null, }, new() { @@ -27854,6 +30637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jumli", + Comment = null, }, new() { @@ -27864,6 +30648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makuri Naga", + Comment = null, }, new() { @@ -27874,6 +30659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamara", + Comment = null, }, new() { @@ -27884,6 +30670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mashi (Nigeria)", + Comment = null, }, new() { @@ -27894,6 +30681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mouwase", + Comment = null, }, new() { @@ -27904,6 +30692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Juxtlahuaca Mixtec", + Comment = null, }, new() { @@ -27914,6 +30703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jangshung", + Comment = null, }, new() { @@ -27924,6 +30714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jandavra", + Comment = null, }, new() { @@ -27934,6 +30725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yangman", + Comment = null, }, new() { @@ -27944,6 +30736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Janji", + Comment = null, }, new() { @@ -27954,6 +30747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yemsa", + Comment = null, }, new() { @@ -27964,6 +30758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawat", + Comment = null, }, new() { @@ -27974,6 +30769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaunsari", + Comment = null, }, new() { @@ -27984,6 +30780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Joba", + Comment = null, }, new() { @@ -27994,6 +30791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wojenaka", + Comment = null, }, new() { @@ -28004,6 +30802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jogi", + Comment = null, }, new() { @@ -28014,6 +30813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jorá", + Comment = null, }, new() { @@ -28024,6 +30824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jordanian Sign Language", + Comment = null, }, new() { @@ -28034,6 +30835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jowulu", + Comment = null, }, new() { @@ -28044,6 +30846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Jewish Palestinian Aramaic", + Comment = null, }, new() { @@ -28054,6 +30857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japanese", + Comment = null, }, new() { @@ -28064,6 +30868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Persian", + Comment = null, }, new() { @@ -28074,6 +30879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaqaru", + Comment = null, }, new() { @@ -28084,6 +30890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jarai", + Comment = null, }, new() { @@ -28094,6 +30901,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Judeo-Arabic", + Comment = null, }, new() { @@ -28104,6 +30912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiru", + Comment = null, }, new() { @@ -28114,6 +30923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jakattoe", + Comment = null, }, new() { @@ -28124,6 +30934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japrería", + Comment = null, }, new() { @@ -28134,6 +30945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Japanese Sign Language", + Comment = null, }, new() { @@ -28144,6 +30956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Júma", + Comment = null, }, new() { @@ -28154,6 +30967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wannu", + Comment = null, }, new() { @@ -28164,6 +30978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Jurchen", + Comment = null, }, new() { @@ -28174,6 +30989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Worodougou", + Comment = null, }, new() { @@ -28184,6 +31000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hõne", + Comment = null, }, new() { @@ -28194,6 +31011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngadjuri", + Comment = null, }, new() { @@ -28204,6 +31022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wapan", + Comment = null, }, new() { @@ -28214,6 +31033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jirel", + Comment = null, }, new() { @@ -28224,6 +31044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jumjum", + Comment = null, }, new() { @@ -28234,6 +31055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juang", + Comment = null, }, new() { @@ -28244,6 +31066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiba", + Comment = null, }, new() { @@ -28254,6 +31077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hupdë", + Comment = null, }, new() { @@ -28264,6 +31088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jurúna", + Comment = null, }, new() { @@ -28274,6 +31099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jumla Sign Language", + Comment = null, }, new() { @@ -28284,6 +31110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Jutish", + Comment = null, }, new() { @@ -28294,6 +31121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ju", + Comment = null, }, new() { @@ -28304,6 +31132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wãpha", + Comment = null, }, new() { @@ -28314,6 +31143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juray", + Comment = null, }, new() { @@ -28324,6 +31154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Javindo", + Comment = null, }, new() { @@ -28334,6 +31165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caribbean Javanese", + Comment = null, }, new() { @@ -28344,6 +31176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jwira-Pepesa", + Comment = null, }, new() { @@ -28354,6 +31187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiarong", + Comment = null, }, new() { @@ -28364,6 +31198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Yemeni Arabic", + Comment = null, }, new() { @@ -28374,6 +31209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jaya", + Comment = null, }, new() { @@ -28384,6 +31220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara-Kalpak", + Comment = null, }, new() { @@ -28394,6 +31231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabyle", + Comment = null, }, new() { @@ -28404,6 +31242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachin", + Comment = null, }, new() { @@ -28414,6 +31253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adara", + Comment = null, }, new() { @@ -28424,6 +31264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ketangalan", + Comment = null, }, new() { @@ -28434,6 +31275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katso", + Comment = null, }, new() { @@ -28444,6 +31286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kajaman", + Comment = null, }, new() { @@ -28454,6 +31297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara (Central African Republic)", + Comment = null, }, new() { @@ -28464,6 +31308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karekare", + Comment = null, }, new() { @@ -28474,6 +31319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jju", + Comment = null, }, new() { @@ -28484,6 +31330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalanguya", + Comment = null, }, new() { @@ -28494,6 +31341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalaallisut", + Comment = null, }, new() { @@ -28504,6 +31352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamba (Kenya)", + Comment = null, }, new() { @@ -28514,6 +31363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kannada", + Comment = null, }, new() { @@ -28524,6 +31374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xaasongaxango", + Comment = null, }, new() { @@ -28534,6 +31385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bezhta", + Comment = null, }, new() { @@ -28544,6 +31396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Capanahua", + Comment = null, }, new() { @@ -28554,6 +31407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashmiri", + Comment = null, }, new() { @@ -28564,6 +31418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Georgian", + Comment = null, }, new() { @@ -28574,6 +31429,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kanuri", + Comment = null, }, new() { @@ -28584,6 +31440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katukína", + Comment = null, }, new() { @@ -28594,6 +31451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kawi", + Comment = null, }, new() { @@ -28604,6 +31462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kao", + Comment = null, }, new() { @@ -28614,6 +31473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamayurá", + Comment = null, }, new() { @@ -28624,6 +31484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kazakh", + Comment = null, }, new() { @@ -28634,6 +31495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kalarko", + Comment = null, }, new() { @@ -28644,6 +31506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kaxuiâna", + Comment = null, }, new() { @@ -28654,6 +31517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadiwéu", + Comment = null, }, new() { @@ -28664,6 +31528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabardian", + Comment = null, }, new() { @@ -28674,6 +31539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanju", + Comment = null, }, new() { @@ -28684,6 +31550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamba", + Comment = null, }, new() { @@ -28694,6 +31561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Camsá", + Comment = null, }, new() { @@ -28704,6 +31572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaptiau", + Comment = null, }, new() { @@ -28714,6 +31583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kari", + Comment = null, }, new() { @@ -28724,6 +31594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Grass Koiari", + Comment = null, }, new() { @@ -28734,6 +31605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanembu", + Comment = null, }, new() { @@ -28744,6 +31616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iwal", + Comment = null, }, new() { @@ -28754,6 +31627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kare (Central African Republic)", + Comment = null, }, new() { @@ -28764,6 +31638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keliko", + Comment = null, }, new() { @@ -28774,6 +31649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabiyè", + Comment = null, }, new() { @@ -28784,6 +31660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamano", + Comment = null, }, new() { @@ -28794,6 +31671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kafa", + Comment = null, }, new() { @@ -28804,6 +31682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kande", + Comment = null, }, new() { @@ -28814,6 +31693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abadi", + Comment = null, }, new() { @@ -28824,6 +31704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabutra", + Comment = null, }, new() { @@ -28834,6 +31715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dera (Indonesia)", + Comment = null, }, new() { @@ -28844,6 +31726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaiep", + Comment = null, }, new() { @@ -28854,6 +31737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ap Ma", + Comment = null, }, new() { @@ -28864,6 +31748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manga Kanuri", + Comment = null, }, new() { @@ -28874,6 +31759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duhwa", + Comment = null, }, new() { @@ -28884,6 +31770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khanty", + Comment = null, }, new() { @@ -28894,6 +31781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kawacha", + Comment = null, }, new() { @@ -28904,6 +31792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lubila", + Comment = null, }, new() { @@ -28914,6 +31803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngkâlmpw Kanum", + Comment = null, }, new() { @@ -28924,6 +31814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaivi", + Comment = null, }, new() { @@ -28934,6 +31825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukaan", + Comment = null, }, new() { @@ -28944,6 +31836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tyap", + Comment = null, }, new() { @@ -28954,6 +31847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vono", + Comment = null, }, new() { @@ -28964,6 +31858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngyian", + Comment = null, }, new() { @@ -28974,6 +31869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobiana", + Comment = null, }, new() { @@ -28984,6 +31880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalanga", + Comment = null, }, new() { @@ -28994,6 +31891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kela (Papua New Guinea)", + Comment = null, }, new() { @@ -29004,6 +31902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gula (Central African Republic)", + Comment = null, }, new() { @@ -29014,6 +31913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nubi", + Comment = null, }, new() { @@ -29024,6 +31924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinalakna", + Comment = null, }, new() { @@ -29034,6 +31935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanga", + Comment = null, }, new() { @@ -29044,6 +31946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamo", + Comment = null, }, new() { @@ -29054,6 +31957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katla", + Comment = null, }, new() { @@ -29064,6 +31968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koenoem", + Comment = null, }, new() { @@ -29074,6 +31979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaian", + Comment = null, }, new() { @@ -29084,6 +31990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kami (Tanzania)", + Comment = null, }, new() { @@ -29094,6 +32001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kete", + Comment = null, }, new() { @@ -29104,6 +32012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabwari", + Comment = null, }, new() { @@ -29114,6 +32023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachama-Ganjule", + Comment = null, }, new() { @@ -29124,6 +32034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korandje", + Comment = null, }, new() { @@ -29134,6 +32045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konongo", + Comment = null, }, new() { @@ -29144,6 +32056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Worimi", + Comment = null, }, new() { @@ -29154,6 +32067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutu", + Comment = null, }, new() { @@ -29164,6 +32078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yankunytjatjara", + Comment = null, }, new() { @@ -29174,6 +32089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makonde", + Comment = null, }, new() { @@ -29184,6 +32100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamusi", + Comment = null, }, new() { @@ -29194,6 +32111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seba", + Comment = null, }, new() { @@ -29204,6 +32122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tem", + Comment = null, }, new() { @@ -29214,6 +32133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumam", + Comment = null, }, new() { @@ -29224,6 +32144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karamojong", + Comment = null, }, new() { @@ -29234,6 +32155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numèè", + Comment = null, }, new() { @@ -29244,6 +32166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsikimba", + Comment = null, }, new() { @@ -29254,6 +32177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagoma", + Comment = null, }, new() { @@ -29264,6 +32188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunda", + Comment = null, }, new() { @@ -29274,6 +32199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaningdon-Nindem", + Comment = null, }, new() { @@ -29284,6 +32210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koch", + Comment = null, }, new() { @@ -29294,6 +32221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karaim", + Comment = null, }, new() { @@ -29304,6 +32232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuy", + Comment = null, }, new() { @@ -29314,6 +32243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadaru", + Comment = null, }, new() { @@ -29324,6 +32254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koneraw", + Comment = null, }, new() { @@ -29334,6 +32265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kam", + Comment = null, }, new() { @@ -29344,6 +32276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keder", + Comment = null, }, new() { @@ -29354,6 +32287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaja", + Comment = null, }, new() { @@ -29364,6 +32298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabuverdianu", + Comment = null, }, new() { @@ -29374,6 +32309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kélé", + Comment = null, }, new() { @@ -29384,6 +32320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keiga", + Comment = null, }, new() { @@ -29394,6 +32331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerewe", + Comment = null, }, new() { @@ -29404,6 +32342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Keres", + Comment = null, }, new() { @@ -29414,6 +32353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpessi", + Comment = null, }, new() { @@ -29424,6 +32364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tese", + Comment = null, }, new() { @@ -29434,6 +32375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keak", + Comment = null, }, new() { @@ -29444,6 +32386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kei", + Comment = null, }, new() { @@ -29454,6 +32397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadar", + Comment = null, }, new() { @@ -29464,6 +32408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kekchí", + Comment = null, }, new() { @@ -29474,6 +32419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kela (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -29484,6 +32430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemak", + Comment = null, }, new() { @@ -29494,6 +32441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenyang", + Comment = null, }, new() { @@ -29504,6 +32452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakwa", + Comment = null, }, new() { @@ -29514,6 +32463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaikadi", + Comment = null, }, new() { @@ -29524,6 +32474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamar", + Comment = null, }, new() { @@ -29534,6 +32485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kera", + Comment = null, }, new() { @@ -29544,6 +32496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kugbo", + Comment = null, }, new() { @@ -29554,6 +32507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ket", + Comment = null, }, new() { @@ -29564,6 +32518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akebu", + Comment = null, }, new() { @@ -29574,6 +32529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanikkaran", + Comment = null, }, new() { @@ -29584,6 +32540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Kewa", + Comment = null, }, new() { @@ -29594,6 +32551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kukna", + Comment = null, }, new() { @@ -29604,6 +32562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupia", + Comment = null, }, new() { @@ -29614,6 +32573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kukele", + Comment = null, }, new() { @@ -29624,6 +32584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodava", + Comment = null, }, new() { @@ -29634,6 +32595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Kolami", + Comment = null, }, new() { @@ -29644,6 +32606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konda-Dora", + Comment = null, }, new() { @@ -29654,6 +32617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korra Koraga", + Comment = null, }, new() { @@ -29664,6 +32628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota (India)", + Comment = null, }, new() { @@ -29674,6 +32639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koya", + Comment = null, }, new() { @@ -29684,6 +32650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kudiya", + Comment = null, }, new() { @@ -29694,6 +32661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurichiya", + Comment = null, }, new() { @@ -29704,6 +32672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kannada Kurumba", + Comment = null, }, new() { @@ -29714,6 +32683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemiehua", + Comment = null, }, new() { @@ -29724,6 +32694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinnauri", + Comment = null, }, new() { @@ -29734,6 +32705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kung", + Comment = null, }, new() { @@ -29744,6 +32716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khunsari", + Comment = null, }, new() { @@ -29754,6 +32727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuk", + Comment = null, }, new() { @@ -29764,6 +32738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (Côte d'Ivoire)", + Comment = null, }, new() { @@ -29774,6 +32749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korwa", + Comment = null, }, new() { @@ -29784,6 +32760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korku", + Comment = null, }, new() { @@ -29794,6 +32771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachhi", + Comment = null, }, new() { @@ -29804,6 +32782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bilaspuri", + Comment = null, }, new() { @@ -29814,6 +32793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanjari", + Comment = null, }, new() { @@ -29824,6 +32804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katkari", + Comment = null, }, new() { @@ -29834,6 +32815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurmukar", + Comment = null, }, new() { @@ -29844,6 +32826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kharam Naga", + Comment = null, }, new() { @@ -29854,6 +32837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kullu Pahari", + Comment = null, }, new() { @@ -29864,6 +32848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumaoni", + Comment = null, }, new() { @@ -29874,6 +32859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koromfé", + Comment = null, }, new() { @@ -29884,6 +32870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyaga", + Comment = null, }, new() { @@ -29894,6 +32881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kawe", + Comment = null, }, new() { @@ -29904,6 +32892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komering", + Comment = null, }, new() { @@ -29914,6 +32903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kube", + Comment = null, }, new() { @@ -29924,6 +32914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusunda", + Comment = null, }, new() { @@ -29934,6 +32925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selangor Sign Language", + Comment = null, }, new() { @@ -29944,6 +32936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamale Kham", + Comment = null, }, new() { @@ -29954,6 +32947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaiwá", + Comment = null, }, new() { @@ -29964,6 +32958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kunggari", + Comment = null, }, new() { @@ -29974,6 +32969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karingani", + Comment = null, }, new() { @@ -29984,6 +32980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krongo", + Comment = null, }, new() { @@ -29994,6 +32991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaingang", + Comment = null, }, new() { @@ -30004,6 +33002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamoro", + Comment = null, }, new() { @@ -30014,6 +33013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abun", + Comment = null, }, new() { @@ -30024,6 +33024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumbainggar", + Comment = null, }, new() { @@ -30034,6 +33035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somyev", + Comment = null, }, new() { @@ -30044,6 +33046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobol", + Comment = null, }, new() { @@ -30054,6 +33057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karas", + Comment = null, }, new() { @@ -30064,6 +33068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karon Dori", + Comment = null, }, new() { @@ -30074,6 +33079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamaru", + Comment = null, }, new() { @@ -30084,6 +33090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyerung", + Comment = null, }, new() { @@ -30094,6 +33101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khasi", + Comment = null, }, new() { @@ -30104,6 +33112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lü", + Comment = null, }, new() { @@ -30114,6 +33123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukang Besi North", + Comment = null, }, new() { @@ -30124,6 +33134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bädi Kanum", + Comment = null, }, new() { @@ -30134,6 +33145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korowai", + Comment = null, }, new() { @@ -30144,6 +33156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khuen", + Comment = null, }, new() { @@ -30154,6 +33167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khams Tibetan", + Comment = null, }, new() { @@ -30164,6 +33178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kehu", + Comment = null, }, new() { @@ -30174,6 +33189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuturmi", + Comment = null, }, new() { @@ -30184,6 +33200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Halh Mongolian", + Comment = null, }, new() { @@ -30194,6 +33211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lusi", + Comment = null, }, new() { @@ -30204,6 +33222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khmer", + Comment = null, }, new() { @@ -30214,6 +33233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khandesi", + Comment = null, }, new() { @@ -30224,6 +33244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Khotanese", + Comment = null, }, new() { @@ -30234,6 +33255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapori", + Comment = null, }, new() { @@ -30244,6 +33266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyra Chiini Songhay", + Comment = null, }, new() { @@ -30254,6 +33277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kharia", + Comment = null, }, new() { @@ -30264,6 +33288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasua", + Comment = null, }, new() { @@ -30274,6 +33299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamti", + Comment = null, }, new() { @@ -30284,6 +33310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkhumbi", + Comment = null, }, new() { @@ -30294,6 +33321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khvarshi", + Comment = null, }, new() { @@ -30304,6 +33332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khowar", + Comment = null, }, new() { @@ -30314,6 +33343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanu", + Comment = null, }, new() { @@ -30324,6 +33354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kele (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -30334,6 +33365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keapara", + Comment = null, }, new() { @@ -30344,6 +33376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kim", + Comment = null, }, new() { @@ -30354,6 +33387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koalib", + Comment = null, }, new() { @@ -30364,6 +33398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kickapoo", + Comment = null, }, new() { @@ -30374,6 +33409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koshin", + Comment = null, }, new() { @@ -30384,6 +33420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kibet", + Comment = null, }, new() { @@ -30394,6 +33431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Parbate Kham", + Comment = null, }, new() { @@ -30404,6 +33442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimaama", + Comment = null, }, new() { @@ -30414,6 +33453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kilmeri", + Comment = null, }, new() { @@ -30424,6 +33464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kitsai", + Comment = null, }, new() { @@ -30434,6 +33475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kilivila", + Comment = null, }, new() { @@ -30444,6 +33486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kikuyu", + Comment = null, }, new() { @@ -30454,6 +33497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kariya", + Comment = null, }, new() { @@ -30464,6 +33508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karagas", + Comment = null, }, new() { @@ -30474,6 +33519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinyarwanda", + Comment = null, }, new() { @@ -30484,6 +33530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiowa", + Comment = null, }, new() { @@ -30494,6 +33541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sheshi Kham", + Comment = null, }, new() { @@ -30504,6 +33552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosadle", + Comment = null, }, new() { @@ -30514,6 +33563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirghiz", + Comment = null, }, new() { @@ -30524,6 +33574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kis", + Comment = null, }, new() { @@ -30534,6 +33585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agob", + Comment = null, }, new() { @@ -30544,6 +33596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirmanjki (individual language)", + Comment = null, }, new() { @@ -30554,6 +33607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimbu", + Comment = null, }, new() { @@ -30564,6 +33618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeast Kiwai", + Comment = null, }, new() { @@ -30574,6 +33629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khiamniungan Naga", + Comment = null, }, new() { @@ -30584,6 +33640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirikiri", + Comment = null, }, new() { @@ -30594,6 +33651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisi", + Comment = null, }, new() { @@ -30604,6 +33662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mlap", + Comment = null, }, new() { @@ -30614,6 +33673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Q'anjob'al", + Comment = null, }, new() { @@ -30624,6 +33684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coastal Konjo", + Comment = null, }, new() { @@ -30634,6 +33695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kiwai", + Comment = null, }, new() { @@ -30644,6 +33706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisar", + Comment = null, }, new() { @@ -30654,6 +33717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khmu", + Comment = null, }, new() { @@ -30664,6 +33728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khakas", + Comment = null, }, new() { @@ -30674,6 +33739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zabana", + Comment = null, }, new() { @@ -30684,6 +33750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khinalugh", + Comment = null, }, new() { @@ -30694,6 +33761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Konjo", + Comment = null, }, new() { @@ -30704,6 +33772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Parbate Kham", + Comment = null, }, new() { @@ -30714,6 +33783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kháng", + Comment = null, }, new() { @@ -30724,6 +33794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunjen", + Comment = null, }, new() { @@ -30734,6 +33805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Harijan Kinnauri", + Comment = null, }, new() { @@ -30744,6 +33816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwo Eastern Karen", + Comment = null, }, new() { @@ -30754,6 +33827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Keres", + Comment = null, }, new() { @@ -30764,6 +33838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurudu", + Comment = null, }, new() { @@ -30774,6 +33849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Kewa", + Comment = null, }, new() { @@ -30784,6 +33860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phrae Pwo Karen", + Comment = null, }, new() { @@ -30794,6 +33871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kashaya", + Comment = null, }, new() { @@ -30804,6 +33882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kaikavian Literary Language", + Comment = null, }, new() { @@ -30814,6 +33893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ramopa", + Comment = null, }, new() { @@ -30824,6 +33904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erave", + Comment = null, }, new() { @@ -30834,6 +33915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bumthangkha", + Comment = null, }, new() { @@ -30844,6 +33926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakanda", + Comment = null, }, new() { @@ -30854,6 +33937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwerisa", + Comment = null, }, new() { @@ -30864,6 +33948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odoodee", + Comment = null, }, new() { @@ -30874,6 +33959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinuku", + Comment = null, }, new() { @@ -30884,6 +33970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakabe", + Comment = null, }, new() { @@ -30894,6 +33981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalaktang Monpa", + Comment = null, }, new() { @@ -30904,6 +33992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabaka Valley Kalinga", + Comment = null, }, new() { @@ -30914,6 +34003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khün", + Comment = null, }, new() { @@ -30924,6 +34014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagulu", + Comment = null, }, new() { @@ -30934,6 +34025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kako", + Comment = null, }, new() { @@ -30944,6 +34036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokota", + Comment = null, }, new() { @@ -30954,6 +34047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosarek Yale", + Comment = null, }, new() { @@ -30964,6 +34058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiong", + Comment = null, }, new() { @@ -30974,6 +34069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kon Keu", + Comment = null, }, new() { @@ -30984,6 +34080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karko", + Comment = null, }, new() { @@ -30994,6 +34091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gugubera", + Comment = null, }, new() { @@ -31004,6 +34102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaeku", + Comment = null, }, new() { @@ -31014,6 +34113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kir-Balar", + Comment = null, }, new() { @@ -31024,6 +34124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giiwo", + Comment = null, }, new() { @@ -31034,6 +34135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koi", + Comment = null, }, new() { @@ -31044,6 +34146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumi", + Comment = null, }, new() { @@ -31054,6 +34157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kangean", + Comment = null, }, new() { @@ -31064,6 +34168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Kukuya", + Comment = null, }, new() { @@ -31074,6 +34179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kohin", + Comment = null, }, new() { @@ -31084,6 +34190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guugu Yimidhirr", + Comment = null, }, new() { @@ -31094,6 +34201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaska", + Comment = null, }, new() { @@ -31104,6 +34212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Klamath-Modoc", + Comment = null, }, new() { @@ -31114,6 +34223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiliwa", + Comment = null, }, new() { @@ -31124,6 +34234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kolbila", + Comment = null, }, new() { @@ -31134,6 +34245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gamilaraay", + Comment = null, }, new() { @@ -31144,6 +34256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulung (Nepal)", + Comment = null, }, new() { @@ -31154,6 +34267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kendeje", + Comment = null, }, new() { @@ -31164,6 +34278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagakaulo", + Comment = null, }, new() { @@ -31174,6 +34289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weliki", + Comment = null, }, new() { @@ -31184,6 +34300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalumpang", + Comment = null, }, new() { @@ -31194,6 +34311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khalaj", + Comment = null, }, new() { @@ -31204,6 +34322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kono (Nigeria)", + Comment = null, }, new() { @@ -31214,6 +34333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagan Kalagan", + Comment = null, }, new() { @@ -31224,6 +34344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Migum", + Comment = null, }, new() { @@ -31234,6 +34355,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kalenjin", + Comment = null, }, new() { @@ -31244,6 +34366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapya", + Comment = null, }, new() { @@ -31254,6 +34377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamasa", + Comment = null, }, new() { @@ -31264,6 +34388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rumu", + Comment = null, }, new() { @@ -31274,6 +34399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khaling", + Comment = null, }, new() { @@ -31284,6 +34410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalasha", + Comment = null, }, new() { @@ -31294,6 +34421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukna", + Comment = null, }, new() { @@ -31304,6 +34432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Klao", + Comment = null, }, new() { @@ -31314,6 +34443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maskelynes", + Comment = null, }, new() { @@ -31324,6 +34454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tado", + Comment = null, }, new() { @@ -31334,6 +34465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koluwawa", + Comment = null, }, new() { @@ -31344,6 +34476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalao", + Comment = null, }, new() { @@ -31354,6 +34487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabola", + Comment = null, }, new() { @@ -31364,6 +34498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konni", + Comment = null, }, new() { @@ -31374,6 +34509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimbundu", + Comment = null, }, new() { @@ -31384,6 +34520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Dong", + Comment = null, }, new() { @@ -31394,6 +34531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majukayang Kalinga", + Comment = null, }, new() { @@ -31404,6 +34542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bakole", + Comment = null, }, new() { @@ -31414,6 +34553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kare (Papua New Guinea)", + Comment = null, }, new() { @@ -31424,6 +34564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kâte", + Comment = null, }, new() { @@ -31434,6 +34575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalam", + Comment = null, }, new() { @@ -31444,6 +34586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kami (Nigeria)", + Comment = null, }, new() { @@ -31454,6 +34597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumarbhag Paharia", + Comment = null, }, new() { @@ -31464,6 +34608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limos Kalinga", + Comment = null, }, new() { @@ -31474,6 +34619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanudan Kalinga", + Comment = null, }, new() { @@ -31484,6 +34630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kom (India)", + Comment = null, }, new() { @@ -31494,6 +34641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awtuw", + Comment = null, }, new() { @@ -31504,6 +34652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwoma", + Comment = null, }, new() { @@ -31514,6 +34663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gimme", + Comment = null, }, new() { @@ -31524,6 +34674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwama", + Comment = null, }, new() { @@ -31534,6 +34685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Kurdish", + Comment = null, }, new() { @@ -31544,6 +34696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamasau", + Comment = null, }, new() { @@ -31554,6 +34707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kemtuik", + Comment = null, }, new() { @@ -31564,6 +34718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanite", + Comment = null, }, new() { @@ -31574,6 +34729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karipúna Creole French", + Comment = null, }, new() { @@ -31584,6 +34740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komo (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -31594,6 +34751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waboda", + Comment = null, }, new() { @@ -31604,6 +34762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koma", + Comment = null, }, new() { @@ -31614,6 +34773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khorasani Turkish", + Comment = null, }, new() { @@ -31624,6 +34784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dera (Nigeria)", + Comment = null, }, new() { @@ -31634,6 +34795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lubuagan Kalinga", + Comment = null, }, new() { @@ -31644,6 +34806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Kanuri", + Comment = null, }, new() { @@ -31654,6 +34817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konda", + Comment = null, }, new() { @@ -31664,6 +34828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kankanaey", + Comment = null, }, new() { @@ -31674,6 +34839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mankanya", + Comment = null, }, new() { @@ -31684,6 +34850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koongo", + Comment = null, }, new() { @@ -31694,6 +34861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanufi", + Comment = null, }, new() { @@ -31704,6 +34872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Kanjobal", + Comment = null, }, new() { @@ -31714,6 +34883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuranko", + Comment = null, }, new() { @@ -31724,6 +34894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keninjal", + Comment = null, }, new() { @@ -31734,6 +34905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanamarí", + Comment = null, }, new() { @@ -31744,6 +34916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konkani (individual language)", + Comment = null, }, new() { @@ -31754,6 +34927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kono (Sierra Leone)", + Comment = null, }, new() { @@ -31764,6 +34938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwanja", + Comment = null, }, new() { @@ -31774,6 +34949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kintaq", + Comment = null, }, new() { @@ -31784,6 +34960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaningra", + Comment = null, }, new() { @@ -31794,6 +34971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kensiu", + Comment = null, }, new() { @@ -31804,6 +34982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panoan Katukína", + Comment = null, }, new() { @@ -31814,6 +34993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kono (Guinea)", + Comment = null, }, new() { @@ -31824,6 +35004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabo", + Comment = null, }, new() { @@ -31834,6 +35015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kung-Ekoka", + Comment = null, }, new() { @@ -31844,6 +35026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kendayan", + Comment = null, }, new() { @@ -31854,6 +35037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanyok", + Comment = null, }, new() { @@ -31864,6 +35048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalamsé", + Comment = null, }, new() { @@ -31874,6 +35059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konomala", + Comment = null, }, new() { @@ -31884,6 +35070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kpati", + Comment = null, }, new() { @@ -31894,6 +35081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodi", + Comment = null, }, new() { @@ -31904,6 +35092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kacipo-Bale Suri", + Comment = null, }, new() { @@ -31914,6 +35103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kubi", + Comment = null, }, new() { @@ -31924,6 +35114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cogui", + Comment = null, }, new() { @@ -31934,6 +35125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyo", + Comment = null, }, new() { @@ -31944,6 +35136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komi-Permyak", + Comment = null, }, new() { @@ -31954,6 +35147,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Konkani (macrolanguage)", + Comment = null, }, new() { @@ -31964,6 +35158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kol (Papua New Guinea)", + Comment = null, }, new() { @@ -31974,6 +35169,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Komi", + Comment = null, }, new() { @@ -31984,6 +35180,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kongo", + Comment = null, }, new() { @@ -31994,6 +35191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konzo", + Comment = null, }, new() { @@ -32004,6 +35202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waube", + Comment = null, }, new() { @@ -32014,6 +35213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota (Gabon)", + Comment = null, }, new() { @@ -32024,6 +35224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korean", + Comment = null, }, new() { @@ -32034,6 +35235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosraean", + Comment = null, }, new() { @@ -32044,6 +35246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lagwan", + Comment = null, }, new() { @@ -32054,6 +35257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koke", + Comment = null, }, new() { @@ -32064,6 +35268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kudu-Camo", + Comment = null, }, new() { @@ -32074,6 +35279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kugama", + Comment = null, }, new() { @@ -32084,6 +35290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyukon", + Comment = null, }, new() { @@ -32094,6 +35301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korak", + Comment = null, }, new() { @@ -32104,6 +35312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutto", + Comment = null, }, new() { @@ -32114,6 +35323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mullu Kurumba", + Comment = null, }, new() { @@ -32124,6 +35334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Curripaco", + Comment = null, }, new() { @@ -32134,6 +35345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koba", + Comment = null, }, new() { @@ -32144,6 +35356,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kpelle", + Comment = null, }, new() { @@ -32154,6 +35367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komba", + Comment = null, }, new() { @@ -32164,6 +35378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapingamarangi", + Comment = null, }, new() { @@ -32174,6 +35389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kplang", + Comment = null, }, new() { @@ -32184,6 +35400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kofei", + Comment = null, }, new() { @@ -32194,6 +35411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karajá", + Comment = null, }, new() { @@ -32204,6 +35422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpan", + Comment = null, }, new() { @@ -32214,6 +35433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpala", + Comment = null, }, new() { @@ -32224,6 +35444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koho", + Comment = null, }, new() { @@ -32234,6 +35455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kepkiriwát", + Comment = null, }, new() { @@ -32244,6 +35466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikposo", + Comment = null, }, new() { @@ -32254,6 +35477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korupun-Sela", + Comment = null, }, new() { @@ -32264,6 +35488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korafe-Yegha", + Comment = null, }, new() { @@ -32274,6 +35499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tehit", + Comment = null, }, new() { @@ -32284,6 +35510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karata", + Comment = null, }, new() { @@ -32294,6 +35521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kafoa", + Comment = null, }, new() { @@ -32304,6 +35532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komi-Zyrian", + Comment = null, }, new() { @@ -32314,6 +35543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobon", + Comment = null, }, new() { @@ -32324,6 +35554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mountain Koiali", + Comment = null, }, new() { @@ -32334,6 +35565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koryak", + Comment = null, }, new() { @@ -32344,6 +35576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupsabiny", + Comment = null, }, new() { @@ -32354,6 +35587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mum", + Comment = null, }, new() { @@ -32364,6 +35598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kovai", + Comment = null, }, new() { @@ -32374,6 +35609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doromu-Koki", + Comment = null, }, new() { @@ -32384,6 +35620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koy Sanjaq Surat", + Comment = null, }, new() { @@ -32394,6 +35631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalagan", + Comment = null, }, new() { @@ -32404,6 +35642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kakabai", + Comment = null, }, new() { @@ -32414,6 +35653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khe", + Comment = null, }, new() { @@ -32424,6 +35664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisankasa", + Comment = null, }, new() { @@ -32434,6 +35675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koitabu", + Comment = null, }, new() { @@ -32444,6 +35686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koromira", + Comment = null, }, new() { @@ -32454,6 +35697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kotafon Gbe", + Comment = null, }, new() { @@ -32464,6 +35708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyenele", + Comment = null, }, new() { @@ -32474,6 +35719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khisa", + Comment = null, }, new() { @@ -32484,6 +35730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaonde", + Comment = null, }, new() { @@ -32494,6 +35741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Krahn", + Comment = null, }, new() { @@ -32504,6 +35752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimré", + Comment = null, }, new() { @@ -32514,6 +35763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krenak", + Comment = null, }, new() { @@ -32524,6 +35774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimaragang", + Comment = null, }, new() { @@ -32534,6 +35785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Kissi", + Comment = null, }, new() { @@ -32544,6 +35796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Klias River Kadazan", + Comment = null, }, new() { @@ -32554,6 +35807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Seroa", + Comment = null, }, new() { @@ -32564,6 +35818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okolod", + Comment = null, }, new() { @@ -32574,6 +35829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kandas", + Comment = null, }, new() { @@ -32584,6 +35840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mser", + Comment = null, }, new() { @@ -32594,6 +35851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koorete", + Comment = null, }, new() { @@ -32604,6 +35862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Korana", + Comment = null, }, new() { @@ -32614,6 +35873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumhali", + Comment = null, }, new() { @@ -32624,6 +35884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karkin", + Comment = null, }, new() { @@ -32634,6 +35895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karachay-Balkar", + Comment = null, }, new() { @@ -32644,6 +35906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kairui-Midiki", + Comment = null, }, new() { @@ -32654,6 +35917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panará", + Comment = null, }, new() { @@ -32664,6 +35928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (Vanuatu)", + Comment = null, }, new() { @@ -32674,6 +35939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurama", + Comment = null, }, new() { @@ -32684,6 +35950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krio", + Comment = null, }, new() { @@ -32694,6 +35961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinaray-A", + Comment = null, }, new() { @@ -32704,6 +35972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kerek", + Comment = null, }, new() { @@ -32714,6 +35983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karelian", + Comment = null, }, new() { @@ -32724,6 +35994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sapo", + Comment = null, }, new() { @@ -32734,6 +36005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Durop", + Comment = null, }, new() { @@ -32744,6 +36016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krung", + Comment = null, }, new() { @@ -32754,6 +36027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gbaya (Sudan)", + Comment = null, }, new() { @@ -32764,6 +36038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumari Kanuri", + Comment = null, }, new() { @@ -32774,6 +36049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurukh", + Comment = null, }, new() { @@ -32784,6 +36060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kavet", + Comment = null, }, new() { @@ -32794,6 +36071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Krahn", + Comment = null, }, new() { @@ -32804,6 +36082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karon", + Comment = null, }, new() { @@ -32814,6 +36093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kryts", + Comment = null, }, new() { @@ -32824,6 +36104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sota Kanum", + Comment = null, }, new() { @@ -32834,6 +36115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shambala", + Comment = null, }, new() { @@ -32844,6 +36126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kalinga", + Comment = null, }, new() { @@ -32854,6 +36137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanua", + Comment = null, }, new() { @@ -32864,6 +36148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuni", + Comment = null, }, new() { @@ -32874,6 +36159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bafia", + Comment = null, }, new() { @@ -32884,6 +36170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusaghe", + Comment = null, }, new() { @@ -32894,6 +36181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kölsch", + Comment = null, }, new() { @@ -32904,6 +36192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krisa", + Comment = null, }, new() { @@ -32914,6 +36203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uare", + Comment = null, }, new() { @@ -32924,6 +36214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kansa", + Comment = null, }, new() { @@ -32934,6 +36225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumalu", + Comment = null, }, new() { @@ -32944,6 +36236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumba", + Comment = null, }, new() { @@ -32954,6 +36247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasiguranin", + Comment = null, }, new() { @@ -32964,6 +36258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kofa", + Comment = null, }, new() { @@ -32974,6 +36269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaba", + Comment = null, }, new() { @@ -32984,6 +36280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaami", + Comment = null, }, new() { @@ -32994,6 +36291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Borong", + Comment = null, }, new() { @@ -33004,6 +36302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kisi", + Comment = null, }, new() { @@ -33014,6 +36313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Winyé", + Comment = null, }, new() { @@ -33024,6 +36324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamyang", + Comment = null, }, new() { @@ -33034,6 +36335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusu", + Comment = null, }, new() { @@ -33044,6 +36346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "S'gaw Karen", + Comment = null, }, new() { @@ -33054,6 +36357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kedang", + Comment = null, }, new() { @@ -33064,6 +36368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kharia Thar", + Comment = null, }, new() { @@ -33074,6 +36379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodaku", + Comment = null, }, new() { @@ -33084,6 +36390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katua", + Comment = null, }, new() { @@ -33094,6 +36401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kambaata", + Comment = null, }, new() { @@ -33104,6 +36412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kholok", + Comment = null, }, new() { @@ -33114,6 +36423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokata", + Comment = null, }, new() { @@ -33124,6 +36434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nubri", + Comment = null, }, new() { @@ -33134,6 +36445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwami", + Comment = null, }, new() { @@ -33144,6 +36456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kalkutung", + Comment = null, }, new() { @@ -33154,6 +36467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karanga", + Comment = null, }, new() { @@ -33164,6 +36478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Muyu", + Comment = null, }, new() { @@ -33174,6 +36489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plapo Krumen", + Comment = null, }, new() { @@ -33184,6 +36500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kaniet", + Comment = null, }, new() { @@ -33194,6 +36511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koroshi", + Comment = null, }, new() { @@ -33204,6 +36522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurti", + Comment = null, }, new() { @@ -33214,6 +36533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karitiâna", + Comment = null, }, new() { @@ -33224,6 +36544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuot", + Comment = null, }, new() { @@ -33234,6 +36555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaduo", + Comment = null, }, new() { @@ -33244,6 +36566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Katabaga", + Comment = null, }, new() { @@ -33254,6 +36577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Muyu", + Comment = null, }, new() { @@ -33264,6 +36588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ketum", + Comment = null, }, new() { @@ -33274,6 +36599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kituba (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -33284,6 +36610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Katu", + Comment = null, }, new() { @@ -33294,6 +36621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kato", + Comment = null, }, new() { @@ -33304,6 +36632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaxararí", + Comment = null, }, new() { @@ -33314,6 +36643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kango (Bas-Uélé District)", + Comment = null, }, new() { @@ -33324,6 +36654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juǀʼhoan", + Comment = null, }, new() { @@ -33334,6 +36665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanyama", + Comment = null, }, new() { @@ -33344,6 +36676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutep", + Comment = null, }, new() { @@ -33354,6 +36687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwinsu", + Comment = null, }, new() { @@ -33364,6 +36698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "'Auhelawa", + Comment = null, }, new() { @@ -33374,6 +36709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuman (Papua New Guinea)", + Comment = null, }, new() { @@ -33384,6 +36720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Katu", + Comment = null, }, new() { @@ -33394,6 +36731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupa", + Comment = null, }, new() { @@ -33404,6 +36742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kushi", + Comment = null, }, new() { @@ -33414,6 +36753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuikúro-Kalapálo", + Comment = null, }, new() { @@ -33424,6 +36764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuria", + Comment = null, }, new() { @@ -33434,6 +36775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kepo'", + Comment = null, }, new() { @@ -33444,6 +36786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulere", + Comment = null, }, new() { @@ -33454,6 +36797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumyk", + Comment = null, }, new() { @@ -33464,6 +36808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunama", + Comment = null, }, new() { @@ -33474,6 +36819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumukio", + Comment = null, }, new() { @@ -33484,6 +36830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunimaipa", + Comment = null, }, new() { @@ -33494,6 +36841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karipuna", + Comment = null, }, new() { @@ -33504,6 +36852,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Kurdish", + Comment = null, }, new() { @@ -33514,6 +36863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kusaal", + Comment = null, }, new() { @@ -33524,6 +36874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutenai", + Comment = null, }, new() { @@ -33534,6 +36885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Kuskokwim", + Comment = null, }, new() { @@ -33544,6 +36896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kur", + Comment = null, }, new() { @@ -33554,6 +36907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpagua", + Comment = null, }, new() { @@ -33564,6 +36918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kukatja", + Comment = null, }, new() { @@ -33574,6 +36929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuuku-Ya'u", + Comment = null, }, new() { @@ -33584,6 +36940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kunza", + Comment = null, }, new() { @@ -33594,6 +36951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bagvalal", + Comment = null, }, new() { @@ -33604,6 +36962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kubu", + Comment = null, }, new() { @@ -33614,6 +36973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kove", + Comment = null, }, new() { @@ -33624,6 +36984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kui (Indonesia)", + Comment = null, }, new() { @@ -33634,6 +36995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalabakan", + Comment = null, }, new() { @@ -33644,6 +37006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabalai", + Comment = null, }, new() { @@ -33654,6 +37017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuni-Boazi", + Comment = null, }, new() { @@ -33664,6 +37028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komodo", + Comment = null, }, new() { @@ -33674,6 +37039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwang", + Comment = null, }, new() { @@ -33684,6 +37050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Psikye", + Comment = null, }, new() { @@ -33694,6 +37061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korean Sign Language", + Comment = null, }, new() { @@ -33704,6 +37072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayaw", + Comment = null, }, new() { @@ -33714,6 +37083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kendem", + Comment = null, }, new() { @@ -33724,6 +37094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Border Kuna", + Comment = null, }, new() { @@ -33734,6 +37105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dobel", + Comment = null, }, new() { @@ -33744,6 +37116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kompane", + Comment = null, }, new() { @@ -33754,6 +37127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Geba Karen", + Comment = null, }, new() { @@ -33764,6 +37138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerinci", + Comment = null, }, new() { @@ -33774,6 +37149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahta Karen", + Comment = null, }, new() { @@ -33784,6 +37160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yinbaw Karen", + Comment = null, }, new() { @@ -33794,6 +37171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kola", + Comment = null, }, new() { @@ -33804,6 +37182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wersing", + Comment = null, }, new() { @@ -33814,6 +37193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parkari Koli", + Comment = null, }, new() { @@ -33824,6 +37204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yintale Karen", + Comment = null, }, new() { @@ -33834,6 +37215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsakwambo", + Comment = null, }, new() { @@ -33844,6 +37226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dâw", + Comment = null, }, new() { @@ -33854,6 +37237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwa", + Comment = null, }, new() { @@ -33864,6 +37248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likwala", + Comment = null, }, new() { @@ -33874,6 +37259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaio", + Comment = null, }, new() { @@ -33884,6 +37270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwerba", + Comment = null, }, new() { @@ -33894,6 +37281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwara'ae", + Comment = null, }, new() { @@ -33904,6 +37292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara Kaba Deme", + Comment = null, }, new() { @@ -33914,6 +37303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kowiai", + Comment = null, }, new() { @@ -33924,6 +37314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awa-Cuaiquer", + Comment = null, }, new() { @@ -33934,6 +37325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwanga", + Comment = null, }, new() { @@ -33944,6 +37336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwak'wala", + Comment = null, }, new() { @@ -33954,6 +37347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kofyar", + Comment = null, }, new() { @@ -33964,6 +37358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwambi", + Comment = null, }, new() { @@ -33974,6 +37369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwangali", + Comment = null, }, new() { @@ -33984,6 +37380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwomtari", + Comment = null, }, new() { @@ -33994,6 +37391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodia", + Comment = null, }, new() { @@ -34004,6 +37402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwer", + Comment = null, }, new() { @@ -34014,6 +37413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwese", + Comment = null, }, new() { @@ -34024,6 +37424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwesten", + Comment = null, }, new() { @@ -34034,6 +37435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwakum", + Comment = null, }, new() { @@ -34044,6 +37446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara Kaba Náà", + Comment = null, }, new() { @@ -34054,6 +37457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwinti", + Comment = null, }, new() { @@ -34064,6 +37468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khirwar", + Comment = null, }, new() { @@ -34074,6 +37479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Salvador Kongo", + Comment = null, }, new() { @@ -34084,6 +37490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kwadi", + Comment = null, }, new() { @@ -34094,6 +37501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kairiru", + Comment = null, }, new() { @@ -34104,6 +37512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krobu", + Comment = null, }, new() { @@ -34114,6 +37523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konso", + Comment = null, }, new() { @@ -34124,6 +37534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brunei", + Comment = null, }, new() { @@ -34134,6 +37545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manumanaw Karen", + Comment = null, }, new() { @@ -34144,6 +37556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karo (Ethiopia)", + Comment = null, }, new() { @@ -34154,6 +37567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keningau Murut", + Comment = null, }, new() { @@ -34164,6 +37578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulfa", + Comment = null, }, new() { @@ -34174,6 +37589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zayein Karen", + Comment = null, }, new() { @@ -34184,6 +37600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Khmer", + Comment = null, }, new() { @@ -34194,6 +37611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanowit-Tanjong Melanau", + Comment = null, }, new() { @@ -34204,6 +37622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kanoé", + Comment = null, }, new() { @@ -34214,6 +37633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wadiyara Koli", + Comment = null, }, new() { @@ -34224,6 +37644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Smärky Kanum", + Comment = null, }, new() { @@ -34234,6 +37655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro (Papua New Guinea)", + Comment = null, }, new() { @@ -34244,6 +37666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kangjia", + Comment = null, }, new() { @@ -34254,6 +37677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koiwat", + Comment = null, }, new() { @@ -34264,6 +37688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuvi", + Comment = null, }, new() { @@ -34274,6 +37699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konai", + Comment = null, }, new() { @@ -34284,6 +37710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likuba", + Comment = null, }, new() { @@ -34294,6 +37721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayong", + Comment = null, }, new() { @@ -34304,6 +37732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kerewo", + Comment = null, }, new() { @@ -34314,6 +37743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaya", + Comment = null, }, new() { @@ -34324,6 +37754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Butbut Kalinga", + Comment = null, }, new() { @@ -34334,6 +37765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyaka", + Comment = null, }, new() { @@ -34344,6 +37776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karey", + Comment = null, }, new() { @@ -34354,6 +37787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krache", + Comment = null, }, new() { @@ -34364,6 +37798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kouya", + Comment = null, }, new() { @@ -34374,6 +37809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keyagana", + Comment = null, }, new() { @@ -34384,6 +37820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karok", + Comment = null, }, new() { @@ -34394,6 +37831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiput", + Comment = null, }, new() { @@ -34404,6 +37842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karao", + Comment = null, }, new() { @@ -34414,6 +37853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamayo", + Comment = null, }, new() { @@ -34424,6 +37864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalapuya", + Comment = null, }, new() { @@ -34434,6 +37875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpatili", + Comment = null, }, new() { @@ -34444,6 +37886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Binukidnon", + Comment = null, }, new() { @@ -34454,6 +37897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kelon", + Comment = null, }, new() { @@ -34464,6 +37908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kang", + Comment = null, }, new() { @@ -34474,6 +37919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenga", + Comment = null, }, new() { @@ -34484,6 +37930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuruáya", + Comment = null, }, new() { @@ -34494,6 +37941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baram Kayan", + Comment = null, }, new() { @@ -34504,6 +37952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayagar", + Comment = null, }, new() { @@ -34514,6 +37963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Kayah", + Comment = null, }, new() { @@ -34524,6 +37974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayort", + Comment = null, }, new() { @@ -34534,6 +37985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kudmali", + Comment = null, }, new() { @@ -34544,6 +37996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapoisi", + Comment = null, }, new() { @@ -34554,6 +38007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kambaira", + Comment = null, }, new() { @@ -34564,6 +38018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayabí", + Comment = null, }, new() { @@ -34574,6 +38029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Karaboro", + Comment = null, }, new() { @@ -34584,6 +38040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaibobo", + Comment = null, }, new() { @@ -34594,6 +38051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bondoukou Kulango", + Comment = null, }, new() { @@ -34604,6 +38062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadai", + Comment = null, }, new() { @@ -34614,6 +38073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kosena", + Comment = null, }, new() { @@ -34624,6 +38084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Da'a Kaili", + Comment = null, }, new() { @@ -34634,6 +38095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kikai", + Comment = null, }, new() { @@ -34644,6 +38106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kelabit", + Comment = null, }, new() { @@ -34654,6 +38117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kazukuru", + Comment = null, }, new() { @@ -34664,6 +38128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayeli", + Comment = null, }, new() { @@ -34674,6 +38139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kais", + Comment = null, }, new() { @@ -34684,6 +38150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokola", + Comment = null, }, new() { @@ -34694,6 +38161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaningi", + Comment = null, }, new() { @@ -34704,6 +38172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaidipang", + Comment = null, }, new() { @@ -34714,6 +38183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaike", + Comment = null, }, new() { @@ -34724,6 +38194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karang", + Comment = null, }, new() { @@ -34734,6 +38205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sugut Dusun", + Comment = null, }, new() { @@ -34744,6 +38216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayupulau", + Comment = null, }, new() { @@ -34754,6 +38227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komyandaret", + Comment = null, }, new() { @@ -34764,6 +38238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karirí-Xocó", + Comment = null, }, new() { @@ -34774,6 +38249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamarian", + Comment = null, }, new() { @@ -34784,6 +38260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kango (Tshopo District)", + Comment = null, }, new() { @@ -34794,6 +38271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalabra", + Comment = null, }, new() { @@ -34804,6 +38282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Subanen", + Comment = null, }, new() { @@ -34814,6 +38293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Linear A", + Comment = null, }, new() { @@ -34824,6 +38304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lacandon", + Comment = null, }, new() { @@ -34834,6 +38315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ladino", + Comment = null, }, new() { @@ -34844,6 +38326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pattani", + Comment = null, }, new() { @@ -34854,6 +38337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lafofa", + Comment = null, }, new() { @@ -34864,6 +38348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rangi", + Comment = null, }, new() { @@ -34874,6 +38359,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Lahnda", + Comment = null, }, new() { @@ -34884,6 +38370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambya", + Comment = null, }, new() { @@ -34894,6 +38381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lango (Uganda)", + Comment = null, }, new() { @@ -34904,6 +38392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lalia", + Comment = null, }, new() { @@ -34914,6 +38403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamba", + Comment = null, }, new() { @@ -34924,6 +38414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laru", + Comment = null, }, new() { @@ -34934,6 +38425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lao", + Comment = null, }, new() { @@ -34944,6 +38436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laka (Chad)", + Comment = null, }, new() { @@ -34954,6 +38447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qabiao", + Comment = null, }, new() { @@ -34964,6 +38458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larteh", + Comment = null, }, new() { @@ -34974,6 +38469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lama (Togo)", + Comment = null, }, new() { @@ -34984,6 +38480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Latin", + Comment = null, }, new() { @@ -34994,6 +38491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laba", + Comment = null, }, new() { @@ -35004,6 +38502,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Latvian", + Comment = null, }, new() { @@ -35014,6 +38513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lauje", + Comment = null, }, new() { @@ -35024,6 +38524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiwa", + Comment = null, }, new() { @@ -35034,6 +38535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lama Bai", + Comment = null, }, new() { @@ -35044,6 +38546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aribwatsa", + Comment = null, }, new() { @@ -35054,6 +38557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Label", + Comment = null, }, new() { @@ -35064,6 +38568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakkia", + Comment = null, }, new() { @@ -35074,6 +38579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lak", + Comment = null, }, new() { @@ -35084,6 +38590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tinani", + Comment = null, }, new() { @@ -35094,6 +38601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laopang", + Comment = null, }, new() { @@ -35104,6 +38612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "La'bi", + Comment = null, }, new() { @@ -35114,6 +38623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ladakhi", + Comment = null, }, new() { @@ -35124,6 +38634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Bontok", + Comment = null, }, new() { @@ -35134,6 +38645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libon Bikol", + Comment = null, }, new() { @@ -35144,6 +38656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lodhi", + Comment = null, }, new() { @@ -35154,6 +38667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rmeet", + Comment = null, }, new() { @@ -35164,6 +38678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laven", + Comment = null, }, new() { @@ -35174,6 +38689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wampar", + Comment = null, }, new() { @@ -35184,6 +38700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lohorung", + Comment = null, }, new() { @@ -35194,6 +38711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libyan Sign Language", + Comment = null, }, new() { @@ -35204,6 +38722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lachi", + Comment = null, }, new() { @@ -35214,6 +38733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labu", + Comment = null, }, new() { @@ -35224,6 +38744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lavatbura-Lamusong", + Comment = null, }, new() { @@ -35234,6 +38755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tolaki", + Comment = null, }, new() { @@ -35244,6 +38766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lawangan", + Comment = null, }, new() { @@ -35254,6 +38777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lamalama", + Comment = null, }, new() { @@ -35264,6 +38788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lardil", + Comment = null, }, new() { @@ -35274,6 +38799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Legenyem", + Comment = null, }, new() { @@ -35284,6 +38810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lola", + Comment = null, }, new() { @@ -35294,6 +38821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loncong", + Comment = null, }, new() { @@ -35304,6 +38832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lubu", + Comment = null, }, new() { @@ -35314,6 +38843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luchazi", + Comment = null, }, new() { @@ -35324,6 +38854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lisela", + Comment = null, }, new() { @@ -35334,6 +38865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tungag", + Comment = null, }, new() { @@ -35344,6 +38876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Lawa", + Comment = null, }, new() { @@ -35354,6 +38887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luhu", + Comment = null, }, new() { @@ -35364,6 +38898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lisabata-Nuniali", + Comment = null, }, new() { @@ -35374,6 +38909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kla-Dan", + Comment = null, }, new() { @@ -35384,6 +38920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dũya", + Comment = null, }, new() { @@ -35394,6 +38931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luri", + Comment = null, }, new() { @@ -35404,6 +38942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenyima", + Comment = null, }, new() { @@ -35414,6 +38953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamja-Dengsa-Tola", + Comment = null, }, new() { @@ -35424,6 +38964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laari", + Comment = null, }, new() { @@ -35434,6 +38975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemoro", + Comment = null, }, new() { @@ -35444,6 +38986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leelau", + Comment = null, }, new() { @@ -35454,6 +38997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaan", + Comment = null, }, new() { @@ -35464,6 +39008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Landoma", + Comment = null, }, new() { @@ -35474,6 +39019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Láadan", + Comment = null, }, new() { @@ -35484,6 +39030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loo", + Comment = null, }, new() { @@ -35494,6 +39041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tso", + Comment = null, }, new() { @@ -35504,6 +39052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lufu", + Comment = null, }, new() { @@ -35514,6 +39063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lega-Shabunda", + Comment = null, }, new() { @@ -35524,6 +39074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lala-Bisa", + Comment = null, }, new() { @@ -35534,6 +39085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leco", + Comment = null, }, new() { @@ -35544,6 +39096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lendu", + Comment = null, }, new() { @@ -35554,6 +39107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lyélé", + Comment = null, }, new() { @@ -35564,6 +39118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lelemi", + Comment = null, }, new() { @@ -35574,6 +39129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenje", + Comment = null, }, new() { @@ -35584,6 +39140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemio", + Comment = null, }, new() { @@ -35594,6 +39151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lengola", + Comment = null, }, new() { @@ -35604,6 +39162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leipon", + Comment = null, }, new() { @@ -35614,6 +39173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -35624,6 +39184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomaande", + Comment = null, }, new() { @@ -35634,6 +39195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lenca", + Comment = null, }, new() { @@ -35644,6 +39206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leti (Cameroon)", + Comment = null, }, new() { @@ -35654,6 +39217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lepcha", + Comment = null, }, new() { @@ -35664,6 +39228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lembena", + Comment = null, }, new() { @@ -35674,6 +39239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenkau", + Comment = null, }, new() { @@ -35684,6 +39250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lese", + Comment = null, }, new() { @@ -35694,6 +39261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lesing-Gelimi", + Comment = null, }, new() { @@ -35704,6 +39272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara (Papua New Guinea)", + Comment = null, }, new() { @@ -35714,6 +39283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamma", + Comment = null, }, new() { @@ -35724,6 +39294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ledo Kaili", + Comment = null, }, new() { @@ -35734,6 +39305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luang", + Comment = null, }, new() { @@ -35744,6 +39316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemolang", + Comment = null, }, new() { @@ -35754,6 +39327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lezghian", + Comment = null, }, new() { @@ -35764,6 +39338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lefa", + Comment = null, }, new() { @@ -35774,6 +39349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buu (Cameroon)", + Comment = null, }, new() { @@ -35784,6 +39360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Lingua Franca Nova", + Comment = null, }, new() { @@ -35794,6 +39371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lungga", + Comment = null, }, new() { @@ -35804,6 +39382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laghu", + Comment = null, }, new() { @@ -35814,6 +39393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lugbara", + Comment = null, }, new() { @@ -35824,6 +39404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laghuu", + Comment = null, }, new() { @@ -35834,6 +39415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lengilu", + Comment = null, }, new() { @@ -35844,6 +39426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingarak", + Comment = null, }, new() { @@ -35854,6 +39437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wala", + Comment = null, }, new() { @@ -35864,6 +39448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lega-Mwenga", + Comment = null, }, new() { @@ -35874,6 +39459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "T'apo", + Comment = null, }, new() { @@ -35884,6 +39470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lango (South Sudan)", + Comment = null, }, new() { @@ -35894,6 +39481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logba", + Comment = null, }, new() { @@ -35904,6 +39492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lengo", + Comment = null, }, new() { @@ -35914,6 +39503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guinea-Bissau Sign Language", + Comment = null, }, new() { @@ -35924,6 +39514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahi", + Comment = null, }, new() { @@ -35934,6 +39525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Longgu", + Comment = null, }, new() { @@ -35944,6 +39536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ligenza", + Comment = null, }, new() { @@ -35954,6 +39547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laha (Viet Nam)", + Comment = null, }, new() { @@ -35964,6 +39558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laha (Indonesia)", + Comment = null, }, new() { @@ -35974,6 +39569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahu Shi", + Comment = null, }, new() { @@ -35984,6 +39580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahul Lohar", + Comment = null, }, new() { @@ -35994,6 +39591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lhomi", + Comment = null, }, new() { @@ -36004,6 +39602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahanan", + Comment = null, }, new() { @@ -36014,6 +39613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lhokpu", + Comment = null, }, new() { @@ -36024,6 +39624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mlahsö", + Comment = null, }, new() { @@ -36034,6 +39635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lo-Toga", + Comment = null, }, new() { @@ -36044,6 +39646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lahu", + Comment = null, }, new() { @@ -36054,6 +39657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West-Central Limba", + Comment = null, }, new() { @@ -36064,6 +39668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likum", + Comment = null, }, new() { @@ -36074,6 +39679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hlai", + Comment = null, }, new() { @@ -36084,6 +39690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyindrou", + Comment = null, }, new() { @@ -36094,6 +39701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Likila", + Comment = null, }, new() { @@ -36104,6 +39712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limbu", + Comment = null, }, new() { @@ -36114,6 +39723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ligbi", + Comment = null, }, new() { @@ -36124,6 +39734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lihir", + Comment = null, }, new() { @@ -36134,6 +39745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ligurian", + Comment = null, }, new() { @@ -36144,6 +39756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lika", + Comment = null, }, new() { @@ -36154,6 +39767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lillooet", + Comment = null, }, new() { @@ -36164,6 +39778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limburgan", + Comment = null, }, new() { @@ -36174,6 +39789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingala", + Comment = null, }, new() { @@ -36184,6 +39800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liki", + Comment = null, }, new() { @@ -36194,6 +39811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekpele", + Comment = null, }, new() { @@ -36204,6 +39822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libido", + Comment = null, }, new() { @@ -36214,6 +39833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liberian English", + Comment = null, }, new() { @@ -36224,6 +39844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lisu", + Comment = null, }, new() { @@ -36234,6 +39855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lithuanian", + Comment = null, }, new() { @@ -36244,6 +39866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logorik", + Comment = null, }, new() { @@ -36254,6 +39877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liv", + Comment = null, }, new() { @@ -36264,6 +39888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Col", + Comment = null, }, new() { @@ -36274,6 +39899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liabuku", + Comment = null, }, new() { @@ -36284,6 +39910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Bambari", + Comment = null, }, new() { @@ -36294,6 +39921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Libinza", + Comment = null, }, new() { @@ -36304,6 +39932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Golpa", + Comment = null, }, new() { @@ -36314,6 +39943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rampi", + Comment = null, }, new() { @@ -36324,6 +39954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laiyolo", + Comment = null, }, new() { @@ -36334,6 +39965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Li'o", + Comment = null, }, new() { @@ -36344,6 +39976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lampung Api", + Comment = null, }, new() { @@ -36354,6 +39987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yirandali", + Comment = null, }, new() { @@ -36364,6 +39998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yuru", + Comment = null, }, new() { @@ -36374,6 +40009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakalei", + Comment = null, }, new() { @@ -36384,6 +40020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabras", + Comment = null, }, new() { @@ -36394,6 +40031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kucong", + Comment = null, }, new() { @@ -36404,6 +40042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakondê", + Comment = null, }, new() { @@ -36414,6 +40053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenyi", + Comment = null, }, new() { @@ -36424,6 +40064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakha", + Comment = null, }, new() { @@ -36434,6 +40075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laki", + Comment = null, }, new() { @@ -36444,6 +40086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Remun", + Comment = null, }, new() { @@ -36454,6 +40097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laeko-Libuat", + Comment = null, }, new() { @@ -36464,6 +40108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kalaamaya", + Comment = null, }, new() { @@ -36474,6 +40119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakon", + Comment = null, }, new() { @@ -36484,6 +40130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khayo", + Comment = null, }, new() { @@ -36494,6 +40141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Päri", + Comment = null, }, new() { @@ -36504,6 +40152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisa", + Comment = null, }, new() { @@ -36514,6 +40163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakota", + Comment = null, }, new() { @@ -36524,6 +40174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kungkari", + Comment = null, }, new() { @@ -36534,6 +40185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lokoya", + Comment = null, }, new() { @@ -36544,6 +40196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lala-Roba", + Comment = null, }, new() { @@ -36554,6 +40207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lolo", + Comment = null, }, new() { @@ -36564,6 +40218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Guinea)", + Comment = null, }, new() { @@ -36574,6 +40229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ladin", + Comment = null, }, new() { @@ -36584,6 +40240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Papua New Guinea)", + Comment = null, }, new() { @@ -36594,6 +40251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Hermit", + Comment = null, }, new() { @@ -36604,6 +40262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lole", + Comment = null, }, new() { @@ -36614,6 +40273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamu", + Comment = null, }, new() { @@ -36624,6 +40284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Laali", + Comment = null, }, new() { @@ -36634,6 +40295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ladji Ladji", + Comment = null, }, new() { @@ -36644,6 +40306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lelak", + Comment = null, }, new() { @@ -36654,6 +40317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lilau", + Comment = null, }, new() { @@ -36664,6 +40328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lasalimu", + Comment = null, }, new() { @@ -36674,6 +40339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lele (Chad)", + Comment = null, }, new() { @@ -36684,6 +40350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Efate", + Comment = null, }, new() { @@ -36694,6 +40361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lolak", + Comment = null, }, new() { @@ -36704,6 +40372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lithuanian Sign Language", + Comment = null, }, new() { @@ -36714,6 +40383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lau", + Comment = null, }, new() { @@ -36724,6 +40394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lauan", + Comment = null, }, new() { @@ -36734,6 +40405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Limba", + Comment = null, }, new() { @@ -36744,6 +40416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merei", + Comment = null, }, new() { @@ -36754,6 +40427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Limilngan", + Comment = null, }, new() { @@ -36764,6 +40438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lumun", + Comment = null, }, new() { @@ -36774,6 +40449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pévé", + Comment = null, }, new() { @@ -36784,6 +40460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Lembata", + Comment = null, }, new() { @@ -36794,6 +40471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamogai", + Comment = null, }, new() { @@ -36804,6 +40482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambichhong", + Comment = null, }, new() { @@ -36814,6 +40493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lombi", + Comment = null, }, new() { @@ -36824,6 +40504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Lembata", + Comment = null, }, new() { @@ -36834,6 +40515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamkang", + Comment = null, }, new() { @@ -36844,6 +40526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hano", + Comment = null, }, new() { @@ -36854,6 +40537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambadi", + Comment = null, }, new() { @@ -36864,6 +40548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lombard", + Comment = null, }, new() { @@ -36874,6 +40559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limbum", + Comment = null, }, new() { @@ -36884,6 +40570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamatuka", + Comment = null, }, new() { @@ -36894,6 +40581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamalera", + Comment = null, }, new() { @@ -36904,6 +40592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamenu", + Comment = null, }, new() { @@ -36914,6 +40603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lomaiviti", + Comment = null, }, new() { @@ -36924,6 +40614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lake Miwok", + Comment = null, }, new() { @@ -36934,6 +40625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laimbue", + Comment = null, }, new() { @@ -36944,6 +40636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamboya", + Comment = null, }, new() { @@ -36954,6 +40647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langbashe", + Comment = null, }, new() { @@ -36964,6 +40658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbalanhu", + Comment = null, }, new() { @@ -36974,6 +40669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lundayeh", + Comment = null, }, new() { @@ -36984,6 +40680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Langobardic", + Comment = null, }, new() { @@ -36994,6 +40691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lanoh", + Comment = null, }, new() { @@ -37004,6 +40702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Daantanai'", + Comment = null, }, new() { @@ -37014,6 +40713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Leningitij", + Comment = null, }, new() { @@ -37024,6 +40724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Central Banda", + Comment = null, }, new() { @@ -37034,6 +40735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langam", + Comment = null, }, new() { @@ -37044,6 +40746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lorediakarkar", + Comment = null, }, new() { @@ -37054,6 +40757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamnso'", + Comment = null, }, new() { @@ -37064,6 +40768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Longuda", + Comment = null, }, new() { @@ -37074,6 +40779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lanima", + Comment = null, }, new() { @@ -37084,6 +40790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lonzo", + Comment = null, }, new() { @@ -37094,6 +40801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loloda", + Comment = null, }, new() { @@ -37104,6 +40812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lobi", + Comment = null, }, new() { @@ -37114,6 +40823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inonhan", + Comment = null, }, new() { @@ -37124,6 +40834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saluan", + Comment = null, }, new() { @@ -37134,6 +40845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logol", + Comment = null, }, new() { @@ -37144,6 +40856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logo", + Comment = null, }, new() { @@ -37154,6 +40867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laarim", + Comment = null, }, new() { @@ -37164,6 +40878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loma (Côte d'Ivoire)", + Comment = null, }, new() { @@ -37174,6 +40889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lou", + Comment = null, }, new() { @@ -37184,6 +40900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loko", + Comment = null, }, new() { @@ -37194,6 +40911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongo", + Comment = null, }, new() { @@ -37204,6 +40922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loma (Liberia)", + Comment = null, }, new() { @@ -37214,6 +40933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malawi Lomwe", + Comment = null, }, new() { @@ -37224,6 +40944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lombo", + Comment = null, }, new() { @@ -37234,6 +40955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lopa", + Comment = null, }, new() { @@ -37244,6 +40966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lobala", + Comment = null, }, new() { @@ -37254,6 +40977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Téén", + Comment = null, }, new() { @@ -37264,6 +40988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loniu", + Comment = null, }, new() { @@ -37274,6 +40999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Otuho", + Comment = null, }, new() { @@ -37284,6 +41010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Louisiana Creole", + Comment = null, }, new() { @@ -37294,6 +41021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lopi", + Comment = null, }, new() { @@ -37304,6 +41032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tampias Lobu", + Comment = null, }, new() { @@ -37314,6 +41043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loun", + Comment = null, }, new() { @@ -37324,6 +41054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loke", + Comment = null, }, new() { @@ -37334,6 +41065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lozi", + Comment = null, }, new() { @@ -37344,6 +41076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lelepa", + Comment = null, }, new() { @@ -37354,6 +41087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lepki", + Comment = null, }, new() { @@ -37364,6 +41098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Long Phuri Naga", + Comment = null, }, new() { @@ -37374,6 +41109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lipo", + Comment = null, }, new() { @@ -37384,6 +41120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lopit", + Comment = null, }, new() { @@ -37394,6 +41131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logir", + Comment = null, }, new() { @@ -37404,6 +41142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rara Bakati'", + Comment = null, }, new() { @@ -37414,6 +41153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Luri", + Comment = null, }, new() { @@ -37424,6 +41164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Laurentian", + Comment = null, }, new() { @@ -37434,6 +41175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Laragia", + Comment = null, }, new() { @@ -37444,6 +41186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marachi", + Comment = null, }, new() { @@ -37454,6 +41197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loarki", + Comment = null, }, new() { @@ -37464,6 +41208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lari", + Comment = null, }, new() { @@ -37474,6 +41219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marama", + Comment = null, }, new() { @@ -37484,6 +41230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lorang", + Comment = null, }, new() { @@ -37494,6 +41241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laro", + Comment = null, }, new() { @@ -37504,6 +41252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Yamphu", + Comment = null, }, new() { @@ -37514,6 +41263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larantuka Malay", + Comment = null, }, new() { @@ -37524,6 +41274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Larevat", + Comment = null, }, new() { @@ -37534,6 +41285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lemerig", + Comment = null, }, new() { @@ -37544,6 +41296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lasgerdi", + Comment = null, }, new() { @@ -37554,6 +41307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burundian Sign Language", + Comment = null, }, new() { @@ -37564,6 +41318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Albarradas Sign Language", + Comment = null, }, new() { @@ -37574,6 +41329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lishana Deni", + Comment = null, }, new() { @@ -37584,6 +41340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lusengo", + Comment = null, }, new() { @@ -37594,6 +41351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lish", + Comment = null, }, new() { @@ -37604,6 +41362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lashi", + Comment = null, }, new() { @@ -37614,6 +41373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latvian Sign Language", + Comment = null, }, new() { @@ -37624,6 +41384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saamia", + Comment = null, }, new() { @@ -37634,6 +41395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibetan Sign Language", + Comment = null, }, new() { @@ -37644,6 +41406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laos Sign Language", + Comment = null, }, new() { @@ -37654,6 +41417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panamanian Sign Language", + Comment = null, }, new() { @@ -37664,6 +41428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruop", + Comment = null, }, new() { @@ -37674,6 +41439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lasi", + Comment = null, }, new() { @@ -37684,6 +41450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trinidad and Tobago Sign Language", + Comment = null, }, new() { @@ -37694,6 +41461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sivia Sign Language", + Comment = null, }, new() { @@ -37704,6 +41472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seychelles Sign Language", + Comment = null, }, new() { @@ -37714,6 +41483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mauritian Sign Language", + Comment = null, }, new() { @@ -37724,6 +41494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Late Middle Chinese", + Comment = null, }, new() { @@ -37734,6 +41505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latgalian", + Comment = null, }, new() { @@ -37744,6 +41516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thur", + Comment = null, }, new() { @@ -37754,6 +41527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leti (Indonesia)", + Comment = null, }, new() { @@ -37764,6 +41538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latundê", + Comment = null, }, new() { @@ -37774,6 +41549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsotso", + Comment = null, }, new() { @@ -37784,6 +41560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tachoni", + Comment = null, }, new() { @@ -37794,6 +41571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Latu", + Comment = null, }, new() { @@ -37804,6 +41582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luxembourgish", + Comment = null, }, new() { @@ -37814,6 +41593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luba-Lulua", + Comment = null, }, new() { @@ -37824,6 +41604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luba-Katanga", + Comment = null, }, new() { @@ -37834,6 +41615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aringa", + Comment = null, }, new() { @@ -37844,6 +41626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ludian", + Comment = null, }, new() { @@ -37854,6 +41637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luvale", + Comment = null, }, new() { @@ -37864,6 +41648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laua", + Comment = null, }, new() { @@ -37874,6 +41659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ganda", + Comment = null, }, new() { @@ -37884,6 +41670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leizhou Chinese", + Comment = null, }, new() { @@ -37894,6 +41681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Luiseño", + Comment = null, }, new() { @@ -37904,6 +41692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luna", + Comment = null, }, new() { @@ -37914,6 +41703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lunanakha", + Comment = null, }, new() { @@ -37924,6 +41714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olu'bo", + Comment = null, }, new() { @@ -37934,6 +41725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luimbi", + Comment = null, }, new() { @@ -37944,6 +41736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lunda", + Comment = null, }, new() { @@ -37954,6 +41747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luo (Kenya and Tanzania)", + Comment = null, }, new() { @@ -37964,6 +41758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lumbu", + Comment = null, }, new() { @@ -37974,6 +41769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lucumi", + Comment = null, }, new() { @@ -37984,6 +41780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laura", + Comment = null, }, new() { @@ -37994,6 +41791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lushai", + Comment = null, }, new() { @@ -38004,6 +41802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lushootseed", + Comment = null, }, new() { @@ -38014,6 +41813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lumba-Yakkha", + Comment = null, }, new() { @@ -38024,6 +41824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luwati", + Comment = null, }, new() { @@ -38034,6 +41835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luo (Cameroon)", + Comment = null, }, new() { @@ -38044,6 +41846,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Luyia", + Comment = null, }, new() { @@ -38054,6 +41857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Luri", + Comment = null, }, new() { @@ -38064,6 +41868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maku'a", + Comment = null, }, new() { @@ -38074,6 +41879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lavi", + Comment = null, }, new() { @@ -38084,6 +41890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lavukaleve", + Comment = null, }, new() { @@ -38094,6 +41901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lwel", + Comment = null, }, new() { @@ -38104,6 +41912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Latvian", + Comment = null, }, new() { @@ -38114,6 +41923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Levuka", + Comment = null, }, new() { @@ -38124,6 +41934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lwalu", + Comment = null, }, new() { @@ -38134,6 +41945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lewo Eleng", + Comment = null, }, new() { @@ -38144,6 +41956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanga", + Comment = null, }, new() { @@ -38154,6 +41967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "White Lachi", + Comment = null, }, new() { @@ -38164,6 +41978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Lawa", + Comment = null, }, new() { @@ -38174,6 +41989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laomian", + Comment = null, }, new() { @@ -38184,6 +42000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luwo", + Comment = null, }, new() { @@ -38194,6 +42011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malawian Sign Language", + Comment = null, }, new() { @@ -38204,6 +42022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lewotobi", + Comment = null, }, new() { @@ -38214,6 +42033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lawu", + Comment = null, }, new() { @@ -38224,6 +42044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lewo", + Comment = null, }, new() { @@ -38234,6 +42055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lakurumau", + Comment = null, }, new() { @@ -38244,6 +42066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Layakha", + Comment = null, }, new() { @@ -38254,6 +42077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lyngngam", + Comment = null, }, new() { @@ -38264,6 +42088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luyana", + Comment = null, }, new() { @@ -38274,6 +42099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Literary Chinese", + Comment = null, }, new() { @@ -38284,6 +42110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Litzlitz", + Comment = null, }, new() { @@ -38294,6 +42121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Leinong Naga", + Comment = null, }, new() { @@ -38304,6 +42132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Laz", + Comment = null, }, new() { @@ -38314,6 +42143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Jerónimo Tecóatl Mazatec", + Comment = null, }, new() { @@ -38324,6 +42154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yutanduchi Mixtec", + Comment = null, }, new() { @@ -38334,6 +42165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madurese", + Comment = null, }, new() { @@ -38344,6 +42176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo-Rukul", + Comment = null, }, new() { @@ -38354,6 +42187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mafa", + Comment = null, }, new() { @@ -38364,6 +42198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magahi", + Comment = null, }, new() { @@ -38374,6 +42209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marshallese", + Comment = null, }, new() { @@ -38384,6 +42220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maithili", + Comment = null, }, new() { @@ -38394,6 +42231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jalapa De Díaz Mazatec", + Comment = null, }, new() { @@ -38404,6 +42242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makasar", + Comment = null, }, new() { @@ -38414,6 +42253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayalam", + Comment = null, }, new() { @@ -38424,6 +42264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mam", + Comment = null, }, new() { @@ -38434,6 +42275,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mandingo", + Comment = null, }, new() { @@ -38444,6 +42286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiquihuitlán Mazatec", + Comment = null, }, new() { @@ -38454,6 +42297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marathi", + Comment = null, }, new() { @@ -38464,6 +42308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masai", + Comment = null, }, new() { @@ -38474,6 +42319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Francisco Matlatzinca", + Comment = null, }, new() { @@ -38484,6 +42330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huautla Mazatec", + Comment = null, }, new() { @@ -38494,6 +42341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sateré-Mawé", + Comment = null, }, new() { @@ -38504,6 +42352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mampruli", + Comment = null, }, new() { @@ -38514,6 +42363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Moluccan Malay", + Comment = null, }, new() { @@ -38524,6 +42374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Mazahua", + Comment = null, }, new() { @@ -38534,6 +42385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Higaonon", + Comment = null, }, new() { @@ -38544,6 +42396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Bukidnon Manobo", + Comment = null, }, new() { @@ -38554,6 +42407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macushi", + Comment = null, }, new() { @@ -38564,6 +42418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dibabawon Manobo", + Comment = null, }, new() { @@ -38574,6 +42429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Molale", + Comment = null, }, new() { @@ -38584,6 +42440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baba Malay", + Comment = null, }, new() { @@ -38594,6 +42451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangseng", + Comment = null, }, new() { @@ -38604,6 +42462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilianen Manobo", + Comment = null, }, new() { @@ -38614,6 +42473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nadëb", + Comment = null, }, new() { @@ -38624,6 +42484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malol", + Comment = null, }, new() { @@ -38634,6 +42495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maxakalí", + Comment = null, }, new() { @@ -38644,6 +42506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ombamba", + Comment = null, }, new() { @@ -38654,6 +42517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macaguán", + Comment = null, }, new() { @@ -38664,6 +42528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbo (Cameroon)", + Comment = null, }, new() { @@ -38674,6 +42539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayo", + Comment = null, }, new() { @@ -38684,6 +42550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maisin", + Comment = null, }, new() { @@ -38694,6 +42561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukak Makú", + Comment = null, }, new() { @@ -38704,6 +42572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarangani Manobo", + Comment = null, }, new() { @@ -38714,6 +42583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matigsalug Manobo", + Comment = null, }, new() { @@ -38724,6 +42594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbula-Bwazza", + Comment = null, }, new() { @@ -38734,6 +42605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbulungish", + Comment = null, }, new() { @@ -38744,6 +42616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maring", + Comment = null, }, new() { @@ -38754,6 +42627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mari (East Sepik Province)", + Comment = null, }, new() { @@ -38764,6 +42638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Memoni", + Comment = null, }, new() { @@ -38774,6 +42649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amoltepec Mixtec", + Comment = null, }, new() { @@ -38784,6 +42660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maca", + Comment = null, }, new() { @@ -38794,6 +42671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machiguenga", + Comment = null, }, new() { @@ -38804,6 +42682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bitur", + Comment = null, }, new() { @@ -38814,6 +42693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sharanahua", + Comment = null, }, new() { @@ -38824,6 +42704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Itundujia Mixtec", + Comment = null, }, new() { @@ -38834,6 +42715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matsés", + Comment = null, }, new() { @@ -38844,6 +42726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapoyo", + Comment = null, }, new() { @@ -38854,6 +42737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maquiritari", + Comment = null, }, new() { @@ -38864,6 +42748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mese", + Comment = null, }, new() { @@ -38874,6 +42759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mvanip", + Comment = null, }, new() { @@ -38884,6 +42770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbunda", + Comment = null, }, new() { @@ -38894,6 +42781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Macaguaje", + Comment = null, }, new() { @@ -38904,6 +42792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaccan Creole Portuguese", + Comment = null, }, new() { @@ -38914,6 +42803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masana", + Comment = null, }, new() { @@ -38924,6 +42814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatlán Mixe", + Comment = null, }, new() { @@ -38934,6 +42825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makaa", + Comment = null, }, new() { @@ -38944,6 +42836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ese", + Comment = null, }, new() { @@ -38954,6 +42847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Menya", + Comment = null, }, new() { @@ -38964,6 +42858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mambai", + Comment = null, }, new() { @@ -38974,6 +42869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mengisa", + Comment = null, }, new() { @@ -38984,6 +42880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cameroon Mambila", + Comment = null, }, new() { @@ -38994,6 +42891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minanibai", + Comment = null, }, new() { @@ -39004,6 +42902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawa (Chad)", + Comment = null, }, new() { @@ -39014,6 +42913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpiemo", + Comment = null, }, new() { @@ -39024,6 +42924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Watut", + Comment = null, }, new() { @@ -39034,6 +42935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawan", + Comment = null, }, new() { @@ -39044,6 +42946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mada (Nigeria)", + Comment = null, }, new() { @@ -39054,6 +42957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morigi", + Comment = null, }, new() { @@ -39064,6 +42968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Male (Papua New Guinea)", + Comment = null, }, new() { @@ -39074,6 +42979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbum", + Comment = null, }, new() { @@ -39084,6 +42990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maba (Chad)", + Comment = null, }, new() { @@ -39094,6 +43001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moksha", + Comment = null, }, new() { @@ -39104,6 +43012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Massalat", + Comment = null, }, new() { @@ -39114,6 +43023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maguindanaon", + Comment = null, }, new() { @@ -39124,6 +43034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamvu", + Comment = null, }, new() { @@ -39134,6 +43045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangbetu", + Comment = null, }, new() { @@ -39144,6 +43056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangbutu", + Comment = null, }, new() { @@ -39154,6 +43067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maltese Sign Language", + Comment = null, }, new() { @@ -39164,6 +43078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayogo", + Comment = null, }, new() { @@ -39174,6 +43089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbati", + Comment = null, }, new() { @@ -39184,6 +43100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbala", + Comment = null, }, new() { @@ -39194,6 +43111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbole", + Comment = null, }, new() { @@ -39204,6 +43122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandar", + Comment = null, }, new() { @@ -39214,6 +43133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maria (Papua New Guinea)", + Comment = null, }, new() { @@ -39224,6 +43144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbere", + Comment = null, }, new() { @@ -39234,6 +43155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mboko", + Comment = null, }, new() { @@ -39244,6 +43166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Lucía Monteverde Mixtec", + Comment = null, }, new() { @@ -39254,6 +43177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbosi", + Comment = null, }, new() { @@ -39264,6 +43188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dizin", + Comment = null, }, new() { @@ -39274,6 +43199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Male (Ethiopia)", + Comment = null, }, new() { @@ -39284,6 +43210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suruí Do Pará", + Comment = null, }, new() { @@ -39294,6 +43221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Menka", + Comment = null, }, new() { @@ -39304,6 +43232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikobi", + Comment = null, }, new() { @@ -39314,6 +43243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marra", + Comment = null, }, new() { @@ -39324,6 +43254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Melpa", + Comment = null, }, new() { @@ -39334,6 +43265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mengen", + Comment = null, }, new() { @@ -39344,6 +43276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Megam", + Comment = null, }, new() { @@ -39354,6 +43287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Tlaxiaco Mixtec", + Comment = null, }, new() { @@ -39364,6 +43298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Midob", + Comment = null, }, new() { @@ -39374,6 +43309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meyah", + Comment = null, }, new() { @@ -39384,6 +43320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mekeo", + Comment = null, }, new() { @@ -39394,6 +43331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Melanau", + Comment = null, }, new() { @@ -39404,6 +43342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mangala", + Comment = null, }, new() { @@ -39414,6 +43353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mende (Sierra Leone)", + Comment = null, }, new() { @@ -39424,6 +43364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kedah Malay", + Comment = null, }, new() { @@ -39434,6 +43375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miriwoong", + Comment = null, }, new() { @@ -39444,6 +43386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merey", + Comment = null, }, new() { @@ -39454,6 +43397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meru", + Comment = null, }, new() { @@ -39464,6 +43408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masmaje", + Comment = null, }, new() { @@ -39474,6 +43419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mato", + Comment = null, }, new() { @@ -39484,6 +43430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Motu", + Comment = null, }, new() { @@ -39494,6 +43441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mano", + Comment = null, }, new() { @@ -39504,6 +43452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maaka", + Comment = null, }, new() { @@ -39514,6 +43463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hassaniyya", + Comment = null, }, new() { @@ -39524,6 +43474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Menominee", + Comment = null, }, new() { @@ -39534,6 +43485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pattani Malay", + Comment = null, }, new() { @@ -39544,6 +43496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bangka", + Comment = null, }, new() { @@ -39554,6 +43507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mba", + Comment = null, }, new() { @@ -39564,6 +43518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mendankwe-Nkwen", + Comment = null, }, new() { @@ -39574,6 +43529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morisyen", + Comment = null, }, new() { @@ -39584,6 +43540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naki", + Comment = null, }, new() { @@ -39594,6 +43551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mogofin", + Comment = null, }, new() { @@ -39604,6 +43562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matal", + Comment = null, }, new() { @@ -39614,6 +43573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wandala", + Comment = null, }, new() { @@ -39624,6 +43584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mefele", + Comment = null, }, new() { @@ -39634,6 +43595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Mofu", + Comment = null, }, new() { @@ -39644,6 +43606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Putai", + Comment = null, }, new() { @@ -39654,6 +43617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marghi South", + Comment = null, }, new() { @@ -39664,6 +43628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cross River Mbembe", + Comment = null, }, new() { @@ -39674,6 +43639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbe", + Comment = null, }, new() { @@ -39684,6 +43650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makassar Malay", + Comment = null, }, new() { @@ -39694,6 +43661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moba", + Comment = null, }, new() { @@ -39704,6 +43672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marrithiyel", + Comment = null, }, new() { @@ -39714,6 +43683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mexican Sign Language", + Comment = null, }, new() { @@ -39724,6 +43694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokerang", + Comment = null, }, new() { @@ -39734,6 +43705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbwela", + Comment = null, }, new() { @@ -39744,6 +43716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandjak", + Comment = null, }, new() { @@ -39754,6 +43727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mulaha", + Comment = null, }, new() { @@ -39764,6 +43738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Melo", + Comment = null, }, new() { @@ -39774,6 +43749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayo", + Comment = null, }, new() { @@ -39784,6 +43760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabaan", + Comment = null, }, new() { @@ -39794,6 +43771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Irish (900-1200)", + Comment = null, }, new() { @@ -39804,6 +43782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mararit", + Comment = null, }, new() { @@ -39814,6 +43793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morokodo", + Comment = null, }, new() { @@ -39824,6 +43804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moru", + Comment = null, }, new() { @@ -39834,6 +43815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mango", + Comment = null, }, new() { @@ -39844,6 +43826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maklew", + Comment = null, }, new() { @@ -39854,6 +43837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpumpong", + Comment = null, }, new() { @@ -39864,6 +43848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Meetto", + Comment = null, }, new() { @@ -39874,6 +43859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lijili", + Comment = null, }, new() { @@ -39884,6 +43870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abureni", + Comment = null, }, new() { @@ -39894,6 +43881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawes", + Comment = null, }, new() { @@ -39904,6 +43892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maleu-Kilenge", + Comment = null, }, new() { @@ -39914,6 +43903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mambae", + Comment = null, }, new() { @@ -39924,6 +43914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbangi", + Comment = null, }, new() { @@ -39934,6 +43925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meta'", + Comment = null, }, new() { @@ -39944,6 +43936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Magar", + Comment = null, }, new() { @@ -39954,6 +43947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malila", + Comment = null, }, new() { @@ -39964,6 +43958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mambwe-Lungu", + Comment = null, }, new() { @@ -39974,6 +43969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manda (Tanzania)", + Comment = null, }, new() { @@ -39984,6 +43980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongol", + Comment = null, }, new() { @@ -39994,6 +43991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mailu", + Comment = null, }, new() { @@ -40004,6 +44002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matengo", + Comment = null, }, new() { @@ -40014,6 +44013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matumbi", + Comment = null, }, new() { @@ -40024,6 +44024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbunga", + Comment = null, }, new() { @@ -40034,6 +44035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbugwe", + Comment = null, }, new() { @@ -40044,6 +44046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manda (India)", + Comment = null, }, new() { @@ -40054,6 +44057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahongwe", + Comment = null, }, new() { @@ -40064,6 +44068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mocho", + Comment = null, }, new() { @@ -40074,6 +44079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbugu", + Comment = null, }, new() { @@ -40084,6 +44090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Besisi", + Comment = null, }, new() { @@ -40094,6 +44101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamaa", + Comment = null, }, new() { @@ -40104,6 +44112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Margu", + Comment = null, }, new() { @@ -40114,6 +44123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma'di", + Comment = null, }, new() { @@ -40124,6 +44134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mogholi", + Comment = null, }, new() { @@ -40134,6 +44145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mungaka", + Comment = null, }, new() { @@ -40144,6 +44156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mauwake", + Comment = null, }, new() { @@ -40154,6 +44167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Moniga", + Comment = null, }, new() { @@ -40164,6 +44178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mòcheno", + Comment = null, }, new() { @@ -40174,6 +44189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mashi (Zambia)", + Comment = null, }, new() { @@ -40184,6 +44200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balinese Malay", + Comment = null, }, new() { @@ -40194,6 +44211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandan", + Comment = null, }, new() { @@ -40204,6 +44222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Mari", + Comment = null, }, new() { @@ -40214,6 +44233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buru (Indonesia)", + Comment = null, }, new() { @@ -40224,6 +44244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandahuaca", + Comment = null, }, new() { @@ -40234,6 +44255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Digaro-Mishmi", + Comment = null, }, new() { @@ -40244,6 +44266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbukushu", + Comment = null, }, new() { @@ -40254,6 +44277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maru", + Comment = null, }, new() { @@ -40264,6 +44288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma'anyan", + Comment = null, }, new() { @@ -40274,6 +44299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mor (Mor Islands)", + Comment = null, }, new() { @@ -40284,6 +44310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miami", + Comment = null, }, new() { @@ -40294,6 +44321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atatláhuca Mixtec", + Comment = null, }, new() { @@ -40304,6 +44332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mi'kmaq", + Comment = null, }, new() { @@ -40314,6 +44343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandaic", + Comment = null, }, new() { @@ -40324,6 +44354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ocotepec Mixtec", + Comment = null, }, new() { @@ -40334,6 +44365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mofu-Gudur", + Comment = null, }, new() { @@ -40344,6 +44376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Miguel El Grande Mixtec", + Comment = null, }, new() { @@ -40354,6 +44387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chayuco Mixtec", + Comment = null, }, new() { @@ -40364,6 +44398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chigmecatitlán Mixtec", + Comment = null, }, new() { @@ -40374,6 +44409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Abar", + Comment = null, }, new() { @@ -40384,6 +44420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mikasuki", + Comment = null, }, new() { @@ -40394,6 +44431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peñoles Mixtec", + Comment = null, }, new() { @@ -40404,6 +44442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alacatlatzala Mixtec", + Comment = null, }, new() { @@ -40414,6 +44453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minangkabau", + Comment = null, }, new() { @@ -40424,6 +44464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinotepa Nacional Mixtec", + Comment = null, }, new() { @@ -40434,6 +44475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Apasco-Apoala Mixtec", + Comment = null, }, new() { @@ -40444,6 +44486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mískito", + Comment = null, }, new() { @@ -40454,6 +44497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus Mixe", + Comment = null, }, new() { @@ -40464,6 +44508,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "Uncoded languages", + Comment = null, }, new() { @@ -40474,6 +44519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Puebla Mixtec", + Comment = null, }, new() { @@ -40484,6 +44530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cacaloxtepec Mixtec", + Comment = null, }, new() { @@ -40494,6 +44541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akoye", + Comment = null, }, new() { @@ -40504,6 +44552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mixtepec Mixtec", + Comment = null, }, new() { @@ -40514,6 +44563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayutla Mixtec", + Comment = null, }, new() { @@ -40524,6 +44574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatzospan Mixtec", + Comment = null, }, new() { @@ -40534,6 +44585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makalero", + Comment = null, }, new() { @@ -40544,6 +44596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Juan Colorado Mixtec", + Comment = null, }, new() { @@ -40554,6 +44607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Maidu", + Comment = null, }, new() { @@ -40564,6 +44618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Muskum", + Comment = null, }, new() { @@ -40574,6 +44629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tu", + Comment = null, }, new() { @@ -40584,6 +44640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwera (Nyasa)", + Comment = null, }, new() { @@ -40594,6 +44651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kim Mun", + Comment = null, }, new() { @@ -40604,6 +44662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawak", + Comment = null, }, new() { @@ -40614,6 +44673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matukar", + Comment = null, }, new() { @@ -40624,6 +44684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandeali", + Comment = null, }, new() { @@ -40634,6 +44695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Medebur", + Comment = null, }, new() { @@ -40644,6 +44706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma (Papua New Guinea)", + Comment = null, }, new() { @@ -40654,6 +44717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malankuravan", + Comment = null, }, new() { @@ -40664,6 +44728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malapandaram", + Comment = null, }, new() { @@ -40674,6 +44739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Malaryan", + Comment = null, }, new() { @@ -40684,6 +44750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malavedan", + Comment = null, }, new() { @@ -40694,6 +44761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miship", + Comment = null, }, new() { @@ -40704,6 +44772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sauria Paharia", + Comment = null, }, new() { @@ -40714,6 +44783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manna-Dora", + Comment = null, }, new() { @@ -40724,6 +44794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mannan", + Comment = null, }, new() { @@ -40734,6 +44805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karbi", + Comment = null, }, new() { @@ -40744,6 +44816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahali", + Comment = null, }, new() { @@ -40754,6 +44827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mahican", + Comment = null, }, new() { @@ -40764,6 +44838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majhi", + Comment = null, }, new() { @@ -40774,6 +44849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbre", + Comment = null, }, new() { @@ -40784,6 +44860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mal Paharia", + Comment = null, }, new() { @@ -40794,6 +44871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siliput", + Comment = null, }, new() { @@ -40804,6 +44882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macedonian", + Comment = null, }, new() { @@ -40814,6 +44893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawchi", + Comment = null, }, new() { @@ -40824,6 +44904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miya", + Comment = null, }, new() { @@ -40834,6 +44915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mak (China)", + Comment = null, }, new() { @@ -40844,6 +44926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhatki", + Comment = null, }, new() { @@ -40854,6 +44937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokilese", + Comment = null, }, new() { @@ -40864,6 +44948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Byep", + Comment = null, }, new() { @@ -40874,6 +44959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokole", + Comment = null, }, new() { @@ -40884,6 +44970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moklen", + Comment = null, }, new() { @@ -40894,6 +44981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kupang Malay", + Comment = null, }, new() { @@ -40904,6 +44992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mingang Doso", + Comment = null, }, new() { @@ -40914,6 +45003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moikodi", + Comment = null, }, new() { @@ -40924,6 +45014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bay Miwok", + Comment = null, }, new() { @@ -40934,6 +45025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malas", + Comment = null, }, new() { @@ -40944,6 +45036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silacayoapan Mixtec", + Comment = null, }, new() { @@ -40954,6 +45047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vamale", + Comment = null, }, new() { @@ -40964,6 +45058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konyanka Maninka", + Comment = null, }, new() { @@ -40974,6 +45069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mafea", + Comment = null, }, new() { @@ -40984,6 +45080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kituba (Congo)", + Comment = null, }, new() { @@ -40994,6 +45091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinamiging Manobo", + Comment = null, }, new() { @@ -41004,6 +45102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Makian", + Comment = null, }, new() { @@ -41014,6 +45113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makasae", + Comment = null, }, new() { @@ -41024,6 +45124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malo", + Comment = null, }, new() { @@ -41034,6 +45135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbule", + Comment = null, }, new() { @@ -41044,6 +45146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cao Lan", + Comment = null, }, new() { @@ -41054,6 +45157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manambu", + Comment = null, }, new() { @@ -41064,6 +45168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mal", + Comment = null, }, new() { @@ -41074,6 +45179,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Malagasy", + Comment = null, }, new() { @@ -41084,6 +45190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mape", + Comment = null, }, new() { @@ -41094,6 +45201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malimpung", + Comment = null, }, new() { @@ -41104,6 +45212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miltu", + Comment = null, }, new() { @@ -41114,6 +45223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ilwana", + Comment = null, }, new() { @@ -41124,6 +45234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malua Bay", + Comment = null, }, new() { @@ -41134,6 +45245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mulam", + Comment = null, }, new() { @@ -41144,6 +45256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malango", + Comment = null, }, new() { @@ -41154,6 +45267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mlomp", + Comment = null, }, new() { @@ -41164,6 +45278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bargam", + Comment = null, }, new() { @@ -41174,6 +45289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Maninkakan", + Comment = null, }, new() { @@ -41184,6 +45300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vame", + Comment = null, }, new() { @@ -41194,6 +45311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masalit", + Comment = null, }, new() { @@ -41204,6 +45322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maltese", + Comment = null, }, new() { @@ -41214,6 +45333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "To'abaita", + Comment = null, }, new() { @@ -41224,6 +45344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Motlav", + Comment = null, }, new() { @@ -41234,6 +45355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moloko", + Comment = null, }, new() { @@ -41244,6 +45366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malfaxal", + Comment = null, }, new() { @@ -41254,6 +45377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaynon", + Comment = null, }, new() { @@ -41264,6 +45388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mama", + Comment = null, }, new() { @@ -41274,6 +45399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Momina", + Comment = null, }, new() { @@ -41284,6 +45410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Michoacán Mazahua", + Comment = null, }, new() { @@ -41294,6 +45421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maonan", + Comment = null, }, new() { @@ -41304,6 +45432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mae", + Comment = null, }, new() { @@ -41314,6 +45443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundat", + Comment = null, }, new() { @@ -41324,6 +45454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Ambrym", + Comment = null, }, new() { @@ -41334,6 +45465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mehináku", + Comment = null, }, new() { @@ -41344,6 +45476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hember Avu", + Comment = null, }, new() { @@ -41354,6 +45487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majhwar", + Comment = null, }, new() { @@ -41364,6 +45498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mukha-Dora", + Comment = null, }, new() { @@ -41374,6 +45509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Man Met", + Comment = null, }, new() { @@ -41384,6 +45520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maii", + Comment = null, }, new() { @@ -41394,6 +45531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamanwa", + Comment = null, }, new() { @@ -41404,6 +45542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangga Buang", + Comment = null, }, new() { @@ -41414,6 +45553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siawi", + Comment = null, }, new() { @@ -41424,6 +45564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musak", + Comment = null, }, new() { @@ -41434,6 +45575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Xiangxi Miao", + Comment = null, }, new() { @@ -41444,6 +45586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malalamai", + Comment = null, }, new() { @@ -41454,6 +45597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mmaala", + Comment = null, }, new() { @@ -41464,6 +45608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Miriti", + Comment = null, }, new() { @@ -41474,6 +45619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emae", + Comment = null, }, new() { @@ -41484,6 +45630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madak", + Comment = null, }, new() { @@ -41494,6 +45641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Migaama", + Comment = null, }, new() { @@ -41504,6 +45652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabaale", + Comment = null, }, new() { @@ -41514,6 +45663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbula", + Comment = null, }, new() { @@ -41524,6 +45674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muna", + Comment = null, }, new() { @@ -41534,6 +45685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manchu", + Comment = null, }, new() { @@ -41544,6 +45696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mondé", + Comment = null, }, new() { @@ -41554,6 +45707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naba", + Comment = null, }, new() { @@ -41564,6 +45718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundani", + Comment = null, }, new() { @@ -41574,6 +45729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Mnong", + Comment = null, }, new() { @@ -41584,6 +45740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -41594,6 +45751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manipuri", + Comment = null, }, new() { @@ -41604,6 +45762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munji", + Comment = null, }, new() { @@ -41614,6 +45773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandinka", + Comment = null, }, new() { @@ -41624,6 +45784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiale", + Comment = null, }, new() { @@ -41634,6 +45795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapena", + Comment = null, }, new() { @@ -41644,6 +45806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Mnong", + Comment = null, }, new() { @@ -41654,6 +45817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Bei Chinese", + Comment = null, }, new() { @@ -41664,6 +45828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minriq", + Comment = null, }, new() { @@ -41674,6 +45839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (USA)", + Comment = null, }, new() { @@ -41684,6 +45850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mansi", + Comment = null, }, new() { @@ -41694,6 +45861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mer", + Comment = null, }, new() { @@ -41704,6 +45872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rennell-Bellona", + Comment = null, }, new() { @@ -41714,6 +45883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mon", + Comment = null, }, new() { @@ -41724,6 +45894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manikion", + Comment = null, }, new() { @@ -41734,6 +45905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manyawa", + Comment = null, }, new() { @@ -41744,6 +45916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moni", + Comment = null, }, new() { @@ -41754,6 +45927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwan", + Comment = null, }, new() { @@ -41764,6 +45938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mocoví", + Comment = null, }, new() { @@ -41774,6 +45949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mobilian", + Comment = null, }, new() { @@ -41784,6 +45960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Innu", + Comment = null, }, new() { @@ -41794,6 +45971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongondow", + Comment = null, }, new() { @@ -41804,6 +45982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mohawk", + Comment = null, }, new() { @@ -41814,6 +45993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mboi", + Comment = null, }, new() { @@ -41824,6 +46004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monzombo", + Comment = null, }, new() { @@ -41834,6 +46015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morori", + Comment = null, }, new() { @@ -41844,6 +46026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mangue", + Comment = null, }, new() { @@ -41854,6 +46037,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Mongolian", + Comment = null, }, new() { @@ -41864,6 +46048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monom", + Comment = null, }, new() { @@ -41874,6 +46059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mopán Maya", + Comment = null, }, new() { @@ -41884,6 +46070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mor (Bomberai Peninsula)", + Comment = null, }, new() { @@ -41894,6 +46081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moro", + Comment = null, }, new() { @@ -41904,6 +46092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mossi", + Comment = null, }, new() { @@ -41914,6 +46103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barí", + Comment = null, }, new() { @@ -41924,6 +46114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mogum", + Comment = null, }, new() { @@ -41934,6 +46125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mohave", + Comment = null, }, new() { @@ -41944,6 +46136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moi (Congo)", + Comment = null, }, new() { @@ -41954,6 +46147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molima", + Comment = null, }, new() { @@ -41964,6 +46158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shekkacho", + Comment = null, }, new() { @@ -41974,6 +46169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mukulu", + Comment = null, }, new() { @@ -41984,6 +46180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpoto", + Comment = null, }, new() { @@ -41994,6 +46191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malak Malak", + Comment = null, }, new() { @@ -42004,6 +46202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangarrayi", + Comment = null, }, new() { @@ -42014,6 +46213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machinere", + Comment = null, }, new() { @@ -42024,6 +46224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majang", + Comment = null, }, new() { @@ -42034,6 +46235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marba", + Comment = null, }, new() { @@ -42044,6 +46246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maung", + Comment = null, }, new() { @@ -42054,6 +46257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpade", + Comment = null, }, new() { @@ -42064,6 +46268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Martu Wangka", + Comment = null, }, new() { @@ -42074,6 +46279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbara (Chad)", + Comment = null, }, new() { @@ -42084,6 +46290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Middle Watut", + Comment = null, }, new() { @@ -42094,6 +46301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yosondúa Mixtec", + Comment = null, }, new() { @@ -42104,6 +46312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mindiri", + Comment = null, }, new() { @@ -42114,6 +46323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miu", + Comment = null, }, new() { @@ -42124,6 +46334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Migabac", + Comment = null, }, new() { @@ -42134,6 +46345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matís", + Comment = null, }, new() { @@ -42144,6 +46356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vangunu", + Comment = null, }, new() { @@ -42154,6 +46367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dadibi", + Comment = null, }, new() { @@ -42164,6 +46378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mian", + Comment = null, }, new() { @@ -42174,6 +46389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makuráp", + Comment = null, }, new() { @@ -42184,6 +46400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mungkip", + Comment = null, }, new() { @@ -42194,6 +46411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapidian", + Comment = null, }, new() { @@ -42204,6 +46422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Misima-Panaeati", + Comment = null, }, new() { @@ -42214,6 +46433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapia", + Comment = null, }, new() { @@ -42224,6 +46444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpi", + Comment = null, }, new() { @@ -42234,6 +46455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maba (Indonesia)", + Comment = null, }, new() { @@ -42244,6 +46466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbuko", + Comment = null, }, new() { @@ -42254,6 +46477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangole", + Comment = null, }, new() { @@ -42264,6 +46488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matepi", + Comment = null, }, new() { @@ -42274,6 +46499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Momuna", + Comment = null, }, new() { @@ -42284,6 +46510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kota Bangun Kutai Malay", + Comment = null, }, new() { @@ -42294,6 +46521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlazoyaltepec Mixtec", + Comment = null, }, new() { @@ -42304,6 +46532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mariri", + Comment = null, }, new() { @@ -42314,6 +46543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamasa", + Comment = null, }, new() { @@ -42324,6 +46554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajah Kabunsuwan Manobo", + Comment = null, }, new() { @@ -42334,6 +46565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbelime", + Comment = null, }, new() { @@ -42344,6 +46576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Marquesan", + Comment = null, }, new() { @@ -42354,6 +46587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moronene", + Comment = null, }, new() { @@ -42364,6 +46598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modole", + Comment = null, }, new() { @@ -42374,6 +46609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manipa", + Comment = null, }, new() { @@ -42384,6 +46620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minokok", + Comment = null, }, new() { @@ -42394,6 +46631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mander", + Comment = null, }, new() { @@ -42404,6 +46642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Makian", + Comment = null, }, new() { @@ -42414,6 +46653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mok", + Comment = null, }, new() { @@ -42424,6 +46664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandari", + Comment = null, }, new() { @@ -42434,6 +46675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mosimo", + Comment = null, }, new() { @@ -42444,6 +46686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murupi", + Comment = null, }, new() { @@ -42454,6 +46697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamuju", + Comment = null, }, new() { @@ -42464,6 +46708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manggarai", + Comment = null, }, new() { @@ -42474,6 +46719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pano", + Comment = null, }, new() { @@ -42484,6 +46730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mlabri", + Comment = null, }, new() { @@ -42494,6 +46741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marino", + Comment = null, }, new() { @@ -42504,6 +46752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maricopa", + Comment = null, }, new() { @@ -42514,6 +46763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Magar", + Comment = null, }, new() { @@ -42524,6 +46774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Martha's Vineyard Sign Language", + Comment = null, }, new() { @@ -42534,6 +46785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elseng", + Comment = null, }, new() { @@ -42544,6 +46796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mising", + Comment = null, }, new() { @@ -42554,6 +46807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mara Chin", + Comment = null, }, new() { @@ -42564,6 +46818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maori", + Comment = null, }, new() { @@ -42574,6 +46829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Mari", + Comment = null, }, new() { @@ -42584,6 +46840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmwaveke", + Comment = null, }, new() { @@ -42594,6 +46851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mortlockese", + Comment = null, }, new() { @@ -42604,6 +46862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merlav", + Comment = null, }, new() { @@ -42614,6 +46873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cheke Holo", + Comment = null, }, new() { @@ -42624,6 +46884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mru", + Comment = null, }, new() { @@ -42634,6 +46895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morouas", + Comment = null, }, new() { @@ -42644,6 +46906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Marquesan", + Comment = null, }, new() { @@ -42654,6 +46917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maria (India)", + Comment = null, }, new() { @@ -42664,6 +46928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maragus", + Comment = null, }, new() { @@ -42674,6 +46939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marghi Central", + Comment = null, }, new() { @@ -42684,6 +46950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (Cameroon)", + Comment = null, }, new() { @@ -42694,6 +46961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangareva", + Comment = null, }, new() { @@ -42704,6 +46972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maranao", + Comment = null, }, new() { @@ -42714,6 +46983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maremgi", + Comment = null, }, new() { @@ -42724,6 +46994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandaya", + Comment = null, }, new() { @@ -42734,6 +47005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marind", + Comment = null, }, new() { @@ -42744,6 +47016,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Malay (macrolanguage)", + Comment = null, }, new() { @@ -42754,6 +47027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masbatenyo", + Comment = null, }, new() { @@ -42764,6 +47038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sankaran Maninka", + Comment = null, }, new() { @@ -42774,6 +47049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucatec Maya Sign Language", + Comment = null, }, new() { @@ -42784,6 +47060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musey", + Comment = null, }, new() { @@ -42794,6 +47071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mekwei", + Comment = null, }, new() { @@ -42804,6 +47082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moraid", + Comment = null, }, new() { @@ -42814,6 +47093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masikoro Malagasy", + Comment = null, }, new() { @@ -42824,6 +47104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabah Malay", + Comment = null, }, new() { @@ -42834,6 +47115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -42844,6 +47126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mansaka", + Comment = null, }, new() { @@ -42854,6 +47137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molof", + Comment = null, }, new() { @@ -42864,6 +47148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agusan Manobo", + Comment = null, }, new() { @@ -42874,6 +47159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vurës", + Comment = null, }, new() { @@ -42884,6 +47170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mombum", + Comment = null, }, new() { @@ -42894,6 +47181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Maritsauá", + Comment = null, }, new() { @@ -42904,6 +47192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caac", + Comment = null, }, new() { @@ -42914,6 +47203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mongolian Sign Language", + Comment = null, }, new() { @@ -42924,6 +47214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Masela", + Comment = null, }, new() { @@ -42934,6 +47225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musom", + Comment = null, }, new() { @@ -42944,6 +47236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maslam", + Comment = null, }, new() { @@ -42954,6 +47247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mansoanka", + Comment = null, }, new() { @@ -42964,6 +47258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moresada", + Comment = null, }, new() { @@ -42974,6 +47269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aruamu", + Comment = null, }, new() { @@ -42984,6 +47280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Momare", + Comment = null, }, new() { @@ -42994,6 +47291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cotabato Manobo", + Comment = null, }, new() { @@ -43004,6 +47302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anyin Morofo", + Comment = null, }, new() { @@ -43014,6 +47313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munit", + Comment = null, }, new() { @@ -43024,6 +47324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mualang", + Comment = null, }, new() { @@ -43034,6 +47335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mono (Solomon Islands)", + Comment = null, }, new() { @@ -43044,6 +47346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murik (Papua New Guinea)", + Comment = null, }, new() { @@ -43054,6 +47357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Una", + Comment = null, }, new() { @@ -43064,6 +47368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munggui", + Comment = null, }, new() { @@ -43074,6 +47379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiwa (Papua New Guinea)", + Comment = null, }, new() { @@ -43084,6 +47390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moskona", + Comment = null, }, new() { @@ -43094,6 +47401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbe'", + Comment = null, }, new() { @@ -43104,6 +47412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Montol", + Comment = null, }, new() { @@ -43114,6 +47423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mator", + Comment = null, }, new() { @@ -43124,6 +47434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Matagalpa", + Comment = null, }, new() { @@ -43134,6 +47445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totontepec Mixe", + Comment = null, }, new() { @@ -43144,6 +47456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Nocten", + Comment = null, }, new() { @@ -43154,6 +47467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muong", + Comment = null, }, new() { @@ -43164,6 +47478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mewari", + Comment = null, }, new() { @@ -43174,6 +47489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yora", + Comment = null, }, new() { @@ -43184,6 +47500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mota", + Comment = null, }, new() { @@ -43194,6 +47511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tututepec Mixtec", + Comment = null, }, new() { @@ -43204,6 +47522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asaro'o", + Comment = null, }, new() { @@ -43214,6 +47533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Binukidnon", + Comment = null, }, new() { @@ -43224,6 +47544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tidaá Mixtec", + Comment = null, }, new() { @@ -43234,6 +47555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nabi", + Comment = null, }, new() { @@ -43244,6 +47566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundang", + Comment = null, }, new() { @@ -43254,6 +47577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mubi", + Comment = null, }, new() { @@ -43264,6 +47588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ajumbu", + Comment = null, }, new() { @@ -43274,6 +47599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mednyj Aleut", + Comment = null, }, new() { @@ -43284,6 +47610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Media Lengua", + Comment = null, }, new() { @@ -43294,6 +47621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musgu", + Comment = null, }, new() { @@ -43304,6 +47632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mündü", + Comment = null, }, new() { @@ -43314,6 +47643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musi", + Comment = null, }, new() { @@ -43324,6 +47654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mabire", + Comment = null, }, new() { @@ -43334,6 +47665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mugom", + Comment = null, }, new() { @@ -43344,6 +47676,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "Multiple languages", + Comment = null, }, new() { @@ -43354,6 +47687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiwala", + Comment = null, }, new() { @@ -43364,6 +47698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyong", + Comment = null, }, new() { @@ -43374,6 +47709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malvi", + Comment = null, }, new() { @@ -43384,6 +47720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Xiangxi Miao", + Comment = null, }, new() { @@ -43394,6 +47731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murle", + Comment = null, }, new() { @@ -43404,6 +47742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Creek", + Comment = null, }, new() { @@ -43414,6 +47753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Muria", + Comment = null, }, new() { @@ -43424,6 +47764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaaku", + Comment = null, }, new() { @@ -43434,6 +47775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muthuvan", + Comment = null, }, new() { @@ -43444,6 +47786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bo-Ung", + Comment = null, }, new() { @@ -43454,6 +47797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muyang", + Comment = null, }, new() { @@ -43464,6 +47808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mursi", + Comment = null, }, new() { @@ -43474,6 +47819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manam", + Comment = null, }, new() { @@ -43484,6 +47830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mattole", + Comment = null, }, new() { @@ -43494,6 +47841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamboru", + Comment = null, }, new() { @@ -43504,6 +47852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marwari (Pakistan)", + Comment = null, }, new() { @@ -43514,6 +47863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peripheral Mongolian", + Comment = null, }, new() { @@ -43524,6 +47874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucuañe Mixtec", + Comment = null, }, new() { @@ -43534,6 +47885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mulgi", + Comment = null, }, new() { @@ -43544,6 +47896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miyako", + Comment = null, }, new() { @@ -43554,6 +47907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mekmek", + Comment = null, }, new() { @@ -43564,6 +47918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mbara (Australia)", + Comment = null, }, new() { @@ -43574,6 +47929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minaveha", + Comment = null, }, new() { @@ -43584,6 +47940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marovo", + Comment = null, }, new() { @@ -43594,6 +47951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duri", + Comment = null, }, new() { @@ -43604,6 +47962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moere", + Comment = null, }, new() { @@ -43614,6 +47973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marau", + Comment = null, }, new() { @@ -43624,6 +47984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Massep", + Comment = null, }, new() { @@ -43634,6 +47995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpotovoro", + Comment = null, }, new() { @@ -43644,6 +48006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marfa", + Comment = null, }, new() { @@ -43654,6 +48017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagal Murut", + Comment = null, }, new() { @@ -43664,6 +48028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Machinga", + Comment = null, }, new() { @@ -43674,6 +48039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meoswar", + Comment = null, }, new() { @@ -43684,6 +48050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Indus Kohistani", + Comment = null, }, new() { @@ -43694,6 +48061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesqan", + Comment = null, }, new() { @@ -43704,6 +48072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwatebu", + Comment = null, }, new() { @@ -43714,6 +48083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juwal", + Comment = null, }, new() { @@ -43724,6 +48094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Are", + Comment = null, }, new() { @@ -43734,6 +48105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwera (Chimwera)", + Comment = null, }, new() { @@ -43744,6 +48116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murrinh-Patha", + Comment = null, }, new() { @@ -43754,6 +48127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aiklep", + Comment = null, }, new() { @@ -43764,6 +48138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mouk-Aria", + Comment = null, }, new() { @@ -43774,6 +48149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labo", + Comment = null, }, new() { @@ -43784,6 +48160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kita Maninkakan", + Comment = null, }, new() { @@ -43794,6 +48171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mirandese", + Comment = null, }, new() { @@ -43804,6 +48182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sar", + Comment = null, }, new() { @@ -43814,6 +48193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamwanga", + Comment = null, }, new() { @@ -43824,6 +48204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Maewo", + Comment = null, }, new() { @@ -43834,6 +48215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kala Lagaw Ya", + Comment = null, }, new() { @@ -43844,6 +48226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mün Chin", + Comment = null, }, new() { @@ -43854,6 +48237,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Marwari", + Comment = null, }, new() { @@ -43864,6 +48248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwimbi-Muthambi", + Comment = null, }, new() { @@ -43874,6 +48259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moken", + Comment = null, }, new() { @@ -43884,6 +48270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mittu", + Comment = null, }, new() { @@ -43894,6 +48281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mentawai", + Comment = null, }, new() { @@ -43904,6 +48292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hmong Daw", + Comment = null, }, new() { @@ -43914,6 +48303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moingi", + Comment = null, }, new() { @@ -43924,6 +48314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwest Oaxaca Mixtec", + Comment = null, }, new() { @@ -43934,6 +48325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tezoatlán Mixtec", + Comment = null, }, new() { @@ -43944,6 +48336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manyika", + Comment = null, }, new() { @@ -43954,6 +48347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Modang", + Comment = null, }, new() { @@ -43964,6 +48358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mele-Fila", + Comment = null, }, new() { @@ -43974,6 +48369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malgbe", + Comment = null, }, new() { @@ -43984,6 +48380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbangala", + Comment = null, }, new() { @@ -43994,6 +48391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mvuba", + Comment = null, }, new() { @@ -44004,6 +48402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Mozarabic", + Comment = null, }, new() { @@ -44014,6 +48413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miju-Mishmi", + Comment = null, }, new() { @@ -44024,6 +48424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monumbo", + Comment = null, }, new() { @@ -44034,6 +48435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maxi Gbe", + Comment = null, }, new() { @@ -44044,6 +48446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meramera", + Comment = null, }, new() { @@ -44054,6 +48457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moi (Indonesia)", + Comment = null, }, new() { @@ -44064,6 +48468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbowe", + Comment = null, }, new() { @@ -44074,6 +48479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlahuitoltepec Mixe", + Comment = null, }, new() { @@ -44084,6 +48490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juquila Mixe", + Comment = null, }, new() { @@ -44094,6 +48501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murik (Malaysia)", + Comment = null, }, new() { @@ -44104,6 +48512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huitepec Mixtec", + Comment = null, }, new() { @@ -44114,6 +48523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jamiltepec Mixtec", + Comment = null, }, new() { @@ -44124,6 +48534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mada (Cameroon)", + Comment = null, }, new() { @@ -44134,6 +48545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Metlatónoc Mixtec", + Comment = null, }, new() { @@ -44144,6 +48556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namo", + Comment = null, }, new() { @@ -44154,6 +48567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mahou", + Comment = null, }, new() { @@ -44164,6 +48578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Nochixtlán Mixtec", + Comment = null, }, new() { @@ -44174,6 +48589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Masela", + Comment = null, }, new() { @@ -44184,6 +48600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmese", + Comment = null, }, new() { @@ -44194,6 +48611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbay", + Comment = null, }, new() { @@ -44204,6 +48622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayeka", + Comment = null, }, new() { @@ -44214,6 +48633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Myene", + Comment = null, }, new() { @@ -44224,6 +48644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambassi", + Comment = null, }, new() { @@ -44234,6 +48655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manta", + Comment = null, }, new() { @@ -44244,6 +48666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makah", + Comment = null, }, new() { @@ -44254,6 +48677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangayat", + Comment = null, }, new() { @@ -44264,6 +48688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamara Senoufo", + Comment = null, }, new() { @@ -44274,6 +48699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moma", + Comment = null, }, new() { @@ -44284,6 +48710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Me'en", + Comment = null, }, new() { @@ -44294,6 +48721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anfillo", + Comment = null, }, new() { @@ -44304,6 +48732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pirahã", + Comment = null, }, new() { @@ -44314,6 +48743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muniche", + Comment = null, }, new() { @@ -44324,6 +48754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mesmes", + Comment = null, }, new() { @@ -44334,6 +48765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundurukú", + Comment = null, }, new() { @@ -44344,6 +48776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Erzya", + Comment = null, }, new() { @@ -44354,6 +48787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muyuw", + Comment = null, }, new() { @@ -44364,6 +48798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masaaba", + Comment = null, }, new() { @@ -44374,6 +48809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macuna", + Comment = null, }, new() { @@ -44384,6 +48820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Mandaic", + Comment = null, }, new() { @@ -44394,6 +48831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María Zacatepec Mixtec", + Comment = null, }, new() { @@ -44404,6 +48842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumzabt", + Comment = null, }, new() { @@ -44414,6 +48853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Madagascar Sign Language", + Comment = null, }, new() { @@ -44424,6 +48864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malimba", + Comment = null, }, new() { @@ -44434,6 +48875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morawa", + Comment = null, }, new() { @@ -44444,6 +48886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monastic Sign Language", + Comment = null, }, new() { @@ -44454,6 +48897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Güisnay", + Comment = null, }, new() { @@ -44464,6 +48908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixcatlán Mazatec", + Comment = null, }, new() { @@ -44474,6 +48919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manya", + Comment = null, }, new() { @@ -44484,6 +48930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigeria Mambila", + Comment = null, }, new() { @@ -44494,6 +48941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazatlán Mixe", + Comment = null, }, new() { @@ -44504,6 +48952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mumuye", + Comment = null, }, new() { @@ -44514,6 +48963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazanderani", + Comment = null, }, new() { @@ -44524,6 +48974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Matipuhy", + Comment = null, }, new() { @@ -44534,6 +48985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Movima", + Comment = null, }, new() { @@ -44544,6 +48996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mori Atas", + Comment = null, }, new() { @@ -44554,6 +49007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marúbo", + Comment = null, }, new() { @@ -44564,6 +49018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macanese", + Comment = null, }, new() { @@ -44574,6 +49029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mintil", + Comment = null, }, new() { @@ -44584,6 +49040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inapang", + Comment = null, }, new() { @@ -44594,6 +49051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manza", + Comment = null, }, new() { @@ -44604,6 +49062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Deg", + Comment = null, }, new() { @@ -44614,6 +49073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mawayana", + Comment = null, }, new() { @@ -44624,6 +49084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mozambican Sign Language", + Comment = null, }, new() { @@ -44634,6 +49095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiadomu", + Comment = null, }, new() { @@ -44644,6 +49106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namla", + Comment = null, }, new() { @@ -44654,6 +49117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nambikuára", + Comment = null, }, new() { @@ -44664,6 +49128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narak", + Comment = null, }, new() { @@ -44674,6 +49139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Naka'ela", + Comment = null, }, new() { @@ -44684,6 +49150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nabak", + Comment = null, }, new() { @@ -44694,6 +49161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naga Pidgin", + Comment = null, }, new() { @@ -44704,6 +49172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalu", + Comment = null, }, new() { @@ -44714,6 +49183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakanai", + Comment = null, }, new() { @@ -44724,6 +49194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalik", + Comment = null, }, new() { @@ -44734,6 +49205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngan'gityemerri", + Comment = null, }, new() { @@ -44744,6 +49216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Min Nan Chinese", + Comment = null, }, new() { @@ -44754,6 +49227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naaba", + Comment = null, }, new() { @@ -44764,6 +49238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neapolitan", + Comment = null, }, new() { @@ -44774,6 +49249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khoekhoe", + Comment = null, }, new() { @@ -44784,6 +49260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iguta", + Comment = null, }, new() { @@ -44794,6 +49271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naasioi", + Comment = null, }, new() { @@ -44804,6 +49282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ca̱hungwa̱rya̱", + Comment = null, }, new() { @@ -44814,6 +49293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauru", + Comment = null, }, new() { @@ -44824,6 +49304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Navajo", + Comment = null, }, new() { @@ -44834,6 +49315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nawuri", + Comment = null, }, new() { @@ -44844,6 +49326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakwi", + Comment = null, }, new() { @@ -44854,6 +49337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngarrindjeri", + Comment = null, }, new() { @@ -44864,6 +49348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatepec Nahuatl", + Comment = null, }, new() { @@ -44874,6 +49359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyemba", + Comment = null, }, new() { @@ -44884,6 +49370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndoe", + Comment = null, }, new() { @@ -44894,6 +49381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chang Naga", + Comment = null, }, new() { @@ -44904,6 +49392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbinda", + Comment = null, }, new() { @@ -44914,6 +49403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konyak Naga", + Comment = null, }, new() { @@ -44924,6 +49414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nagarchal", + Comment = null, }, new() { @@ -44934,6 +49425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngamo", + Comment = null, }, new() { @@ -44944,6 +49436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mao Naga", + Comment = null, }, new() { @@ -44954,6 +49447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarinyman", + Comment = null, }, new() { @@ -44964,6 +49458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nake", + Comment = null, }, new() { @@ -44974,6 +49469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Ndebele", + Comment = null, }, new() { @@ -44984,6 +49480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbaka Ma'bo", + Comment = null, }, new() { @@ -44994,6 +49491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuri", + Comment = null, }, new() { @@ -45004,6 +49502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkukoli", + Comment = null, }, new() { @@ -45014,6 +49513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nnam", + Comment = null, }, new() { @@ -45024,6 +49524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nggem", + Comment = null, }, new() { @@ -45034,6 +49535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numana", + Comment = null, }, new() { @@ -45044,6 +49546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namibian Sign Language", + Comment = null, }, new() { @@ -45054,6 +49557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Na", + Comment = null, }, new() { @@ -45064,6 +49568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rongmei Naga", + Comment = null, }, new() { @@ -45074,6 +49579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngamambo", + Comment = null, }, new() { @@ -45084,6 +49590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ngbandi", + Comment = null, }, new() { @@ -45094,6 +49601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ningera", + Comment = null, }, new() { @@ -45104,6 +49612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyo", + Comment = null, }, new() { @@ -45114,6 +49623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Nicobarese", + Comment = null, }, new() { @@ -45124,6 +49634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ponam", + Comment = null, }, new() { @@ -45134,6 +49645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nachering", + Comment = null, }, new() { @@ -45144,6 +49656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yale", + Comment = null, }, new() { @@ -45154,6 +49667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Notsi", + Comment = null, }, new() { @@ -45164,6 +49678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisga'a", + Comment = null, }, new() { @@ -45174,6 +49689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Huasteca Nahuatl", + Comment = null, }, new() { @@ -45184,6 +49700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Nahuatl", + Comment = null, }, new() { @@ -45194,6 +49711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Puebla Nahuatl", + Comment = null, }, new() { @@ -45204,6 +49722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Na-kara", + Comment = null, }, new() { @@ -45214,6 +49733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Michoacán Nahuatl", + Comment = null, }, new() { @@ -45224,6 +49744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nambo", + Comment = null, }, new() { @@ -45234,6 +49755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauna", + Comment = null, }, new() { @@ -45244,6 +49766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sibe", + Comment = null, }, new() { @@ -45254,6 +49777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Katang", + Comment = null, }, new() { @@ -45264,6 +49788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ncane", + Comment = null, }, new() { @@ -45274,6 +49799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nicaraguan Sign Language", + Comment = null, }, new() { @@ -45284,6 +49810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chothe Naga", + Comment = null, }, new() { @@ -45294,6 +49821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chumburung", + Comment = null, }, new() { @@ -45304,6 +49832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Puebla Nahuatl", + Comment = null, }, new() { @@ -45314,6 +49843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Natchez", + Comment = null, }, new() { @@ -45324,6 +49854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndasa", + Comment = null, }, new() { @@ -45334,6 +49865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenswei Nsei", + Comment = null, }, new() { @@ -45344,6 +49876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndau", + Comment = null, }, new() { @@ -45354,6 +49887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nde-Nsele-Nta", + Comment = null, }, new() { @@ -45364,6 +49898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Ndebele", + Comment = null, }, new() { @@ -45374,6 +49909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Nadruvian", + Comment = null, }, new() { @@ -45384,6 +49920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndengereko", + Comment = null, }, new() { @@ -45394,6 +49931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndali", + Comment = null, }, new() { @@ -45404,6 +49942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samba Leko", + Comment = null, }, new() { @@ -45414,6 +49953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndamba", + Comment = null, }, new() { @@ -45424,6 +49964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndaka", + Comment = null, }, new() { @@ -45434,6 +49975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndolo", + Comment = null, }, new() { @@ -45444,6 +49986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndam", + Comment = null, }, new() { @@ -45454,6 +49997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngundi", + Comment = null, }, new() { @@ -45464,6 +50008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndonga", + Comment = null, }, new() { @@ -45474,6 +50019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndo", + Comment = null, }, new() { @@ -45484,6 +50030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndombe", + Comment = null, }, new() { @@ -45494,6 +50041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndoola", + Comment = null, }, new() { @@ -45504,6 +50052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Low German", + Comment = null, }, new() { @@ -45514,6 +50063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndunga", + Comment = null, }, new() { @@ -45524,6 +50074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dugun", + Comment = null, }, new() { @@ -45534,6 +50085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndut", + Comment = null, }, new() { @@ -45544,6 +50096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndobo", + Comment = null, }, new() { @@ -45554,6 +50107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nduga", + Comment = null, }, new() { @@ -45564,6 +50118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lutos", + Comment = null, }, new() { @@ -45574,6 +50129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndogo", + Comment = null, }, new() { @@ -45584,6 +50140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Ngad'a", + Comment = null, }, new() { @@ -45594,6 +50151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toura (Côte d'Ivoire)", + Comment = null, }, new() { @@ -45604,6 +50162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nedebang", + Comment = null, }, new() { @@ -45614,6 +50173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nde-Gbite", + Comment = null, }, new() { @@ -45624,6 +50184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nêlêmwa-Nixumwak", + Comment = null, }, new() { @@ -45634,6 +50195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nefamese", + Comment = null, }, new() { @@ -45644,6 +50206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Negidal", + Comment = null, }, new() { @@ -45654,6 +50217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyenkha", + Comment = null, }, new() { @@ -45664,6 +50228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Neo-Hittite", + Comment = null, }, new() { @@ -45674,6 +50239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neko", + Comment = null, }, new() { @@ -45684,6 +50250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neku", + Comment = null, }, new() { @@ -45694,6 +50261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nemi", + Comment = null, }, new() { @@ -45704,6 +50272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nengone", + Comment = null, }, new() { @@ -45714,6 +50283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ná-Meo", + Comment = null, }, new() { @@ -45724,6 +50294,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Nepali (macrolanguage)", + Comment = null, }, new() { @@ -45734,6 +50305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Central Mixe", + Comment = null, }, new() { @@ -45744,6 +50316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yahadian", + Comment = null, }, new() { @@ -45754,6 +50327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bhoti Kinnauri", + Comment = null, }, new() { @@ -45764,6 +50338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nete", + Comment = null, }, new() { @@ -45774,6 +50349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Neo", + Comment = null, }, new() { @@ -45784,6 +50360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaheun", + Comment = null, }, new() { @@ -45794,6 +50371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nepal Bhasa", + Comment = null, }, new() { @@ -45804,6 +50382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neme", + Comment = null, }, new() { @@ -45814,6 +50393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Neyo", + Comment = null, }, new() { @@ -45824,6 +50404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nez Perce", + Comment = null, }, new() { @@ -45834,6 +50415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dhao", + Comment = null, }, new() { @@ -45844,6 +50426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ahwai", + Comment = null, }, new() { @@ -45854,6 +50437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayiwo", + Comment = null, }, new() { @@ -45864,6 +50448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafaanra", + Comment = null, }, new() { @@ -45874,6 +50459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mfumte", + Comment = null, }, new() { @@ -45884,6 +50470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbaka", + Comment = null, }, new() { @@ -45894,6 +50481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Ngbandi", + Comment = null, }, new() { @@ -45904,6 +50492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngombe (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -45914,6 +50503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngando (Central African Republic)", + Comment = null, }, new() { @@ -45924,6 +50514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngemba", + Comment = null, }, new() { @@ -45934,6 +50525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbaka Manza", + Comment = null, }, new() { @@ -45944,6 +50536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nǁng", + Comment = null, }, new() { @@ -45954,6 +50547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngizim", + Comment = null, }, new() { @@ -45964,6 +50558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngie", + Comment = null, }, new() { @@ -45974,6 +50569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dalabon", + Comment = null, }, new() { @@ -45984,6 +50580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lomwe", + Comment = null, }, new() { @@ -45994,6 +50591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngatik Men's Creole", + Comment = null, }, new() { @@ -46004,6 +50602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngwo", + Comment = null, }, new() { @@ -46014,6 +50613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngulu", + Comment = null, }, new() { @@ -46024,6 +50624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngurimi", + Comment = null, }, new() { @@ -46034,6 +50635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Engdewu", + Comment = null, }, new() { @@ -46044,6 +50646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gvoko", + Comment = null, }, new() { @@ -46054,6 +50657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kriang", + Comment = null, }, new() { @@ -46064,6 +50668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guerrero Nahuatl", + Comment = null, }, new() { @@ -46074,6 +50679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nagumi", + Comment = null, }, new() { @@ -46084,6 +50690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngwaba", + Comment = null, }, new() { @@ -46094,6 +50701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nggwahyi", + Comment = null, }, new() { @@ -46104,6 +50712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tibea", + Comment = null, }, new() { @@ -46114,6 +50723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngungwel", + Comment = null, }, new() { @@ -46124,6 +50734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nhanda", + Comment = null, }, new() { @@ -46134,6 +50745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Beng", + Comment = null, }, new() { @@ -46144,6 +50756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tabasco Nahuatl", + Comment = null, }, new() { @@ -46154,6 +50767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiripá", + Comment = null, }, new() { @@ -46164,6 +50778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Huasteca Nahuatl", + Comment = null, }, new() { @@ -46174,6 +50789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nhuwala", + Comment = null, }, new() { @@ -46184,6 +50800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetelcingo Nahuatl", + Comment = null, }, new() { @@ -46194,6 +50811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nahari", + Comment = null, }, new() { @@ -46204,6 +50822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zacatlán-Ahuacatlán-Tepetzintla Nahuatl", + Comment = null, }, new() { @@ -46214,6 +50833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus-Cosoleacaque Nahuatl", + Comment = null, }, new() { @@ -46224,6 +50844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morelos Nahuatl", + Comment = null, }, new() { @@ -46234,6 +50855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Nahuatl", + Comment = null, }, new() { @@ -46244,6 +50866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takuu", + Comment = null, }, new() { @@ -46254,6 +50877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus-Pajapan Nahuatl", + Comment = null, }, new() { @@ -46264,6 +50888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaxcaleca Nahuatl", + Comment = null, }, new() { @@ -46274,6 +50899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naro", + Comment = null, }, new() { @@ -46284,6 +50910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ometepec Nahuatl", + Comment = null, }, new() { @@ -46294,6 +50921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noone", + Comment = null, }, new() { @@ -46304,6 +50932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temascaltepec Nahuatl", + Comment = null, }, new() { @@ -46314,6 +50943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Huasteca Nahuatl", + Comment = null, }, new() { @@ -46324,6 +50954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus-Mecayapan Nahuatl", + Comment = null, }, new() { @@ -46334,6 +50965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Oaxaca Nahuatl", + Comment = null, }, new() { @@ -46344,6 +50976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María La Alta Nahuatl", + Comment = null, }, new() { @@ -46354,6 +50987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nias", + Comment = null, }, new() { @@ -46364,6 +50998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakame", + Comment = null, }, new() { @@ -46374,6 +51009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngandi", + Comment = null, }, new() { @@ -46384,6 +51020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niellim", + Comment = null, }, new() { @@ -46394,6 +51031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nek", + Comment = null, }, new() { @@ -46404,6 +51042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngalakgan", + Comment = null, }, new() { @@ -46414,6 +51053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyiha (Tanzania)", + Comment = null, }, new() { @@ -46424,6 +51064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nii", + Comment = null, }, new() { @@ -46434,6 +51075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngaju", + Comment = null, }, new() { @@ -46444,6 +51086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nicobarese", + Comment = null, }, new() { @@ -46454,6 +51097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nila", + Comment = null, }, new() { @@ -46464,6 +51108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nilamba", + Comment = null, }, new() { @@ -46474,6 +51119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninzo", + Comment = null, }, new() { @@ -46484,6 +51130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nganasan", + Comment = null, }, new() { @@ -46494,6 +51141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nandi", + Comment = null, }, new() { @@ -46504,6 +51152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimboran", + Comment = null, }, new() { @@ -46514,6 +51163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimi", + Comment = null, }, new() { @@ -46524,6 +51174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Kolami", + Comment = null, }, new() { @@ -46534,6 +51185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niuean", + Comment = null, }, new() { @@ -46544,6 +51196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gilyak", + Comment = null, }, new() { @@ -46554,6 +51207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimo", + Comment = null, }, new() { @@ -46564,6 +51218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hema", + Comment = null, }, new() { @@ -46574,6 +51229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngiti", + Comment = null, }, new() { @@ -46584,6 +51240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ningil", + Comment = null, }, new() { @@ -46594,6 +51251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzanyi", + Comment = null, }, new() { @@ -46604,6 +51262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nocte Naga", + Comment = null, }, new() { @@ -46614,6 +51273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndonde Hamba", + Comment = null, }, new() { @@ -46624,6 +51284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lotha Naga", + Comment = null, }, new() { @@ -46634,6 +51295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gudanji", + Comment = null, }, new() { @@ -46644,6 +51306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njen", + Comment = null, }, new() { @@ -46654,6 +51317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njalgulgule", + Comment = null, }, new() { @@ -46664,6 +51328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angami Naga", + Comment = null, }, new() { @@ -46674,6 +51339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liangmai Naga", + Comment = null, }, new() { @@ -46684,6 +51350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ao Naga", + Comment = null, }, new() { @@ -46694,6 +51361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njerep", + Comment = null, }, new() { @@ -46704,6 +51372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisa", + Comment = null, }, new() { @@ -46714,6 +51383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndyuka-Trio Pidgin", + Comment = null, }, new() { @@ -46724,6 +51394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngadjunmaya", + Comment = null, }, new() { @@ -46734,6 +51405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunyi", + Comment = null, }, new() { @@ -46744,6 +51416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njyem", + Comment = null, }, new() { @@ -46754,6 +51427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyishi", + Comment = null, }, new() { @@ -46764,6 +51438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkoya", + Comment = null, }, new() { @@ -46774,6 +51449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khoibu Naga", + Comment = null, }, new() { @@ -46784,6 +51460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkongho", + Comment = null, }, new() { @@ -46794,6 +51471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koireng", + Comment = null, }, new() { @@ -46804,6 +51482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duke", + Comment = null, }, new() { @@ -46814,6 +51493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inpui Naga", + Comment = null, }, new() { @@ -46824,6 +51504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nekgini", + Comment = null, }, new() { @@ -46834,6 +51515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khezha Naga", + Comment = null, }, new() { @@ -46844,6 +51526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thangal Naga", + Comment = null, }, new() { @@ -46854,6 +51537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nakai", + Comment = null, }, new() { @@ -46864,6 +51548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nokuku", + Comment = null, }, new() { @@ -46874,6 +51559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namat", + Comment = null, }, new() { @@ -46884,6 +51570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkangala", + Comment = null, }, new() { @@ -46894,6 +51581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkonya", + Comment = null, }, new() { @@ -46904,6 +51592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Niuatoputapu", + Comment = null, }, new() { @@ -46914,6 +51603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkami", + Comment = null, }, new() { @@ -46924,6 +51614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukuoro", + Comment = null, }, new() { @@ -46934,6 +51625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Asmat", + Comment = null, }, new() { @@ -46944,6 +51636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyika (Tanzania)", + Comment = null, }, new() { @@ -46954,6 +51647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bouna Kulango", + Comment = null, }, new() { @@ -46964,6 +51658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyika (Malawi and Zambia)", + Comment = null, }, new() { @@ -46974,6 +51669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkutu", + Comment = null, }, new() { @@ -46984,6 +51680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkoroo", + Comment = null, }, new() { @@ -46994,6 +51691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nkari", + Comment = null, }, new() { @@ -47004,6 +51702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngombale", + Comment = null, }, new() { @@ -47014,6 +51713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalca", + Comment = null, }, new() { @@ -47024,6 +51724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dutch", + Comment = null, }, new() { @@ -47034,6 +51735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Nyala", + Comment = null, }, new() { @@ -47044,6 +51746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gela", + Comment = null, }, new() { @@ -47054,6 +51757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Grangali", + Comment = null, }, new() { @@ -47064,6 +51768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyali", + Comment = null, }, new() { @@ -47074,6 +51779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninia Yali", + Comment = null, }, new() { @@ -47084,6 +51790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nihali", + Comment = null, }, new() { @@ -47094,6 +51801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mankiyali", + Comment = null, }, new() { @@ -47104,6 +51812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngul", + Comment = null, }, new() { @@ -47114,6 +51823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lao Naga", + Comment = null, }, new() { @@ -47124,6 +51834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nchumbulu", + Comment = null, }, new() { @@ -47134,6 +51845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orizaba Nahuatl", + Comment = null, }, new() { @@ -47144,6 +51856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Walangama", + Comment = null, }, new() { @@ -47154,6 +51867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nahali", + Comment = null, }, new() { @@ -47164,6 +51878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamal", + Comment = null, }, new() { @@ -47174,6 +51889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nalögo", + Comment = null, }, new() { @@ -47184,6 +51900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maram Naga", + Comment = null, }, new() { @@ -47194,6 +51911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Big Nambas", + Comment = null, }, new() { @@ -47204,6 +51922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngam", + Comment = null, }, new() { @@ -47214,6 +51933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndumu", + Comment = null, }, new() { @@ -47224,6 +51944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mzieme Naga", + Comment = null, }, new() { @@ -47234,6 +51955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangkhul Naga (India)", + Comment = null, }, new() { @@ -47244,6 +51966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwasio", + Comment = null, }, new() { @@ -47254,6 +51977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Monsang Naga", + Comment = null, }, new() { @@ -47264,6 +51988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyam", + Comment = null, }, new() { @@ -47274,6 +51999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngombe (Central African Republic)", + Comment = null, }, new() { @@ -47284,6 +52010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namakura", + Comment = null, }, new() { @@ -47294,6 +52021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndemli", + Comment = null, }, new() { @@ -47304,6 +52032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manangba", + Comment = null, }, new() { @@ -47314,6 +52043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ǃXóõ", + Comment = null, }, new() { @@ -47324,6 +52054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moyon Naga", + Comment = null, }, new() { @@ -47334,6 +52065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nimanbur", + Comment = null, }, new() { @@ -47344,6 +52076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nambya", + Comment = null, }, new() { @@ -47354,6 +52087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nimbari", + Comment = null, }, new() { @@ -47364,6 +52098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Letemboi", + Comment = null, }, new() { @@ -47374,6 +52109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namonuito", + Comment = null, }, new() { @@ -47384,6 +52120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeast Maidu", + Comment = null, }, new() { @@ -47394,6 +52131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngamini", + Comment = null, }, new() { @@ -47404,6 +52142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimoa", + Comment = null, }, new() { @@ -47414,6 +52153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nama (Papua New Guinea)", + Comment = null, }, new() { @@ -47424,6 +52164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namuyi", + Comment = null, }, new() { @@ -47434,6 +52175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nawdm", + Comment = null, }, new() { @@ -47444,6 +52186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyangumarta", + Comment = null, }, new() { @@ -47454,6 +52197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nande", + Comment = null, }, new() { @@ -47464,6 +52208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nancere", + Comment = null, }, new() { @@ -47474,6 +52219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Ambae", + Comment = null, }, new() { @@ -47484,6 +52230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngandyera", + Comment = null, }, new() { @@ -47494,6 +52241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngaing", + Comment = null, }, new() { @@ -47504,6 +52252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maring Naga", + Comment = null, }, new() { @@ -47514,6 +52263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngiemboon", + Comment = null, }, new() { @@ -47524,6 +52274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Nuaulu", + Comment = null, }, new() { @@ -47534,6 +52285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyangatom", + Comment = null, }, new() { @@ -47544,6 +52296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nankina", + Comment = null, }, new() { @@ -47554,6 +52307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Rengma Naga", + Comment = null, }, new() { @@ -47564,6 +52318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namia", + Comment = null, }, new() { @@ -47574,6 +52329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngete", + Comment = null, }, new() { @@ -47584,6 +52340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Nynorsk", + Comment = null, }, new() { @@ -47594,6 +52351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wancho Naga", + Comment = null, }, new() { @@ -47604,6 +52362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngindo", + Comment = null, }, new() { @@ -47614,6 +52373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Narungga", + Comment = null, }, new() { @@ -47624,6 +52384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nanticoke", + Comment = null, }, new() { @@ -47634,6 +52395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dwang", + Comment = null, }, new() { @@ -47644,6 +52406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nugunu (Australia)", + Comment = null, }, new() { @@ -47654,6 +52417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nuni", + Comment = null, }, new() { @@ -47664,6 +52428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyangga", + Comment = null, }, new() { @@ -47674,6 +52439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nda'nda'", + Comment = null, }, new() { @@ -47684,6 +52450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woun Meu", + Comment = null, }, new() { @@ -47694,6 +52461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Bokmål", + Comment = null, }, new() { @@ -47704,6 +52472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nuk", + Comment = null, }, new() { @@ -47714,6 +52483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Thai", + Comment = null, }, new() { @@ -47724,6 +52494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nimadi", + Comment = null, }, new() { @@ -47734,6 +52505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomane", + Comment = null, }, new() { @@ -47744,6 +52516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nogai", + Comment = null, }, new() { @@ -47754,6 +52527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomu", + Comment = null, }, new() { @@ -47764,6 +52538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noiri", + Comment = null, }, new() { @@ -47774,6 +52549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nonuya", + Comment = null, }, new() { @@ -47784,6 +52560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nooksack", + Comment = null, }, new() { @@ -47794,6 +52571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nomlaki", + Comment = null, }, new() { @@ -47804,6 +52582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Norse", + Comment = null, }, new() { @@ -47814,6 +52593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numanggang", + Comment = null, }, new() { @@ -47824,6 +52604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngongo", + Comment = null, }, new() { @@ -47834,6 +52615,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Norwegian", + Comment = null, }, new() { @@ -47844,6 +52626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Nisu", + Comment = null, }, new() { @@ -47854,6 +52637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nomatsiguenga", + Comment = null, }, new() { @@ -47864,6 +52648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ewage-Notu", + Comment = null, }, new() { @@ -47874,6 +52659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Novial", + Comment = null, }, new() { @@ -47884,6 +52670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyambo", + Comment = null, }, new() { @@ -47894,6 +52681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noy", + Comment = null, }, new() { @@ -47904,6 +52692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nayi", + Comment = null, }, new() { @@ -47914,6 +52703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nar Phu", + Comment = null, }, new() { @@ -47924,6 +52714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nupbikha", + Comment = null, }, new() { @@ -47934,6 +52725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ponyo-Gongwang Naga", + Comment = null, }, new() { @@ -47944,6 +52736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phom Naga", + Comment = null, }, new() { @@ -47954,6 +52747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nepali (individual language)", + Comment = null, }, new() { @@ -47964,6 +52758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Puebla Nahuatl", + Comment = null, }, new() { @@ -47974,6 +52769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mondropolon", + Comment = null, }, new() { @@ -47984,6 +52780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pochuri Naga", + Comment = null, }, new() { @@ -47994,6 +52791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nipsan", + Comment = null, }, new() { @@ -48004,6 +52802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puimei Naga", + Comment = null, }, new() { @@ -48014,6 +52813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noipx", + Comment = null, }, new() { @@ -48024,6 +52824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Napu", + Comment = null, }, new() { @@ -48034,6 +52835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nago", + Comment = null, }, new() { @@ -48044,6 +52846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kura Ede Nago", + Comment = null, }, new() { @@ -48054,6 +52857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngendelengo", + Comment = null, }, new() { @@ -48064,6 +52868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndom", + Comment = null, }, new() { @@ -48074,6 +52879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nen", + Comment = null, }, new() { @@ -48084,6 +52890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "N'Ko", + Comment = null, }, new() { @@ -48094,6 +52901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyan-Karyaw Naga", + Comment = null, }, new() { @@ -48104,6 +52912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nteng", + Comment = null, }, new() { @@ -48114,6 +52923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akyaung Ari Naga", + Comment = null, }, new() { @@ -48124,6 +52934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngom", + Comment = null, }, new() { @@ -48134,6 +52945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nara", + Comment = null, }, new() { @@ -48144,6 +52956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Noric", + Comment = null, }, new() { @@ -48154,6 +52967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Rengma Naga", + Comment = null, }, new() { @@ -48164,6 +52978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jèrriais", + Comment = null, }, new() { @@ -48174,6 +52989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narango", + Comment = null, }, new() { @@ -48184,6 +53000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chokri Naga", + Comment = null, }, new() { @@ -48194,6 +53011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarla", + Comment = null, }, new() { @@ -48204,6 +53022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarluma", + Comment = null, }, new() { @@ -48214,6 +53033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narom", + Comment = null, }, new() { @@ -48224,6 +53044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Norn", + Comment = null, }, new() { @@ -48234,6 +53055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "North Picene", + Comment = null, }, new() { @@ -48244,6 +53066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Norra", + Comment = null, }, new() { @@ -48254,6 +53077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northern Kalapuya", + Comment = null, }, new() { @@ -48264,6 +53088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Narua", + Comment = null, }, new() { @@ -48274,6 +53099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngurmbur", + Comment = null, }, new() { @@ -48284,6 +53110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lala", + Comment = null, }, new() { @@ -48294,6 +53121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangtam Naga", + Comment = null, }, new() { @@ -48304,6 +53132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Nossob", + Comment = null, }, new() { @@ -48314,6 +53143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nshi", + Comment = null, }, new() { @@ -48324,6 +53154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Nisu", + Comment = null, }, new() { @@ -48334,6 +53165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nsenga", + Comment = null, }, new() { @@ -48344,6 +53176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Nisu", + Comment = null, }, new() { @@ -48354,6 +53187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngasa", + Comment = null, }, new() { @@ -48364,6 +53198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngoshie", + Comment = null, }, new() { @@ -48374,6 +53209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigerian Sign Language", + Comment = null, }, new() { @@ -48384,6 +53220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naskapi", + Comment = null, }, new() { @@ -48394,6 +53231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Norwegian Sign Language", + Comment = null, }, new() { @@ -48404,6 +53242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumi Naga", + Comment = null, }, new() { @@ -48414,6 +53253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nehan", + Comment = null, }, new() { @@ -48424,6 +53264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pedi", + Comment = null, }, new() { @@ -48434,6 +53275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nepalese Sign Language", + Comment = null, }, new() { @@ -48444,6 +53286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sierra Miwok", + Comment = null, }, new() { @@ -48454,6 +53297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maritime Sign Language", + Comment = null, }, new() { @@ -48464,6 +53308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nali", + Comment = null, }, new() { @@ -48474,6 +53319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tase Naga", + Comment = null, }, new() { @@ -48484,6 +53330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sierra Negra Nahuatl", + Comment = null, }, new() { @@ -48494,6 +53341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Nisu", + Comment = null, }, new() { @@ -48504,6 +53352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Navut", + Comment = null, }, new() { @@ -48514,6 +53363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nsongo", + Comment = null, }, new() { @@ -48524,6 +53374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nasal", + Comment = null, }, new() { @@ -48534,6 +53385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisenan", + Comment = null, }, new() { @@ -48544,6 +53396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tidung", + Comment = null, }, new() { @@ -48554,6 +53407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngantangarra", + Comment = null, }, new() { @@ -48564,6 +53418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Natioro", + Comment = null, }, new() { @@ -48574,6 +53429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngaanyatjarra", + Comment = null, }, new() { @@ -48584,6 +53440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikoma-Nata-Isenye", + Comment = null, }, new() { @@ -48594,6 +53451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nateni", + Comment = null, }, new() { @@ -48604,6 +53462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ntomba", + Comment = null, }, new() { @@ -48614,6 +53473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tepehuan", + Comment = null, }, new() { @@ -48624,6 +53484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Delo", + Comment = null, }, new() { @@ -48634,6 +53495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Natügu", + Comment = null, }, new() { @@ -48644,6 +53506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nottoway", + Comment = null, }, new() { @@ -48654,6 +53517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangkhul Naga (Myanmar)", + Comment = null, }, new() { @@ -48664,6 +53528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mantsi", + Comment = null, }, new() { @@ -48674,6 +53539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Natanzi", + Comment = null, }, new() { @@ -48684,6 +53550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuanga", + Comment = null, }, new() { @@ -48694,6 +53561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nukuini", + Comment = null, }, new() { @@ -48704,6 +53572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngala", + Comment = null, }, new() { @@ -48714,6 +53583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngundu", + Comment = null, }, new() { @@ -48724,6 +53594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nusu", + Comment = null, }, new() { @@ -48734,6 +53605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nungali", + Comment = null, }, new() { @@ -48744,6 +53616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndunda", + Comment = null, }, new() { @@ -48754,6 +53627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngumbi", + Comment = null, }, new() { @@ -48764,6 +53638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyole", + Comment = null, }, new() { @@ -48774,6 +53649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nuu-chah-nulth", + Comment = null, }, new() { @@ -48784,6 +53660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nusa Laut", + Comment = null, }, new() { @@ -48794,6 +53671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Niuafo'ou", + Comment = null, }, new() { @@ -48804,6 +53682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anong", + Comment = null, }, new() { @@ -48814,6 +53693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nguôn", + Comment = null, }, new() { @@ -48824,6 +53704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nupe-Nupe-Tako", + Comment = null, }, new() { @@ -48834,6 +53715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukumanu", + Comment = null, }, new() { @@ -48844,6 +53726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nukuria", + Comment = null, }, new() { @@ -48854,6 +53737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nuer", + Comment = null, }, new() { @@ -48864,6 +53748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nung (Viet Nam)", + Comment = null, }, new() { @@ -48874,6 +53759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngbundu", + Comment = null, }, new() { @@ -48884,6 +53770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Nuni", + Comment = null, }, new() { @@ -48894,6 +53781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nguluwan", + Comment = null, }, new() { @@ -48904,6 +53792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mehek", + Comment = null, }, new() { @@ -48914,6 +53803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nunggubuyu", + Comment = null, }, new() { @@ -48924,6 +53814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlamacazapa Nahuatl", + Comment = null, }, new() { @@ -48934,6 +53825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nasarian", + Comment = null, }, new() { @@ -48944,6 +53836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Namiae", + Comment = null, }, new() { @@ -48954,6 +53847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyokon", + Comment = null, }, new() { @@ -48964,6 +53858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nawathinehena", + Comment = null, }, new() { @@ -48974,6 +53869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyabwa", + Comment = null, }, new() { @@ -48984,6 +53880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Newari", + Comment = null, }, new() { @@ -48994,6 +53891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngwe", + Comment = null, }, new() { @@ -49004,6 +53902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngayawung", + Comment = null, }, new() { @@ -49014,6 +53913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Tanna", + Comment = null, }, new() { @@ -49024,6 +53924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamusa-Molo", + Comment = null, }, new() { @@ -49034,6 +53935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nauo", + Comment = null, }, new() { @@ -49044,6 +53946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nawaru", + Comment = null, }, new() { @@ -49054,6 +53957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndwewe", + Comment = null, }, new() { @@ -49064,6 +53968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Newar", + Comment = null, }, new() { @@ -49074,6 +53979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nottoway-Meherrin", + Comment = null, }, new() { @@ -49084,6 +53990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nauete", + Comment = null, }, new() { @@ -49094,6 +54001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngando (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -49104,6 +54012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nage", + Comment = null, }, new() { @@ -49114,6 +54023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngad'a", + Comment = null, }, new() { @@ -49124,6 +54034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nindi", + Comment = null, }, new() { @@ -49134,6 +54045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koki Naga", + Comment = null, }, new() { @@ -49144,6 +54056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Nuaulu", + Comment = null, }, new() { @@ -49154,6 +54067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Numidian", + Comment = null, }, new() { @@ -49164,6 +54078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngawun", + Comment = null, }, new() { @@ -49174,6 +54089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndambomo", + Comment = null, }, new() { @@ -49184,6 +54100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naxi", + Comment = null, }, new() { @@ -49194,6 +54111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninggerum", + Comment = null, }, new() { @@ -49204,6 +54122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafri", + Comment = null, }, new() { @@ -49214,6 +54133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichewa", + Comment = null, }, new() { @@ -49224,6 +54144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyangbo", + Comment = null, }, new() { @@ -49234,6 +54155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyanga-li", + Comment = null, }, new() { @@ -49244,6 +54166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyore", + Comment = null, }, new() { @@ -49254,6 +54177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyengo", + Comment = null, }, new() { @@ -49264,6 +54188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Giryama", + Comment = null, }, new() { @@ -49274,6 +54199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyindu", + Comment = null, }, new() { @@ -49284,6 +54210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyikina", + Comment = null, }, new() { @@ -49294,6 +54221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ama (Sudan)", + Comment = null, }, new() { @@ -49304,6 +54232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyanga", + Comment = null, }, new() { @@ -49314,6 +54243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaneka", + Comment = null, }, new() { @@ -49324,6 +54254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyeu", + Comment = null, }, new() { @@ -49334,6 +54265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyamwezi", + Comment = null, }, new() { @@ -49344,6 +54276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyankole", + Comment = null, }, new() { @@ -49354,6 +54287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyoro", + Comment = null, }, new() { @@ -49364,6 +54298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyang'i", + Comment = null, }, new() { @@ -49374,6 +54309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nayini", + Comment = null, }, new() { @@ -49384,6 +54320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyiha (Malawi)", + Comment = null, }, new() { @@ -49394,6 +54331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyungar", + Comment = null, }, new() { @@ -49404,6 +54342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyawaygi", + Comment = null, }, new() { @@ -49414,6 +54353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyungwe", + Comment = null, }, new() { @@ -49424,6 +54364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nyulnyul", + Comment = null, }, new() { @@ -49434,6 +54375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaw", + Comment = null, }, new() { @@ -49444,6 +54386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nganyaywana", + Comment = null, }, new() { @@ -49454,6 +54397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyakyusa-Ngonde", + Comment = null, }, new() { @@ -49464,6 +54408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigon Mbembe", + Comment = null, }, new() { @@ -49474,6 +54419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Njebi", + Comment = null, }, new() { @@ -49484,6 +54430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzadi", + Comment = null, }, new() { @@ -49494,6 +54441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzima", + Comment = null, }, new() { @@ -49504,6 +54452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzakara", + Comment = null, }, new() { @@ -49514,6 +54463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zeme Naga", + Comment = null, }, new() { @@ -49524,6 +54474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dir-Nyamzak-Mbarimi", + Comment = null, }, new() { @@ -49534,6 +54485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "New Zealand Sign Language", + Comment = null, }, new() { @@ -49544,6 +54496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Nzikou", + Comment = null, }, new() { @@ -49554,6 +54507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nzakambay", + Comment = null, }, new() { @@ -49564,6 +54518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanga Dama Dogon", + Comment = null, }, new() { @@ -49574,6 +54529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orok", + Comment = null, }, new() { @@ -49584,6 +54540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroch", + Comment = null, }, new() { @@ -49594,6 +54551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noakhali", + Comment = null, }, new() { @@ -49604,6 +54562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Aramaic (up to 700 BCE)", + Comment = null, }, new() { @@ -49614,6 +54573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Avar", + Comment = null, }, new() { @@ -49624,6 +54584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Obispeño", + Comment = null, }, new() { @@ -49634,6 +54595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Bontok", + Comment = null, }, new() { @@ -49644,6 +54606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oblo", + Comment = null, }, new() { @@ -49654,6 +54617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Moabite", + Comment = null, }, new() { @@ -49664,6 +54628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obo Manobo", + Comment = null, }, new() { @@ -49674,6 +54639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Burmese", + Comment = null, }, new() { @@ -49684,6 +54650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Breton", + Comment = null, }, new() { @@ -49694,6 +54661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Obulom", + Comment = null, }, new() { @@ -49704,6 +54672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ocaina", + Comment = null, }, new() { @@ -49714,6 +54683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Chinese", + Comment = null, }, new() { @@ -49724,6 +54694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Occitan (post 1500)", + Comment = null, }, new() { @@ -49734,6 +54705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Cham", + Comment = null, }, new() { @@ -49744,6 +54716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Cornish", + Comment = null, }, new() { @@ -49754,6 +54727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atzingo Matlatzinca", + Comment = null, }, new() { @@ -49764,6 +54738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odut", + Comment = null, }, new() { @@ -49774,6 +54749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Od", + Comment = null, }, new() { @@ -49784,6 +54760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Dutch", + Comment = null, }, new() { @@ -49794,6 +54771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odual", + Comment = null, }, new() { @@ -49804,6 +54782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ofo", + Comment = null, }, new() { @@ -49814,6 +54793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Frisian", + Comment = null, }, new() { @@ -49824,6 +54804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Efutop", + Comment = null, }, new() { @@ -49834,6 +54815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbia", + Comment = null, }, new() { @@ -49844,6 +54826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbah", + Comment = null, }, new() { @@ -49854,6 +54837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Georgian", + Comment = null, }, new() { @@ -49864,6 +54848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbogolo", + Comment = null, }, new() { @@ -49874,6 +54859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khana", + Comment = null, }, new() { @@ -49884,6 +54870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ogbronuagum", + Comment = null, }, new() { @@ -49894,6 +54881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Hittite", + Comment = null, }, new() { @@ -49904,6 +54892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Hungarian", + Comment = null, }, new() { @@ -49914,6 +54903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oirata", + Comment = null, }, new() { @@ -49924,6 +54914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okolie", + Comment = null, }, new() { @@ -49934,6 +54925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inebu One", + Comment = null, }, new() { @@ -49944,6 +54936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northwestern Ojibwa", + Comment = null, }, new() { @@ -49954,6 +54947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Ojibwa", + Comment = null, }, new() { @@ -49964,6 +54958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Ojibwa", + Comment = null, }, new() { @@ -49974,6 +54969,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Ojibwa", + Comment = null, }, new() { @@ -49984,6 +54980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Japanese", + Comment = null, }, new() { @@ -49994,6 +54991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Severn Ojibwa", + Comment = null, }, new() { @@ -50004,6 +55002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ontong Java", + Comment = null, }, new() { @@ -50014,6 +55013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Ojibwa", + Comment = null, }, new() { @@ -50024,6 +55024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okanagan", + Comment = null, }, new() { @@ -50034,6 +55035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okobo", + Comment = null, }, new() { @@ -50044,6 +55046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kobo", + Comment = null, }, new() { @@ -50054,6 +55057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okodia", + Comment = null, }, new() { @@ -50064,6 +55068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okpe (Southwestern Edo)", + Comment = null, }, new() { @@ -50074,6 +55079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Koko Babangk", + Comment = null, }, new() { @@ -50084,6 +55090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koresh-e Rostam", + Comment = null, }, new() { @@ -50094,6 +55101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okiek", + Comment = null, }, new() { @@ -50104,6 +55112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Oko-Juwoi", + Comment = null, }, new() { @@ -50114,6 +55123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwamtim One", + Comment = null, }, new() { @@ -50124,6 +55134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Old Kentish Sign Language", + Comment = null, }, new() { @@ -50134,6 +55145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Korean (10th-16th cent.)", + Comment = null, }, new() { @@ -50144,6 +55156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oki-No-Erabu", + Comment = null, }, new() { @@ -50154,6 +55167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Korean (3rd-9th cent.)", + Comment = null, }, new() { @@ -50164,6 +55178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kirike", + Comment = null, }, new() { @@ -50174,6 +55189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oko-Eni-Osayen", + Comment = null, }, new() { @@ -50184,6 +55200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oku", + Comment = null, }, new() { @@ -50194,6 +55211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orokaiva", + Comment = null, }, new() { @@ -50204,6 +55222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okpe (Northwestern Edo)", + Comment = null, }, new() { @@ -50214,6 +55233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Khmer", + Comment = null, }, new() { @@ -50224,6 +55244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walungge", + Comment = null, }, new() { @@ -50234,6 +55255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oli-Bodiman", + Comment = null, }, new() { @@ -50244,6 +55266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mochi", + Comment = null, }, new() { @@ -50254,6 +55277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olekha", + Comment = null, }, new() { @@ -50264,6 +55288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Olkol", + Comment = null, }, new() { @@ -50274,6 +55299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oloma", + Comment = null, }, new() { @@ -50284,6 +55310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Livvi", + Comment = null, }, new() { @@ -50294,6 +55321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olrat", + Comment = null, }, new() { @@ -50304,6 +55332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Lithuanian", + Comment = null, }, new() { @@ -50314,6 +55343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuvale", + Comment = null, }, new() { @@ -50324,6 +55354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omaha-Ponca", + Comment = null, }, new() { @@ -50334,6 +55365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Ambae", + Comment = null, }, new() { @@ -50344,6 +55376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mochica", + Comment = null, }, new() { @@ -50354,6 +55387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omagua", + Comment = null, }, new() { @@ -50364,6 +55398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omi", + Comment = null, }, new() { @@ -50374,6 +55409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Omok", + Comment = null, }, new() { @@ -50384,6 +55420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ombo", + Comment = null, }, new() { @@ -50394,6 +55431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Minoan", + Comment = null, }, new() { @@ -50404,6 +55442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Utarmbung", + Comment = null, }, new() { @@ -50414,6 +55453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Manipuri", + Comment = null, }, new() { @@ -50424,6 +55464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Marathi", + Comment = null, }, new() { @@ -50434,6 +55475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Omotik", + Comment = null, }, new() { @@ -50444,6 +55486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Omurano", + Comment = null, }, new() { @@ -50454,6 +55497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Tairora", + Comment = null, }, new() { @@ -50464,6 +55508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Mon", + Comment = null, }, new() { @@ -50474,6 +55519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Malay", + Comment = null, }, new() { @@ -50484,6 +55530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ona", + Comment = null, }, new() { @@ -50494,6 +55541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lingao", + Comment = null, }, new() { @@ -50504,6 +55552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oneida", + Comment = null, }, new() { @@ -50514,6 +55563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Olo", + Comment = null, }, new() { @@ -50524,6 +55574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onin", + Comment = null, }, new() { @@ -50534,6 +55585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onjob", + Comment = null, }, new() { @@ -50544,6 +55596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabore One", + Comment = null, }, new() { @@ -50554,6 +55607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onobasulu", + Comment = null, }, new() { @@ -50564,6 +55618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onondaga", + Comment = null, }, new() { @@ -50574,6 +55629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sartang", + Comment = null, }, new() { @@ -50584,6 +55640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern One", + Comment = null, }, new() { @@ -50594,6 +55651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ono", + Comment = null, }, new() { @@ -50604,6 +55662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ontenu", + Comment = null, }, new() { @@ -50614,6 +55673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unua", + Comment = null, }, new() { @@ -50624,6 +55684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Nubian", + Comment = null, }, new() { @@ -50634,6 +55695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Onin Based Pidgin", + Comment = null, }, new() { @@ -50644,6 +55706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tohono O'odham", + Comment = null, }, new() { @@ -50654,6 +55717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ong", + Comment = null, }, new() { @@ -50664,6 +55728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Önge", + Comment = null, }, new() { @@ -50674,6 +55739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oorlams", + Comment = null, }, new() { @@ -50684,6 +55750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Ossetic", + Comment = null, }, new() { @@ -50694,6 +55761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Okpamheri", + Comment = null, }, new() { @@ -50704,6 +55772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kopkaka", + Comment = null, }, new() { @@ -50714,6 +55783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oksapmin", + Comment = null, }, new() { @@ -50724,6 +55794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Opao", + Comment = null, }, new() { @@ -50734,6 +55805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Opata", + Comment = null, }, new() { @@ -50744,6 +55816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ofayé", + Comment = null, }, new() { @@ -50754,6 +55827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroha", + Comment = null, }, new() { @@ -50764,6 +55838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orma", + Comment = null, }, new() { @@ -50774,6 +55849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orejón", + Comment = null, }, new() { @@ -50784,6 +55860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oring", + Comment = null, }, new() { @@ -50794,6 +55871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oroqen", + Comment = null, }, new() { @@ -50804,6 +55882,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Oriya (macrolanguage)", + Comment = null, }, new() { @@ -50814,6 +55893,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Oromo", + Comment = null, }, new() { @@ -50824,6 +55904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orang Kanaq", + Comment = null, }, new() { @@ -50834,6 +55915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orokolo", + Comment = null, }, new() { @@ -50844,6 +55926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oruma", + Comment = null, }, new() { @@ -50854,6 +55937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orang Seletar", + Comment = null, }, new() { @@ -50864,6 +55948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adivasi Oriya", + Comment = null, }, new() { @@ -50874,6 +55959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ormuri", + Comment = null, }, new() { @@ -50884,6 +55970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Russian", + Comment = null, }, new() { @@ -50894,6 +55981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oro Win", + Comment = null, }, new() { @@ -50904,6 +55992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oro", + Comment = null, }, new() { @@ -50914,6 +56003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Odia", + Comment = null, }, new() { @@ -50924,6 +56014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ormu", + Comment = null, }, new() { @@ -50934,6 +56025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Osage", + Comment = null, }, new() { @@ -50944,6 +56036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Oscan", + Comment = null, }, new() { @@ -50954,6 +56047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Digor Ossetic", + Comment = null, }, new() { @@ -50964,6 +56058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Osing", + Comment = null, }, new() { @@ -50974,6 +56069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Sundanese", + Comment = null, }, new() { @@ -50984,6 +56080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ososo", + Comment = null, }, new() { @@ -50994,6 +56091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Spanish", + Comment = null, }, new() { @@ -51004,6 +56102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iron Ossetic", + Comment = null, }, new() { @@ -51014,6 +56113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Osatu", + Comment = null, }, new() { @@ -51024,6 +56124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern One", + Comment = null, }, new() { @@ -51034,6 +56135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Saxon", + Comment = null, }, new() { @@ -51044,6 +56146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ottoman Turkish (1500-1928)", + Comment = null, }, new() { @@ -51054,6 +56157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Tibetan", + Comment = null, }, new() { @@ -51064,6 +56168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ot Danum", + Comment = null, }, new() { @@ -51074,6 +56179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mezquital Otomi", + Comment = null, }, new() { @@ -51084,6 +56190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Oti", + Comment = null, }, new() { @@ -51094,6 +56201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Turkish", + Comment = null, }, new() { @@ -51104,6 +56212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tilapa Otomi", + Comment = null, }, new() { @@ -51114,6 +56223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Highland Otomi", + Comment = null, }, new() { @@ -51124,6 +56234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenango Otomi", + Comment = null, }, new() { @@ -51134,6 +56245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Querétaro Otomi", + Comment = null, }, new() { @@ -51144,6 +56256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Otoro", + Comment = null, }, new() { @@ -51154,6 +56267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Estado de México Otomi", + Comment = null, }, new() { @@ -51164,6 +56278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temoaya Otomi", + Comment = null, }, new() { @@ -51174,6 +56289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Otuke", + Comment = null, }, new() { @@ -51184,6 +56300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ottawa", + Comment = null, }, new() { @@ -51194,6 +56311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Texcatepec Otomi", + Comment = null, }, new() { @@ -51204,6 +56322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Tamil", + Comment = null, }, new() { @@ -51214,6 +56333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixtenco Otomi", + Comment = null, }, new() { @@ -51224,6 +56344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagargrent", + Comment = null, }, new() { @@ -51234,6 +56355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Glio-Oubi", + Comment = null, }, new() { @@ -51244,6 +56366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oune", + Comment = null, }, new() { @@ -51254,6 +56377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Uighur", + Comment = null, }, new() { @@ -51264,6 +56388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ouma", + Comment = null, }, new() { @@ -51274,6 +56399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elfdalian", + Comment = null, }, new() { @@ -51284,6 +56410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Owiniga", + Comment = null, }, new() { @@ -51294,6 +56421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Welsh", + Comment = null, }, new() { @@ -51304,6 +56432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oy", + Comment = null, }, new() { @@ -51314,6 +56443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oyda", + Comment = null, }, new() { @@ -51324,6 +56454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayampi", + Comment = null, }, new() { @@ -51334,6 +56465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oya'oya", + Comment = null, }, new() { @@ -51344,6 +56476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koonzime", + Comment = null, }, new() { @@ -51354,6 +56487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parecís", + Comment = null, }, new() { @@ -51364,6 +56498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacoh", + Comment = null, }, new() { @@ -51374,6 +56509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paumarí", + Comment = null, }, new() { @@ -51384,6 +56520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pagibete", + Comment = null, }, new() { @@ -51394,6 +56531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Paranawát", + Comment = null, }, new() { @@ -51404,6 +56542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangasinan", + Comment = null, }, new() { @@ -51414,6 +56553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenharim", + Comment = null, }, new() { @@ -51424,6 +56564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pe", + Comment = null, }, new() { @@ -51434,6 +56575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parakanã", + Comment = null, }, new() { @@ -51444,6 +56586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pahlavi", + Comment = null, }, new() { @@ -51454,6 +56597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pampanga", + Comment = null, }, new() { @@ -51464,6 +56608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panjabi", + Comment = null, }, new() { @@ -51474,6 +56619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Paiute", + Comment = null, }, new() { @@ -51484,6 +56630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papiamento", + Comment = null, }, new() { @@ -51494,6 +56641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parya", + Comment = null, }, new() { @@ -51504,6 +56652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panamint", + Comment = null, }, new() { @@ -51514,6 +56663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papasena", + Comment = null, }, new() { @@ -51524,6 +56674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palauan", + Comment = null, }, new() { @@ -51534,6 +56685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pakaásnovos", + Comment = null, }, new() { @@ -51544,6 +56696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pawnee", + Comment = null, }, new() { @@ -51554,6 +56707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pankararé", + Comment = null, }, new() { @@ -51564,6 +56718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pech", + Comment = null, }, new() { @@ -51574,6 +56729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pankararú", + Comment = null, }, new() { @@ -51584,6 +56740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Páez", + Comment = null, }, new() { @@ -51594,6 +56751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patamona", + Comment = null, }, new() { @@ -51604,6 +56762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mezontla Popoloca", + Comment = null, }, new() { @@ -51614,6 +56773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coyotepec Popoloca", + Comment = null, }, new() { @@ -51624,6 +56784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Paraujano", + Comment = null, }, new() { @@ -51634,6 +56795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "E'ñapa Woromaipu", + Comment = null, }, new() { @@ -51644,6 +56806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parkwa", + Comment = null, }, new() { @@ -51654,6 +56817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mak (Nigeria)", + Comment = null, }, new() { @@ -51664,6 +56828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puebla Mazatec", + Comment = null, }, new() { @@ -51674,6 +56839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kpasam", + Comment = null, }, new() { @@ -51684,6 +56850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papel", + Comment = null, }, new() { @@ -51694,6 +56861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Badyara", + Comment = null, }, new() { @@ -51704,6 +56872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangwa", + Comment = null, }, new() { @@ -51714,6 +56883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Pame", + Comment = null, }, new() { @@ -51724,6 +56894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pashto", + Comment = null, }, new() { @@ -51734,6 +56905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pashto", + Comment = null, }, new() { @@ -51744,6 +56916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pnar", + Comment = null, }, new() { @@ -51754,6 +56927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pyu (Papua New Guinea)", + Comment = null, }, new() { @@ -51764,6 +56938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Inés Ahuatempan Popoloca", + Comment = null, }, new() { @@ -51774,6 +56949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pear", + Comment = null, }, new() { @@ -51784,6 +56960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bouyei", + Comment = null, }, new() { @@ -51794,6 +56971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Picard", + Comment = null, }, new() { @@ -51804,6 +56982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruching Palaung", + Comment = null, }, new() { @@ -51814,6 +56993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paliyan", + Comment = null, }, new() { @@ -51824,6 +57004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paniya", + Comment = null, }, new() { @@ -51834,6 +57015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pardhan", + Comment = null, }, new() { @@ -51844,6 +57026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Duruwa", + Comment = null, }, new() { @@ -51854,6 +57037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parenga", + Comment = null, }, new() { @@ -51864,6 +57048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paite Chin", + Comment = null, }, new() { @@ -51874,6 +57059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pardhi", + Comment = null, }, new() { @@ -51884,6 +57070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nigerian Pidgin", + Comment = null, }, new() { @@ -51894,6 +57081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piti", + Comment = null, }, new() { @@ -51904,6 +57092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacahuara", + Comment = null, }, new() { @@ -51914,6 +57103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pyapun", + Comment = null, }, new() { @@ -51924,6 +57114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Anam", + Comment = null, }, new() { @@ -51934,6 +57125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pennsylvania German", + Comment = null, }, new() { @@ -51944,6 +57136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa Di", + Comment = null, }, new() { @@ -51954,6 +57147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Podena", + Comment = null, }, new() { @@ -51964,6 +57158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Padoe", + Comment = null, }, new() { @@ -51974,6 +57169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plautdietsch", + Comment = null, }, new() { @@ -51984,6 +57180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayan", + Comment = null, }, new() { @@ -51994,6 +57191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peranakan Indonesian", + Comment = null, }, new() { @@ -52004,6 +57202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Eastern Pomo", + Comment = null, }, new() { @@ -52014,6 +57213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mala (Papua New Guinea)", + Comment = null, }, new() { @@ -52024,6 +57224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taje", + Comment = null, }, new() { @@ -52034,6 +57235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northeastern Pomo", + Comment = null, }, new() { @@ -52044,6 +57246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pengo", + Comment = null, }, new() { @@ -52054,6 +57257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bonan", + Comment = null, }, new() { @@ -52064,6 +57268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichimeca-Jonaz", + Comment = null, }, new() { @@ -52074,6 +57279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northern Pomo", + Comment = null, }, new() { @@ -52084,6 +57290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Penchal", + Comment = null, }, new() { @@ -52094,6 +57301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pekal", + Comment = null, }, new() { @@ -52104,6 +57312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phende", + Comment = null, }, new() { @@ -52114,6 +57323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Persian (ca. 600-400 B.C.)", + Comment = null, }, new() { @@ -52124,6 +57334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunja", + Comment = null, }, new() { @@ -52134,6 +57345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pomo", + Comment = null, }, new() { @@ -52144,6 +57356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranian Persian", + Comment = null, }, new() { @@ -52154,6 +57367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pémono", + Comment = null, }, new() { @@ -52164,6 +57378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Petats", + Comment = null, }, new() { @@ -52174,6 +57389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Petjo", + Comment = null, }, new() { @@ -52184,6 +57400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Penan", + Comment = null, }, new() { @@ -52194,6 +57411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pááfang", + Comment = null, }, new() { @@ -52204,6 +57422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pere", + Comment = null, }, new() { @@ -52214,6 +57433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pfaelzisch", + Comment = null, }, new() { @@ -52224,6 +57444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sudanese Creole Arabic", + Comment = null, }, new() { @@ -52234,6 +57455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Gāndhārī", + Comment = null, }, new() { @@ -52244,6 +57466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangwali", + Comment = null, }, new() { @@ -52254,6 +57477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pagi", + Comment = null, }, new() { @@ -52264,6 +57488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rerep", + Comment = null, }, new() { @@ -52274,6 +57499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Primitive Irish", + Comment = null, }, new() { @@ -52284,6 +57510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Paelignian", + Comment = null, }, new() { @@ -52294,6 +57521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangseng", + Comment = null, }, new() { @@ -52304,6 +57532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pagu", + Comment = null, }, new() { @@ -52314,6 +57543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papua New Guinean Sign Language", + Comment = null, }, new() { @@ -52324,6 +57554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa-Hng", + Comment = null, }, new() { @@ -52334,6 +57565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phudagi", + Comment = null, }, new() { @@ -52344,6 +57576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuong", + Comment = null, }, new() { @@ -52354,6 +57587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phukha", + Comment = null, }, new() { @@ -52364,6 +57598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahari", + Comment = null, }, new() { @@ -52374,6 +57609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phake", + Comment = null, }, new() { @@ -52384,6 +57620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phalura", + Comment = null, }, new() { @@ -52394,6 +57631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phimbi", + Comment = null, }, new() { @@ -52404,6 +57642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Phoenician", + Comment = null, }, new() { @@ -52414,6 +57653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phunoi", + Comment = null, }, new() { @@ -52424,6 +57664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phana'", + Comment = null, }, new() { @@ -52434,6 +57675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahari-Potwari", + Comment = null, }, new() { @@ -52444,6 +57686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phu Thai", + Comment = null, }, new() { @@ -52454,6 +57697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuan", + Comment = null, }, new() { @@ -52464,6 +57708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pahlavani", + Comment = null, }, new() { @@ -52474,6 +57719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phangduwali", + Comment = null, }, new() { @@ -52484,6 +57730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pima Bajo", + Comment = null, }, new() { @@ -52494,6 +57741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yine", + Comment = null, }, new() { @@ -52504,6 +57752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinji", + Comment = null, }, new() { @@ -52514,6 +57763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piaroa", + Comment = null, }, new() { @@ -52524,6 +57774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Piro", + Comment = null, }, new() { @@ -52534,6 +57785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pingelapese", + Comment = null, }, new() { @@ -52544,6 +57796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pisabo", + Comment = null, }, new() { @@ -52554,6 +57807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pitcairn-Norfolk", + Comment = null, }, new() { @@ -52564,6 +57818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pijao", + Comment = null, }, new() { @@ -52574,6 +57829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yom", + Comment = null, }, new() { @@ -52584,6 +57840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Powhatan", + Comment = null, }, new() { @@ -52594,6 +57851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piame", + Comment = null, }, new() { @@ -52604,6 +57862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piapoco", + Comment = null, }, new() { @@ -52614,6 +57873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pero", + Comment = null, }, new() { @@ -52624,6 +57884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piratapuyo", + Comment = null, }, new() { @@ -52634,6 +57895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pijin", + Comment = null, }, new() { @@ -52644,6 +57906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pitta Pitta", + Comment = null, }, new() { @@ -52654,6 +57917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pintupi-Luritja", + Comment = null, }, new() { @@ -52664,6 +57928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pileni", + Comment = null, }, new() { @@ -52674,6 +57939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pimbwe", + Comment = null, }, new() { @@ -52684,6 +57950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piu", + Comment = null, }, new() { @@ -52694,6 +57961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piya-Kwonci", + Comment = null, }, new() { @@ -52704,6 +57972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pije", + Comment = null, }, new() { @@ -52714,6 +57983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pitjantjatjara", + Comment = null, }, new() { @@ -52724,6 +57994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ardhamāgadhī Prākrit", + Comment = null, }, new() { @@ -52734,6 +58005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pokomo", + Comment = null, }, new() { @@ -52744,6 +58016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Paekche", + Comment = null, }, new() { @@ -52754,6 +58027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pak-Tong", + Comment = null, }, new() { @@ -52764,6 +58038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pankhu", + Comment = null, }, new() { @@ -52774,6 +58049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pakanha", + Comment = null, }, new() { @@ -52784,6 +58060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pökoot", + Comment = null, }, new() { @@ -52794,6 +58071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pukapuka", + Comment = null, }, new() { @@ -52804,6 +58082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Attapady Kurumba", + Comment = null, }, new() { @@ -52814,6 +58093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pakistan Sign Language", + Comment = null, }, new() { @@ -52824,6 +58104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maleng", + Comment = null, }, new() { @@ -52834,6 +58115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paku", + Comment = null, }, new() { @@ -52844,6 +58126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miani", + Comment = null, }, new() { @@ -52854,6 +58137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polonombauk", + Comment = null, }, new() { @@ -52864,6 +58148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Palawano", + Comment = null, }, new() { @@ -52874,6 +58159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polari", + Comment = null, }, new() { @@ -52884,6 +58170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palu'e", + Comment = null, }, new() { @@ -52894,6 +58181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pilagá", + Comment = null, }, new() { @@ -52904,6 +58192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paulohi", + Comment = null, }, new() { @@ -52914,6 +58203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pali", + Comment = null, }, new() { @@ -52924,6 +58214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kohistani Shina", + Comment = null, }, new() { @@ -52934,6 +58225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shwe Palaung", + Comment = null, }, new() { @@ -52944,6 +58236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palenquero", + Comment = null, }, new() { @@ -52954,6 +58247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oluta Popoluca", + Comment = null, }, new() { @@ -52964,6 +58258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Palaic", + Comment = null, }, new() { @@ -52974,6 +58269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palaka Senoufo", + Comment = null, }, new() { @@ -52984,6 +58280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Marcos Tlacoyalco Popoloca", + Comment = null, }, new() { @@ -52994,6 +58291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plateau Malagasy", + Comment = null, }, new() { @@ -53004,6 +58302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Palikúr", + Comment = null, }, new() { @@ -53014,6 +58313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Palawano", + Comment = null, }, new() { @@ -53024,6 +58324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brooke's Point Palawano", + Comment = null, }, new() { @@ -53034,6 +58335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolyu", + Comment = null, }, new() { @@ -53044,6 +58346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paluan", + Comment = null, }, new() { @@ -53054,6 +58357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paama", + Comment = null, }, new() { @@ -53064,6 +58368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pambia", + Comment = null, }, new() { @@ -53074,6 +58379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pallanganmiddang", + Comment = null, }, new() { @@ -53084,6 +58390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwaamei", + Comment = null, }, new() { @@ -53094,6 +58401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pamona", + Comment = null, }, new() { @@ -53104,6 +58412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Māhārāṣṭri Prākrit", + Comment = null, }, new() { @@ -53114,6 +58423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pumi", + Comment = null, }, new() { @@ -53124,6 +58434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pumi", + Comment = null, }, new() { @@ -53134,6 +58445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lingua Franca", + Comment = null, }, new() { @@ -53144,6 +58456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pomo", + Comment = null, }, new() { @@ -53154,6 +58467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pam", + Comment = null, }, new() { @@ -53164,6 +58478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pom", + Comment = null, }, new() { @@ -53174,6 +58489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pame", + Comment = null, }, new() { @@ -53184,6 +58500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paynamar", + Comment = null, }, new() { @@ -53194,6 +58511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piemontese", + Comment = null, }, new() { @@ -53204,6 +58522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuamotuan", + Comment = null, }, new() { @@ -53214,6 +58533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plains Miwok", + Comment = null, }, new() { @@ -53224,6 +58544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poumei Naga", + Comment = null, }, new() { @@ -53234,6 +58555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papuan Malay", + Comment = null, }, new() { @@ -53244,6 +58566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southern Pame", + Comment = null, }, new() { @@ -53254,6 +58577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Bah-Biau", + Comment = null, }, new() { @@ -53264,6 +58588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Panjabi", + Comment = null, }, new() { @@ -53274,6 +58599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pannei", + Comment = null, }, new() { @@ -53284,6 +58610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mpinda", + Comment = null, }, new() { @@ -53294,6 +58621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Penan", + Comment = null, }, new() { @@ -53304,6 +58632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangu", + Comment = null, }, new() { @@ -53314,6 +58643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Penrhyn", + Comment = null, }, new() { @@ -53324,6 +58654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aoheng", + Comment = null, }, new() { @@ -53334,6 +58665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pinjarup", + Comment = null, }, new() { @@ -53344,6 +58676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paunaka", + Comment = null, }, new() { @@ -53354,6 +58687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paleni", + Comment = null, }, new() { @@ -53364,6 +58698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Batu 1", + Comment = null, }, new() { @@ -53374,6 +58709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinai-Hagahai", + Comment = null, }, new() { @@ -53384,6 +58720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Panobo", + Comment = null, }, new() { @@ -53394,6 +58731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pancana", + Comment = null, }, new() { @@ -53404,6 +58742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pana (Burkina Faso)", + Comment = null, }, new() { @@ -53414,6 +58753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panim", + Comment = null, }, new() { @@ -53424,6 +58764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ponosakan", + Comment = null, }, new() { @@ -53434,6 +58775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pontic", + Comment = null, }, new() { @@ -53444,6 +58786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jiongnai Bunu", + Comment = null, }, new() { @@ -53454,6 +58797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinigura", + Comment = null, }, new() { @@ -53464,6 +58808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banyjima", + Comment = null, }, new() { @@ -53474,6 +58819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phong-Kniang", + Comment = null, }, new() { @@ -53484,6 +58830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pinyin", + Comment = null, }, new() { @@ -53494,6 +58841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pana (Central African Republic)", + Comment = null, }, new() { @@ -53504,6 +58852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poqomam", + Comment = null, }, new() { @@ -53514,6 +58863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Juan Atzingo Popoloca", + Comment = null, }, new() { @@ -53524,6 +58874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poke", + Comment = null, }, new() { @@ -53534,6 +58885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Potiguára", + Comment = null, }, new() { @@ -53544,6 +58896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poqomchi'", + Comment = null, }, new() { @@ -53554,6 +58907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Popoluca", + Comment = null, }, new() { @@ -53564,6 +58918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pokangá", + Comment = null, }, new() { @@ -53574,6 +58929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polish", + Comment = null, }, new() { @@ -53584,6 +58940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Pomo", + Comment = null, }, new() { @@ -53594,6 +58951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pohnpeian", + Comment = null, }, new() { @@ -53604,6 +58962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Central Pomo", + Comment = null, }, new() { @@ -53614,6 +58973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwapwâ", + Comment = null, }, new() { @@ -53624,6 +58984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Texistepec Popoluca", + Comment = null, }, new() { @@ -53634,6 +58995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Portuguese", + Comment = null, }, new() { @@ -53644,6 +59006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sayula Popoluca", + Comment = null, }, new() { @@ -53654,6 +59017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Potawatomi", + Comment = null, }, new() { @@ -53664,6 +59028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Guinea Crioulo", + Comment = null, }, new() { @@ -53674,6 +59039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Felipe Otlaltepec Popoloca", + Comment = null, }, new() { @@ -53684,6 +59050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Polabian", + Comment = null, }, new() { @@ -53694,6 +59061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pogolo", + Comment = null, }, new() { @@ -53704,6 +59072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papi", + Comment = null, }, new() { @@ -53714,6 +59083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paipai", + Comment = null, }, new() { @@ -53724,6 +59094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uma", + Comment = null, }, new() { @@ -53734,6 +59105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pipil", + Comment = null, }, new() { @@ -53744,6 +59116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papuma", + Comment = null, }, new() { @@ -53754,6 +59127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papapana", + Comment = null, }, new() { @@ -53764,6 +59138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Folopa", + Comment = null, }, new() { @@ -53774,6 +59149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pelende", + Comment = null, }, new() { @@ -53784,6 +59160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pei", + Comment = null, }, new() { @@ -53794,6 +59171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Luís Temalacayuca Popoloca", + Comment = null, }, new() { @@ -53804,6 +59182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pare", + Comment = null, }, new() { @@ -53814,6 +59193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Papora", + Comment = null, }, new() { @@ -53824,6 +59204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pa'a", + Comment = null, }, new() { @@ -53834,6 +59215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malecite-Passamaquoddy", + Comment = null, }, new() { @@ -53844,6 +59226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parachi", + Comment = null, }, new() { @@ -53854,6 +59237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parsi-Dari", + Comment = null, }, new() { @@ -53864,6 +59248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Principense", + Comment = null, }, new() { @@ -53874,6 +59259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paranan", + Comment = null, }, new() { @@ -53884,6 +59270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Prussian", + Comment = null, }, new() { @@ -53894,6 +59281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Porohanon", + Comment = null, }, new() { @@ -53904,6 +59292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paicî", + Comment = null, }, new() { @@ -53914,6 +59303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parauk", + Comment = null, }, new() { @@ -53924,6 +59314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Peruvian Sign Language", + Comment = null, }, new() { @@ -53934,6 +59325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kibiri", + Comment = null, }, new() { @@ -53944,6 +59336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Prasuni", + Comment = null, }, new() { @@ -53954,6 +59347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Provençal (to 1500)", + Comment = null, }, new() { @@ -53964,6 +59358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ashéninka Perené", + Comment = null, }, new() { @@ -53974,6 +59369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Puri", + Comment = null, }, new() { @@ -53984,6 +59380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dari", + Comment = null, }, new() { @@ -53994,6 +59391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phai", + Comment = null, }, new() { @@ -54004,6 +59402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puragi", + Comment = null, }, new() { @@ -54014,6 +59413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Parawen", + Comment = null, }, new() { @@ -54024,6 +59424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purik", + Comment = null, }, new() { @@ -54034,6 +59435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Providencia Sign Language", + Comment = null, }, new() { @@ -54044,6 +59446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asue Awyu", + Comment = null, }, new() { @@ -54054,6 +59457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iranian Sign Language", + Comment = null, }, new() { @@ -54064,6 +59468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Plains Indian Sign Language", + Comment = null, }, new() { @@ -54074,6 +59479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Malay", + Comment = null, }, new() { @@ -54084,6 +59490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Penang Sign Language", + Comment = null, }, new() { @@ -54094,6 +59501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwest Pashai", + Comment = null, }, new() { @@ -54104,6 +59512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Pashai", + Comment = null, }, new() { @@ -54114,6 +59523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puerto Rican Sign Language", + Comment = null, }, new() { @@ -54124,6 +59534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pauserna", + Comment = null, }, new() { @@ -54134,6 +59545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panasuan", + Comment = null, }, new() { @@ -54144,6 +59556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Polish Sign Language", + Comment = null, }, new() { @@ -54154,6 +59567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Philippine Sign Language", + Comment = null, }, new() { @@ -54164,6 +59578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pasi", + Comment = null, }, new() { @@ -54174,6 +59589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Portuguese Sign Language", + Comment = null, }, new() { @@ -54184,6 +59600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaulong", + Comment = null, }, new() { @@ -54194,6 +59611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Pashto", + Comment = null, }, new() { @@ -54204,6 +59622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sauraseni Prākrit", + Comment = null, }, new() { @@ -54214,6 +59633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Port Sandwich", + Comment = null, }, new() { @@ -54224,6 +59644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Piscataway", + Comment = null, }, new() { @@ -54234,6 +59655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pai Tavytera", + Comment = null, }, new() { @@ -54244,6 +59666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pataxó Hã-Ha-Hãe", + Comment = null, }, new() { @@ -54254,6 +59677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pindiini", + Comment = null, }, new() { @@ -54264,6 +59688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patani", + Comment = null, }, new() { @@ -54274,6 +59699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zo'é", + Comment = null, }, new() { @@ -54284,6 +59710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Patep", + Comment = null, }, new() { @@ -54294,6 +59721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pattapu", + Comment = null, }, new() { @@ -54304,6 +59732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Piamatsina", + Comment = null, }, new() { @@ -54314,6 +59743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enrekang", + Comment = null, }, new() { @@ -54324,6 +59754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bambam", + Comment = null, }, new() { @@ -54334,6 +59765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Port Vato", + Comment = null, }, new() { @@ -54344,6 +59776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pentlatch", + Comment = null, }, new() { @@ -54354,6 +59787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pathiya", + Comment = null, }, new() { @@ -54364,6 +59798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Highland Purepecha", + Comment = null, }, new() { @@ -54374,6 +59809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purum", + Comment = null, }, new() { @@ -54384,6 +59820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Merap", + Comment = null, }, new() { @@ -54394,6 +59831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Aput", + Comment = null, }, new() { @@ -54404,6 +59842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Puelche", + Comment = null, }, new() { @@ -54414,6 +59853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Merah", + Comment = null, }, new() { @@ -54424,6 +59864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuie", + Comment = null, }, new() { @@ -54434,6 +59875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puinave", + Comment = null, }, new() { @@ -54444,6 +59886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punan Tubu", + Comment = null, }, new() { @@ -54454,6 +59897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puma", + Comment = null, }, new() { @@ -54464,6 +59908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puoc", + Comment = null, }, new() { @@ -54474,6 +59919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pulabu", + Comment = null, }, new() { @@ -54484,6 +59930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Puquina", + Comment = null, }, new() { @@ -54494,6 +59941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puruborá", + Comment = null, }, new() { @@ -54504,6 +59952,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Pushto", + Comment = null, }, new() { @@ -54514,6 +59963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Putoh", + Comment = null, }, new() { @@ -54524,6 +59974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Punu", + Comment = null, }, new() { @@ -54534,6 +59985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puluwatese", + Comment = null, }, new() { @@ -54544,6 +59996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puare", + Comment = null, }, new() { @@ -54554,6 +60007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Purisimeño", + Comment = null, }, new() { @@ -54564,6 +60018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pawaia", + Comment = null, }, new() { @@ -54574,6 +60029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panawa", + Comment = null, }, new() { @@ -54584,6 +60040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gapapaiwa", + Comment = null, }, new() { @@ -54594,6 +60051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Patwin", + Comment = null, }, new() { @@ -54604,6 +60062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molbog", + Comment = null, }, new() { @@ -54614,6 +60073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paiwan", + Comment = null, }, new() { @@ -54624,6 +60084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwo Western Karen", + Comment = null, }, new() { @@ -54634,6 +60095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Powari", + Comment = null, }, new() { @@ -54644,6 +60106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pwo Northern Karen", + Comment = null, }, new() { @@ -54654,6 +60117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quetzaltepec Mixe", + Comment = null, }, new() { @@ -54664,6 +60128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pye Krumen", + Comment = null, }, new() { @@ -54674,6 +60139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fyam", + Comment = null, }, new() { @@ -54684,6 +60150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Poyanáwa", + Comment = null, }, new() { @@ -54694,6 +60161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paraguayan Sign Language", + Comment = null, }, new() { @@ -54704,6 +60172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puyuma", + Comment = null, }, new() { @@ -54714,6 +60183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pyu (Myanmar)", + Comment = null, }, new() { @@ -54724,6 +60194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pyen", + Comment = null, }, new() { @@ -54734,6 +60205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pesse", + Comment = null, }, new() { @@ -54744,6 +60216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pazeh", + Comment = null, }, new() { @@ -54754,6 +60227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jejara Naga", + Comment = null, }, new() { @@ -54764,6 +60238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quapaw", + Comment = null, }, new() { @@ -54774,6 +60249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huallaga Huánuco Quechua", + Comment = null, }, new() { @@ -54784,6 +60260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "K'iche'", + Comment = null, }, new() { @@ -54794,6 +60271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Calderón Highland Quichua", + Comment = null, }, new() { @@ -54804,6 +60282,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Quechua", + Comment = null, }, new() { @@ -54814,6 +60293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lambayeque Quechua", + Comment = null, }, new() { @@ -54824,6 +60304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chimborazo Highland Quichua", + Comment = null, }, new() { @@ -54834,6 +60315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Bolivian Quechua", + Comment = null, }, new() { @@ -54844,6 +60326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quileute", + Comment = null, }, new() { @@ -54854,6 +60337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chachapoyas Quechua", + Comment = null, }, new() { @@ -54864,6 +60348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Bolivian Quechua", + Comment = null, }, new() { @@ -54874,6 +60359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sipacapense", + Comment = null, }, new() { @@ -54884,6 +60370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Quinault", + Comment = null, }, new() { @@ -54894,6 +60381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Pastaza Quechua", + Comment = null, }, new() { @@ -54904,6 +60392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quinqui", + Comment = null, }, new() { @@ -54914,6 +60403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanahuanca Pasco Quechua", + Comment = null, }, new() { @@ -54924,6 +60414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santiago del Estero Quichua", + Comment = null, }, new() { @@ -54934,6 +60425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sacapulteco", + Comment = null, }, new() { @@ -54944,6 +60436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tena Lowland Quichua", + Comment = null, }, new() { @@ -54954,6 +60447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yauyos Quechua", + Comment = null, }, new() { @@ -54964,6 +60458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayacucho Quechua", + Comment = null, }, new() { @@ -54974,6 +60469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cusco Quechua", + Comment = null, }, new() { @@ -54984,6 +60480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ambo-Pasco Quechua", + Comment = null, }, new() { @@ -54994,6 +60491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajamarca Quechua", + Comment = null, }, new() { @@ -55004,6 +60502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Apurímac Quechua", + Comment = null, }, new() { @@ -55014,6 +60513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huamalíes-Dos de Mayo Huánuco Quechua", + Comment = null, }, new() { @@ -55024,6 +60524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Imbabura Highland Quichua", + Comment = null, }, new() { @@ -55034,6 +60535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loja Highland Quichua", + Comment = null, }, new() { @@ -55044,6 +60546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajatambo North Lima Quechua", + Comment = null, }, new() { @@ -55054,6 +60557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Margos-Yarowilca-Lauricocha Quechua", + Comment = null, }, new() { @@ -55064,6 +60568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Junín Quechua", + Comment = null, }, new() { @@ -55074,6 +60579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Napo Lowland Quechua", + Comment = null, }, new() { @@ -55084,6 +60590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pacaraos Quechua", + Comment = null, }, new() { @@ -55094,6 +60601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Martín Quechua", + Comment = null, }, new() { @@ -55104,6 +60612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaylla Wanca Quechua", + Comment = null, }, new() { @@ -55114,6 +60623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Queyu", + Comment = null, }, new() { @@ -55124,6 +60634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Pastaza Quichua", + Comment = null, }, new() { @@ -55134,6 +60645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Corongo Ancash Quechua", + Comment = null, }, new() { @@ -55144,6 +60656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Quechua", + Comment = null, }, new() { @@ -55154,6 +60667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huaylas Ancash Quechua", + Comment = null, }, new() { @@ -55164,6 +60678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuman (Russia)", + Comment = null, }, new() { @@ -55174,6 +60689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sihuas Ancash Quechua", + Comment = null, }, new() { @@ -55184,6 +60700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kwalhioqua-Tlatskanai", + Comment = null, }, new() { @@ -55194,6 +60711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chiquián Ancash Quechua", + Comment = null, }, new() { @@ -55204,6 +60722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chincha Quechua", + Comment = null, }, new() { @@ -55214,6 +60733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panao Huánuco Quechua", + Comment = null, }, new() { @@ -55224,6 +60744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salasaca Highland Quichua", + Comment = null, }, new() { @@ -55234,6 +60755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Conchucos Ancash Quechua", + Comment = null, }, new() { @@ -55244,6 +60766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Conchucos Ancash Quechua", + Comment = null, }, new() { @@ -55254,6 +60777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puno Quechua", + Comment = null, }, new() { @@ -55264,6 +60788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qashqa'i", + Comment = null, }, new() { @@ -55274,6 +60799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cañar Highland Quichua", + Comment = null, }, new() { @@ -55284,6 +60810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Qiang", + Comment = null, }, new() { @@ -55294,6 +60821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Ana de Tusi Pasco Quechua", + Comment = null, }, new() { @@ -55304,6 +60832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arequipa-La Unión Quechua", + Comment = null, }, new() { @@ -55314,6 +60843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jauja Wanca Quechua", + Comment = null, }, new() { @@ -55324,6 +60854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Quenya", + Comment = null, }, new() { @@ -55334,6 +60865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Quiripi", + Comment = null, }, new() { @@ -55344,6 +60876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dungmali", + Comment = null, }, new() { @@ -55354,6 +60887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Camling", + Comment = null, }, new() { @@ -55364,6 +60898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rasawa", + Comment = null, }, new() { @@ -55374,6 +60909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rade", + Comment = null, }, new() { @@ -55384,6 +60920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Meohang", + Comment = null, }, new() { @@ -55394,6 +60931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logooli", + Comment = null, }, new() { @@ -55404,6 +60942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rabha", + Comment = null, }, new() { @@ -55414,6 +60953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ramoaaina", + Comment = null, }, new() { @@ -55424,6 +60964,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Rajasthani", + Comment = null, }, new() { @@ -55434,6 +60975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulu-Bohuai", + Comment = null, }, new() { @@ -55444,6 +60986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ralte", + Comment = null, }, new() { @@ -55454,6 +60997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Canela", + Comment = null, }, new() { @@ -55464,6 +61008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riantana", + Comment = null, }, new() { @@ -55474,6 +61019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rao", + Comment = null, }, new() { @@ -55484,6 +61030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapanui", + Comment = null, }, new() { @@ -55494,6 +61041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saam", + Comment = null, }, new() { @@ -55504,6 +61052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rarotongan", + Comment = null, }, new() { @@ -55514,6 +61063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tegali", + Comment = null, }, new() { @@ -55524,6 +61074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Razajerdi", + Comment = null, }, new() { @@ -55534,6 +61085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Raute", + Comment = null, }, new() { @@ -55544,6 +61096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sampang", + Comment = null, }, new() { @@ -55554,6 +61107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawang", + Comment = null, }, new() { @@ -55564,6 +61118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rang", + Comment = null, }, new() { @@ -55574,6 +61129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapa", + Comment = null, }, new() { @@ -55584,6 +61140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rahambuu", + Comment = null, }, new() { @@ -55594,6 +61151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rumai Palaung", + Comment = null, }, new() { @@ -55604,6 +61162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Bontok", + Comment = null, }, new() { @@ -55614,6 +61173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miraya Bikol", + Comment = null, }, new() { @@ -55624,6 +61184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barababaraba", + Comment = null, }, new() { @@ -55634,6 +61195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Réunion Creole French", + Comment = null, }, new() { @@ -55644,6 +61206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rudbari", + Comment = null, }, new() { @@ -55654,6 +61217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rerau", + Comment = null, }, new() { @@ -55664,6 +61228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rembong", + Comment = null, }, new() { @@ -55674,6 +61239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rejang Kayan", + Comment = null, }, new() { @@ -55684,6 +61250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kara (Tanzania)", + Comment = null, }, new() { @@ -55694,6 +61261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reli", + Comment = null, }, new() { @@ -55704,6 +61272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rejang", + Comment = null, }, new() { @@ -55714,6 +61283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rendille", + Comment = null, }, new() { @@ -55724,6 +61294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Remo", + Comment = null, }, new() { @@ -55734,6 +61305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rengao", + Comment = null, }, new() { @@ -55744,6 +61316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Rer Bare", + Comment = null, }, new() { @@ -55754,6 +61327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reshe", + Comment = null, }, new() { @@ -55764,6 +61338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Retta", + Comment = null, }, new() { @@ -55774,6 +61349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Reyesano", + Comment = null, }, new() { @@ -55784,6 +61360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roria", + Comment = null, }, new() { @@ -55794,6 +61371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romano-Greek", + Comment = null, }, new() { @@ -55804,6 +61382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Rangkas", + Comment = null, }, new() { @@ -55814,6 +61393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romagnol", + Comment = null, }, new() { @@ -55824,6 +61404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Resígaro", + Comment = null, }, new() { @@ -55834,6 +61415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Roglai", + Comment = null, }, new() { @@ -55844,6 +61426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ringgou", + Comment = null, }, new() { @@ -55854,6 +61437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rohingya", + Comment = null, }, new() { @@ -55864,6 +61448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yahang", + Comment = null, }, new() { @@ -55874,6 +61459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riang (India)", + Comment = null, }, new() { @@ -55884,6 +61470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bribri Sign Language", + Comment = null, }, new() { @@ -55894,6 +61481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarifit", + Comment = null, }, new() { @@ -55904,6 +61492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riang Lang", + Comment = null, }, new() { @@ -55914,6 +61503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyaturu", + Comment = null, }, new() { @@ -55924,6 +61514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nungu", + Comment = null, }, new() { @@ -55934,6 +61525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ribun", + Comment = null, }, new() { @@ -55944,6 +61536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ritharrngu", + Comment = null, }, new() { @@ -55954,6 +61547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riung", + Comment = null, }, new() { @@ -55964,6 +61558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajong", + Comment = null, }, new() { @@ -55974,6 +61569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Raji", + Comment = null, }, new() { @@ -55984,6 +61580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rajbanshi", + Comment = null, }, new() { @@ -55994,6 +61591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kraol", + Comment = null, }, new() { @@ -56004,6 +61602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rikbaktsa", + Comment = null, }, new() { @@ -56014,6 +61613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rakahanga-Manihiki", + Comment = null, }, new() { @@ -56024,6 +61624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rakhine", + Comment = null, }, new() { @@ -56034,6 +61635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marka", + Comment = null, }, new() { @@ -56044,6 +61646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rangpuri", + Comment = null, }, new() { @@ -56054,6 +61657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arakwal", + Comment = null, }, new() { @@ -56064,6 +61668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rama", + Comment = null, }, new() { @@ -56074,6 +61679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rembarrnga", + Comment = null, }, new() { @@ -56084,6 +61690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Carpathian Romani", + Comment = null, }, new() { @@ -56094,6 +61701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Traveller Danish", + Comment = null, }, new() { @@ -56104,6 +61712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angloromani", + Comment = null, }, new() { @@ -56114,6 +61723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalo Finnish Romani", + Comment = null, }, new() { @@ -56124,6 +61734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Traveller Norwegian", + Comment = null, }, new() { @@ -56134,6 +61745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Murkim", + Comment = null, }, new() { @@ -56144,6 +61756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lomavren", + Comment = null, }, new() { @@ -56154,6 +61767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romkun", + Comment = null, }, new() { @@ -56164,6 +61778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baltic Romani", + Comment = null, }, new() { @@ -56174,6 +61789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roma", + Comment = null, }, new() { @@ -56184,6 +61800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balkan Romani", + Comment = null, }, new() { @@ -56194,6 +61811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinte Romani", + Comment = null, }, new() { @@ -56204,6 +61822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rempi", + Comment = null, }, new() { @@ -56214,6 +61833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Caló", + Comment = null, }, new() { @@ -56224,6 +61844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romanian Sign Language", + Comment = null, }, new() { @@ -56234,6 +61855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Domari", + Comment = null, }, new() { @@ -56244,6 +61866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tavringer Romani", + Comment = null, }, new() { @@ -56254,6 +61877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Romanova", + Comment = null, }, new() { @@ -56264,6 +61888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welsh Romani", + Comment = null, }, new() { @@ -56274,6 +61899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romam", + Comment = null, }, new() { @@ -56284,6 +61910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vlax Romani", + Comment = null, }, new() { @@ -56294,6 +61921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marma", + Comment = null, }, new() { @@ -56304,6 +61932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brunca Sign Language", + Comment = null, }, new() { @@ -56314,6 +61943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruund", + Comment = null, }, new() { @@ -56324,6 +61954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ronga", + Comment = null, }, new() { @@ -56334,6 +61965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ranglong", + Comment = null, }, new() { @@ -56344,6 +61976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roon", + Comment = null, }, new() { @@ -56354,6 +61987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rongpo", + Comment = null, }, new() { @@ -56364,6 +61998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nari Nari", + Comment = null, }, new() { @@ -56374,6 +62009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rungwa", + Comment = null, }, new() { @@ -56384,6 +62020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tae'", + Comment = null, }, new() { @@ -56394,6 +62031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cacgia Roglai", + Comment = null, }, new() { @@ -56404,6 +62042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rogo", + Comment = null, }, new() { @@ -56414,6 +62053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ronji", + Comment = null, }, new() { @@ -56424,6 +62064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rombo", + Comment = null, }, new() { @@ -56434,6 +62075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Roglai", + Comment = null, }, new() { @@ -56444,6 +62086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romansh", + Comment = null, }, new() { @@ -56454,6 +62097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romblomanon", + Comment = null, }, new() { @@ -56464,6 +62108,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Romany", + Comment = null, }, new() { @@ -56474,6 +62119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romanian", + Comment = null, }, new() { @@ -56484,6 +62130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rotokas", + Comment = null, }, new() { @@ -56494,6 +62141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kriol", + Comment = null, }, new() { @@ -56504,6 +62152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rongga", + Comment = null, }, new() { @@ -56514,6 +62163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Runga", + Comment = null, }, new() { @@ -56524,6 +62174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dela-Oenale", + Comment = null, }, new() { @@ -56534,6 +62185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Repanbitip", + Comment = null, }, new() { @@ -56544,6 +62196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rapting", + Comment = null, }, new() { @@ -56554,6 +62207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ririo", + Comment = null, }, new() { @@ -56564,6 +62218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Moriori", + Comment = null, }, new() { @@ -56574,6 +62229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waima", + Comment = null, }, new() { @@ -56584,6 +62240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arritinngithigh", + Comment = null, }, new() { @@ -56594,6 +62251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Romano-Serbian", + Comment = null, }, new() { @@ -56604,6 +62262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruthenian", + Comment = null, }, new() { @@ -56614,6 +62273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russian Sign Language", + Comment = null, }, new() { @@ -56624,6 +62284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miriwoong Sign Language", + Comment = null, }, new() { @@ -56634,6 +62295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rwandan Sign Language", + Comment = null, }, new() { @@ -56644,6 +62306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rishiwa", + Comment = null, }, new() { @@ -56654,6 +62317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rungtu Chin", + Comment = null, }, new() { @@ -56664,6 +62328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ratahan", + Comment = null, }, new() { @@ -56674,6 +62339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rotuman", + Comment = null, }, new() { @@ -56684,6 +62350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yurats", + Comment = null, }, new() { @@ -56694,6 +62361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rathawi", + Comment = null, }, new() { @@ -56704,6 +62372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gungu", + Comment = null, }, new() { @@ -56714,6 +62383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruuli", + Comment = null, }, new() { @@ -56724,6 +62394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rusyn", + Comment = null, }, new() { @@ -56734,6 +62405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Luguru", + Comment = null, }, new() { @@ -56744,6 +62416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Roviana", + Comment = null, }, new() { @@ -56754,6 +62427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruga", + Comment = null, }, new() { @@ -56764,6 +62438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rufiji", + Comment = null, }, new() { @@ -56774,6 +62449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Che", + Comment = null, }, new() { @@ -56784,6 +62460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rundi", + Comment = null, }, new() { @@ -56794,6 +62471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Istro Romanian", + Comment = null, }, new() { @@ -56804,6 +62482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Macedo-Romanian", + Comment = null, }, new() { @@ -56814,6 +62493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Megleno Romanian", + Comment = null, }, new() { @@ -56824,6 +62504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Russian", + Comment = null, }, new() { @@ -56834,6 +62515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rutul", + Comment = null, }, new() { @@ -56844,6 +62526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lanas Lobu", + Comment = null, }, new() { @@ -56854,6 +62537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mala (Nigeria)", + Comment = null, }, new() { @@ -56864,6 +62548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruma", + Comment = null, }, new() { @@ -56874,6 +62559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawo", + Comment = null, }, new() { @@ -56884,6 +62570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rwa", + Comment = null, }, new() { @@ -56894,6 +62581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ruwila", + Comment = null, }, new() { @@ -56904,6 +62592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amba (Uganda)", + Comment = null, }, new() { @@ -56914,6 +62603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawa", + Comment = null, }, new() { @@ -56924,6 +62614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marwari (India)", + Comment = null, }, new() { @@ -56934,6 +62625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngardi", + Comment = null, }, new() { @@ -56944,6 +62636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karuwali", + Comment = null, }, new() { @@ -56954,6 +62647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Amami-Oshima", + Comment = null, }, new() { @@ -56964,6 +62658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaeyama", + Comment = null, }, new() { @@ -56974,6 +62669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Okinawan", + Comment = null, }, new() { @@ -56984,6 +62680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rāziḥī", + Comment = null, }, new() { @@ -56994,6 +62691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saba", + Comment = null, }, new() { @@ -57004,6 +62702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buglere", + Comment = null, }, new() { @@ -57014,6 +62713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meskwaki", + Comment = null, }, new() { @@ -57024,6 +62724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sandawe", + Comment = null, }, new() { @@ -57034,6 +62735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabanê", + Comment = null, }, new() { @@ -57044,6 +62746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Safaliba", + Comment = null, }, new() { @@ -57054,6 +62757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sango", + Comment = null, }, new() { @@ -57064,6 +62768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakut", + Comment = null, }, new() { @@ -57074,6 +62779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sahu", + Comment = null, }, new() { @@ -57084,6 +62790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sake", + Comment = null, }, new() { @@ -57094,6 +62801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Samaritan Aramaic", + Comment = null, }, new() { @@ -57104,6 +62812,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "H", RefName = "Sanskrit", + Comment = null, }, new() { @@ -57114,6 +62823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sause", + Comment = null, }, new() { @@ -57124,6 +62834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samburu", + Comment = null, }, new() { @@ -57134,6 +62845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Saraveca", + Comment = null, }, new() { @@ -57144,6 +62856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sasak", + Comment = null, }, new() { @@ -57154,6 +62867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santali", + Comment = null, }, new() { @@ -57164,6 +62878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saleman", + Comment = null, }, new() { @@ -57174,6 +62889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saafi-Saafi", + Comment = null, }, new() { @@ -57184,6 +62900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawi", + Comment = null, }, new() { @@ -57194,6 +62911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa", + Comment = null, }, new() { @@ -57204,6 +62922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saya", + Comment = null, }, new() { @@ -57214,6 +62933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saurashtra", + Comment = null, }, new() { @@ -57224,6 +62944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngambay", + Comment = null, }, new() { @@ -57234,6 +62955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simbo", + Comment = null, }, new() { @@ -57244,6 +62966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kele (Papua New Guinea)", + Comment = null, }, new() { @@ -57254,6 +62977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Samo", + Comment = null, }, new() { @@ -57264,6 +62988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saliba", + Comment = null, }, new() { @@ -57274,6 +62999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chabu", + Comment = null, }, new() { @@ -57284,6 +63010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seget", + Comment = null, }, new() { @@ -57294,6 +63021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sori-Harengan", + Comment = null, }, new() { @@ -57304,6 +63032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seti", + Comment = null, }, new() { @@ -57314,6 +63043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surbakhal", + Comment = null, }, new() { @@ -57324,6 +63054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Safwa", + Comment = null, }, new() { @@ -57334,6 +63065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Botolan Sambal", + Comment = null, }, new() { @@ -57344,6 +63076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sagala", + Comment = null, }, new() { @@ -57354,6 +63087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindhi Bhil", + Comment = null, }, new() { @@ -57364,6 +63098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabüm", + Comment = null, }, new() { @@ -57374,6 +63109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangu (Tanzania)", + Comment = null, }, new() { @@ -57384,6 +63120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sileibi", + Comment = null, }, new() { @@ -57394,6 +63131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sembakung Murut", + Comment = null, }, new() { @@ -57404,6 +63142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Subiya", + Comment = null, }, new() { @@ -57414,6 +63153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kimki", + Comment = null, }, new() { @@ -57424,6 +63164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Stod Bhoti", + Comment = null, }, new() { @@ -57434,6 +63175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sabine", + Comment = null, }, new() { @@ -57444,6 +63186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simba", + Comment = null, }, new() { @@ -57454,6 +63197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seberuang", + Comment = null, }, new() { @@ -57464,6 +63208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soli", + Comment = null, }, new() { @@ -57474,6 +63219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara Kaba", + Comment = null, }, new() { @@ -57484,6 +63230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chut", + Comment = null, }, new() { @@ -57494,6 +63241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongxiang", + Comment = null, }, new() { @@ -57504,6 +63252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Miguel Creole French", + Comment = null, }, new() { @@ -57514,6 +63263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanggau", + Comment = null, }, new() { @@ -57524,6 +63274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakachep", + Comment = null, }, new() { @@ -57534,6 +63285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sri Lankan Creole Malay", + Comment = null, }, new() { @@ -57544,6 +63296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sadri", + Comment = null, }, new() { @@ -57554,6 +63307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shina", + Comment = null, }, new() { @@ -57564,6 +63318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sicilian", + Comment = null, }, new() { @@ -57574,6 +63329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Scots", + Comment = null, }, new() { @@ -57584,6 +63340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hyolmo", + Comment = null, }, new() { @@ -57594,6 +63351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa'och", + Comment = null, }, new() { @@ -57604,6 +63362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Slavey", + Comment = null, }, new() { @@ -57614,6 +63373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Katang", + Comment = null, }, new() { @@ -57624,6 +63384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shumcho", + Comment = null, }, new() { @@ -57634,6 +63395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sheni", + Comment = null, }, new() { @@ -57644,6 +63406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sha", + Comment = null, }, new() { @@ -57654,6 +63417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sicel", + Comment = null, }, new() { @@ -57664,6 +63428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shaetlan", + Comment = null, }, new() { @@ -57674,6 +63439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toraja-Sa'dan", + Comment = null, }, new() { @@ -57684,6 +63450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shabak", + Comment = null, }, new() { @@ -57694,6 +63461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sassarese Sardinian", + Comment = null, }, new() { @@ -57704,6 +63472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surubu", + Comment = null, }, new() { @@ -57714,6 +63483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarli", + Comment = null, }, new() { @@ -57724,6 +63494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Savi", + Comment = null, }, new() { @@ -57734,6 +63505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Kurdish", + Comment = null, }, new() { @@ -57744,6 +63516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suundi", + Comment = null, }, new() { @@ -57754,6 +63527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sos Kundi", + Comment = null, }, new() { @@ -57764,6 +63538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saudi Arabian Sign Language", + Comment = null, }, new() { @@ -57774,6 +63549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gallurese Sardinian", + Comment = null, }, new() { @@ -57784,6 +63560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bukar-Sadung Bidayuh", + Comment = null, }, new() { @@ -57794,6 +63571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sherdukpen", + Comment = null, }, new() { @@ -57804,6 +63582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semandang", + Comment = null, }, new() { @@ -57814,6 +63593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Oraon Sadri", + Comment = null, }, new() { @@ -57824,6 +63604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sened", + Comment = null, }, new() { @@ -57834,6 +63615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Shuadit", + Comment = null, }, new() { @@ -57844,6 +63626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarudu", + Comment = null, }, new() { @@ -57854,6 +63637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sibu Melanau", + Comment = null, }, new() { @@ -57864,6 +63648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sallands", + Comment = null, }, new() { @@ -57874,6 +63659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semai", + Comment = null, }, new() { @@ -57884,6 +63670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shempire Senoufo", + Comment = null, }, new() { @@ -57894,6 +63681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sechelt", + Comment = null, }, new() { @@ -57904,6 +63692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sedang", + Comment = null, }, new() { @@ -57914,6 +63703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seneca", + Comment = null, }, new() { @@ -57924,6 +63714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cebaara Senoufo", + Comment = null, }, new() { @@ -57934,6 +63725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Segeju", + Comment = null, }, new() { @@ -57944,6 +63736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sena", + Comment = null, }, new() { @@ -57954,6 +63747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seri", + Comment = null, }, new() { @@ -57964,6 +63758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sene", + Comment = null, }, new() { @@ -57974,6 +63769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekani", + Comment = null, }, new() { @@ -57984,6 +63780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selkup", + Comment = null, }, new() { @@ -57994,6 +63791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nanerigé Sénoufo", + Comment = null, }, new() { @@ -58004,6 +63802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suarmin", + Comment = null, }, new() { @@ -58014,6 +63813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sìcìté Sénoufo", + Comment = null, }, new() { @@ -58024,6 +63824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senara Sénoufo", + Comment = null, }, new() { @@ -58034,6 +63835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serrano", + Comment = null, }, new() { @@ -58044,6 +63846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koyraboro Senni Songhai", + Comment = null, }, new() { @@ -58054,6 +63857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sentani", + Comment = null, }, new() { @@ -58064,6 +63868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serui-Laut", + Comment = null, }, new() { @@ -58074,6 +63879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyarafolo Senoufo", + Comment = null, }, new() { @@ -58084,6 +63890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sewa Bay", + Comment = null, }, new() { @@ -58094,6 +63901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Secoya", + Comment = null, }, new() { @@ -58104,6 +63912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senthang Chin", + Comment = null, }, new() { @@ -58114,6 +63923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langue des signes de Belgique Francophone", + Comment = null, }, new() { @@ -58124,6 +63934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Subanen", + Comment = null, }, new() { @@ -58134,6 +63945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Small Flowery Miao", + Comment = null, }, new() { @@ -58144,6 +63956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South African Sign Language", + Comment = null, }, new() { @@ -58154,6 +63967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sehwi", + Comment = null, }, new() { @@ -58164,6 +63978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Old Irish (to 900)", + Comment = null, }, new() { @@ -58174,6 +63989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mag-antsi Ayta", + Comment = null, }, new() { @@ -58184,6 +64000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kipsigis", + Comment = null, }, new() { @@ -58194,6 +64011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surigaonon", + Comment = null, }, new() { @@ -58204,6 +64022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Segai", + Comment = null, }, new() { @@ -58214,6 +64033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss-German Sign Language", + Comment = null, }, new() { @@ -58224,6 +64044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shughni", + Comment = null, }, new() { @@ -58234,6 +64055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suga", + Comment = null, }, new() { @@ -58244,6 +64066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surgujia", + Comment = null, }, new() { @@ -58254,6 +64077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangkong", + Comment = null, }, new() { @@ -58264,6 +64088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Singa", + Comment = null, }, new() { @@ -58274,6 +64099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Singpho", + Comment = null, }, new() { @@ -58284,6 +64110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangisari", + Comment = null, }, new() { @@ -58294,6 +64121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samogitian", + Comment = null, }, new() { @@ -58304,6 +64132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Brokpake", + Comment = null, }, new() { @@ -58314,6 +64143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salas", + Comment = null, }, new() { @@ -58324,6 +64154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sebat Bet Gurage", + Comment = null, }, new() { @@ -58334,6 +64165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sierra Leone Sign Language", + Comment = null, }, new() { @@ -58344,6 +64176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanglechi", + Comment = null, }, new() { @@ -58354,6 +64187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sursurunga", + Comment = null, }, new() { @@ -58364,6 +64198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shall-Zwall", + Comment = null, }, new() { @@ -58374,6 +64209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ninam", + Comment = null, }, new() { @@ -58384,6 +64220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonde", + Comment = null, }, new() { @@ -58394,6 +64231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kundal Shahi", + Comment = null, }, new() { @@ -58404,6 +64242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sheko", + Comment = null, }, new() { @@ -58414,6 +64253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shua", + Comment = null, }, new() { @@ -58424,6 +64264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shoshoni", + Comment = null, }, new() { @@ -58434,6 +64275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tachelhit", + Comment = null, }, new() { @@ -58444,6 +64286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shatt", + Comment = null, }, new() { @@ -58454,6 +64297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shilluk", + Comment = null, }, new() { @@ -58464,6 +64308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shendu", + Comment = null, }, new() { @@ -58474,6 +64319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shahrudi", + Comment = null, }, new() { @@ -58484,6 +64330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shan", + Comment = null, }, new() { @@ -58494,6 +64341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shanga", + Comment = null, }, new() { @@ -58504,6 +64352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shipibo-Conibo", + Comment = null, }, new() { @@ -58514,6 +64363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sala", + Comment = null, }, new() { @@ -58524,6 +64374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shi", + Comment = null, }, new() { @@ -58534,6 +64385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shuswap", + Comment = null, }, new() { @@ -58544,6 +64396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Shasta", + Comment = null, }, new() { @@ -58554,6 +64407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chadian Arabic", + Comment = null, }, new() { @@ -58564,6 +64418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shehri", + Comment = null, }, new() { @@ -58574,6 +64429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shwai", + Comment = null, }, new() { @@ -58584,6 +64440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "She", + Comment = null, }, new() { @@ -58594,6 +64451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tachawit", + Comment = null, }, new() { @@ -58604,6 +64462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Syenara Senoufo", + Comment = null, }, new() { @@ -58614,6 +64473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Akkala Sami", + Comment = null, }, new() { @@ -58624,6 +64484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sebop", + Comment = null, }, new() { @@ -58634,6 +64495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sidamo", + Comment = null, }, new() { @@ -58644,6 +64506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simaa", + Comment = null, }, new() { @@ -58654,6 +64517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siamou", + Comment = null, }, new() { @@ -58664,6 +64528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Paasaal", + Comment = null, }, new() { @@ -58674,6 +64539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zire", + Comment = null, }, new() { @@ -58684,6 +64550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shom Peng", + Comment = null, }, new() { @@ -58694,6 +64561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Numbami", + Comment = null, }, new() { @@ -58704,6 +64572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikiana", + Comment = null, }, new() { @@ -58714,6 +64583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumulung Sisaala", + Comment = null, }, new() { @@ -58724,6 +64594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mende (Papua New Guinea)", + Comment = null, }, new() { @@ -58734,6 +64605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinhala", + Comment = null, }, new() { @@ -58744,6 +64616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikkimese", + Comment = null, }, new() { @@ -58754,6 +64627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonia", + Comment = null, }, new() { @@ -58764,6 +64638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siri", + Comment = null, }, new() { @@ -58774,6 +64649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Siuslaw", + Comment = null, }, new() { @@ -58784,6 +64660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinagen", + Comment = null, }, new() { @@ -58794,6 +64671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumariup", + Comment = null, }, new() { @@ -58804,6 +64682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siwai", + Comment = null, }, new() { @@ -58814,6 +64693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumau", + Comment = null, }, new() { @@ -58824,6 +64704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sivandi", + Comment = null, }, new() { @@ -58834,6 +64715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siwi", + Comment = null, }, new() { @@ -58844,6 +64726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Epena", + Comment = null, }, new() { @@ -58854,6 +64737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sajau Basap", + Comment = null, }, new() { @@ -58864,6 +64748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shaojiang Chinese", + Comment = null, }, new() { @@ -58874,6 +64759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kildin Sami", + Comment = null, }, new() { @@ -58884,6 +64770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pite Sami", + Comment = null, }, new() { @@ -58894,6 +64781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Assangori", + Comment = null, }, new() { @@ -58904,6 +64792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kemi Sami", + Comment = null, }, new() { @@ -58914,6 +64803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sajalong", + Comment = null, }, new() { @@ -58924,6 +64814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mapun", + Comment = null, }, new() { @@ -58934,6 +64825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Sindarin", + Comment = null, }, new() { @@ -58944,6 +64836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xibe", + Comment = null, }, new() { @@ -58954,6 +64847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Surjapuri", + Comment = null, }, new() { @@ -58964,6 +64858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siar-Lak", + Comment = null, }, new() { @@ -58974,6 +64869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Senhaja De Srair", + Comment = null, }, new() { @@ -58984,6 +64880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ter Sami", + Comment = null, }, new() { @@ -58994,6 +64891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ume Sami", + Comment = null, }, new() { @@ -59004,6 +64902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shawnee", + Comment = null, }, new() { @@ -59014,6 +64913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Skagit", + Comment = null, }, new() { @@ -59024,6 +64924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saek", + Comment = null, }, new() { @@ -59034,6 +64935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma Manda", + Comment = null, }, new() { @@ -59044,6 +64946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sierra Miwok", + Comment = null, }, new() { @@ -59054,6 +64957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seke (Vanuatu)", + Comment = null, }, new() { @@ -59064,6 +64968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakirabiá", + Comment = null, }, new() { @@ -59074,6 +64979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakalava Malagasy", + Comment = null, }, new() { @@ -59084,6 +64990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikule", + Comment = null, }, new() { @@ -59094,6 +65001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sika", + Comment = null, }, new() { @@ -59104,6 +65012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seke (Nepal)", + Comment = null, }, new() { @@ -59114,6 +65023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kutong", + Comment = null, }, new() { @@ -59124,6 +65034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kolibugan Subanon", + Comment = null, }, new() { @@ -59134,6 +65045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seko Tengah", + Comment = null, }, new() { @@ -59144,6 +65056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekapan", + Comment = null, }, new() { @@ -59154,6 +65067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sininkere", + Comment = null, }, new() { @@ -59164,6 +65078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saraiki", + Comment = null, }, new() { @@ -59174,6 +65089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maia", + Comment = null, }, new() { @@ -59184,6 +65100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakata", + Comment = null, }, new() { @@ -59194,6 +65111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakao", + Comment = null, }, new() { @@ -59204,6 +65122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Skou", + Comment = null, }, new() { @@ -59214,6 +65133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Skepi Creole Dutch", + Comment = null, }, new() { @@ -59224,6 +65144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seko Padang", + Comment = null, }, new() { @@ -59234,6 +65155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikaiana", + Comment = null, }, new() { @@ -59244,6 +65166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekar", + Comment = null, }, new() { @@ -59254,6 +65177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sáliba", + Comment = null, }, new() { @@ -59264,6 +65188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sissala", + Comment = null, }, new() { @@ -59274,6 +65199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sholaga", + Comment = null, }, new() { @@ -59284,6 +65210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss-Italian Sign Language", + Comment = null, }, new() { @@ -59294,6 +65221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selungai Murut", + Comment = null, }, new() { @@ -59304,6 +65232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Puget Sound Salish", + Comment = null, }, new() { @@ -59314,6 +65243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Silesian", + Comment = null, }, new() { @@ -59324,6 +65254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salumá", + Comment = null, }, new() { @@ -59334,6 +65265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovak", + Comment = null, }, new() { @@ -59344,6 +65276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salt-Yui", + Comment = null, }, new() { @@ -59354,6 +65287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pangutaran Sama", + Comment = null, }, new() { @@ -59364,6 +65298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Salinan", + Comment = null, }, new() { @@ -59374,6 +65309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lamaholot", + Comment = null, }, new() { @@ -59384,6 +65320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salar", + Comment = null, }, new() { @@ -59394,6 +65331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Singapore Sign Language", + Comment = null, }, new() { @@ -59404,6 +65342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sila", + Comment = null, }, new() { @@ -59414,6 +65353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selaru", + Comment = null, }, new() { @@ -59424,6 +65364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovenian", + Comment = null, }, new() { @@ -59434,6 +65375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sialum", + Comment = null, }, new() { @@ -59444,6 +65386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salampasu", + Comment = null, }, new() { @@ -59454,6 +65397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selayar", + Comment = null, }, new() { @@ -59464,6 +65408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ma'ya", + Comment = null, }, new() { @@ -59474,6 +65419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sami", + Comment = null, }, new() { @@ -59484,6 +65430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simbari", + Comment = null, }, new() { @@ -59494,6 +65441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Som", + Comment = null, }, new() { @@ -59504,6 +65452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Sami", + Comment = null, }, new() { @@ -59514,6 +65463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Auwe", + Comment = null, }, new() { @@ -59524,6 +65474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simbali", + Comment = null, }, new() { @@ -59534,6 +65485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samei", + Comment = null, }, new() { @@ -59544,6 +65496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lule Sami", + Comment = null, }, new() { @@ -59554,6 +65507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bolinao", + Comment = null, }, new() { @@ -59564,6 +65518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Sama", + Comment = null, }, new() { @@ -59574,6 +65529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Musasa", + Comment = null, }, new() { @@ -59584,6 +65540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Inari Sami", + Comment = null, }, new() { @@ -59594,6 +65551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samoan", + Comment = null, }, new() { @@ -59604,6 +65562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Samaritan", + Comment = null, }, new() { @@ -59614,6 +65573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samo", + Comment = null, }, new() { @@ -59624,6 +65584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simeulue", + Comment = null, }, new() { @@ -59634,6 +65595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Skolt Sami", + Comment = null, }, new() { @@ -59644,6 +65606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simte", + Comment = null, }, new() { @@ -59654,6 +65617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Somray", + Comment = null, }, new() { @@ -59664,6 +65628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samvedi", + Comment = null, }, new() { @@ -59674,6 +65639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumbawa", + Comment = null, }, new() { @@ -59684,6 +65650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samba", + Comment = null, }, new() { @@ -59694,6 +65661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semnani", + Comment = null, }, new() { @@ -59704,6 +65672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Simeku", + Comment = null, }, new() { @@ -59714,6 +65683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shona", + Comment = null, }, new() { @@ -59724,6 +65694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinaugoro", + Comment = null, }, new() { @@ -59734,6 +65705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindhi", + Comment = null, }, new() { @@ -59744,6 +65716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bau Bidayuh", + Comment = null, }, new() { @@ -59754,6 +65727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Noon", + Comment = null, }, new() { @@ -59764,6 +65738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanga (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -59774,6 +65749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sensi", + Comment = null, }, new() { @@ -59784,6 +65760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riverain Sango", + Comment = null, }, new() { @@ -59794,6 +65771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soninke", + Comment = null, }, new() { @@ -59804,6 +65782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangil", + Comment = null, }, new() { @@ -59814,6 +65793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Ma'di", + Comment = null, }, new() { @@ -59824,6 +65804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siona", + Comment = null, }, new() { @@ -59834,6 +65815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Snohomish", + Comment = null, }, new() { @@ -59844,6 +65826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siane", + Comment = null, }, new() { @@ -59854,6 +65837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangu (Gabon)", + Comment = null, }, new() { @@ -59864,6 +65848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sihan", + Comment = null, }, new() { @@ -59874,6 +65859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South West Bay", + Comment = null, }, new() { @@ -59884,6 +65870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senggi", + Comment = null, }, new() { @@ -59894,6 +65881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sa'ban", + Comment = null, }, new() { @@ -59904,6 +65892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selee", + Comment = null, }, new() { @@ -59914,6 +65903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sam", + Comment = null, }, new() { @@ -59924,6 +65914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saniyo-Hiyewe", + Comment = null, }, new() { @@ -59934,6 +65925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kou", + Comment = null, }, new() { @@ -59944,6 +65936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai Song", + Comment = null, }, new() { @@ -59954,6 +65947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sobei", + Comment = null, }, new() { @@ -59964,6 +65958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "So (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -59974,6 +65969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songoora", + Comment = null, }, new() { @@ -59984,6 +65980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songomeno", + Comment = null, }, new() { @@ -59994,6 +65991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sogdian", + Comment = null, }, new() { @@ -60004,6 +66002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aka", + Comment = null, }, new() { @@ -60014,6 +66013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonha", + Comment = null, }, new() { @@ -60024,6 +66024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soi", + Comment = null, }, new() { @@ -60034,6 +66035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sokoro", + Comment = null, }, new() { @@ -60044,6 +66046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Solos", + Comment = null, }, new() { @@ -60054,6 +66057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somali", + Comment = null, }, new() { @@ -60064,6 +66068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songo", + Comment = null, }, new() { @@ -60074,6 +66079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Songe", + Comment = null, }, new() { @@ -60084,6 +66090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanasi", + Comment = null, }, new() { @@ -60094,6 +66101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Somrai", + Comment = null, }, new() { @@ -60104,6 +66112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seeku", + Comment = null, }, new() { @@ -60114,6 +66123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sotho", + Comment = null, }, new() { @@ -60124,6 +66134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Thai", + Comment = null, }, new() { @@ -60134,6 +66145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonsorol", + Comment = null, }, new() { @@ -60144,6 +66156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sowanda", + Comment = null, }, new() { @@ -60154,6 +66167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swo", + Comment = null, }, new() { @@ -60164,6 +66178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miyobe", + Comment = null, }, new() { @@ -60174,6 +66189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temi", + Comment = null, }, new() { @@ -60184,6 +66200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spanish", + Comment = null, }, new() { @@ -60194,6 +66211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sepa (Indonesia)", + Comment = null, }, new() { @@ -60204,6 +66222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sapé", + Comment = null, }, new() { @@ -60214,6 +66233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saep", + Comment = null, }, new() { @@ -60224,6 +66244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sepa (Papua New Guinea)", + Comment = null, }, new() { @@ -60234,6 +66255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sian", + Comment = null, }, new() { @@ -60244,6 +66266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saponi", + Comment = null, }, new() { @@ -60254,6 +66277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sengo", + Comment = null, }, new() { @@ -60264,6 +66288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Selepet", + Comment = null, }, new() { @@ -60274,6 +66299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akukem", + Comment = null, }, new() { @@ -60284,6 +66310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanapaná", + Comment = null, }, new() { @@ -60294,6 +66321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spokane", + Comment = null, }, new() { @@ -60304,6 +66332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Supyire Senoufo", + Comment = null, }, new() { @@ -60314,6 +66343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loreto-Ucayali Spanish", + Comment = null, }, new() { @@ -60324,6 +66354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saparua", + Comment = null, }, new() { @@ -60334,6 +66365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saposa", + Comment = null, }, new() { @@ -60344,6 +66376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spiti Bhoti", + Comment = null, }, new() { @@ -60354,6 +66387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sapuan", + Comment = null, }, new() { @@ -60364,6 +66398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sambalpuri", + Comment = null, }, new() { @@ -60374,6 +66409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "South Picene", + Comment = null, }, new() { @@ -60384,6 +66420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sabaot", + Comment = null, }, new() { @@ -60394,6 +66431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shama-Sambuga", + Comment = null, }, new() { @@ -60404,6 +66442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shau", + Comment = null, }, new() { @@ -60414,6 +66453,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Albanian", + Comment = null, }, new() { @@ -60424,6 +66464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Albanian Sign Language", + Comment = null, }, new() { @@ -60434,6 +66475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suma", + Comment = null, }, new() { @@ -60444,6 +66486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Susquehannock", + Comment = null, }, new() { @@ -60454,6 +66497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sorkhei", + Comment = null, }, new() { @@ -60464,6 +66508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sou", + Comment = null, }, new() { @@ -60474,6 +66519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Siculo Arabic", + Comment = null, }, new() { @@ -60484,6 +66530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sri Lankan Sign Language", + Comment = null, }, new() { @@ -60494,6 +66541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soqotri", + Comment = null, }, new() { @@ -60504,6 +66552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Squamish", + Comment = null, }, new() { @@ -60514,6 +66563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kufr Qassem Sign Language (KQSL)", + Comment = null, }, new() { @@ -60524,6 +66574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saruga", + Comment = null, }, new() { @@ -60534,6 +66585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sora", + Comment = null, }, new() { @@ -60544,6 +66596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Logudorese Sardinian", + Comment = null, }, new() { @@ -60554,6 +66607,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Sardinian", + Comment = null, }, new() { @@ -60564,6 +66618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sara", + Comment = null, }, new() { @@ -60574,6 +66629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nafi", + Comment = null, }, new() { @@ -60584,6 +66640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sulod", + Comment = null, }, new() { @@ -60594,6 +66651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarikoli", + Comment = null, }, new() { @@ -60604,6 +66662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siriano", + Comment = null, }, new() { @@ -60614,6 +66673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serudung Murut", + Comment = null, }, new() { @@ -60624,6 +66684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isirawa", + Comment = null, }, new() { @@ -60634,6 +66695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saramaccan", + Comment = null, }, new() { @@ -60644,6 +66706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sranan Tongo", + Comment = null, }, new() { @@ -60654,6 +66717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Campidanese Sardinian", + Comment = null, }, new() { @@ -60664,6 +66728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serbian", + Comment = null, }, new() { @@ -60674,6 +66739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sirionó", + Comment = null, }, new() { @@ -60684,6 +66750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serer", + Comment = null, }, new() { @@ -60694,6 +66761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarsi", + Comment = null, }, new() { @@ -60704,6 +66772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sauri", + Comment = null, }, new() { @@ -60714,6 +66783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suruí", + Comment = null, }, new() { @@ -60724,6 +66794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sorsoganon", + Comment = null, }, new() { @@ -60734,6 +66805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serua", + Comment = null, }, new() { @@ -60744,6 +66816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sirmauri", + Comment = null, }, new() { @@ -60754,6 +66827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sera", + Comment = null, }, new() { @@ -60764,6 +66838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shahmirzadi", + Comment = null, }, new() { @@ -60774,6 +66849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Sama", + Comment = null, }, new() { @@ -60784,6 +66860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suba-Simbiti", + Comment = null, }, new() { @@ -60794,6 +66871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siroi", + Comment = null, }, new() { @@ -60804,6 +66882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Balangingi", + Comment = null, }, new() { @@ -60814,6 +66893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thao", + Comment = null, }, new() { @@ -60824,6 +66904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seimat", + Comment = null, }, new() { @@ -60834,6 +66915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shihhi Arabic", + Comment = null, }, new() { @@ -60844,6 +66926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sansi", + Comment = null, }, new() { @@ -60854,6 +66937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sausi", + Comment = null, }, new() { @@ -60864,6 +66948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sunam", + Comment = null, }, new() { @@ -60874,6 +66959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Sisaala", + Comment = null, }, new() { @@ -60884,6 +66970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semnam", + Comment = null, }, new() { @@ -60894,6 +66981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waata", + Comment = null, }, new() { @@ -60904,6 +66992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sissano", + Comment = null, }, new() { @@ -60914,6 +67003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Spanish Sign Language", + Comment = null, }, new() { @@ -60924,6 +67014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "So'a", + Comment = null, }, new() { @@ -60934,6 +67025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swiss-French Sign Language", + Comment = null, }, new() { @@ -60944,6 +67036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sô", + Comment = null, }, new() { @@ -60954,6 +67047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinasina", + Comment = null, }, new() { @@ -60964,6 +67058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Susuami", + Comment = null, }, new() { @@ -60974,6 +67069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shark Bay", + Comment = null, }, new() { @@ -60984,6 +67080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swati", + Comment = null, }, new() { @@ -60994,6 +67091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samberigi", + Comment = null, }, new() { @@ -61004,6 +67102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saho", + Comment = null, }, new() { @@ -61014,6 +67113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sengseng", + Comment = null, }, new() { @@ -61024,6 +67124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Settla", + Comment = null, }, new() { @@ -61034,6 +67135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Subanen", + Comment = null, }, new() { @@ -61044,6 +67146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sentinel", + Comment = null, }, new() { @@ -61054,6 +67157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liana-Seti", + Comment = null, }, new() { @@ -61064,6 +67168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seta", + Comment = null, }, new() { @@ -61074,6 +67179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trieng", + Comment = null, }, new() { @@ -61084,6 +67190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shelta", + Comment = null, }, new() { @@ -61094,6 +67201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bulo Stieng", + Comment = null, }, new() { @@ -61104,6 +67212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matya Samo", + Comment = null, }, new() { @@ -61114,6 +67223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Arammba", + Comment = null, }, new() { @@ -61124,6 +67234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Stellingwerfs", + Comment = null, }, new() { @@ -61134,6 +67245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Setaman", + Comment = null, }, new() { @@ -61144,6 +67256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Owa", + Comment = null, }, new() { @@ -61154,6 +67267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Stoney", + Comment = null, }, new() { @@ -61164,6 +67278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Tepehuan", + Comment = null, }, new() { @@ -61174,6 +67289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saterfriesisch", + Comment = null, }, new() { @@ -61184,6 +67300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Straits Salish", + Comment = null, }, new() { @@ -61194,6 +67311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shumashti", + Comment = null, }, new() { @@ -61204,6 +67322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Budeh Stieng", + Comment = null, }, new() { @@ -61214,6 +67333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samtao", + Comment = null, }, new() { @@ -61224,6 +67344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silt'e", + Comment = null, }, new() { @@ -61234,6 +67355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Satawalese", + Comment = null, }, new() { @@ -61244,6 +67366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siberian Tatar", + Comment = null, }, new() { @@ -61254,6 +67377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sulka", + Comment = null, }, new() { @@ -61264,6 +67388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suku", + Comment = null, }, new() { @@ -61274,6 +67399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Subanon", + Comment = null, }, new() { @@ -61284,6 +67410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suena", + Comment = null, }, new() { @@ -61294,6 +67421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suganga", + Comment = null, }, new() { @@ -61304,6 +67432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suki", + Comment = null, }, new() { @@ -61314,6 +67443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shubi", + Comment = null, }, new() { @@ -61324,6 +67454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sukuma", + Comment = null, }, new() { @@ -61334,6 +67465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sundanese", + Comment = null, }, new() { @@ -61344,6 +67476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bouni", + Comment = null, }, new() { @@ -61354,6 +67487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tirmaga-Chai Suri", + Comment = null, }, new() { @@ -61364,6 +67498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwaghavul", + Comment = null, }, new() { @@ -61374,6 +67509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Susu", + Comment = null, }, new() { @@ -61384,6 +67520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Subtiaba", + Comment = null, }, new() { @@ -61394,6 +67531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Puroik", + Comment = null, }, new() { @@ -61404,6 +67542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sumbwa", + Comment = null, }, new() { @@ -61414,6 +67553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sumerian", + Comment = null, }, new() { @@ -61424,6 +67564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suyá", + Comment = null, }, new() { @@ -61434,6 +67575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sunwar", + Comment = null, }, new() { @@ -61444,6 +67586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Svan", + Comment = null, }, new() { @@ -61454,6 +67597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulau-Suain", + Comment = null, }, new() { @@ -61464,6 +67608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vincentian Creole English", + Comment = null, }, new() { @@ -61474,6 +67619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Serili", + Comment = null, }, new() { @@ -61484,6 +67630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slovakian Sign Language", + Comment = null, }, new() { @@ -61494,6 +67641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Slavomolisano", + Comment = null, }, new() { @@ -61504,6 +67652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Savosavo", + Comment = null, }, new() { @@ -61514,6 +67663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Skalvian", + Comment = null, }, new() { @@ -61524,6 +67674,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Swahili (macrolanguage)", + Comment = null, }, new() { @@ -61534,6 +67685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maore Comorian", + Comment = null, }, new() { @@ -61544,6 +67696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Congo Swahili", + Comment = null, }, new() { @@ -61554,6 +67707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swedish", + Comment = null, }, new() { @@ -61564,6 +67718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sere", + Comment = null, }, new() { @@ -61574,6 +67729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swabian", + Comment = null, }, new() { @@ -61584,6 +67740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swahili (individual language)", + Comment = null, }, new() { @@ -61594,6 +67751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sui", + Comment = null, }, new() { @@ -61604,6 +67762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sira", + Comment = null, }, new() { @@ -61614,6 +67773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malawi Sena", + Comment = null, }, new() { @@ -61624,6 +67784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Swedish Sign Language", + Comment = null, }, new() { @@ -61634,6 +67795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samosa", + Comment = null, }, new() { @@ -61644,6 +67806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawknah", + Comment = null, }, new() { @@ -61654,6 +67817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shanenawa", + Comment = null, }, new() { @@ -61664,6 +67828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suau", + Comment = null, }, new() { @@ -61674,6 +67839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sharwa", + Comment = null, }, new() { @@ -61684,6 +67850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saweru", + Comment = null, }, new() { @@ -61694,6 +67861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seluwasan", + Comment = null, }, new() { @@ -61704,6 +67872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawila", + Comment = null, }, new() { @@ -61714,6 +67883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suwawa", + Comment = null, }, new() { @@ -61724,6 +67894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shekhawati", + Comment = null, }, new() { @@ -61734,6 +67905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sowa", + Comment = null, }, new() { @@ -61744,6 +67916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suruahá", + Comment = null, }, new() { @@ -61754,6 +67927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarua", + Comment = null, }, new() { @@ -61764,6 +67938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suba", + Comment = null, }, new() { @@ -61774,6 +67949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sicanian", + Comment = null, }, new() { @@ -61784,6 +67960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sighu", + Comment = null, }, new() { @@ -61794,6 +67971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shuhi", + Comment = null, }, new() { @@ -61804,6 +67982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southern Kalapuya", + Comment = null, }, new() { @@ -61814,6 +67993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Selian", + Comment = null, }, new() { @@ -61824,6 +68004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samre", + Comment = null, }, new() { @@ -61834,6 +68015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sangir", + Comment = null, }, new() { @@ -61844,6 +68026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sorothaptic", + Comment = null, }, new() { @@ -61854,6 +68037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saaroa", + Comment = null, }, new() { @@ -61864,6 +68048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sasaru", + Comment = null, }, new() { @@ -61874,6 +68059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Saxon", + Comment = null, }, new() { @@ -61884,6 +68070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saxwe Gbe", + Comment = null, }, new() { @@ -61894,6 +68081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Siang", + Comment = null, }, new() { @@ -61904,6 +68092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Subanen", + Comment = null, }, new() { @@ -61914,6 +68103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Syriac", + Comment = null, }, new() { @@ -61924,6 +68114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seki", + Comment = null, }, new() { @@ -61934,6 +68125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sukur", + Comment = null, }, new() { @@ -61944,6 +68136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sylheti", + Comment = null, }, new() { @@ -61954,6 +68147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maya Samo", + Comment = null, }, new() { @@ -61964,6 +68158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Senaya", + Comment = null, }, new() { @@ -61974,6 +68169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suoy", + Comment = null, }, new() { @@ -61984,6 +68180,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Syriac", + Comment = null, }, new() { @@ -61994,6 +68191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinyar", + Comment = null, }, new() { @@ -62004,6 +68202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagate", + Comment = null, }, new() { @@ -62014,6 +68213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samay", + Comment = null, }, new() { @@ -62024,6 +68224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Al-Sayyid Bedouin Sign Language", + Comment = null, }, new() { @@ -62034,6 +68235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semelai", + Comment = null, }, new() { @@ -62044,6 +68246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngalum", + Comment = null, }, new() { @@ -62054,6 +68257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Semaq Beri", + Comment = null, }, new() { @@ -62064,6 +68268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Seze", + Comment = null, }, new() { @@ -62074,6 +68279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sengele", + Comment = null, }, new() { @@ -62084,6 +68290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silesian", + Comment = null, }, new() { @@ -62094,6 +68301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sula", + Comment = null, }, new() { @@ -62104,6 +68312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Suabo", + Comment = null, }, new() { @@ -62114,6 +68323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Solomon Islands Sign Language", + Comment = null, }, new() { @@ -62124,6 +68334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isu (Fako Division)", + Comment = null, }, new() { @@ -62134,6 +68345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sawai", + Comment = null, }, new() { @@ -62144,6 +68356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sakizaya", + Comment = null, }, new() { @@ -62154,6 +68367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Tanana", + Comment = null, }, new() { @@ -62164,6 +68378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabassaran", + Comment = null, }, new() { @@ -62174,6 +68389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lowland Tarahumara", + Comment = null, }, new() { @@ -62184,6 +68400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tause", + Comment = null, }, new() { @@ -62194,6 +68411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tariana", + Comment = null, }, new() { @@ -62204,6 +68422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tapirapé", + Comment = null, }, new() { @@ -62214,6 +68433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagoi", + Comment = null, }, new() { @@ -62224,6 +68444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahitian", + Comment = null, }, new() { @@ -62234,6 +68455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Tamang", + Comment = null, }, new() { @@ -62244,6 +68466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tala", + Comment = null, }, new() { @@ -62254,6 +68477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tal", + Comment = null, }, new() { @@ -62264,6 +68488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamil", + Comment = null, }, new() { @@ -62274,6 +68499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangale", + Comment = null, }, new() { @@ -62284,6 +68510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yami", + Comment = null, }, new() { @@ -62294,6 +68521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taabwa", + Comment = null, }, new() { @@ -62304,6 +68532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamasheq", + Comment = null, }, new() { @@ -62314,6 +68543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Tarahumara", + Comment = null, }, new() { @@ -62324,6 +68554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tay Boi", + Comment = null, }, new() { @@ -62334,6 +68565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatar", + Comment = null, }, new() { @@ -62344,6 +68576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Tanana", + Comment = null, }, new() { @@ -62354,6 +68587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatuyo", + Comment = null, }, new() { @@ -62364,6 +68598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai", + Comment = null, }, new() { @@ -62374,6 +68609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamki", + Comment = null, }, new() { @@ -62384,6 +68620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Atayal", + Comment = null, }, new() { @@ -62394,6 +68631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tocho", + Comment = null, }, new() { @@ -62404,6 +68642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aikanã", + Comment = null, }, new() { @@ -62414,6 +68653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takia", + Comment = null, }, new() { @@ -62424,6 +68664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaki Ae", + Comment = null, }, new() { @@ -62434,6 +68675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanimbili", + Comment = null, }, new() { @@ -62444,6 +68686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mandara", + Comment = null, }, new() { @@ -62454,6 +68697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Tairora", + Comment = null, }, new() { @@ -62464,6 +68708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dharawal", + Comment = null, }, new() { @@ -62474,6 +68719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaam", + Comment = null, }, new() { @@ -62484,6 +68730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiang", + Comment = null, }, new() { @@ -62494,6 +68741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Calamian Tagbanwa", + Comment = null, }, new() { @@ -62504,6 +68752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tboli", + Comment = null, }, new() { @@ -62514,6 +68763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagbu", + Comment = null, }, new() { @@ -62524,6 +68774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Barro Negro Tunebo", + Comment = null, }, new() { @@ -62534,6 +68785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawala", + Comment = null, }, new() { @@ -62544,6 +68796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taworta", + Comment = null, }, new() { @@ -62554,6 +68807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumtum", + Comment = null, }, new() { @@ -62564,6 +68818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanguat", + Comment = null, }, new() { @@ -62574,6 +68829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tembo (Kitembo)", + Comment = null, }, new() { @@ -62584,6 +68840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tubar", + Comment = null, }, new() { @@ -62594,6 +68851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobo", + Comment = null, }, new() { @@ -62604,6 +68862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagbanwa", + Comment = null, }, new() { @@ -62614,6 +68873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kapin", + Comment = null, }, new() { @@ -62624,6 +68884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabaru", + Comment = null, }, new() { @@ -62634,6 +68895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ditammari", + Comment = null, }, new() { @@ -62644,6 +68906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ticuna", + Comment = null, }, new() { @@ -62654,6 +68917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanacross", + Comment = null, }, new() { @@ -62664,6 +68928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Datooga", + Comment = null, }, new() { @@ -62674,6 +68939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tafi", + Comment = null, }, new() { @@ -62684,6 +68950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tutchone", + Comment = null, }, new() { @@ -62694,6 +68961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malinaltepec Me'phaa", + Comment = null, }, new() { @@ -62704,6 +68972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamagario", + Comment = null, }, new() { @@ -62714,6 +68983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turks And Caicos Creole English", + Comment = null, }, new() { @@ -62724,6 +68994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wára", + Comment = null, }, new() { @@ -62734,6 +69005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tchitchege", + Comment = null, }, new() { @@ -62744,6 +69016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Taman (Myanmar)", + Comment = null, }, new() { @@ -62754,6 +69027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanahmerah", + Comment = null, }, new() { @@ -62764,6 +69038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tichurong", + Comment = null, }, new() { @@ -62774,6 +69049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taungyo", + Comment = null, }, new() { @@ -62784,6 +69060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawr Chin", + Comment = null, }, new() { @@ -62794,6 +69071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaiy", + Comment = null, }, new() { @@ -62804,6 +69082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torres Strait Creole", + Comment = null, }, new() { @@ -62814,6 +69093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "T'en", + Comment = null, }, new() { @@ -62824,6 +69104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Tarahumara", + Comment = null, }, new() { @@ -62834,6 +69115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tecpatlán Totonac", + Comment = null, }, new() { @@ -62844,6 +69126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toda", + Comment = null, }, new() { @@ -62854,6 +69137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulu", + Comment = null, }, new() { @@ -62864,6 +69148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thado Chin", + Comment = null, }, new() { @@ -62874,6 +69159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagdal", + Comment = null, }, new() { @@ -62884,6 +69170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Panchpargania", + Comment = null, }, new() { @@ -62894,6 +69181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Emberá-Tadó", + Comment = null, }, new() { @@ -62904,6 +69192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Nüa", + Comment = null, }, new() { @@ -62914,6 +69203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiranige Diga Dogon", + Comment = null, }, new() { @@ -62924,6 +69214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talieng", + Comment = null, }, new() { @@ -62934,6 +69225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tamang", + Comment = null, }, new() { @@ -62944,6 +69236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thulung", + Comment = null, }, new() { @@ -62954,6 +69247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomadino", + Comment = null, }, new() { @@ -62964,6 +69258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajio", + Comment = null, }, new() { @@ -62974,6 +69269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tambas", + Comment = null, }, new() { @@ -62984,6 +69280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sur", + Comment = null, }, new() { @@ -62994,6 +69291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taruma", + Comment = null, }, new() { @@ -63004,6 +69302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tondano", + Comment = null, }, new() { @@ -63014,6 +69313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teme", + Comment = null, }, new() { @@ -63024,6 +69324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tita", + Comment = null, }, new() { @@ -63034,6 +69335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Todrah", + Comment = null, }, new() { @@ -63044,6 +69346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doutai", + Comment = null, }, new() { @@ -63054,6 +69357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetun Dili", + Comment = null, }, new() { @@ -63064,6 +69368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toro", + Comment = null, }, new() { @@ -63074,6 +69379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tandroy-Mahafaly Malagasy", + Comment = null, }, new() { @@ -63084,6 +69390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tadyawan", + Comment = null, }, new() { @@ -63094,6 +69401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temiar", + Comment = null, }, new() { @@ -63104,6 +69412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tetete", + Comment = null, }, new() { @@ -63114,6 +69423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Terik", + Comment = null, }, new() { @@ -63124,6 +69434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tepo Krumen", + Comment = null, }, new() { @@ -63134,6 +69445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huehuetla Tepehua", + Comment = null, }, new() { @@ -63144,6 +69456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teressa", + Comment = null, }, new() { @@ -63154,6 +69467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Tege", + Comment = null, }, new() { @@ -63164,6 +69478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tehuelche", + Comment = null, }, new() { @@ -63174,6 +69489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torricelli", + Comment = null, }, new() { @@ -63184,6 +69500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ibali Teke", + Comment = null, }, new() { @@ -63194,6 +69511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Telugu", + Comment = null, }, new() { @@ -63204,6 +69522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Timne", + Comment = null, }, new() { @@ -63214,6 +69533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tama (Colombia)", + Comment = null, }, new() { @@ -63224,6 +69544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teso", + Comment = null, }, new() { @@ -63234,6 +69555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tepecano", + Comment = null, }, new() { @@ -63244,6 +69566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temein", + Comment = null, }, new() { @@ -63254,6 +69577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tereno", + Comment = null, }, new() { @@ -63264,6 +69588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tengger", + Comment = null, }, new() { @@ -63274,6 +69599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetum", + Comment = null, }, new() { @@ -63284,6 +69610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soo", + Comment = null, }, new() { @@ -63294,6 +69621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teor", + Comment = null, }, new() { @@ -63304,6 +69632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tewa (USA)", + Comment = null, }, new() { @@ -63314,6 +69643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tennet", + Comment = null, }, new() { @@ -63324,6 +69654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulishi", + Comment = null, }, new() { @@ -63334,6 +69665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetserret", + Comment = null, }, new() { @@ -63344,6 +69676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tofin Gbe", + Comment = null, }, new() { @@ -63354,6 +69687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanaina", + Comment = null, }, new() { @@ -63364,6 +69698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tefaro", + Comment = null, }, new() { @@ -63374,6 +69709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teribe", + Comment = null, }, new() { @@ -63384,6 +69720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ternate", + Comment = null, }, new() { @@ -63394,6 +69731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sagalla", + Comment = null, }, new() { @@ -63404,6 +69742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobilung", + Comment = null, }, new() { @@ -63414,6 +69753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigak", + Comment = null, }, new() { @@ -63424,6 +69764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ciwogai", + Comment = null, }, new() { @@ -63434,6 +69775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Gorkha Tamang", + Comment = null, }, new() { @@ -63444,6 +69786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chalikha", + Comment = null, }, new() { @@ -63454,6 +69797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobagonian Creole English", + Comment = null, }, new() { @@ -63464,6 +69808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lawunuia", + Comment = null, }, new() { @@ -63474,6 +69819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagin", + Comment = null, }, new() { @@ -63484,6 +69830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajik", + Comment = null, }, new() { @@ -63494,6 +69841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagalog", + Comment = null, }, new() { @@ -63504,6 +69852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tandaganon", + Comment = null, }, new() { @@ -63514,6 +69863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sudest", + Comment = null, }, new() { @@ -63524,6 +69874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangoa", + Comment = null, }, new() { @@ -63534,6 +69885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tring", + Comment = null, }, new() { @@ -63544,6 +69896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tareng", + Comment = null, }, new() { @@ -63554,6 +69907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nume", + Comment = null, }, new() { @@ -63564,6 +69918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Tagbanwa", + Comment = null, }, new() { @@ -63574,6 +69929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanggu", + Comment = null, }, new() { @@ -63584,6 +69940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tingui-Boto", + Comment = null, }, new() { @@ -63594,6 +69951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagwana Senoufo", + Comment = null, }, new() { @@ -63604,6 +69962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tagish", + Comment = null, }, new() { @@ -63614,6 +69973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Togoyo", + Comment = null, }, new() { @@ -63624,6 +69984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tagalaka", + Comment = null, }, new() { @@ -63634,6 +69995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai", + Comment = null, }, new() { @@ -63644,6 +70006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuuk Thaayorre", + Comment = null, }, new() { @@ -63654,6 +70017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chitwania Tharu", + Comment = null, }, new() { @@ -63664,6 +70028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thangmi", + Comment = null, }, new() { @@ -63674,6 +70039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tarahumara", + Comment = null, }, new() { @@ -63684,6 +70050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Long", + Comment = null, }, new() { @@ -63694,6 +70061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tharaka", + Comment = null, }, new() { @@ -63704,6 +70072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dangaura Tharu", + Comment = null, }, new() { @@ -63714,6 +70083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aheu", + Comment = null, }, new() { @@ -63724,6 +70094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thachanadan", + Comment = null, }, new() { @@ -63734,6 +70105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thompson", + Comment = null, }, new() { @@ -63744,6 +70116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kochila Tharu", + Comment = null, }, new() { @@ -63754,6 +70127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rana Tharu", + Comment = null, }, new() { @@ -63764,6 +70138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thakali", + Comment = null, }, new() { @@ -63774,6 +70149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahltan", + Comment = null, }, new() { @@ -63784,6 +70160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thuri", + Comment = null, }, new() { @@ -63794,6 +70171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tahaggart Tamahaq", + Comment = null, }, new() { @@ -63804,6 +70182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tha", + Comment = null, }, new() { @@ -63814,6 +70193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tayart Tamajeq", + Comment = null, }, new() { @@ -63824,6 +70204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tidikelt Tamazight", + Comment = null, }, new() { @@ -63834,6 +70215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tira", + Comment = null, }, new() { @@ -63844,6 +70226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tifal", + Comment = null, }, new() { @@ -63854,6 +70237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigre", + Comment = null, }, new() { @@ -63864,6 +70248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Timugon Murut", + Comment = null, }, new() { @@ -63874,6 +70259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiene", + Comment = null, }, new() { @@ -63884,6 +70270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tilung", + Comment = null, }, new() { @@ -63894,6 +70281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tikar", + Comment = null, }, new() { @@ -63904,6 +70292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tillamook", + Comment = null, }, new() { @@ -63914,6 +70303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Timbe", + Comment = null, }, new() { @@ -63924,6 +70314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tindi", + Comment = null, }, new() { @@ -63934,6 +70325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teop", + Comment = null, }, new() { @@ -63944,6 +70336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trimuris", + Comment = null, }, new() { @@ -63954,6 +70347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiéfo", + Comment = null, }, new() { @@ -63964,6 +70358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tigrinya", + Comment = null, }, new() { @@ -63974,6 +70369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Masadiit Itneg", + Comment = null, }, new() { @@ -63984,6 +70380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tinigua", + Comment = null, }, new() { @@ -63994,6 +70391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adasen", + Comment = null, }, new() { @@ -64004,6 +70402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiv", + Comment = null, }, new() { @@ -64014,6 +70413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiwi", + Comment = null, }, new() { @@ -64024,6 +70424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tiwa", + Comment = null, }, new() { @@ -64034,6 +70435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiruray", + Comment = null, }, new() { @@ -64044,6 +70446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Hongjin", + Comment = null, }, new() { @@ -64054,6 +70457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tajuasohn", + Comment = null, }, new() { @@ -64064,6 +70468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunjung", + Comment = null, }, new() { @@ -64074,6 +70479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tujia", + Comment = null, }, new() { @@ -64084,6 +70490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tjungundji", + Comment = null, }, new() { @@ -64094,6 +70501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Laing", + Comment = null, }, new() { @@ -64104,6 +70512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Timucua", + Comment = null, }, new() { @@ -64114,6 +70523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tonjon", + Comment = null, }, new() { @@ -64124,6 +70534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temacine Tamazight", + Comment = null, }, new() { @@ -64134,6 +70545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tjupany", + Comment = null, }, new() { @@ -64144,6 +70556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Tujia", + Comment = null, }, new() { @@ -64154,6 +70567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tjurruru", + Comment = null, }, new() { @@ -64164,6 +70578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Djabwurrung", + Comment = null, }, new() { @@ -64174,6 +70589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Truká", + Comment = null, }, new() { @@ -64184,6 +70600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buksa", + Comment = null, }, new() { @@ -64194,6 +70611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukudede", + Comment = null, }, new() { @@ -64204,6 +70622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takwane", + Comment = null, }, new() { @@ -64214,6 +70633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tukumanféd", + Comment = null, }, new() { @@ -64224,6 +70644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tesaka Malagasy", + Comment = null, }, new() { @@ -64234,6 +70655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tokelau", + Comment = null, }, new() { @@ -64244,6 +70666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Takelma", + Comment = null, }, new() { @@ -64254,6 +70677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toku-No-Shima", + Comment = null, }, new() { @@ -64264,6 +70688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tikopia", + Comment = null, }, new() { @@ -64274,6 +70699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tee", + Comment = null, }, new() { @@ -64284,6 +70710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsakhur", + Comment = null, }, new() { @@ -64294,6 +70721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takestani", + Comment = null, }, new() { @@ -64304,6 +70732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kathoriya Tharu", + Comment = null, }, new() { @@ -64314,6 +70743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Necaxa Totonac", + Comment = null, }, new() { @@ -64324,6 +70754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mur Pano", + Comment = null, }, new() { @@ -64334,6 +70765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teanu", + Comment = null, }, new() { @@ -64344,6 +70776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangko", + Comment = null, }, new() { @@ -64354,6 +70787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Takua", + Comment = null, }, new() { @@ -64364,6 +70798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Tepehuan", + Comment = null, }, new() { @@ -64374,6 +70809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobelo", + Comment = null, }, new() { @@ -64384,6 +70820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yecuatla Totonac", + Comment = null, }, new() { @@ -64394,6 +70831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talaud", + Comment = null, }, new() { @@ -64404,6 +70842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Telefol", + Comment = null, }, new() { @@ -64414,6 +70853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tofanma", + Comment = null, }, new() { @@ -64424,6 +70864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Klingon", + Comment = null, }, new() { @@ -64434,6 +70875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlingit", + Comment = null, }, new() { @@ -64444,6 +70886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talinga-Bwisi", + Comment = null, }, new() { @@ -64454,6 +70897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taloki", + Comment = null, }, new() { @@ -64464,6 +70908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tetela", + Comment = null, }, new() { @@ -64474,6 +70919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tolomako", + Comment = null, }, new() { @@ -64484,6 +70930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talondo'", + Comment = null, }, new() { @@ -64494,6 +70941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talodi", + Comment = null, }, new() { @@ -64504,6 +70952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Filomena Mata-Coahuitlán Totonac", + Comment = null, }, new() { @@ -64514,6 +70963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Loi", + Comment = null, }, new() { @@ -64524,6 +70974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talise", + Comment = null, }, new() { @@ -64534,6 +70985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tambotalo", + Comment = null, }, new() { @@ -64544,6 +70996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sou Nama", + Comment = null, }, new() { @@ -64554,6 +71007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulehu", + Comment = null, }, new() { @@ -64564,6 +71018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taliabu", + Comment = null, }, new() { @@ -64574,6 +71029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khehek", + Comment = null, }, new() { @@ -64584,6 +71040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talysh", + Comment = null, }, new() { @@ -64594,6 +71051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tama (Chad)", + Comment = null, }, new() { @@ -64604,6 +71062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katbol", + Comment = null, }, new() { @@ -64614,6 +71073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumak", + Comment = null, }, new() { @@ -64624,6 +71084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Haruai", + Comment = null, }, new() { @@ -64634,6 +71095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tremembé", + Comment = null, }, new() { @@ -64644,6 +71106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toba-Maskoy", + Comment = null, }, new() { @@ -64654,6 +71117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ternateño", + Comment = null, }, new() { @@ -64664,6 +71128,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Tamashek", + Comment = null, }, new() { @@ -64674,6 +71139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tutuba", + Comment = null, }, new() { @@ -64684,6 +71150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samarokena", + Comment = null, }, new() { @@ -64694,6 +71161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamnim Citak", + Comment = null, }, new() { @@ -64704,6 +71172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Thanh", + Comment = null, }, new() { @@ -64714,6 +71183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taman (Indonesia)", + Comment = null, }, new() { @@ -64724,6 +71194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temoq", + Comment = null, }, new() { @@ -64734,6 +71205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumleo", + Comment = null, }, new() { @@ -64744,6 +71216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jewish Babylonian Aramaic (ca. 200-1200 CE)", + Comment = null, }, new() { @@ -64754,6 +71227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tima", + Comment = null, }, new() { @@ -64764,6 +71238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tasmate", + Comment = null, }, new() { @@ -64774,6 +71249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iau", + Comment = null, }, new() { @@ -64784,6 +71260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tembo (Motembo)", + Comment = null, }, new() { @@ -64794,6 +71271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Temuan", + Comment = null, }, new() { @@ -64804,6 +71282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tami", + Comment = null, }, new() { @@ -64814,6 +71293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tamanaku", + Comment = null, }, new() { @@ -64824,6 +71304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tacana", + Comment = null, }, new() { @@ -64834,6 +71315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tunebo", + Comment = null, }, new() { @@ -64844,6 +71326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanimuca-Retuarã", + Comment = null, }, new() { @@ -64854,6 +71337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angosturas Tunebo", + Comment = null, }, new() { @@ -64864,6 +71348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobanga", + Comment = null, }, new() { @@ -64874,6 +71359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiani", + Comment = null, }, new() { @@ -64884,6 +71370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tandia", + Comment = null, }, new() { @@ -64894,6 +71381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwamera", + Comment = null, }, new() { @@ -64904,6 +71392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lenakel", + Comment = null, }, new() { @@ -64914,6 +71403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabla", + Comment = null, }, new() { @@ -64924,6 +71414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Tanna", + Comment = null, }, new() { @@ -64934,6 +71425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toromono", + Comment = null, }, new() { @@ -64944,6 +71436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Whitesands", + Comment = null, }, new() { @@ -64954,6 +71447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Taino", + Comment = null, }, new() { @@ -64964,6 +71458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ménik", + Comment = null, }, new() { @@ -64974,6 +71469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenis", + Comment = null, }, new() { @@ -64984,6 +71480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tontemboan", + Comment = null, }, new() { @@ -64994,6 +71491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tay Khang", + Comment = null, }, new() { @@ -65004,6 +71502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tangchangya", + Comment = null, }, new() { @@ -65014,6 +71513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonsawang", + Comment = null, }, new() { @@ -65024,6 +71524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanema", + Comment = null, }, new() { @@ -65034,6 +71535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tongwe", + Comment = null, }, new() { @@ -65044,6 +71546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ten'edn", + Comment = null, }, new() { @@ -65054,6 +71557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toba", + Comment = null, }, new() { @@ -65064,6 +71568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coyutla Totonac", + Comment = null, }, new() { @@ -65074,6 +71579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toma", + Comment = null, }, new() { @@ -65084,6 +71590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gizrra", + Comment = null, }, new() { @@ -65094,6 +71601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Nyasa)", + Comment = null, }, new() { @@ -65104,6 +71612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gitonga", + Comment = null, }, new() { @@ -65114,6 +71623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Zambia)", + Comment = null, }, new() { @@ -65124,6 +71634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tojolabal", + Comment = null, }, new() { @@ -65134,6 +71645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Toki Pona", + Comment = null, }, new() { @@ -65144,6 +71656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tolowa", + Comment = null, }, new() { @@ -65154,6 +71667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tombulu", + Comment = null, }, new() { @@ -65164,6 +71678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonga (Tonga Islands)", + Comment = null, }, new() { @@ -65174,6 +71689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xicotepec De Juárez Totonac", + Comment = null, }, new() { @@ -65184,6 +71700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Papantla Totonac", + Comment = null, }, new() { @@ -65194,6 +71711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toposa", + Comment = null, }, new() { @@ -65204,6 +71722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Togbo-Vara Banda", + Comment = null, }, new() { @@ -65214,6 +71733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Highland Totonac", + Comment = null, }, new() { @@ -65224,6 +71744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tho", + Comment = null, }, new() { @@ -65234,6 +71755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Taromi", + Comment = null, }, new() { @@ -65244,6 +71766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jemez", + Comment = null, }, new() { @@ -65254,6 +71777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobian", + Comment = null, }, new() { @@ -65264,6 +71788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Topoiyo", + Comment = null, }, new() { @@ -65274,6 +71799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "To", + Comment = null, }, new() { @@ -65284,6 +71810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taupota", + Comment = null, }, new() { @@ -65294,6 +71821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Azoyú Me'phaa", + Comment = null, }, new() { @@ -65304,6 +71832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tippera", + Comment = null, }, new() { @@ -65314,6 +71843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarpia", + Comment = null, }, new() { @@ -65324,6 +71854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kula", + Comment = null, }, new() { @@ -65334,6 +71865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tok Pisin", + Comment = null, }, new() { @@ -65344,6 +71876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tapieté", + Comment = null, }, new() { @@ -65354,6 +71887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tupinikin", + Comment = null, }, new() { @@ -65364,6 +71898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlacoapa Me'phaa", + Comment = null, }, new() { @@ -65374,6 +71909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tampulma", + Comment = null, }, new() { @@ -65384,6 +71920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tupinambá", + Comment = null, }, new() { @@ -65394,6 +71931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Pao", + Comment = null, }, new() { @@ -65404,6 +71942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pisaflores Tepehua", + Comment = null, }, new() { @@ -65414,6 +71953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tukpa", + Comment = null, }, new() { @@ -65424,6 +71964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuparí", + Comment = null, }, new() { @@ -65434,6 +71975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlachichilco Tepehua", + Comment = null, }, new() { @@ -65444,6 +71986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tampuan", + Comment = null, }, new() { @@ -65454,6 +71997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanapag", + Comment = null, }, new() { @@ -65464,6 +72008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Acatepec Me'phaa", + Comment = null, }, new() { @@ -65474,6 +72019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trumai", + Comment = null, }, new() { @@ -65484,6 +72030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tinputz", + Comment = null, }, new() { @@ -65494,6 +72041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tembé", + Comment = null, }, new() { @@ -65504,6 +72052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lehali", + Comment = null, }, new() { @@ -65514,6 +72063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turumsa", + Comment = null, }, new() { @@ -65524,6 +72074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenino", + Comment = null, }, new() { @@ -65534,6 +72085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toaripi", + Comment = null, }, new() { @@ -65544,6 +72096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomoip", + Comment = null, }, new() { @@ -65554,6 +72107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunni", + Comment = null, }, new() { @@ -65564,6 +72118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Torona", + Comment = null, }, new() { @@ -65574,6 +72129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Totonac", + Comment = null, }, new() { @@ -65584,6 +72140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Touo", + Comment = null, }, new() { @@ -65594,6 +72151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tonkawa", + Comment = null, }, new() { @@ -65604,6 +72162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tirahi", + Comment = null, }, new() { @@ -65614,6 +72173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Terebu", + Comment = null, }, new() { @@ -65624,6 +72184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Copala Triqui", + Comment = null, }, new() { @@ -65634,6 +72195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turi", + Comment = null, }, new() { @@ -65644,6 +72206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Tarangan", + Comment = null, }, new() { @@ -65654,6 +72217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trinidadian Creole English", + Comment = null, }, new() { @@ -65664,6 +72228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lishán Didán", + Comment = null, }, new() { @@ -65674,6 +72239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turaka", + Comment = null, }, new() { @@ -65684,6 +72250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trió", + Comment = null, }, new() { @@ -65694,6 +72261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toram", + Comment = null, }, new() { @@ -65704,6 +72272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Traveller Scottish", + Comment = null, }, new() { @@ -65714,6 +72283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tregami", + Comment = null, }, new() { @@ -65724,6 +72294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Trinitario", + Comment = null, }, new() { @@ -65734,6 +72305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarao Naga", + Comment = null, }, new() { @@ -65744,6 +72316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kok Borok", + Comment = null, }, new() { @@ -65754,6 +72327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Martín Itunyoso Triqui", + Comment = null, }, new() { @@ -65764,6 +72338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taushiro", + Comment = null, }, new() { @@ -65774,6 +72349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chicahuaxtla Triqui", + Comment = null, }, new() { @@ -65784,6 +72360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunggare", + Comment = null, }, new() { @@ -65794,6 +72371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turoyo", + Comment = null, }, new() { @@ -65804,6 +72382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sediq", + Comment = null, }, new() { @@ -65814,6 +72393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torwali", + Comment = null, }, new() { @@ -65824,6 +72404,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tringgus-Sembaan Bidayuh", + Comment = null, }, new() { @@ -65834,6 +72415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Turung", + Comment = null, }, new() { @@ -65844,6 +72426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Torá", + Comment = null, }, new() { @@ -65854,6 +72437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsaangi", + Comment = null, }, new() { @@ -65864,6 +72448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsamai", + Comment = null, }, new() { @@ -65874,6 +72459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswa", + Comment = null, }, new() { @@ -65884,6 +72470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsakonian", + Comment = null, }, new() { @@ -65894,6 +72481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunisian Sign Language", + Comment = null, }, new() { @@ -65904,6 +72492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tausug", + Comment = null, }, new() { @@ -65914,6 +72503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsuvan", + Comment = null, }, new() { @@ -65924,6 +72514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsimshian", + Comment = null, }, new() { @@ -65934,6 +72525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tshangla", + Comment = null, }, new() { @@ -65944,6 +72536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tseku", + Comment = null, }, new() { @@ -65954,6 +72547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ts'ün-Lao", + Comment = null, }, new() { @@ -65964,6 +72558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkish Sign Language", + Comment = null, }, new() { @@ -65974,6 +72569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswana", + Comment = null, }, new() { @@ -65984,6 +72580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsonga", + Comment = null, }, new() { @@ -65994,6 +72591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Toussian", + Comment = null, }, new() { @@ -66004,6 +72602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thai Sign Language", + Comment = null, }, new() { @@ -66014,6 +72613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Akei", + Comment = null, }, new() { @@ -66024,6 +72624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taiwan Sign Language", + Comment = null, }, new() { @@ -66034,6 +72635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tondi Songway Kiini", + Comment = null, }, new() { @@ -66044,6 +72646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsou", + Comment = null, }, new() { @@ -66054,6 +72657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsogo", + Comment = null, }, new() { @@ -66064,6 +72668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsishingini", + Comment = null, }, new() { @@ -66074,6 +72679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mubami", + Comment = null, }, new() { @@ -66084,6 +72690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tebul Sign Language", + Comment = null, }, new() { @@ -66094,6 +72701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Purepecha", + Comment = null, }, new() { @@ -66104,6 +72712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tutelo", + Comment = null, }, new() { @@ -66114,6 +72723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gaa", + Comment = null, }, new() { @@ -66124,6 +72734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tektiteko", + Comment = null, }, new() { @@ -66134,6 +72745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tauade", + Comment = null, }, new() { @@ -66144,6 +72756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bwanabwana", + Comment = null, }, new() { @@ -66154,6 +72767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuotomb", + Comment = null, }, new() { @@ -66164,6 +72778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tutong", + Comment = null, }, new() { @@ -66174,6 +72789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Upper Ta'oih", + Comment = null, }, new() { @@ -66184,6 +72800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tobati", + Comment = null, }, new() { @@ -66194,6 +72811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tooro", + Comment = null, }, new() { @@ -66204,6 +72822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totoro", + Comment = null, }, new() { @@ -66214,6 +72833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totela", + Comment = null, }, new() { @@ -66224,6 +72844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tutchone", + Comment = null, }, new() { @@ -66234,6 +72855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Towei", + Comment = null, }, new() { @@ -66244,6 +72866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lower Ta'oih", + Comment = null, }, new() { @@ -66254,6 +72877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tombelala", + Comment = null, }, new() { @@ -66264,6 +72888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawallammat Tamajaq", + Comment = null, }, new() { @@ -66274,6 +72899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tera", + Comment = null, }, new() { @@ -66284,6 +72910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northeastern Thai", + Comment = null, }, new() { @@ -66294,6 +72921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muslim Tat", + Comment = null, }, new() { @@ -66304,6 +72932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Torau", + Comment = null, }, new() { @@ -66314,6 +72943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Titan", + Comment = null, }, new() { @@ -66324,6 +72954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Long Wat", + Comment = null, }, new() { @@ -66334,6 +72965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sikaritai", + Comment = null, }, new() { @@ -66344,6 +72976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsum", + Comment = null, }, new() { @@ -66354,6 +72987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wiarumus", + Comment = null, }, new() { @@ -66364,6 +72998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tübatulabal", + Comment = null, }, new() { @@ -66374,6 +73009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mutu", + Comment = null, }, new() { @@ -66384,6 +73020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tuxá", + Comment = null, }, new() { @@ -66394,6 +73031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuyuca", + Comment = null, }, new() { @@ -66404,6 +73042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Tunebo", + Comment = null, }, new() { @@ -66414,6 +73053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunia", + Comment = null, }, new() { @@ -66424,6 +73064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taulil", + Comment = null, }, new() { @@ -66434,6 +73075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tupuri", + Comment = null, }, new() { @@ -66444,6 +73086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tugutil", + Comment = null, }, new() { @@ -66454,6 +73097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkmen", + Comment = null, }, new() { @@ -66464,6 +73108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tula", + Comment = null, }, new() { @@ -66474,6 +73119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tumbuka", + Comment = null, }, new() { @@ -66484,6 +73130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunica", + Comment = null, }, new() { @@ -66494,6 +73141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tucano", + Comment = null, }, new() { @@ -66504,6 +73152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tedaga", + Comment = null, }, new() { @@ -66514,6 +73163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkish", + Comment = null, }, new() { @@ -66524,6 +73174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuscarora", + Comment = null, }, new() { @@ -66534,6 +73185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tututni", + Comment = null, }, new() { @@ -66544,6 +73196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turkana", + Comment = null, }, new() { @@ -66554,6 +73207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tuxináwa", + Comment = null, }, new() { @@ -66564,6 +73218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tugen", + Comment = null, }, new() { @@ -66574,6 +73229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Turka", + Comment = null, }, new() { @@ -66584,6 +73240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaghua", + Comment = null, }, new() { @@ -66594,6 +73251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsuvadi", + Comment = null, }, new() { @@ -66604,6 +73262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Te'un", + Comment = null, }, new() { @@ -66614,6 +73273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tulai", + Comment = null, }, new() { @@ -66624,6 +73284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Ambrym", + Comment = null, }, new() { @@ -66634,6 +73295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuvalu", + Comment = null, }, new() { @@ -66644,6 +73306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tela-Masbuar", + Comment = null, }, new() { @@ -66654,6 +73317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tavoyan", + Comment = null, }, new() { @@ -66664,6 +73328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tidore", + Comment = null, }, new() { @@ -66674,6 +73339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Taveta", + Comment = null, }, new() { @@ -66684,6 +73350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tutsa Naga", + Comment = null, }, new() { @@ -66694,6 +73361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tunen", + Comment = null, }, new() { @@ -66704,6 +73372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sedoa", + Comment = null, }, new() { @@ -66714,6 +73383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Taivoan", + Comment = null, }, new() { @@ -66724,6 +73394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Timor Pidgin", + Comment = null, }, new() { @@ -66734,6 +73405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Twana", + Comment = null, }, new() { @@ -66744,6 +73416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tawbuid", + Comment = null, }, new() { @@ -66754,6 +73427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Teshenawa", + Comment = null, }, new() { @@ -66764,6 +73438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twents", + Comment = null, }, new() { @@ -66774,6 +73449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tewa (Indonesia)", + Comment = null, }, new() { @@ -66784,6 +73460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tiwa", + Comment = null, }, new() { @@ -66794,6 +73471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tereweng", + Comment = null, }, new() { @@ -66804,6 +73482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Dón", + Comment = null, }, new() { @@ -66814,6 +73493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twi", + Comment = null, }, new() { @@ -66824,6 +73504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawara", + Comment = null, }, new() { @@ -66834,6 +73515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawang Monpa", + Comment = null, }, new() { @@ -66844,6 +73526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Twendi", + Comment = null, }, new() { @@ -66854,6 +73537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tswapong", + Comment = null, }, new() { @@ -66864,6 +73548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ere", + Comment = null, }, new() { @@ -66874,6 +73559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tasawaq", + Comment = null, }, new() { @@ -66884,6 +73570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Tarahumara", + Comment = null, }, new() { @@ -66894,6 +73581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Turiwára", + Comment = null, }, new() { @@ -66904,6 +73592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Termanu", + Comment = null, }, new() { @@ -66914,6 +73603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuwari", + Comment = null, }, new() { @@ -66924,6 +73614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tewe", + Comment = null, }, new() { @@ -66934,6 +73625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawoyan", + Comment = null, }, new() { @@ -66944,6 +73636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tombonuo", + Comment = null, }, new() { @@ -66954,6 +73647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tokharian B", + Comment = null, }, new() { @@ -66964,6 +73658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tsetsaut", + Comment = null, }, new() { @@ -66974,6 +73669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totoli", + Comment = null, }, new() { @@ -66984,6 +73680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tangut", + Comment = null, }, new() { @@ -66994,6 +73691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Thracian", + Comment = null, }, new() { @@ -67004,6 +73702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ikpeng", + Comment = null, }, new() { @@ -67014,6 +73713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarjumo", + Comment = null, }, new() { @@ -67024,6 +73724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tomini", + Comment = null, }, new() { @@ -67034,6 +73735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Tarangan", + Comment = null, }, new() { @@ -67044,6 +73746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Toto", + Comment = null, }, new() { @@ -67054,6 +73757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tii", + Comment = null, }, new() { @@ -67064,6 +73768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tartessian", + Comment = null, }, new() { @@ -67074,6 +73779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tonsea", + Comment = null, }, new() { @@ -67084,6 +73790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Citak", + Comment = null, }, new() { @@ -67094,6 +73801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayapó", + Comment = null, }, new() { @@ -67104,6 +73812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tatana", + Comment = null, }, new() { @@ -67114,6 +73823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanosy Malagasy", + Comment = null, }, new() { @@ -67124,6 +73834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tauya", + Comment = null, }, new() { @@ -67134,6 +73845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kyanga", + Comment = null, }, new() { @@ -67144,6 +73856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "O'du", + Comment = null, }, new() { @@ -67154,6 +73867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Tsaayi", + Comment = null, }, new() { @@ -67164,6 +73878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Do", + Comment = null, }, new() { @@ -67174,6 +73889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thu Lao", + Comment = null, }, new() { @@ -67184,6 +73900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kombai", + Comment = null, }, new() { @@ -67194,6 +73911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Thaypan", + Comment = null, }, new() { @@ -67204,6 +73922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tai Daeng", + Comment = null, }, new() { @@ -67214,6 +73933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tày Sa Pa", + Comment = null, }, new() { @@ -67224,6 +73944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tày Tac", + Comment = null, }, new() { @@ -67234,6 +73955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kua", + Comment = null, }, new() { @@ -67244,6 +73966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tuvinian", + Comment = null, }, new() { @@ -67254,6 +73977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Teke-Tyee", + Comment = null, }, new() { @@ -67264,6 +73988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tiyaa", + Comment = null, }, new() { @@ -67274,6 +73999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tày", + Comment = null, }, new() { @@ -67284,6 +74010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanzanian Sign Language", + Comment = null, }, new() { @@ -67294,6 +74021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tzeltal", + Comment = null, }, new() { @@ -67304,6 +74032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tz'utujil", + Comment = null, }, new() { @@ -67314,6 +74043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Talossan", + Comment = null, }, new() { @@ -67324,6 +74054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Atlas Tamazight", + Comment = null, }, new() { @@ -67334,6 +74065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tugun", + Comment = null, }, new() { @@ -67344,6 +74076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tzotzil", + Comment = null, }, new() { @@ -67354,6 +74087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabriak", + Comment = null, }, new() { @@ -67364,6 +74098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Uamué", + Comment = null, }, new() { @@ -67374,6 +74109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuan", + Comment = null, }, new() { @@ -67384,6 +74120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tairuma", + Comment = null, }, new() { @@ -67394,6 +74131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubang", + Comment = null, }, new() { @@ -67404,6 +74142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubi", + Comment = null, }, new() { @@ -67414,6 +74153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buhi'non Bikol", + Comment = null, }, new() { @@ -67424,6 +74164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ubir", + Comment = null, }, new() { @@ -67434,6 +74175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umbu-Ungu", + Comment = null, }, new() { @@ -67444,6 +74186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ubykh", + Comment = null, }, new() { @@ -67454,6 +74197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uda", + Comment = null, }, new() { @@ -67464,6 +74208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Udihe", + Comment = null, }, new() { @@ -67474,6 +74219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muduga", + Comment = null, }, new() { @@ -67484,6 +74230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Udi", + Comment = null, }, new() { @@ -67494,6 +74241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ujir", + Comment = null, }, new() { @@ -67504,6 +74252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wuzlam", + Comment = null, }, new() { @@ -67514,6 +74263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Udmurt", + Comment = null, }, new() { @@ -67524,6 +74274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uduk", + Comment = null, }, new() { @@ -67534,6 +74285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kioko", + Comment = null, }, new() { @@ -67544,6 +74296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ufim", + Comment = null, }, new() { @@ -67554,6 +74307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ugaritic", + Comment = null, }, new() { @@ -67564,6 +74318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuku-Ugbanh", + Comment = null, }, new() { @@ -67574,6 +74329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ughele", + Comment = null, }, new() { @@ -67584,6 +74340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kubachi", + Comment = null, }, new() { @@ -67594,6 +74351,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ugandan Sign Language", + Comment = null, }, new() { @@ -67604,6 +74362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ugong", + Comment = null, }, new() { @@ -67614,6 +74373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uruguayan Sign Language", + Comment = null, }, new() { @@ -67624,6 +74384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uhami", + Comment = null, }, new() { @@ -67634,6 +74395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Damal", + Comment = null, }, new() { @@ -67644,6 +74406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uighur", + Comment = null, }, new() { @@ -67654,6 +74417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uisai", + Comment = null, }, new() { @@ -67664,6 +74428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iyive", + Comment = null, }, new() { @@ -67674,6 +74439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanjijili", + Comment = null, }, new() { @@ -67684,6 +74450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaburi", + Comment = null, }, new() { @@ -67694,6 +74461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukuriguma", + Comment = null, }, new() { @@ -67704,6 +74472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukhwejo", + Comment = null, }, new() { @@ -67714,6 +74483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kui (India)", + Comment = null, }, new() { @@ -67724,6 +74494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muak Sa-aak", + Comment = null, }, new() { @@ -67734,6 +74505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukrainian Sign Language", + Comment = null, }, new() { @@ -67744,6 +74516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukpe-Bayobiri", + Comment = null, }, new() { @@ -67754,6 +74527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukwa", + Comment = null, }, new() { @@ -67764,6 +74538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukrainian", + Comment = null, }, new() { @@ -67774,6 +74549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urubú-Kaapor Sign Language", + Comment = null, }, new() { @@ -67784,6 +74560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukue", + Comment = null, }, new() { @@ -67794,6 +74571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuku", + Comment = null, }, new() { @@ -67804,6 +74582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukwuani-Aboh-Ndoni", + Comment = null, }, new() { @@ -67814,6 +74593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuuk-Yak", + Comment = null, }, new() { @@ -67824,6 +74604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Fungwa", + Comment = null, }, new() { @@ -67834,6 +74615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulukwumi", + Comment = null, }, new() { @@ -67844,6 +74626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulch", + Comment = null, }, new() { @@ -67854,6 +74637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lule", + Comment = null, }, new() { @@ -67864,6 +74648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usku", + Comment = null, }, new() { @@ -67874,6 +74659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulithian", + Comment = null, }, new() { @@ -67884,6 +74670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Meriam Mir", + Comment = null, }, new() { @@ -67894,6 +74681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ullatan", + Comment = null, }, new() { @@ -67904,6 +74692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulumanda'", + Comment = null, }, new() { @@ -67914,6 +74703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unserdeutsch", + Comment = null, }, new() { @@ -67924,6 +74714,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uma' Lung", + Comment = null, }, new() { @@ -67934,6 +74725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ulwa", + Comment = null, }, new() { @@ -67944,6 +74736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Buli", + Comment = null, }, new() { @@ -67954,6 +74747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umatilla", + Comment = null, }, new() { @@ -67964,6 +74758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umbundu", + Comment = null, }, new() { @@ -67974,6 +74769,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Marrucinian", + Comment = null, }, new() { @@ -67984,6 +74780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umbindhamu", + Comment = null, }, new() { @@ -67994,6 +74791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Morrobalama", + Comment = null, }, new() { @@ -68004,6 +74802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ukit", + Comment = null, }, new() { @@ -68014,6 +74813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umon", + Comment = null, }, new() { @@ -68024,6 +74824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makyan Naga", + Comment = null, }, new() { @@ -68034,6 +74835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umotína", + Comment = null, }, new() { @@ -68044,6 +74846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umpila", + Comment = null, }, new() { @@ -68054,6 +74857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umbugarla", + Comment = null, }, new() { @@ -68064,6 +74868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pendau", + Comment = null, }, new() { @@ -68074,6 +74879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munsee", + Comment = null, }, new() { @@ -68084,6 +74890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Watut", + Comment = null, }, new() { @@ -68094,6 +74901,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "Undetermined", + Comment = null, }, new() { @@ -68104,6 +74912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uneme", + Comment = null, }, new() { @@ -68114,6 +74923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngarinyin", + Comment = null, }, new() { @@ -68124,6 +74934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uni", + Comment = null, }, new() { @@ -68134,6 +74945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Enawené-Nawé", + Comment = null, }, new() { @@ -68144,6 +74956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Unami", + Comment = null, }, new() { @@ -68154,6 +74967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurnai", + Comment = null, }, new() { @@ -68164,6 +74978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mundari", + Comment = null, }, new() { @@ -68174,6 +74989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unubahe", + Comment = null, }, new() { @@ -68184,6 +75000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Munda", + Comment = null, }, new() { @@ -68194,6 +75011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unde Kaili", + Comment = null, }, new() { @@ -68204,6 +75022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kulon", + Comment = null, }, new() { @@ -68214,6 +75033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Umeda", + Comment = null, }, new() { @@ -68224,6 +75044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uripiv-Wala-Rano-Atchin", + Comment = null, }, new() { @@ -68234,6 +75055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urarina", + Comment = null, }, new() { @@ -68244,6 +75066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urubú-Kaapor", + Comment = null, }, new() { @@ -68254,6 +75077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Urningangg", + Comment = null, }, new() { @@ -68264,6 +75088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urdu", + Comment = null, }, new() { @@ -68274,6 +75099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uru", + Comment = null, }, new() { @@ -68284,6 +75110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Uradhi", + Comment = null, }, new() { @@ -68294,6 +75121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urigina", + Comment = null, }, new() { @@ -68304,6 +75132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urhobo", + Comment = null, }, new() { @@ -68314,6 +75143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urim", + Comment = null, }, new() { @@ -68324,6 +75154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urak Lawoi'", + Comment = null, }, new() { @@ -68334,6 +75165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urali", + Comment = null, }, new() { @@ -68344,6 +75176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urapmin", + Comment = null, }, new() { @@ -68354,6 +75187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uruangnirin", + Comment = null, }, new() { @@ -68364,6 +75198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ura (Papua New Guinea)", + Comment = null, }, new() { @@ -68374,6 +75209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uru-Pa-In", + Comment = null, }, new() { @@ -68384,6 +75220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lehalurup", + Comment = null, }, new() { @@ -68394,6 +75231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urat", + Comment = null, }, new() { @@ -68404,6 +75242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Urumi", + Comment = null, }, new() { @@ -68414,6 +75253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Uruava", + Comment = null, }, new() { @@ -68424,6 +75264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sop", + Comment = null, }, new() { @@ -68434,6 +75275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urimo", + Comment = null, }, new() { @@ -68444,6 +75286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Orya", + Comment = null, }, new() { @@ -68454,6 +75297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uru-Eu-Wau-Wau", + Comment = null, }, new() { @@ -68464,6 +75308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usarufa", + Comment = null, }, new() { @@ -68474,6 +75319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ushojo", + Comment = null, }, new() { @@ -68484,6 +75330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usui", + Comment = null, }, new() { @@ -68494,6 +75341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usaghade", + Comment = null, }, new() { @@ -68504,6 +75352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uspanteco", + Comment = null, }, new() { @@ -68514,6 +75363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "us-Saare", + Comment = null, }, new() { @@ -68524,6 +75374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uya", + Comment = null, }, new() { @@ -68534,6 +75385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Otank", + Comment = null, }, new() { @@ -68544,6 +75396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ute-Southern Paiute", + Comment = null, }, new() { @@ -68554,6 +75407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "ut-Hun", + Comment = null, }, new() { @@ -68564,6 +75418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amba (Solomon Islands)", + Comment = null, }, new() { @@ -68574,6 +75429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Etulo", + Comment = null, }, new() { @@ -68584,6 +75440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Utu", + Comment = null, }, new() { @@ -68594,6 +75451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Urum", + Comment = null, }, new() { @@ -68604,6 +75462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ura (Vanuatu)", + Comment = null, }, new() { @@ -68614,6 +75473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "U", + Comment = null, }, new() { @@ -68624,6 +75484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Uvean", + Comment = null, }, new() { @@ -68634,6 +75495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uri", + Comment = null, }, new() { @@ -68644,6 +75506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lote", + Comment = null, }, new() { @@ -68654,6 +75517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuku-Uwanh", + Comment = null, }, new() { @@ -68664,6 +75528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Doko-Uyanga", + Comment = null, }, new() { @@ -68674,6 +75539,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Uzbek", + Comment = null, }, new() { @@ -68684,6 +75550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Uzbek", + Comment = null, }, new() { @@ -68694,6 +75561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Uzbek", + Comment = null, }, new() { @@ -68704,6 +75572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaagri Booli", + Comment = null, }, new() { @@ -68714,6 +75583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vale", + Comment = null, }, new() { @@ -68724,6 +75594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vafsi", + Comment = null, }, new() { @@ -68734,6 +75605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vagla", + Comment = null, }, new() { @@ -68744,6 +75616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Varhadi-Nagpuri", + Comment = null, }, new() { @@ -68754,6 +75627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vai", + Comment = null, }, new() { @@ -68764,6 +75638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sekele", + Comment = null, }, new() { @@ -68774,6 +75649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vehes", + Comment = null, }, new() { @@ -68784,6 +75660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vanimo", + Comment = null, }, new() { @@ -68794,6 +75671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valman", + Comment = null, }, new() { @@ -68804,6 +75682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vao", + Comment = null, }, new() { @@ -68814,6 +75693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaiphei", + Comment = null, }, new() { @@ -68824,6 +75704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Huarijio", + Comment = null, }, new() { @@ -68834,6 +75715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vasavi", + Comment = null, }, new() { @@ -68844,6 +75726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vanuma", + Comment = null, }, new() { @@ -68854,6 +75737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Varli", + Comment = null, }, new() { @@ -68864,6 +75748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayu", + Comment = null, }, new() { @@ -68874,6 +75759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeast Babar", + Comment = null, }, new() { @@ -68884,6 +75770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southwestern Bontok", + Comment = null, }, new() { @@ -68894,6 +75781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venetian", + Comment = null, }, new() { @@ -68904,6 +75792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Veddah", + Comment = null, }, new() { @@ -68914,6 +75803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Veluws", + Comment = null, }, new() { @@ -68924,6 +75814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vemgo-Mabas", + Comment = null, }, new() { @@ -68934,6 +75825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venda", + Comment = null, }, new() { @@ -68944,6 +75836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ventureño", + Comment = null, }, new() { @@ -68954,6 +75847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Veps", + Comment = null, }, new() { @@ -68964,6 +75858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mom Jango", + Comment = null, }, new() { @@ -68974,6 +75869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vaghri", + Comment = null, }, new() { @@ -68984,6 +75880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vlaamse Gebarentaal", + Comment = null, }, new() { @@ -68994,6 +75891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Virgin Islands Creole English", + Comment = null, }, new() { @@ -69004,6 +75902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vidunda", + Comment = null, }, new() { @@ -69014,6 +75913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vietnamese", + Comment = null, }, new() { @@ -69024,6 +75924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vili", + Comment = null, }, new() { @@ -69034,6 +75935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Viemo", + Comment = null, }, new() { @@ -69044,6 +75946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vilela", + Comment = null, }, new() { @@ -69054,6 +75957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vinza", + Comment = null, }, new() { @@ -69064,6 +75968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vishavan", + Comment = null, }, new() { @@ -69074,6 +75979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Viti", + Comment = null, }, new() { @@ -69084,6 +75990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iduna", + Comment = null, }, new() { @@ -69094,6 +76001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bajjika", + Comment = null, }, new() { @@ -69104,6 +76012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kariyarra", + Comment = null, }, new() { @@ -69114,6 +76023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kujarge", + Comment = null, }, new() { @@ -69124,6 +76034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaur", + Comment = null, }, new() { @@ -69134,6 +76045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulisusu", + Comment = null, }, new() { @@ -69144,6 +76056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamakan", + Comment = null, }, new() { @@ -69154,6 +76067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro Nulu", + Comment = null, }, new() { @@ -69164,6 +76078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kodeoha", + Comment = null, }, new() { @@ -69174,6 +76089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korlai Creole Portuguese", + Comment = null, }, new() { @@ -69184,6 +76100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tenggarong Kutai Malay", + Comment = null, }, new() { @@ -69194,6 +76111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurrama", + Comment = null, }, new() { @@ -69204,6 +76122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koro Zuba", + Comment = null, }, new() { @@ -69214,6 +76133,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valpei", + Comment = null, }, new() { @@ -69224,6 +76144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vlaams", + Comment = null, }, new() { @@ -69234,6 +76155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Martuyhunira", + Comment = null, }, new() { @@ -69244,6 +76166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Barbaram", + Comment = null, }, new() { @@ -69254,6 +76177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Juxtlahuaca Mixtec", + Comment = null, }, new() { @@ -69264,6 +76188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mudu Koraga", + Comment = null, }, new() { @@ -69274,6 +76199,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Masela", + Comment = null, }, new() { @@ -69284,6 +76210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mainfränkisch", + Comment = null, }, new() { @@ -69294,6 +76221,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lungalunga", + Comment = null, }, new() { @@ -69304,6 +76232,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maraghei", + Comment = null, }, new() { @@ -69314,6 +76243,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Miwa", + Comment = null, }, new() { @@ -69324,6 +76254,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ixtayutla Mixtec", + Comment = null, }, new() { @@ -69334,6 +76265,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Shirima", + Comment = null, }, new() { @@ -69344,6 +76276,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Malgana", + Comment = null, }, new() { @@ -69354,6 +76287,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mitlatongo Mixtec", + Comment = null, }, new() { @@ -69364,6 +76298,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soyaltepec Mazatec", + Comment = null, }, new() { @@ -69374,6 +76309,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soyaltepec Mixtec", + Comment = null, }, new() { @@ -69384,6 +76320,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marenje", + Comment = null, }, new() { @@ -69394,6 +76331,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Moksela", + Comment = null, }, new() { @@ -69404,6 +76342,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Muluridyi", + Comment = null, }, new() { @@ -69414,6 +76353,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Valley Maidu", + Comment = null, }, new() { @@ -69424,6 +76364,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa", + Comment = null, }, new() { @@ -69434,6 +76375,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tamazola Mixtec", + Comment = null, }, new() { @@ -69444,6 +76386,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayautla Mazatec", + Comment = null, }, new() { @@ -69454,6 +76397,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazatlán Mazatec", + Comment = null, }, new() { @@ -69464,6 +76408,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vano", + Comment = null, }, new() { @@ -69474,6 +76419,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vinmavis", + Comment = null, }, new() { @@ -69484,6 +76430,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vunapu", + Comment = null, }, new() { @@ -69494,6 +76441,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Volapük", + Comment = null, }, new() { @@ -69504,6 +76452,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Voro", + Comment = null, }, new() { @@ -69514,6 +76463,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Votic", + Comment = null, }, new() { @@ -69524,6 +76474,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vera'a", + Comment = null, }, new() { @@ -69534,6 +76485,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Võro", + Comment = null, }, new() { @@ -69544,6 +76496,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Varisi", + Comment = null, }, new() { @@ -69554,6 +76507,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Burmbar", + Comment = null, }, new() { @@ -69564,6 +76518,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moldova Sign Language", + Comment = null, }, new() { @@ -69574,6 +76529,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Venezuelan Sign Language", + Comment = null, }, new() { @@ -69584,6 +76540,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Vedic Sanskrit", + Comment = null, }, new() { @@ -69594,6 +76551,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Valencian Sign Language", + Comment = null, }, new() { @@ -69604,6 +76562,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vitou", + Comment = null, }, new() { @@ -69614,6 +76573,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vumbu", + Comment = null, }, new() { @@ -69624,6 +76584,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vunjo", + Comment = null, }, new() { @@ -69634,6 +76595,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vute", + Comment = null, }, new() { @@ -69644,6 +76606,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awa (China)", + Comment = null, }, new() { @@ -69654,6 +76617,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walla Walla", + Comment = null, }, new() { @@ -69664,6 +76628,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wab", + Comment = null, }, new() { @@ -69674,6 +76639,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wasco-Wishram", + Comment = null, }, new() { @@ -69684,6 +76650,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wamesa", + Comment = null, }, new() { @@ -69694,6 +76661,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walser", + Comment = null, }, new() { @@ -69704,6 +76672,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wakoná", + Comment = null, }, new() { @@ -69714,6 +76683,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wa'ema", + Comment = null, }, new() { @@ -69724,6 +76694,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watubela", + Comment = null, }, new() { @@ -69734,6 +76705,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wares", + Comment = null, }, new() { @@ -69744,6 +76716,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waffa", + Comment = null, }, new() { @@ -69754,6 +76727,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolaytta", + Comment = null, }, new() { @@ -69764,6 +76738,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wampanoag", + Comment = null, }, new() { @@ -69774,6 +76749,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wan", + Comment = null, }, new() { @@ -69784,6 +76760,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wappo", + Comment = null, }, new() { @@ -69794,6 +76771,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wapishana", + Comment = null, }, new() { @@ -69804,6 +76782,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagiman", + Comment = null, }, new() { @@ -69814,6 +76793,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waray (Philippines)", + Comment = null, }, new() { @@ -69824,6 +76804,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Washo", + Comment = null, }, new() { @@ -69834,6 +76815,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaninuwa", + Comment = null, }, new() { @@ -69844,6 +76826,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waurá", + Comment = null, }, new() { @@ -69854,6 +76837,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waka", + Comment = null, }, new() { @@ -69864,6 +76848,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waiwai", + Comment = null, }, new() { @@ -69874,6 +76859,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watam", + Comment = null, }, new() { @@ -69884,6 +76870,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayana", + Comment = null, }, new() { @@ -69894,6 +76881,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wampur", + Comment = null, }, new() { @@ -69904,6 +76892,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warao", + Comment = null, }, new() { @@ -69914,6 +76903,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wabo", + Comment = null, }, new() { @@ -69924,6 +76914,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waritai", + Comment = null, }, new() { @@ -69934,6 +76925,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wara", + Comment = null, }, new() { @@ -69944,6 +76936,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanda", + Comment = null, }, new() { @@ -69954,6 +76947,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vwanji", + Comment = null, }, new() { @@ -69964,6 +76958,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alagwa", + Comment = null, }, new() { @@ -69974,6 +76969,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waigali", + Comment = null, }, new() { @@ -69984,6 +76980,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wakhi", + Comment = null, }, new() { @@ -69994,6 +76991,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wa", + Comment = null, }, new() { @@ -70004,6 +77002,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warlpiri", + Comment = null, }, new() { @@ -70014,6 +77013,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waddar", + Comment = null, }, new() { @@ -70024,6 +77024,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagdi", + Comment = null, }, new() { @@ -70034,6 +77035,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Bengal Sign Language", + Comment = null, }, new() { @@ -70044,6 +77046,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warnman", + Comment = null, }, new() { @@ -70054,6 +77057,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wajarri", + Comment = null, }, new() { @@ -70064,6 +77068,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woi", + Comment = null, }, new() { @@ -70074,6 +77079,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yanomámi", + Comment = null, }, new() { @@ -70084,6 +77090,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waci Gbe", + Comment = null, }, new() { @@ -70094,6 +77101,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wandji", + Comment = null, }, new() { @@ -70104,6 +77112,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wadaginam", + Comment = null, }, new() { @@ -70114,6 +77123,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wadjiginy", + Comment = null, }, new() { @@ -70124,6 +77134,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadikali", + Comment = null, }, new() { @@ -70134,6 +77145,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wendat", + Comment = null, }, new() { @@ -70144,6 +77156,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadjigu", + Comment = null, }, new() { @@ -70154,6 +77167,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadjabangayi", + Comment = null, }, new() { @@ -70164,6 +77178,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wewaw", + Comment = null, }, new() { @@ -70174,6 +77189,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wè Western", + Comment = null, }, new() { @@ -70184,6 +77200,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wedau", + Comment = null, }, new() { @@ -70194,6 +77211,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wergaia", + Comment = null, }, new() { @@ -70204,6 +77222,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weh", + Comment = null, }, new() { @@ -70214,6 +77233,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiunum", + Comment = null, }, new() { @@ -70224,6 +77244,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weme Gbe", + Comment = null, }, new() { @@ -70234,6 +77255,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wemale", + Comment = null, }, new() { @@ -70244,6 +77266,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Westphalien", + Comment = null, }, new() { @@ -70254,6 +77277,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Weri", + Comment = null, }, new() { @@ -70264,6 +77288,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cameroon Pidgin", + Comment = null, }, new() { @@ -70274,6 +77299,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Perai", + Comment = null, }, new() { @@ -70284,6 +77310,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rawngtu Chin", + Comment = null, }, new() { @@ -70294,6 +77321,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wejewa", + Comment = null, }, new() { @@ -70304,6 +77332,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yafi", + Comment = null, }, new() { @@ -70314,6 +77343,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wagaya", + Comment = null, }, new() { @@ -70324,6 +77354,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wagawaga", + Comment = null, }, new() { @@ -70334,6 +77365,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wangkangurru", + Comment = null, }, new() { @@ -70344,6 +77376,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wahgi", + Comment = null, }, new() { @@ -70354,6 +77387,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waigeo", + Comment = null, }, new() { @@ -70364,6 +77398,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wirangu", + Comment = null, }, new() { @@ -70374,6 +77409,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warrgamay", + Comment = null, }, new() { @@ -70384,6 +77420,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sou Upaa", + Comment = null, }, new() { @@ -70394,6 +77431,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Wahgi", + Comment = null, }, new() { @@ -70404,6 +77442,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wahau Kenyah", + Comment = null, }, new() { @@ -70414,6 +77453,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wahau Kayan", + Comment = null, }, new() { @@ -70424,6 +77464,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Toussian", + Comment = null, }, new() { @@ -70434,6 +77475,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wichita", + Comment = null, }, new() { @@ -70444,6 +77486,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wik-Epa", + Comment = null, }, new() { @@ -70454,6 +77497,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wik-Keyangan", + Comment = null, }, new() { @@ -70464,6 +77508,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik Ngathan", + Comment = null, }, new() { @@ -70474,6 +77519,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik-Me'anha", + Comment = null, }, new() { @@ -70484,6 +77530,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minidien", + Comment = null, }, new() { @@ -70494,6 +77541,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik-Iiyanh", + Comment = null, }, new() { @@ -70504,6 +77552,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wikalkan", + Comment = null, }, new() { @@ -70514,6 +77563,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wilawila", + Comment = null, }, new() { @@ -70524,6 +77574,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wik-Mungkan", + Comment = null, }, new() { @@ -70534,6 +77585,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ho-Chunk", + Comment = null, }, new() { @@ -70544,6 +77596,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wiraféd", + Comment = null, }, new() { @@ -70554,6 +77607,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wiru", + Comment = null, }, new() { @@ -70564,6 +77618,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Vitu", + Comment = null, }, new() { @@ -70574,6 +77629,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wiyot", + Comment = null, }, new() { @@ -70584,6 +77640,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waja", + Comment = null, }, new() { @@ -70594,6 +77651,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warji", + Comment = null, }, new() { @@ -70604,6 +77662,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kw'adza", + Comment = null, }, new() { @@ -70614,6 +77673,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumbaran", + Comment = null, }, new() { @@ -70624,6 +77684,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wakde", + Comment = null, }, new() { @@ -70634,6 +77695,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalanadi", + Comment = null, }, new() { @@ -70644,6 +77706,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keerray-Woorroong", + Comment = null, }, new() { @@ -70654,6 +77717,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunduvadi", + Comment = null, }, new() { @@ -70664,6 +77728,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wakawaka", + Comment = null, }, new() { @@ -70674,6 +77739,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wangkayutyuru", + Comment = null, }, new() { @@ -70684,6 +77750,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walio", + Comment = null, }, new() { @@ -70694,6 +77761,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwali Comorian", + Comment = null, }, new() { @@ -70704,6 +77772,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolane", + Comment = null, }, new() { @@ -70714,6 +77783,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunbarlang", + Comment = null, }, new() { @@ -70724,6 +77794,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Welaun", + Comment = null, }, new() { @@ -70734,6 +77805,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waioli", + Comment = null, }, new() { @@ -70744,6 +77816,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wailaki", + Comment = null, }, new() { @@ -70754,6 +77827,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wali (Sudan)", + Comment = null, }, new() { @@ -70764,6 +77838,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Welsh", + Comment = null, }, new() { @@ -70774,6 +77849,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walloon", + Comment = null, }, new() { @@ -70784,6 +77860,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolio", + Comment = null, }, new() { @@ -70794,6 +77871,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wailapa", + Comment = null, }, new() { @@ -70804,6 +77882,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wallisian", + Comment = null, }, new() { @@ -70814,6 +77893,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wuliwuli", + Comment = null, }, new() { @@ -70824,6 +77904,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wichí Lhamtés Vejoz", + Comment = null, }, new() { @@ -70834,6 +77915,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walak", + Comment = null, }, new() { @@ -70844,6 +77926,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wali (Ghana)", + Comment = null, }, new() { @@ -70854,6 +77937,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waling", + Comment = null, }, new() { @@ -70864,6 +77948,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mawa (Nigeria)", + Comment = null, }, new() { @@ -70874,6 +77959,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wambaya", + Comment = null, }, new() { @@ -70884,6 +77970,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wamas", + Comment = null, }, new() { @@ -70894,6 +77981,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mamaindé", + Comment = null, }, new() { @@ -70904,6 +77992,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wambule", + Comment = null, }, new() { @@ -70914,6 +78003,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Minyag", + Comment = null, }, new() { @@ -70924,6 +78014,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waima'a", + Comment = null, }, new() { @@ -70934,6 +78025,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wamin", + Comment = null, }, new() { @@ -70944,6 +78036,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maiwa (Indonesia)", + Comment = null, }, new() { @@ -70954,6 +78047,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waamwang", + Comment = null, }, new() { @@ -70964,6 +78058,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wom (Papua New Guinea)", + Comment = null, }, new() { @@ -70974,6 +78069,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wambon", + Comment = null, }, new() { @@ -70984,6 +78080,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Walmajarri", + Comment = null, }, new() { @@ -70994,6 +78091,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mwani", + Comment = null, }, new() { @@ -71004,6 +78102,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Womo", + Comment = null, }, new() { @@ -71014,6 +78113,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mokati", + Comment = null, }, new() { @@ -71024,6 +78124,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wantoat", + Comment = null, }, new() { @@ -71034,6 +78135,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wandarang", + Comment = null, }, new() { @@ -71044,6 +78146,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waneci", + Comment = null, }, new() { @@ -71054,6 +78157,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanggom", + Comment = null, }, new() { @@ -71064,6 +78168,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ndzwani Comorian", + Comment = null, }, new() { @@ -71074,6 +78179,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanukaka", + Comment = null, }, new() { @@ -71084,6 +78190,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wanggamala", + Comment = null, }, new() { @@ -71094,6 +78201,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wunumara", + Comment = null, }, new() { @@ -71104,6 +78212,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wano", + Comment = null, }, new() { @@ -71114,6 +78223,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanap", + Comment = null, }, new() { @@ -71124,6 +78234,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Usan", + Comment = null, }, new() { @@ -71134,6 +78245,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wintu", + Comment = null, }, new() { @@ -71144,6 +78256,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wanyi", + Comment = null, }, new() { @@ -71154,6 +78267,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuwema", + Comment = null, }, new() { @@ -71164,6 +78278,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wè Northern", + Comment = null, }, new() { @@ -71174,6 +78289,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wogeo", + Comment = null, }, new() { @@ -71184,6 +78300,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolani", + Comment = null, }, new() { @@ -71194,6 +78311,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woleaian", + Comment = null, }, new() { @@ -71204,6 +78322,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gambian Wolof", + Comment = null, }, new() { @@ -71214,6 +78333,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wogamusin", + Comment = null, }, new() { @@ -71224,6 +78344,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamang", + Comment = null, }, new() { @@ -71234,6 +78355,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Longto", + Comment = null, }, new() { @@ -71244,6 +78366,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wolof", + Comment = null, }, new() { @@ -71254,6 +78377,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wom (Nigeria)", + Comment = null, }, new() { @@ -71264,6 +78388,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wongo", + Comment = null, }, new() { @@ -71274,6 +78399,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manombai", + Comment = null, }, new() { @@ -71284,6 +78410,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Woria", + Comment = null, }, new() { @@ -71294,6 +78421,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hanga Hundi", + Comment = null, }, new() { @@ -71304,6 +78432,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wawonii", + Comment = null, }, new() { @@ -71314,6 +78443,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Weyto", + Comment = null, }, new() { @@ -71324,6 +78454,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maco", + Comment = null, }, new() { @@ -71334,6 +78465,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waluwarra", + Comment = null, }, new() { @@ -71344,6 +78476,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Warungu", + Comment = null, }, new() { @@ -71354,6 +78487,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wiradjuri", + Comment = null, }, new() { @@ -71364,6 +78498,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wariyangga", + Comment = null, }, new() { @@ -71374,6 +78509,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Garrwa", + Comment = null, }, new() { @@ -71384,6 +78520,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warlmanpa", + Comment = null, }, new() { @@ -71394,6 +78531,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warumungu", + Comment = null, }, new() { @@ -71404,6 +78542,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warnang", + Comment = null, }, new() { @@ -71414,6 +78553,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Worrorra", + Comment = null, }, new() { @@ -71424,6 +78564,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waropen", + Comment = null, }, new() { @@ -71434,6 +78575,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wardaman", + Comment = null, }, new() { @@ -71444,6 +78586,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waris", + Comment = null, }, new() { @@ -71454,6 +78597,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waru", + Comment = null, }, new() { @@ -71464,6 +78608,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waruna", + Comment = null, }, new() { @@ -71474,6 +78619,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gugu Warra", + Comment = null, }, new() { @@ -71484,6 +78630,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wae Rana", + Comment = null, }, new() { @@ -71494,6 +78641,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Merwari", + Comment = null, }, new() { @@ -71504,6 +78652,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Waray (Australia)", + Comment = null, }, new() { @@ -71514,6 +78663,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Warembori", + Comment = null, }, new() { @@ -71524,6 +78674,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Adilabad Gondi", + Comment = null, }, new() { @@ -71534,6 +78685,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wusi", + Comment = null, }, new() { @@ -71544,6 +78696,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waskia", + Comment = null, }, new() { @@ -71554,6 +78707,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Owenia", + Comment = null, }, new() { @@ -71564,6 +78718,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wasa", + Comment = null, }, new() { @@ -71574,6 +78729,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wasu", + Comment = null, }, new() { @@ -71584,6 +78740,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wotapuri-Katarqalai", + Comment = null, }, new() { @@ -71594,6 +78751,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matambwe", + Comment = null, }, new() { @@ -71604,6 +78762,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watiwa", + Comment = null, }, new() { @@ -71614,6 +78773,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wathawurrung", + Comment = null, }, new() { @@ -71624,6 +78784,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Berta", + Comment = null, }, new() { @@ -71634,6 +78795,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Watakataui", + Comment = null, }, new() { @@ -71644,6 +78806,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mewati", + Comment = null, }, new() { @@ -71654,6 +78817,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wotu", + Comment = null, }, new() { @@ -71664,6 +78828,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wikngenchera", + Comment = null, }, new() { @@ -71674,6 +78839,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wunambal", + Comment = null, }, new() { @@ -71684,6 +78850,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wudu", + Comment = null, }, new() { @@ -71694,6 +78861,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wutunhua", + Comment = null, }, new() { @@ -71704,6 +78872,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silimo", + Comment = null, }, new() { @@ -71714,6 +78883,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wumbvu", + Comment = null, }, new() { @@ -71724,6 +78894,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bungu", + Comment = null, }, new() { @@ -71734,6 +78905,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wurrugu", + Comment = null, }, new() { @@ -71744,6 +78916,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wutung", + Comment = null, }, new() { @@ -71754,6 +78927,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wu Chinese", + Comment = null, }, new() { @@ -71764,6 +78938,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wuvulu-Aua", + Comment = null, }, new() { @@ -71774,6 +78949,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wulna", + Comment = null, }, new() { @@ -71784,6 +78960,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wauyai", + Comment = null, }, new() { @@ -71794,6 +78971,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waama", + Comment = null, }, new() { @@ -71804,6 +78982,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wakabunga", + Comment = null, }, new() { @@ -71814,6 +78993,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wetamut", + Comment = null, }, new() { @@ -71824,6 +79004,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Warrwa", + Comment = null, }, new() { @@ -71834,6 +79015,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wawa", + Comment = null, }, new() { @@ -71844,6 +79026,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Waxianghua", + Comment = null, }, new() { @@ -71854,6 +79037,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wardandi", + Comment = null, }, new() { @@ -71864,6 +79048,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wangaaybuwan-Ngiyambaa", + Comment = null, }, new() { @@ -71874,6 +79059,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Woiwurrung", + Comment = null, }, new() { @@ -71884,6 +79070,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wymysorys", + Comment = null, }, new() { @@ -71894,6 +79081,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wyandot", + Comment = null, }, new() { @@ -71904,6 +79092,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wayoró", + Comment = null, }, new() { @@ -71914,6 +79103,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Fijian", + Comment = null, }, new() { @@ -71924,6 +79114,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Andalusian Arabic", + Comment = null, }, new() { @@ -71934,6 +79125,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sambe", + Comment = null, }, new() { @@ -71944,6 +79136,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachari", + Comment = null, }, new() { @@ -71954,6 +79147,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Adai", + Comment = null, }, new() { @@ -71964,6 +79158,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Aequian", + Comment = null, }, new() { @@ -71974,6 +79169,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Aghwan", + Comment = null, }, new() { @@ -71984,6 +79180,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kaimbé", + Comment = null, }, new() { @@ -71994,6 +79191,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ararandewára", + Comment = null, }, new() { @@ -72004,6 +79202,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Máku", + Comment = null, }, new() { @@ -72014,6 +79213,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalmyk", + Comment = null, }, new() { @@ -72024,6 +79224,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "ǀXam", + Comment = null, }, new() { @@ -72034,6 +79235,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xamtanga", + Comment = null, }, new() { @@ -72044,6 +79246,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khao", + Comment = null, }, new() { @@ -72054,6 +79257,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Apalachee", + Comment = null, }, new() { @@ -72064,6 +79268,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Aquitanian", + Comment = null, }, new() { @@ -72074,6 +79279,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karami", + Comment = null, }, new() { @@ -72084,6 +79290,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamas", + Comment = null, }, new() { @@ -72094,6 +79301,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katawixi", + Comment = null, }, new() { @@ -72104,6 +79312,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kauwera", + Comment = null, }, new() { @@ -72114,6 +79323,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xavánte", + Comment = null, }, new() { @@ -72124,6 +79334,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kawaiisu", + Comment = null, }, new() { @@ -72134,6 +79345,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayan Mahakam", + Comment = null, }, new() { @@ -72144,6 +79356,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Lower Burdekin", + Comment = null, }, new() { @@ -72154,6 +79367,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Bactrian", + Comment = null, }, new() { @@ -72164,6 +79378,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bindal", + Comment = null, }, new() { @@ -72174,6 +79389,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bigambal", + Comment = null, }, new() { @@ -72184,6 +79400,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bunganditj", + Comment = null, }, new() { @@ -72194,6 +79411,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kombio", + Comment = null, }, new() { @@ -72204,6 +79422,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Birrpayi", + Comment = null, }, new() { @@ -72214,6 +79433,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Breton", + Comment = null, }, new() { @@ -72224,6 +79444,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kenaboi", + Comment = null, }, new() { @@ -72234,6 +79455,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Bolgarian", + Comment = null, }, new() { @@ -72244,6 +79466,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bibbulman", + Comment = null, }, new() { @@ -72254,6 +79477,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kambera", + Comment = null, }, new() { @@ -72264,6 +79488,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kambiwá", + Comment = null, }, new() { @@ -72274,6 +79499,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batjala", + Comment = null, }, new() { @@ -72284,6 +79510,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Cumbric", + Comment = null, }, new() { @@ -72294,6 +79521,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Camunic", + Comment = null, }, new() { @@ -72304,6 +79532,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Celtiberian", + Comment = null, }, new() { @@ -72314,6 +79543,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Cisalpine Gaulish", + Comment = null, }, new() { @@ -72324,6 +79554,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chemakum", + Comment = null, }, new() { @@ -72334,6 +79565,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Armenian", + Comment = null, }, new() { @@ -72344,6 +79576,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Comecrudo", + Comment = null, }, new() { @@ -72354,6 +79587,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cotoname", + Comment = null, }, new() { @@ -72364,6 +79598,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Chorasmian", + Comment = null, }, new() { @@ -72374,6 +79609,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Carian", + Comment = null, }, new() { @@ -72384,6 +79620,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Classical Tibetan", + Comment = null, }, new() { @@ -72394,6 +79631,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Curonian", + Comment = null, }, new() { @@ -72404,6 +79642,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Chuvantsy", + Comment = null, }, new() { @@ -72414,6 +79653,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Coahuilteco", + Comment = null, }, new() { @@ -72424,6 +79664,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Cayuse", + Comment = null, }, new() { @@ -72434,6 +79675,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Darkinyung", + Comment = null, }, new() { @@ -72444,6 +79686,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Dacian", + Comment = null, }, new() { @@ -72454,6 +79697,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dharuk", + Comment = null, }, new() { @@ -72464,6 +79708,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Edomite", + Comment = null, }, new() { @@ -72474,6 +79719,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwandu", + Comment = null, }, new() { @@ -72484,6 +79730,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaitag", + Comment = null, }, new() { @@ -72494,6 +79741,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malayic Dayak", + Comment = null, }, new() { @@ -72504,6 +79752,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Eblan", + Comment = null, }, new() { @@ -72514,6 +79763,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hdi", + Comment = null, }, new() { @@ -72524,6 +79774,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "ǁXegwi", + Comment = null, }, new() { @@ -72534,6 +79785,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kelo", + Comment = null, }, new() { @@ -72544,6 +79796,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kembayan", + Comment = null, }, new() { @@ -72554,6 +79807,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Epi-Olmec", + Comment = null, }, new() { @@ -72564,6 +79818,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xerénte", + Comment = null, }, new() { @@ -72574,6 +79829,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kesawai", + Comment = null, }, new() { @@ -72584,6 +79840,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xetá", + Comment = null, }, new() { @@ -72594,6 +79851,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Keoru-Ahia", + Comment = null, }, new() { @@ -72604,6 +79862,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Faliscan", + Comment = null, }, new() { @@ -72614,6 +79873,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Galatian", + Comment = null, }, new() { @@ -72624,6 +79884,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gbin", + Comment = null, }, new() { @@ -72634,6 +79895,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gudang", + Comment = null, }, new() { @@ -72644,6 +79906,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gabrielino-Fernandeño", + Comment = null, }, new() { @@ -72654,6 +79917,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Goreng", + Comment = null, }, new() { @@ -72664,6 +79928,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garingbal", + Comment = null, }, new() { @@ -72674,6 +79939,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Galindan", + Comment = null, }, new() { @@ -72684,6 +79950,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Dharumbal", + Comment = null, }, new() { @@ -72694,6 +79961,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Garza", + Comment = null, }, new() { @@ -72704,6 +79972,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Unggumi", + Comment = null, }, new() { @@ -72714,6 +79983,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Guwa", + Comment = null, }, new() { @@ -72724,6 +79994,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Harami", + Comment = null, }, new() { @@ -72734,6 +80005,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hunnic", + Comment = null, }, new() { @@ -72744,6 +80016,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hadrami", + Comment = null, }, new() { @@ -72754,6 +80027,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khetrani", + Comment = null, }, new() { @@ -72764,6 +80038,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Khmer (1400 to 1850 CE)", + Comment = null, }, new() { @@ -72774,6 +80049,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xhosa", + Comment = null, }, new() { @@ -72784,6 +80060,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hernican", + Comment = null, }, new() { @@ -72794,6 +80071,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hattic", + Comment = null, }, new() { @@ -72804,6 +80082,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Hurrian", + Comment = null, }, new() { @@ -72814,6 +80093,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khua", + Comment = null, }, new() { @@ -72824,6 +80104,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Iberian", + Comment = null, }, new() { @@ -72834,6 +80115,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xiri", + Comment = null, }, new() { @@ -72844,6 +80126,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Illyrian", + Comment = null, }, new() { @@ -72854,6 +80137,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xinca", + Comment = null, }, new() { @@ -72864,6 +80148,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xiriâna", + Comment = null, }, new() { @@ -72874,6 +80159,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kisan", + Comment = null, }, new() { @@ -72884,6 +80170,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Indus Valley Language", + Comment = null, }, new() { @@ -72894,6 +80181,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xipaya", + Comment = null, }, new() { @@ -72904,6 +80192,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Minjungbal", + Comment = null, }, new() { @@ -72914,6 +80203,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Jaitmatang", + Comment = null, }, new() { @@ -72924,6 +80214,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalkoti", + Comment = null, }, new() { @@ -72934,6 +80225,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Nago", + Comment = null, }, new() { @@ -72944,6 +80236,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kho'ini", + Comment = null, }, new() { @@ -72954,6 +80247,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mendalam Kayan", + Comment = null, }, new() { @@ -72964,6 +80258,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kereho", + Comment = null, }, new() { @@ -72974,6 +80269,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khengkha", + Comment = null, }, new() { @@ -72984,6 +80280,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kagoro", + Comment = null, }, new() { @@ -72994,6 +80291,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenyan Sign Language", + Comment = null, }, new() { @@ -73004,6 +80302,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kajali", + Comment = null, }, new() { @@ -73014,6 +80313,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kachok", + Comment = null, }, new() { @@ -73024,6 +80324,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mainstream Kenyah", + Comment = null, }, new() { @@ -73034,6 +80335,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kayan River Kayan", + Comment = null, }, new() { @@ -73044,6 +80346,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kiorr", + Comment = null, }, new() { @@ -73054,6 +80357,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kabatei", + Comment = null, }, new() { @@ -73064,6 +80368,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Koroni", + Comment = null, }, new() { @@ -73074,6 +80379,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xakriabá", + Comment = null, }, new() { @@ -73084,6 +80390,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumbewaha", + Comment = null, }, new() { @@ -73094,6 +80401,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kantosi", + Comment = null, }, new() { @@ -73104,6 +80412,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaamba", + Comment = null, }, new() { @@ -73114,6 +80423,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kgalagadi", + Comment = null, }, new() { @@ -73124,6 +80434,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kembra", + Comment = null, }, new() { @@ -73134,6 +80445,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karore", + Comment = null, }, new() { @@ -73144,6 +80456,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Uma' Lasan", + Comment = null, }, new() { @@ -73154,6 +80467,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kurtokha", + Comment = null, }, new() { @@ -73164,6 +80478,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamula", + Comment = null, }, new() { @@ -73174,6 +80489,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Loup B", + Comment = null, }, new() { @@ -73184,6 +80500,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lycian", + Comment = null, }, new() { @@ -73194,6 +80511,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lydian", + Comment = null, }, new() { @@ -73204,6 +80522,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lemnian", + Comment = null, }, new() { @@ -73214,6 +80533,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ligurian (Ancient)", + Comment = null, }, new() { @@ -73224,6 +80544,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Liburnian", + Comment = null, }, new() { @@ -73234,6 +80555,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Alanic", + Comment = null, }, new() { @@ -73244,6 +80566,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Loup A", + Comment = null, }, new() { @@ -73254,6 +80577,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lepontic", + Comment = null, }, new() { @@ -73264,6 +80588,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Lusitanian", + Comment = null, }, new() { @@ -73274,6 +80599,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Cuneiform Luwian", + Comment = null, }, new() { @@ -73284,6 +80610,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Elymian", + Comment = null, }, new() { @@ -73294,6 +80621,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mushungulu", + Comment = null, }, new() { @@ -73304,6 +80632,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbonga", + Comment = null, }, new() { @@ -73314,6 +80643,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Marrevone", + Comment = null, }, new() { @@ -73324,6 +80654,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbudum", + Comment = null, }, new() { @@ -73334,6 +80665,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Median", + Comment = null, }, new() { @@ -73344,6 +80676,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mingrelian", + Comment = null, }, new() { @@ -73354,6 +80687,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mengaka", + Comment = null, }, new() { @@ -73364,6 +80698,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kugu-Muminh", + Comment = null, }, new() { @@ -73374,6 +80709,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Majera", + Comment = null, }, new() { @@ -73384,6 +80720,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Macedonian", + Comment = null, }, new() { @@ -73394,6 +80731,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malaysian Sign Language", + Comment = null, }, new() { @@ -73404,6 +80742,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manado Malay", + Comment = null, }, new() { @@ -73414,6 +80753,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Manichaean Middle Persian", + Comment = null, }, new() { @@ -73424,6 +80764,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Morerebi", + Comment = null, }, new() { @@ -73434,6 +80775,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuku-Mu'inh", + Comment = null, }, new() { @@ -73444,6 +80786,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuku-Mangk", + Comment = null, }, new() { @@ -73454,6 +80797,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Meroitic", + Comment = null, }, new() { @@ -73464,6 +80808,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moroccan Sign Language", + Comment = null, }, new() { @@ -73474,6 +80819,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Matbat", + Comment = null, }, new() { @@ -73484,6 +80830,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kamu", + Comment = null, }, new() { @@ -73494,6 +80841,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Antankarana Malagasy", + Comment = null, }, new() { @@ -73504,6 +80852,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tsimihety Malagasy", + Comment = null, }, new() { @@ -73514,6 +80863,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Salawati", + Comment = null, }, new() { @@ -73524,6 +80874,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayaguduna", + Comment = null, }, new() { @@ -73534,6 +80885,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mori Bawah", + Comment = null, }, new() { @@ -73544,6 +80896,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient North Arabian", + Comment = null, }, new() { @@ -73554,6 +80907,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanakanabu", + Comment = null, }, new() { @@ -73564,6 +80918,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Middle Mongolian", + Comment = null, }, new() { @@ -73574,6 +80929,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuanhua", + Comment = null, }, new() { @@ -73584,6 +80940,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngarigu", + Comment = null, }, new() { @@ -73594,6 +80951,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngoni (Tanzania)", + Comment = null, }, new() { @@ -73604,6 +80962,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nganakarti", + Comment = null, }, new() { @@ -73614,6 +80973,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngumbarl", + Comment = null, }, new() { @@ -73624,6 +80984,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Kankanay", + Comment = null, }, new() { @@ -73634,6 +80995,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Anglo-Norman", + Comment = null, }, new() { @@ -73644,6 +81006,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngoni (Mozambique)", + Comment = null, }, new() { @@ -73654,6 +81017,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kangri", + Comment = null, }, new() { @@ -73664,6 +81028,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanashi", + Comment = null, }, new() { @@ -73674,6 +81039,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Narragansett", + Comment = null, }, new() { @@ -73684,6 +81050,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Nukunul", + Comment = null, }, new() { @@ -73694,6 +81061,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyiyaparli", + Comment = null, }, new() { @@ -73704,6 +81072,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kenzi", + Comment = null, }, new() { @@ -73714,6 +81083,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "O'chi'chi'", + Comment = null, }, new() { @@ -73724,6 +81094,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kokoda", + Comment = null, }, new() { @@ -73734,6 +81105,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Soga", + Comment = null, }, new() { @@ -73744,6 +81116,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kominimung", + Comment = null, }, new() { @@ -73754,6 +81127,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xokleng", + Comment = null, }, new() { @@ -73764,6 +81138,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Komo (Sudan)", + Comment = null, }, new() { @@ -73774,6 +81149,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Konkomba", + Comment = null, }, new() { @@ -73784,6 +81160,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Xukurú", + Comment = null, }, new() { @@ -73794,6 +81171,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kopar", + Comment = null, }, new() { @@ -73804,6 +81182,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Korubo", + Comment = null, }, new() { @@ -73814,6 +81193,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kowaki", + Comment = null, }, new() { @@ -73824,6 +81204,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pirriya", + Comment = null, }, new() { @@ -73834,6 +81215,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northeastern Tasmanian", + Comment = null, }, new() { @@ -73844,6 +81226,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pecheneg", + Comment = null, }, new() { @@ -73854,6 +81237,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Oyster Bay Tasmanian", + Comment = null, }, new() { @@ -73864,6 +81248,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liberia Kpelle", + Comment = null, }, new() { @@ -73874,6 +81259,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southeast Tasmanian", + Comment = null, }, new() { @@ -73884,6 +81270,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Phrygian", + Comment = null, }, new() { @@ -73894,6 +81281,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "North Midlands Tasmanian", + Comment = null, }, new() { @@ -73904,6 +81292,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pictish", + Comment = null, }, new() { @@ -73914,6 +81303,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mpalitjanh", + Comment = null, }, new() { @@ -73924,6 +81314,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kulina Pano", + Comment = null, }, new() { @@ -73934,6 +81325,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Port Sorell Tasmanian", + Comment = null, }, new() { @@ -73944,6 +81336,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pumpokol", + Comment = null, }, new() { @@ -73954,6 +81347,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kapinawá", + Comment = null, }, new() { @@ -73964,6 +81358,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Pochutec", + Comment = null, }, new() { @@ -73974,6 +81369,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Puyo-Paekche", + Comment = null, }, new() { @@ -73984,6 +81380,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mohegan-Pequot", + Comment = null, }, new() { @@ -73994,6 +81391,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Parthian", + Comment = null, }, new() { @@ -74004,6 +81402,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Pisidian", + Comment = null, }, new() { @@ -74014,6 +81413,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Punthamara", + Comment = null, }, new() { @@ -74024,6 +81424,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Punic", + Comment = null, }, new() { @@ -74034,6 +81435,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northern Tasmanian", + Comment = null, }, new() { @@ -74044,6 +81446,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Northwestern Tasmanian", + Comment = null, }, new() { @@ -74054,6 +81457,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Southwestern Tasmanian", + Comment = null, }, new() { @@ -74064,6 +81468,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Puyo", + Comment = null, }, new() { @@ -74074,6 +81479,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Bruny Island Tasmanian", + Comment = null, }, new() { @@ -74084,6 +81490,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Karakhanid", + Comment = null, }, new() { @@ -74094,6 +81501,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Qatabanian", + Comment = null, }, new() { @@ -74104,6 +81512,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krahô", + Comment = null, }, new() { @@ -74114,6 +81523,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Karaboro", + Comment = null, }, new() { @@ -74124,6 +81534,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Gundungurra", + Comment = null, }, new() { @@ -74134,6 +81545,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kreye", + Comment = null, }, new() { @@ -74144,6 +81556,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Minang", + Comment = null, }, new() { @@ -74154,6 +81567,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Krikati-Timbira", + Comment = null, }, new() { @@ -74164,6 +81578,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Armazic", + Comment = null, }, new() { @@ -74174,6 +81589,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Arin", + Comment = null, }, new() { @@ -74184,6 +81600,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Raetic", + Comment = null, }, new() { @@ -74194,6 +81611,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Aranama-Tamique", + Comment = null, }, new() { @@ -74204,6 +81622,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marriammu", + Comment = null, }, new() { @@ -74214,6 +81633,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karawa", + Comment = null, }, new() { @@ -74224,6 +81644,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sabaean", + Comment = null, }, new() { @@ -74234,6 +81655,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sambal", + Comment = null, }, new() { @@ -74244,6 +81666,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Scythian", + Comment = null, }, new() { @@ -74254,6 +81677,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Sidetic", + Comment = null, }, new() { @@ -74264,6 +81688,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sempan", + Comment = null, }, new() { @@ -74274,6 +81699,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Shamang", + Comment = null, }, new() { @@ -74284,6 +81710,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sio", + Comment = null, }, new() { @@ -74294,6 +81721,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Subi", + Comment = null, }, new() { @@ -74304,6 +81732,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "South Slavey", + Comment = null, }, new() { @@ -74314,6 +81743,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kasem", + Comment = null, }, new() { @@ -74324,6 +81754,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanga (Nigeria)", + Comment = null, }, new() { @@ -74334,6 +81765,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Solano", + Comment = null, }, new() { @@ -74344,6 +81776,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Silopi", + Comment = null, }, new() { @@ -74354,6 +81787,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makhuwa-Saka", + Comment = null, }, new() { @@ -74364,6 +81798,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sherpa", + Comment = null, }, new() { @@ -74374,6 +81809,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanumá", + Comment = null, }, new() { @@ -74384,6 +81820,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sudovian", + Comment = null, }, new() { @@ -74394,6 +81831,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Saisiyat", + Comment = null, }, new() { @@ -74404,6 +81842,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alcozauca Mixtec", + Comment = null, }, new() { @@ -74414,6 +81853,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chazumba Mixtec", + Comment = null, }, new() { @@ -74424,6 +81864,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Katcha-Kadugli-Miri", + Comment = null, }, new() { @@ -74434,6 +81875,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Diuxi-Tilantongo Mixtec", + Comment = null, }, new() { @@ -74444,6 +81886,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ketengban", + Comment = null, }, new() { @@ -74454,6 +81897,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Transalpine Gaulish", + Comment = null, }, new() { @@ -74464,6 +81908,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yitha Yitha", + Comment = null, }, new() { @@ -74474,6 +81919,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sinicahua Mixtec", + Comment = null, }, new() { @@ -74484,6 +81930,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Juan Teita Mixtec", + Comment = null, }, new() { @@ -74494,6 +81941,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tijaltepec Mixtec", + Comment = null, }, new() { @@ -74504,6 +81952,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magdalena Peñasco Mixtec", + Comment = null, }, new() { @@ -74514,6 +81963,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Tlaxiaco Mixtec", + Comment = null, }, new() { @@ -74524,6 +81974,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tokharian A", + Comment = null, }, new() { @@ -74534,6 +81985,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Miguel Piedras Mixtec", + Comment = null, }, new() { @@ -74544,6 +81996,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Tumshuqese", + Comment = null, }, new() { @@ -74554,6 +82007,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Early Tripuri", + Comment = null, }, new() { @@ -74564,6 +82018,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sindihui Mixtec", + Comment = null, }, new() { @@ -74574,6 +82029,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tacahua Mixtec", + Comment = null, }, new() { @@ -74584,6 +82040,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cuyamecalco Mixtec", + Comment = null, }, new() { @@ -74594,6 +82051,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Thawa", + Comment = null, }, new() { @@ -74604,6 +82062,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tawandê", + Comment = null, }, new() { @@ -74614,6 +82073,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoloxochitl Mixtec", + Comment = null, }, new() { @@ -74624,6 +82084,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alu Kurumba", + Comment = null, }, new() { @@ -74634,6 +82095,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Betta Kurumba", + Comment = null, }, new() { @@ -74644,6 +82106,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Umiida", + Comment = null, }, new() { @@ -74654,6 +82117,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kunigami", + Comment = null, }, new() { @@ -74664,6 +82128,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Jennu Kurumba", + Comment = null, }, new() { @@ -74674,6 +82139,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Ngunawal", + Comment = null, }, new() { @@ -74684,6 +82150,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Umbrian", + Comment = null, }, new() { @@ -74694,6 +82161,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Unggaranggu", + Comment = null, }, new() { @@ -74704,6 +82172,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuo", + Comment = null, }, new() { @@ -74714,6 +82183,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Upper Umpqua", + Comment = null, }, new() { @@ -74724,6 +82194,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Urartian", + Comment = null, }, new() { @@ -74734,6 +82205,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kuthant", + Comment = null, }, new() { @@ -74744,6 +82216,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kxoe", + Comment = null, }, new() { @@ -74754,6 +82227,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Venetic", + Comment = null, }, new() { @@ -74764,6 +82238,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kamviri", + Comment = null, }, new() { @@ -74774,6 +82249,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Vandalic", + Comment = null, }, new() { @@ -74784,6 +82260,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Volscian", + Comment = null, }, new() { @@ -74794,6 +82271,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Vestinian", + Comment = null, }, new() { @@ -74804,6 +82282,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwaza", + Comment = null, }, new() { @@ -74814,6 +82293,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Woccon", + Comment = null, }, new() { @@ -74824,6 +82304,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wadi Wadi", + Comment = null, }, new() { @@ -74834,6 +82315,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xwela Gbe", + Comment = null, }, new() { @@ -74844,6 +82326,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwegu", + Comment = null, }, new() { @@ -74854,6 +82337,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wajuk", + Comment = null, }, new() { @@ -74864,6 +82348,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wangkumara", + Comment = null, }, new() { @@ -74874,6 +82359,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Xwla Gbe", + Comment = null, }, new() { @@ -74884,6 +82370,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Written Oirat", + Comment = null, }, new() { @@ -74894,6 +82381,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kwerba Mamberamo", + Comment = null, }, new() { @@ -74904,6 +82392,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wotjobaluk", + Comment = null, }, new() { @@ -74914,6 +82403,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Wemba Wemba", + Comment = null, }, new() { @@ -74924,6 +82414,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Boro (Ghana)", + Comment = null, }, new() { @@ -74934,6 +82425,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ke'o", + Comment = null, }, new() { @@ -74944,6 +82436,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Minkin", + Comment = null, }, new() { @@ -74954,6 +82447,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Koropó", + Comment = null, }, new() { @@ -74964,6 +82458,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Tambora", + Comment = null, }, new() { @@ -74974,6 +82469,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yaygir", + Comment = null, }, new() { @@ -74984,6 +82480,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yandjibara", + Comment = null, }, new() { @@ -74994,6 +82491,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayi-Yapi", + Comment = null, }, new() { @@ -75004,6 +82502,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayi-Kulan", + Comment = null, }, new() { @@ -75014,6 +82513,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yalakalore", + Comment = null, }, new() { @@ -75024,6 +82524,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayi-Thakurti", + Comment = null, }, new() { @@ -75034,6 +82535,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yorta Yorta", + Comment = null, }, new() { @@ -75044,6 +82546,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Zhang-Zhung", + Comment = null, }, new() { @@ -75054,6 +82557,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Zemgalian", + Comment = null, }, new() { @@ -75064,6 +82568,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Ancient Zapotec", + Comment = null, }, new() { @@ -75074,6 +82579,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaminahua", + Comment = null, }, new() { @@ -75084,6 +82590,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuhup", + Comment = null, }, new() { @@ -75094,6 +82601,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pass Valley Yali", + Comment = null, }, new() { @@ -75104,6 +82612,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagua", + Comment = null, }, new() { @@ -75114,6 +82623,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pumé", + Comment = null, }, new() { @@ -75124,6 +82634,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaka (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -75134,6 +82645,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yámana", + Comment = null, }, new() { @@ -75144,6 +82656,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yazgulyam", + Comment = null, }, new() { @@ -75154,6 +82667,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagnobi", + Comment = null, }, new() { @@ -75164,6 +82678,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Banda-Yangere", + Comment = null, }, new() { @@ -75174,6 +82689,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakama", + Comment = null, }, new() { @@ -75184,6 +82700,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yalunka", + Comment = null, }, new() { @@ -75194,6 +82711,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamba", + Comment = null, }, new() { @@ -75204,6 +82722,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mayangna", + Comment = null, }, new() { @@ -75214,6 +82733,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yao", + Comment = null, }, new() { @@ -75224,6 +82744,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yapese", + Comment = null, }, new() { @@ -75234,6 +82755,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaqui", + Comment = null, }, new() { @@ -75244,6 +82766,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yabarana", + Comment = null, }, new() { @@ -75254,6 +82777,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nugunu (Cameroon)", + Comment = null, }, new() { @@ -75264,6 +82788,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yambeta", + Comment = null, }, new() { @@ -75274,6 +82799,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuwana", + Comment = null, }, new() { @@ -75284,6 +82810,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangben", + Comment = null, }, new() { @@ -75294,6 +82821,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawalapití", + Comment = null, }, new() { @@ -75304,6 +82832,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yauma", + Comment = null, }, new() { @@ -75314,6 +82843,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Agwagwune", + Comment = null, }, new() { @@ -75324,6 +82854,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lokaa", + Comment = null, }, new() { @@ -75334,6 +82865,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yala", + Comment = null, }, new() { @@ -75344,6 +82876,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yemba", + Comment = null, }, new() { @@ -75354,6 +82887,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Yugur", + Comment = null, }, new() { @@ -75364,6 +82898,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakha", + Comment = null, }, new() { @@ -75374,6 +82909,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamphu", + Comment = null, }, new() { @@ -75384,6 +82920,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hasha", + Comment = null, }, new() { @@ -75394,6 +82931,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bokha", + Comment = null, }, new() { @@ -75404,6 +82942,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yukuben", + Comment = null, }, new() { @@ -75414,6 +82953,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaben", + Comment = null, }, new() { @@ -75424,6 +82964,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yabaâna", + Comment = null, }, new() { @@ -75434,6 +82975,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yabong", + Comment = null, }, new() { @@ -75444,6 +82986,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawiyo", + Comment = null, }, new() { @@ -75454,6 +82997,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaweyuha", + Comment = null, }, new() { @@ -75464,6 +83008,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chesu", + Comment = null, }, new() { @@ -75474,6 +83019,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lolopo", + Comment = null, }, new() { @@ -75484,6 +83030,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucuna", + Comment = null, }, new() { @@ -75494,6 +83041,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chepya", + Comment = null, }, new() { @@ -75504,6 +83052,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yilan Creole", + Comment = null, }, new() { @@ -75514,6 +83063,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yanda", + Comment = null, }, new() { @@ -75524,6 +83074,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Yiddish", + Comment = null, }, new() { @@ -75534,6 +83085,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangum Dey", + Comment = null, }, new() { @@ -75544,6 +83096,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yidgha", + Comment = null, }, new() { @@ -75554,6 +83107,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoidik", + Comment = null, }, new() { @@ -75564,6 +83118,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ravula", + Comment = null, }, new() { @@ -75574,6 +83129,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yeniche", + Comment = null, }, new() { @@ -75584,6 +83140,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yimas", + Comment = null, }, new() { @@ -75594,6 +83151,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yeni", + Comment = null, }, new() { @@ -75604,6 +83162,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yevanic", + Comment = null, }, new() { @@ -75614,6 +83173,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yela", + Comment = null, }, new() { @@ -75624,6 +83184,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tarok", + Comment = null, }, new() { @@ -75634,6 +83195,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyankpa", + Comment = null, }, new() { @@ -75644,6 +83206,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yetfa", + Comment = null, }, new() { @@ -75654,6 +83217,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yerukula", + Comment = null, }, new() { @@ -75664,6 +83228,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yapunda", + Comment = null, }, new() { @@ -75674,6 +83239,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yeyi", + Comment = null, }, new() { @@ -75684,6 +83250,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Malyangapa", + Comment = null, }, new() { @@ -75694,6 +83261,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yiningayi", + Comment = null, }, new() { @@ -75704,6 +83272,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangum Gel", + Comment = null, }, new() { @@ -75714,6 +83283,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagomi", + Comment = null, }, new() { @@ -75724,6 +83294,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Gepo", + Comment = null, }, new() { @@ -75734,6 +83305,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagaria", + Comment = null, }, new() { @@ -75744,6 +83316,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yolŋu Sign Language", + Comment = null, }, new() { @@ -75754,6 +83327,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yugul", + Comment = null, }, new() { @@ -75764,6 +83338,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yagwoia", + Comment = null, }, new() { @@ -75774,6 +83349,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Baha Buyang", + Comment = null, }, new() { @@ -75784,6 +83360,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Iraqi Arabic", + Comment = null, }, new() { @@ -75794,6 +83371,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Hlepho Phowa", + Comment = null, }, new() { @@ -75804,6 +83382,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yan-nhaŋu Sign Language", + Comment = null, }, new() { @@ -75814,6 +83393,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yinggarda", + Comment = null, }, new() { @@ -75824,6 +83404,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Yiddish", + Comment = null, }, new() { @@ -75834,6 +83415,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ache", + Comment = null, }, new() { @@ -75844,6 +83426,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wusa Nasu", + Comment = null, }, new() { @@ -75854,6 +83437,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Western Yiddish", + Comment = null, }, new() { @@ -75864,6 +83448,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yidiny", + Comment = null, }, new() { @@ -75874,6 +83459,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yindjibarndi", + Comment = null, }, new() { @@ -75884,6 +83470,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dongshanba Lalo", + Comment = null, }, new() { @@ -75894,6 +83481,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yindjilandji", + Comment = null, }, new() { @@ -75904,6 +83492,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yimchungru Naga", + Comment = null, }, new() { @@ -75914,6 +83503,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Riang Lai", + Comment = null, }, new() { @@ -75924,6 +83514,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Pholo", + Comment = null, }, new() { @@ -75934,6 +83525,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miqie", + Comment = null, }, new() { @@ -75944,6 +83536,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "North Awyu", + Comment = null, }, new() { @@ -75954,6 +83547,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yis", + Comment = null, }, new() { @@ -75964,6 +83558,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Lalu", + Comment = null, }, new() { @@ -75974,6 +83569,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Awu", + Comment = null, }, new() { @@ -75984,6 +83580,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Nisu", + Comment = null, }, new() { @@ -75994,6 +83591,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Axi Yi", + Comment = null, }, new() { @@ -76004,6 +83602,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Azhe", + Comment = null, }, new() { @@ -76014,6 +83613,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakan", + Comment = null, }, new() { @@ -76024,6 +83624,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Yukaghir", + Comment = null, }, new() { @@ -76034,6 +83635,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khamnigan Mongol", + Comment = null, }, new() { @@ -76044,6 +83646,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoke", + Comment = null, }, new() { @@ -76054,6 +83657,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakaikeke", + Comment = null, }, new() { @@ -76064,6 +83668,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Khlula", + Comment = null, }, new() { @@ -76074,6 +83679,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kap", + Comment = null, }, new() { @@ -76084,6 +83690,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kua-nsi", + Comment = null, }, new() { @@ -76094,6 +83701,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yasa", + Comment = null, }, new() { @@ -76104,6 +83712,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yekora", + Comment = null, }, new() { @@ -76114,6 +83723,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kathu", + Comment = null, }, new() { @@ -76124,6 +83734,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kuamasi", + Comment = null, }, new() { @@ -76134,6 +83745,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yakoma", + Comment = null, }, new() { @@ -76144,6 +83756,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaul", + Comment = null, }, new() { @@ -76154,6 +83767,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaleba", + Comment = null, }, new() { @@ -76164,6 +83778,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yele", + Comment = null, }, new() { @@ -76174,6 +83789,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yelogu", + Comment = null, }, new() { @@ -76184,6 +83800,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Angguruk Yali", + Comment = null, }, new() { @@ -76194,6 +83811,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yil", + Comment = null, }, new() { @@ -76204,6 +83822,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Limi", + Comment = null, }, new() { @@ -76214,6 +83833,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Langnian Buyang", + Comment = null, }, new() { @@ -76224,6 +83844,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naluo Yi", + Comment = null, }, new() { @@ -76234,6 +83855,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yalarnnga", + Comment = null, }, new() { @@ -76244,6 +83866,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aribwaung", + Comment = null, }, new() { @@ -76254,6 +83877,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nyâlayu", + Comment = null, }, new() { @@ -76264,6 +83888,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yambes", + Comment = null, }, new() { @@ -76274,6 +83899,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Muji", + Comment = null, }, new() { @@ -76284,6 +83910,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muda", + Comment = null, }, new() { @@ -76294,6 +83921,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yameo", + Comment = null, }, new() { @@ -76304,6 +83932,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamongeri", + Comment = null, }, new() { @@ -76314,6 +83943,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mili", + Comment = null, }, new() { @@ -76324,6 +83954,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Moji", + Comment = null, }, new() { @@ -76334,6 +83965,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Makwe", + Comment = null, }, new() { @@ -76344,6 +83976,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Iamalele", + Comment = null, }, new() { @@ -76354,6 +83987,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maay", + Comment = null, }, new() { @@ -76364,6 +83998,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamna", + Comment = null, }, new() { @@ -76374,6 +84009,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangum Mon", + Comment = null, }, new() { @@ -76384,6 +84020,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamap", + Comment = null, }, new() { @@ -76394,6 +84031,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qila Muji", + Comment = null, }, new() { @@ -76404,6 +84042,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malasar", + Comment = null, }, new() { @@ -76414,6 +84053,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Mysian", + Comment = null, }, new() { @@ -76424,6 +84064,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Northern Muji", + Comment = null, }, new() { @@ -76434,6 +84075,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Muzi", + Comment = null, }, new() { @@ -76444,6 +84086,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aluo", + Comment = null, }, new() { @@ -76454,6 +84097,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yamben", + Comment = null, }, new() { @@ -76464,6 +84108,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yandruwandha", + Comment = null, }, new() { @@ -76474,6 +84119,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lang'e", + Comment = null, }, new() { @@ -76484,6 +84130,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yango", + Comment = null, }, new() { @@ -76494,6 +84141,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Naukan Yupik", + Comment = null, }, new() { @@ -76504,6 +84152,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yangulam", + Comment = null, }, new() { @@ -76514,6 +84163,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yana", + Comment = null, }, new() { @@ -76524,6 +84174,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yong", + Comment = null, }, new() { @@ -76534,6 +84185,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yendang", + Comment = null, }, new() { @@ -76544,6 +84196,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yansi", + Comment = null, }, new() { @@ -76554,6 +84207,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yahuna", + Comment = null, }, new() { @@ -76564,6 +84218,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yoba", + Comment = null, }, new() { @@ -76574,6 +84229,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yogad", + Comment = null, }, new() { @@ -76584,6 +84240,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yonaguni", + Comment = null, }, new() { @@ -76594,6 +84251,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yokuts", + Comment = null, }, new() { @@ -76604,6 +84262,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yombe", + Comment = null, }, new() { @@ -76614,6 +84273,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yongkom", + Comment = null, }, new() { @@ -76624,6 +84284,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoruba", + Comment = null, }, new() { @@ -76634,6 +84295,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yotti", + Comment = null, }, new() { @@ -76644,6 +84306,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoron", + Comment = null, }, new() { @@ -76654,6 +84317,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yoy", + Comment = null, }, new() { @@ -76664,6 +84328,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phala", + Comment = null, }, new() { @@ -76674,6 +84339,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Labo Phowa", + Comment = null, }, new() { @@ -76684,6 +84350,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phola", + Comment = null, }, new() { @@ -76694,6 +84361,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phupha", + Comment = null, }, new() { @@ -76704,6 +84372,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuma", + Comment = null, }, new() { @@ -76714,6 +84383,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ani Phowa", + Comment = null, }, new() { @@ -76724,6 +84394,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Alo Phola", + Comment = null, }, new() { @@ -76734,6 +84405,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phupa", + Comment = null, }, new() { @@ -76744,6 +84416,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Phuza", + Comment = null, }, new() { @@ -76754,6 +84427,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yerakai", + Comment = null, }, new() { @@ -76764,6 +84438,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yareba", + Comment = null, }, new() { @@ -76774,6 +84449,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaouré", + Comment = null, }, new() { @@ -76784,6 +84460,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nenets", + Comment = null, }, new() { @@ -76794,6 +84471,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nhengatu", + Comment = null, }, new() { @@ -76804,6 +84482,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yirrk-Mel", + Comment = null, }, new() { @@ -76814,6 +84493,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yerong", + Comment = null, }, new() { @@ -76824,6 +84504,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yaroamë", + Comment = null, }, new() { @@ -76834,6 +84515,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yarsun", + Comment = null, }, new() { @@ -76844,6 +84526,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yarawata", + Comment = null, }, new() { @@ -76854,6 +84537,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yarluyandi", + Comment = null, }, new() { @@ -76864,6 +84548,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yassic", + Comment = null, }, new() { @@ -76874,6 +84559,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Samatao", + Comment = null, }, new() { @@ -76884,6 +84570,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sonaga", + Comment = null, }, new() { @@ -76894,6 +84581,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yugoslavian Sign Language", + Comment = null, }, new() { @@ -76904,6 +84592,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Myanmar Sign Language", + Comment = null, }, new() { @@ -76914,6 +84603,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sani", + Comment = null, }, new() { @@ -76924,6 +84614,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nisi (China)", + Comment = null, }, new() { @@ -76934,6 +84625,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Lolopo", + Comment = null, }, new() { @@ -76944,6 +84636,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Sirenik Yupik", + Comment = null, }, new() { @@ -76954,6 +84647,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yessan-Mayo", + Comment = null, }, new() { @@ -76964,6 +84658,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sanie", + Comment = null, }, new() { @@ -76974,6 +84669,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Talu", + Comment = null, }, new() { @@ -76984,6 +84680,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tanglang", + Comment = null, }, new() { @@ -76994,6 +84691,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Thopho", + Comment = null, }, new() { @@ -77004,6 +84702,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yout Wam", + Comment = null, }, new() { @@ -77014,6 +84713,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yatay", + Comment = null, }, new() { @@ -77024,6 +84724,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yucateco", + Comment = null, }, new() { @@ -77034,6 +84735,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yugambal", + Comment = null, }, new() { @@ -77044,6 +84746,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuchi", + Comment = null, }, new() { @@ -77054,6 +84757,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Judeo-Tripolitanian Arabic", + Comment = null, }, new() { @@ -77064,6 +84768,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yue Chinese", + Comment = null, }, new() { @@ -77074,6 +84779,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Havasupai-Walapai-Yavapai", + Comment = null, }, new() { @@ -77084,6 +84790,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yug", + Comment = null, }, new() { @@ -77094,6 +84801,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yurutí", + Comment = null, }, new() { @@ -77104,6 +84812,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Karkar-Yuri", + Comment = null, }, new() { @@ -77114,6 +84823,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yuki", + Comment = null, }, new() { @@ -77124,6 +84834,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yulu", + Comment = null, }, new() { @@ -77134,6 +84845,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quechan", + Comment = null, }, new() { @@ -77144,6 +84856,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bena (Nigeria)", + Comment = null, }, new() { @@ -77154,6 +84867,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yukpa", + Comment = null, }, new() { @@ -77164,6 +84878,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuqui", + Comment = null, }, new() { @@ -77174,6 +84889,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yurok", + Comment = null, }, new() { @@ -77184,6 +84900,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yopno", + Comment = null, }, new() { @@ -77194,6 +84911,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yau (Morobe Province)", + Comment = null, }, new() { @@ -77204,6 +84922,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Yukaghir", + Comment = null, }, new() { @@ -77214,6 +84933,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Yugur", + Comment = null, }, new() { @@ -77224,6 +84944,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yuracare", + Comment = null, }, new() { @@ -77234,6 +84955,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawa", + Comment = null, }, new() { @@ -77244,6 +84966,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yavitero", + Comment = null, }, new() { @@ -77254,6 +84977,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kalou", + Comment = null, }, new() { @@ -77264,6 +84988,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yinhawangka", + Comment = null, }, new() { @@ -77274,6 +84999,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Lalu", + Comment = null, }, new() { @@ -77284,6 +85010,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawanawa", + Comment = null, }, new() { @@ -77294,6 +85021,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wuding-Luquan Yi", + Comment = null, }, new() { @@ -77304,6 +85032,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yawuru", + Comment = null, }, new() { @@ -77314,6 +85043,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xishanba Lalo", + Comment = null, }, new() { @@ -77324,6 +85054,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Wumeng Nasu", + Comment = null, }, new() { @@ -77334,6 +85065,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yawarawarga", + Comment = null, }, new() { @@ -77344,6 +85076,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mayawali", + Comment = null, }, new() { @@ -77354,6 +85087,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yagara", + Comment = null, }, new() { @@ -77364,6 +85098,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yardliyawarra", + Comment = null, }, new() { @@ -77374,6 +85109,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yinwum", + Comment = null, }, new() { @@ -77384,6 +85120,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yuyu", + Comment = null, }, new() { @@ -77394,6 +85131,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yabula Yabula", + Comment = null, }, new() { @@ -77404,6 +85142,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Yir Yoront", + Comment = null, }, new() { @@ -77414,6 +85153,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yau (Sandaun Province)", + Comment = null, }, new() { @@ -77424,6 +85164,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayizi", + Comment = null, }, new() { @@ -77434,6 +85175,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "E'ma Buyang", + Comment = null, }, new() { @@ -77444,6 +85186,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zokhuo", + Comment = null, }, new() { @@ -77454,6 +85197,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sierra de Juárez Zapotec", + Comment = null, }, new() { @@ -77464,6 +85208,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Western Tlacolula Valley Zapotec", + Comment = null, }, new() { @@ -77474,6 +85219,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ocotlán Zapotec", + Comment = null, }, new() { @@ -77484,6 +85230,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Cajonos Zapotec", + Comment = null, }, new() { @@ -77494,6 +85241,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yareni Zapotec", + Comment = null, }, new() { @@ -77504,6 +85252,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ayoquesco Zapotec", + Comment = null, }, new() { @@ -77514,6 +85263,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaghawa", + Comment = null, }, new() { @@ -77524,6 +85274,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zangwal", + Comment = null, }, new() { @@ -77534,6 +85285,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Isthmus Zapotec", + Comment = null, }, new() { @@ -77544,6 +85296,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaramo", + Comment = null, }, new() { @@ -77554,6 +85307,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zanaki", + Comment = null, }, new() { @@ -77564,6 +85318,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zauzou", + Comment = null, }, new() { @@ -77574,6 +85329,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Miahuatlán Zapotec", + Comment = null, }, new() { @@ -77584,6 +85340,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ozolotepec Zapotec", + Comment = null, }, new() { @@ -77594,6 +85351,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zapotec", + Comment = null, }, new() { @@ -77604,6 +85362,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Aloápam Zapotec", + Comment = null, }, new() { @@ -77614,6 +85373,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rincón Zapotec", + Comment = null, }, new() { @@ -77624,6 +85384,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santo Domingo Albarradas Zapotec", + Comment = null, }, new() { @@ -77634,6 +85395,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabaa Zapotec", + Comment = null, }, new() { @@ -77644,6 +85406,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zangskari", + Comment = null, }, new() { @@ -77654,6 +85417,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yatzachi Zapotec", + Comment = null, }, new() { @@ -77664,6 +85428,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mitla Zapotec", + Comment = null, }, new() { @@ -77674,6 +85439,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xadani Zapotec", + Comment = null, }, new() { @@ -77684,6 +85450,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zayse-Zergulla", + Comment = null, }, new() { @@ -77694,6 +85461,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zari", + Comment = null, }, new() { @@ -77704,6 +85472,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Balaibalan", + Comment = null, }, new() { @@ -77714,6 +85483,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Berawan", + Comment = null, }, new() { @@ -77724,6 +85494,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "East Berawan", + Comment = null, }, new() { @@ -77734,6 +85505,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "C", RefName = "Blissymbols", + Comment = null, }, new() { @@ -77744,6 +85516,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Batui", + Comment = null, }, new() { @@ -77754,6 +85527,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bu (Bauchi State)", + Comment = null, }, new() { @@ -77764,6 +85538,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "West Berawan", + Comment = null, }, new() { @@ -77774,6 +85549,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatecas Altas Zapotec", + Comment = null, }, new() { @@ -77784,6 +85560,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Las Delicias Zapotec", + Comment = null, }, new() { @@ -77794,6 +85571,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Central Hongshuihe Zhuang", + Comment = null, }, new() { @@ -77804,6 +85582,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Ngazidja Comorian", + Comment = null, }, new() { @@ -77814,6 +85593,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zeeuws", + Comment = null, }, new() { @@ -77824,6 +85604,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zenag", + Comment = null, }, new() { @@ -77834,6 +85615,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Eastern Hongshuihe Zhuang", + Comment = null, }, new() { @@ -77844,6 +85626,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zeem", + Comment = null, }, new() { @@ -77854,6 +85637,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zenaga", + Comment = null, }, new() { @@ -77864,6 +85648,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kinga", + Comment = null, }, new() { @@ -77874,6 +85659,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guibei Zhuang", + Comment = null, }, new() { @@ -77884,6 +85670,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Moroccan Tamazight", + Comment = null, }, new() { @@ -77894,6 +85681,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Minz Zhuang", + Comment = null, }, new() { @@ -77904,6 +85692,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guibian Zhuang", + Comment = null, }, new() { @@ -77914,6 +85703,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Magori", + Comment = null, }, new() { @@ -77924,6 +85714,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zhuang", + Comment = null, }, new() { @@ -77934,6 +85725,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zhaba", + Comment = null, }, new() { @@ -77944,6 +85736,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Dai Zhuang", + Comment = null, }, new() { @@ -77954,6 +85747,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zhire", + Comment = null, }, new() { @@ -77964,6 +85758,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Nong Zhuang", + Comment = null, }, new() { @@ -77974,6 +85769,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Chinese", + Comment = null, }, new() { @@ -77984,6 +85780,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zhoa", + Comment = null, }, new() { @@ -77994,6 +85791,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zia", + Comment = null, }, new() { @@ -78004,6 +85802,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zimbabwe Sign Language", + Comment = null, }, new() { @@ -78014,6 +85813,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zimakani", + Comment = null, }, new() { @@ -78024,6 +85824,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zialo", + Comment = null, }, new() { @@ -78034,6 +85835,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mesme", + Comment = null, }, new() { @@ -78044,6 +85846,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zinza", + Comment = null, }, new() { @@ -78054,6 +85857,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zigula", + Comment = null, }, new() { @@ -78064,6 +85868,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zizilivakan", + Comment = null, }, new() { @@ -78074,6 +85879,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaimbulawa", + Comment = null, }, new() { @@ -78084,6 +85890,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kadu", + Comment = null, }, new() { @@ -78094,6 +85901,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Koguryo", + Comment = null, }, new() { @@ -78104,6 +85912,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Khorezmian", + Comment = null, }, new() { @@ -78114,6 +85923,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Karankawa", + Comment = null, }, new() { @@ -78124,6 +85934,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kanan", + Comment = null, }, new() { @@ -78134,6 +85945,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Kott", + Comment = null, }, new() { @@ -78144,6 +85956,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "São Paulo Kaingáng", + Comment = null, }, new() { @@ -78154,6 +85967,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zakhring", + Comment = null, }, new() { @@ -78164,6 +85978,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kitan", + Comment = null, }, new() { @@ -78174,6 +85989,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kaurna", + Comment = null, }, new() { @@ -78184,6 +86000,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Krevinian", + Comment = null, }, new() { @@ -78194,6 +86011,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Khazar", + Comment = null, }, new() { @@ -78204,6 +86022,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zula", + Comment = null, }, new() { @@ -78214,6 +86033,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liujiang Zhuang", + Comment = null, }, new() { @@ -78224,6 +86044,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Malay (individual language)", + Comment = null, }, new() { @@ -78234,6 +86055,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lianshan Zhuang", + Comment = null, }, new() { @@ -78244,6 +86066,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Liuqian Zhuang", + Comment = null, }, new() { @@ -78254,6 +86077,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zul", + Comment = null, }, new() { @@ -78264,6 +86088,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Manda (Australia)", + Comment = null, }, new() { @@ -78274,6 +86099,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zimba", + Comment = null, }, new() { @@ -78284,6 +86110,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Margany", + Comment = null, }, new() { @@ -78294,6 +86121,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maridan", + Comment = null, }, new() { @@ -78304,6 +86132,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mangerr", + Comment = null, }, new() { @@ -78314,6 +86143,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mfinu", + Comment = null, }, new() { @@ -78324,6 +86154,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marti Ke", + Comment = null, }, new() { @@ -78334,6 +86165,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Makolkol", + Comment = null, }, new() { @@ -78344,6 +86176,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Negeri Sembilan Malay", + Comment = null, }, new() { @@ -78354,6 +86187,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maridjabin", + Comment = null, }, new() { @@ -78364,6 +86198,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mandandanyi", + Comment = null, }, new() { @@ -78374,6 +86209,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Matngala", + Comment = null, }, new() { @@ -78384,6 +86220,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Marimanindji", + Comment = null, }, new() { @@ -78394,6 +86231,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbangwe", + Comment = null, }, new() { @@ -78404,6 +86242,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Molo", + Comment = null, }, new() { @@ -78414,6 +86253,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbuun", + Comment = null, }, new() { @@ -78424,6 +86264,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mituku", + Comment = null, }, new() { @@ -78434,6 +86275,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maranunggu", + Comment = null, }, new() { @@ -78444,6 +86286,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbesa", + Comment = null, }, new() { @@ -78454,6 +86297,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Maringarr", + Comment = null, }, new() { @@ -78464,6 +86308,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Muruwari", + Comment = null, }, new() { @@ -78474,6 +86319,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Mbariman-Gudhinma", + Comment = null, }, new() { @@ -78484,6 +86330,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbo (Democratic Republic of Congo)", + Comment = null, }, new() { @@ -78494,6 +86341,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Bomitaba", + Comment = null, }, new() { @@ -78504,6 +86352,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mariyedi", + Comment = null, }, new() { @@ -78514,6 +86363,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mbandja", + Comment = null, }, new() { @@ -78524,6 +86374,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zan Gula", + Comment = null, }, new() { @@ -78534,6 +86385,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zande (individual language)", + Comment = null, }, new() { @@ -78544,6 +86396,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mang", + Comment = null, }, new() { @@ -78554,6 +86407,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Manangkari", + Comment = null, }, new() { @@ -78564,6 +86418,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mangas", + Comment = null, }, new() { @@ -78574,6 +86429,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Copainalá Zoque", + Comment = null, }, new() { @@ -78584,6 +86440,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chimalapa Zoque", + Comment = null, }, new() { @@ -78594,6 +86451,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zou", + Comment = null, }, new() { @@ -78604,6 +86462,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Asunción Mixtepec Zapotec", + Comment = null, }, new() { @@ -78614,6 +86473,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tabasco Zoque", + Comment = null, }, new() { @@ -78624,6 +86484,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Rayón Zoque", + Comment = null, }, new() { @@ -78634,6 +86495,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Francisco León Zoque", + Comment = null, }, new() { @@ -78644,6 +86506,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lachiguiri Zapotec", + Comment = null, }, new() { @@ -78654,6 +86517,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yautepec Zapotec", + Comment = null, }, new() { @@ -78664,6 +86528,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Choapan Zapotec", + Comment = null, }, new() { @@ -78674,6 +86539,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southeastern Ixtlán Zapotec", + Comment = null, }, new() { @@ -78684,6 +86550,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Petapa Zapotec", + Comment = null, }, new() { @@ -78694,6 +86561,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Pedro Quiatoni Zapotec", + Comment = null, }, new() { @@ -78704,6 +86572,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Guevea De Humboldt Zapotec", + Comment = null, }, new() { @@ -78714,6 +86583,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Totomachapan Zapotec", + Comment = null, }, new() { @@ -78724,6 +86594,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa María Quiegolani Zapotec", + Comment = null, }, new() { @@ -78734,6 +86605,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quiavicuzas Zapotec", + Comment = null, }, new() { @@ -78744,6 +86616,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tlacolulita Zapotec", + Comment = null, }, new() { @@ -78754,6 +86627,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lachixío Zapotec", + Comment = null, }, new() { @@ -78764,6 +86638,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mixtepec Zapotec", + Comment = null, }, new() { @@ -78774,6 +86649,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Inés Yatzechi Zapotec", + Comment = null, }, new() { @@ -78784,6 +86660,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Amatlán Zapotec", + Comment = null, }, new() { @@ -78794,6 +86671,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "El Alto Zapotec", + Comment = null, }, new() { @@ -78804,6 +86682,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zoogocho Zapotec", + Comment = null, }, new() { @@ -78814,6 +86693,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santiago Xanica Zapotec", + Comment = null, }, new() { @@ -78824,6 +86704,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Coatlán Zapotec", + Comment = null, }, new() { @@ -78834,6 +86715,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Vicente Coatlán Zapotec", + Comment = null, }, new() { @@ -78844,6 +86726,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yalálag Zapotec", + Comment = null, }, new() { @@ -78854,6 +86737,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Chichicapan Zapotec", + Comment = null, }, new() { @@ -78864,6 +86748,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaniza Zapotec", + Comment = null, }, new() { @@ -78874,6 +86759,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Baltazar Loxicha Zapotec", + Comment = null, }, new() { @@ -78884,6 +86770,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mazaltepec Zapotec", + Comment = null, }, new() { @@ -78894,6 +86781,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Texmelucan Zapotec", + Comment = null, }, new() { @@ -78904,6 +86792,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Qiubei Zhuang", + Comment = null, }, new() { @@ -78914,6 +86803,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kara (Korea)", + Comment = null, }, new() { @@ -78924,6 +86814,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mirgan", + Comment = null, }, new() { @@ -78934,6 +86825,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zerenkel", + Comment = null, }, new() { @@ -78944,6 +86836,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Záparo", + Comment = null, }, new() { @@ -78954,6 +86847,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "E", RefName = "Zarphatic", + Comment = null, }, new() { @@ -78964,6 +86858,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Mairasi", + Comment = null, }, new() { @@ -78974,6 +86869,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sarasira", + Comment = null, }, new() { @@ -78984,6 +86880,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "H", RefName = "Kaskean", + Comment = null, }, new() { @@ -78994,6 +86891,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zambian Sign Language", + Comment = null, }, new() { @@ -79004,6 +86902,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Standard Malay", + Comment = null, }, new() { @@ -79014,6 +86913,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Southern Rincon Zapotec", + Comment = null, }, new() { @@ -79024,6 +86924,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Sukurum", + Comment = null, }, new() { @@ -79034,6 +86935,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Elotepec Zapotec", + Comment = null, }, new() { @@ -79044,6 +86946,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Xanaguía Zapotec", + Comment = null, }, new() { @@ -79054,6 +86957,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Lapaguía-Guivini Zapotec", + Comment = null, }, new() { @@ -79064,6 +86968,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "San Agustín Mixtepec Zapotec", + Comment = null, }, new() { @@ -79074,6 +86979,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Santa Catarina Albarradas Zapotec", + Comment = null, }, new() { @@ -79084,6 +86990,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Loxicha Zapotec", + Comment = null, }, new() { @@ -79094,6 +87001,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Quioquitani-Quierí Zapotec", + Comment = null, }, new() { @@ -79104,6 +87012,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tilquiapan Zapotec", + Comment = null, }, new() { @@ -79114,6 +87023,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tejalapan Zapotec", + Comment = null, }, new() { @@ -79124,6 +87034,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Güilá Zapotec", + Comment = null, }, new() { @@ -79134,6 +87045,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zaachila Zapotec", + Comment = null, }, new() { @@ -79144,6 +87056,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yatee Zapotec", + Comment = null, }, new() { @@ -79154,6 +87067,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Tokano", + Comment = null, }, new() { @@ -79164,6 +87078,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zulu", + Comment = null, }, new() { @@ -79174,6 +87089,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Kumzari", + Comment = null, }, new() { @@ -79184,6 +87100,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zuni", + Comment = null, }, new() { @@ -79194,6 +87111,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zumaya", + Comment = null, }, new() { @@ -79204,6 +87122,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zay", + Comment = null, }, new() { @@ -79214,6 +87133,7 @@ public static Iso6393Data Create() => Scope = "S", LanguageType = "S", RefName = "No linguistic content", + Comment = null, }, new() { @@ -79224,6 +87144,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yongbei Zhuang", + Comment = null, }, new() { @@ -79234,6 +87155,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yang Zhuang", + Comment = null, }, new() { @@ -79244,6 +87166,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Youjiang Zhuang", + Comment = null, }, new() { @@ -79254,6 +87177,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Yongnan Zhuang", + Comment = null, }, new() { @@ -79264,6 +87188,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zyphe Chin", + Comment = null, }, new() { @@ -79274,6 +87199,7 @@ public static Iso6393Data Create() => Scope = "M", LanguageType = "L", RefName = "Zaza", + Comment = null, }, new() { @@ -79284,6 +87210,7 @@ public static Iso6393Data Create() => Scope = "I", LanguageType = "L", RefName = "Zuojiang Zhuang", + Comment = null, }, ], }; diff --git a/LanguageTags/LanguageLookup.cs b/LanguageTags/LanguageLookup.cs index 40b342d..421f77c 100644 --- a/LanguageTags/LanguageLookup.cs +++ b/LanguageTags/LanguageLookup.cs @@ -3,15 +3,15 @@ namespace ptr727.LanguageTags; /// /// Provides language code lookup and conversion functionality between IETF and ISO standards. /// -/// The options used to configure logging. -public sealed class LanguageLookup(Options? options = null) +public sealed class LanguageLookup { /// /// The language code for undetermined languages ("und"). /// public const string Undetermined = "und"; - private readonly ILogger _logger = LogOptions.CreateLogger(options); + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; private readonly Iso6392Data _iso6392 = Iso6392Data.Create(); private readonly Iso6393Data _iso6393 = Iso6393Data.Create(); private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); @@ -124,7 +124,7 @@ public string GetIetfFromIso(string languageTag) return cultureInfo.IetfLanguageTag; } - _logger.LogUndeterminedFallback(languageTag, nameof(GetIetfFromIso)); + Log.LogUndeterminedFallback(languageTag, nameof(GetIetfFromIso)); return Undetermined; } @@ -189,7 +189,7 @@ public string GetIsoFromIetf(string languageTag) CultureInfo? cultureInfo = CreateCultureInfo(languageTag); if (cultureInfo == null) { - _logger.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); + Log.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); return Undetermined; } @@ -200,7 +200,8 @@ public string GetIsoFromIetf(string languageTag) // Return the Part 2B code return iso6393.Part2B!; } - _logger.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); + + Log.LogUndeterminedFallback(languageTag, nameof(GetIsoFromIetf)); return Undetermined; } @@ -264,7 +265,7 @@ public bool IsMatch(string prefix, string languageTag) } // No match - _logger.LogPrefixMatchFailed(originalPrefix, originalTag); + Log.LogPrefixMatchFailed(originalPrefix, originalTag); return false; } } diff --git a/LanguageTags/LanguageSchema.cs b/LanguageTags/LanguageSchema.cs index 0bfd5b2..995d171 100644 --- a/LanguageTags/LanguageSchema.cs +++ b/LanguageTags/LanguageSchema.cs @@ -4,20 +4,6 @@ namespace ptr727.LanguageTags; internal static class LanguageSchema { - internal static async Task WriteFileAsync(string fileName, string value) - { - // Always write as CRLF with newline at the end - if ( - value.Contains('\n', StringComparison.Ordinal) - && !value.Contains('\r', StringComparison.Ordinal) - ) - { - value = value.Replace("\n", "\r\n", StringComparison.Ordinal); - } - value = value.TrimEnd() + "\r\n"; - await File.WriteAllTextAsync(fileName, value).ConfigureAwait(false); - } - internal static string GetCodeGenString(string? text) => string.IsNullOrEmpty(text) ? "null" : $"\"{text}\""; diff --git a/LanguageTags/LanguageTag.cs b/LanguageTags/LanguageTag.cs index 04777df..6b5fffa 100644 --- a/LanguageTags/LanguageTag.cs +++ b/LanguageTags/LanguageTag.cs @@ -71,41 +71,30 @@ internal LanguageTag(LanguageTag languageTag) /// Parses a language tag string into a instance. /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). - /// The options used to configure logging. If null, uses default logging configuration. /// The parsed language tag, or null if parsing fails. - public static LanguageTag? Parse(string tag, Options? options = null) => - new LanguageTagParser(options).Parse(tag); + public static LanguageTag? Parse(string tag) => new LanguageTagParser().Parse(tag); /// /// Parses a language tag string, returning a default tag if parsing fails. /// /// The language tag string to parse. /// The default tag to return if parsing fails (defaults to "und"). - /// The options used to configure logging. If null, uses default logging configuration. /// The parsed tag, the supplied default tag, or "und" if parsing fails and no default is provided. - public static LanguageTag ParseOrDefault( - string tag, - LanguageTag? defaultTag = null, - Options? options = null - ) + public static LanguageTag ParseOrDefault(string tag, LanguageTag? defaultTag = null) { - LanguageTag? parsed = Parse(tag, options); - return parsed ?? defaultTag ?? Parse(LanguageLookup.Undetermined, options)!; + LanguageTag? parsed = Parse(tag); + return parsed ?? defaultTag ?? Parse(LanguageLookup.Undetermined)!; } /// /// Parses and normalizes a language tag string. /// /// The language tag string. - /// The options used to configure logging. If null, uses default logging configuration. /// A normalized language tag, or null if parsing fails. - /// - /// Logging for both parsing and normalization uses the provided when supplied. - /// - public static LanguageTag? ParseAndNormalize(string tag, Options? options = null) + public static LanguageTag? ParseAndNormalize(string tag) { - LanguageTag? parsed = Parse(tag, options); - return parsed == null ? null : new LanguageTagParser(options).Normalize(parsed); + LanguageTag? parsed = Parse(tag); + return parsed == null ? null : new LanguageTagParser().Normalize(parsed); } /// @@ -113,15 +102,10 @@ public static LanguageTag ParseOrDefault( /// /// The language tag string to parse (e.g., "en-US", "zh-Hans-CN"). /// When this method returns, contains the parsed language tag if successful, or null if parsing fails. - /// The options used to configure logging. If null, uses default logging configuration. /// true if the tag was successfully parsed; otherwise, false. - public static bool TryParse( - string tag, - [NotNullWhen(true)] out LanguageTag? result, - Options? options = null - ) + public static bool TryParse(string tag, [NotNullWhen(true)] out LanguageTag? result) { - result = Parse(tag, options); + result = Parse(tag); return result != null; } diff --git a/LanguageTags/LanguageTagParser.cs b/LanguageTags/LanguageTagParser.cs index 8474201..909b638 100644 --- a/LanguageTags/LanguageTagParser.cs +++ b/LanguageTags/LanguageTagParser.cs @@ -19,14 +19,12 @@ namespace ptr727.LanguageTags; internal sealed class LanguageTagParser { - private readonly ILogger _logger; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; private readonly Rfc5646Data _rfc5646 = Rfc5646Data.Create(); private readonly List _tagList = []; private LanguageTag _languageTag = new(); - internal LanguageTagParser(Options? options = null) => - _logger = LogOptions.CreateLogger(options); - private string ParseGrandfathered(string languageTag) { // Grandfathered and Redundant Registrations @@ -466,14 +464,14 @@ private bool ParsePrivateUse() // Must be non-empty if (string.IsNullOrEmpty(languageTag)) { - _logger.LogParseFailure(originalTag, "Tag is null or empty."); + Log.LogParseFailure(originalTag, "Tag is null or empty."); return null; } // Must be all ASCII if (languageTag.Any(c => !char.IsAscii(c))) { - _logger.LogParseFailure(originalTag, "Tag contains non-ASCII characters."); + Log.LogParseFailure(originalTag, "Tag contains non-ASCII characters."); return null; } @@ -484,21 +482,21 @@ private bool ParsePrivateUse() _tagList.AddRange([.. languageTag.Split('-')]); if (_tagList.Count == 0) { - _logger.LogParseFailure(originalTag, "Tag split resulted in no segments."); + Log.LogParseFailure(originalTag, "Tag split resulted in no segments."); return null; } // All parts must be non-empty if (_tagList.Any(string.IsNullOrEmpty)) { - _logger.LogParseFailure(originalTag, "Tag contains empty segments."); + Log.LogParseFailure(originalTag, "Tag contains empty segments."); return null; } // Private use if (!ParsePrivateUse()) { - _logger.LogParseFailure(originalTag, "Invalid private use section."); + Log.LogParseFailure(originalTag, "Invalid private use section."); return null; } if (_tagList.Count == 0) @@ -509,7 +507,7 @@ private bool ParsePrivateUse() // Language if (!ParseLanguage()) { - _logger.LogParseFailure(originalTag, "Invalid primary language subtag."); + Log.LogParseFailure(originalTag, "Invalid primary language subtag."); return null; } if (_tagList.Count == 0) @@ -520,7 +518,7 @@ private bool ParsePrivateUse() // Extended language if (!ParseExtendedLanguage()) { - _logger.LogParseFailure(originalTag, "Invalid extended language subtag."); + Log.LogParseFailure(originalTag, "Invalid extended language subtag."); return null; } if (_tagList.Count == 0) @@ -531,7 +529,7 @@ private bool ParsePrivateUse() // Script if (!ParseScript()) { - _logger.LogParseFailure(originalTag, "Invalid script subtag."); + Log.LogParseFailure(originalTag, "Invalid script subtag."); return null; } if (_tagList.Count == 0) @@ -542,7 +540,7 @@ private bool ParsePrivateUse() // Region if (!ParseRegion()) { - _logger.LogParseFailure(originalTag, "Invalid region subtag."); + Log.LogParseFailure(originalTag, "Invalid region subtag."); return null; } if (_tagList.Count == 0) @@ -553,7 +551,7 @@ private bool ParsePrivateUse() // Variant if (!ParseVariant()) { - _logger.LogParseFailure(originalTag, "Invalid variant subtag."); + Log.LogParseFailure(originalTag, "Invalid variant subtag."); return null; } if (_tagList.Count == 0) @@ -564,7 +562,7 @@ private bool ParsePrivateUse() // Extension if (!ParseExtension()) { - _logger.LogParseFailure(originalTag, "Invalid extension subtag."); + Log.LogParseFailure(originalTag, "Invalid extension subtag."); return null; } if (_tagList.Count == 0) @@ -575,7 +573,7 @@ private bool ParsePrivateUse() // Private use if (!ParsePrivateUse()) { - _logger.LogParseFailure(originalTag, "Invalid private use subtag."); + Log.LogParseFailure(originalTag, "Invalid private use subtag."); return null; } if (_tagList.Count == 0) @@ -584,7 +582,7 @@ private bool ParsePrivateUse() } // Should be done - _logger.LogParseFailure(originalTag, "Unexpected trailing segments."); + Log.LogParseFailure(originalTag, "Unexpected trailing segments."); return null; } @@ -743,7 +741,7 @@ .. _rfc5646.RecordList.Where(record => string normalizedTag = normalizeTag.ToString(); if (!string.Equals(originalTag, normalizedTag, StringComparison.OrdinalIgnoreCase)) { - _logger.LogNormalizedTag(originalTag, normalizedTag); + Log.LogNormalizedTag(originalTag, normalizedTag); } // Done diff --git a/LanguageTags/LogOptions.cs b/LanguageTags/LogOptions.cs index 58633c5..55c0c66 100644 --- a/LanguageTags/LogOptions.cs +++ b/LanguageTags/LogOptions.cs @@ -5,10 +5,27 @@ namespace ptr727.LanguageTags; /// /// Provides global logging configuration for the library. /// +/// +/// +/// This class manages static logger configuration used by all library classes. +/// When a logger is requested, it is resolved using the following priority order: +/// +/// +/// +/// - The global logger factory, when set to a non- instance. Creates a logger for the requested category. +/// +/// +/// - The default fallback when no logger factory is configured. +/// +/// +/// +/// Note that loggers are created and cached at the time of use by each class instance. Changes to +/// after a logger has been created will not affect existing cached loggers—only new logger requests will use the updated configuration. +/// +/// public static class LogOptions { private static ILoggerFactory s_loggerFactory = NullLoggerFactory.Instance; - private static ILogger s_logger = NullLogger.Instance; /// /// Gets or sets the logger factory used to create category loggers. @@ -22,123 +39,6 @@ public static ILoggerFactory LoggerFactory set => _ = Interlocked.Exchange(ref s_loggerFactory, value ?? NullLoggerFactory.Instance); } - /// - /// Gets or sets the global fallback logger used when no factory is configured. - /// - /// - /// Changes to this property after loggers have been created will not affect existing cached loggers. - /// - public static ILogger Logger - { - get => Volatile.Read(ref s_logger); - set => _ = Interlocked.Exchange(ref s_logger, value ?? NullLogger.Instance); - } - - /// - /// Creates a logger for the specified type using the provided options or global configuration. - /// - /// The type used to derive the logger category. - /// The options used to configure logging. If null, uses global configuration. - /// The configured logger for the category. - /// - /// - /// When options is provided, the logger is resolved using this priority order: - /// - /// options.Logger if set - /// options.LoggerFactory if set, creating a logger for the category - /// Global Logger if set - /// Global LoggerFactory if set, creating a logger for the category - /// - /// - /// - /// When options is null, the global logger is resolved using this priority order: - /// - /// Global Logger if set - /// Global LoggerFactory if set, creating a logger for the category - /// - /// - /// - /// Null logger instances are treated as not configured. - /// - /// - public static ILogger CreateLogger(Options? options = null) => - CreateLogger(typeof(T).FullName ?? typeof(T).Name, options); - - /// - /// Creates a logger for the specified category using the provided options or global configuration. - /// - /// The category name for the logger. - /// The options used to configure logging. If null, uses global configuration. - /// The configured logger for the category. - /// - /// Thrown when is null. - /// - /// - /// Thrown when is empty or whitespace. - /// - /// - /// - /// When options is provided, the logger is resolved using this priority order: - /// - /// options.Logger if set - /// options.LoggerFactory if set, creating a logger for the category - /// Global Logger if set - /// Global LoggerFactory if set, creating a logger for the category - /// - /// - /// - /// When options is null, the global logger is resolved using this priority order: - /// - /// Global Logger if set - /// Global LoggerFactory if set, creating a logger for the category - /// - /// - /// - /// Null logger instances are treated as not configured. - /// - /// - [System.Diagnostics.CodeAnalysis.SuppressMessage( - "Style", - "IDE0046:Convert to conditional expression", - Justification = "Logic clarity." - )] - public static ILogger CreateLogger(string categoryName, Options? options = null) - { - ArgumentNullException.ThrowIfNull(categoryName); - if (string.IsNullOrWhiteSpace(categoryName)) - { - throw new ArgumentException("Category name must not be empty.", nameof(categoryName)); - } - - if (options is not null) - { - if (options.Logger is not null && !ReferenceEquals(options.Logger, NullLogger.Instance)) - { - return options.Logger; - } - - if ( - options.LoggerFactory is not null - && !ReferenceEquals(options.LoggerFactory, NullLoggerFactory.Instance) - ) - { - return options.LoggerFactory.CreateLogger(categoryName); - } - } - - if (!ReferenceEquals(Logger, NullLogger.Instance)) - { - return Logger; - } - - if (!ReferenceEquals(LoggerFactory, NullLoggerFactory.Instance)) - { - return LoggerFactory.CreateLogger(categoryName); - } - - return NullLogger.Instance; - } - /// /// Configures the library to use the specified logger factory. /// @@ -171,35 +71,15 @@ public static bool TrySetFactory(ILoggerFactory loggerFactory) return ReferenceEquals(original, NullLoggerFactory.Instance); } - /// - /// Configures the library to use the specified global logger. - /// - /// The logger used as the global fallback. - /// - /// This will only affect loggers created after this call. - /// Existing cached loggers remain unchanged. - /// - public static void SetLogger(ILogger logger) => Logger = logger; + internal static ILogger CreateLogger() => CreateLogger(typeof(T).FullName ?? typeof(T).Name); - /// - /// Attempts to configure the library to use the specified global logger if none is set. - /// - /// The logger used as the global fallback. - /// - /// true when the logger was set because no logger was configured; otherwise, false. - /// - /// - /// Use this method for one-time initialization to avoid overwriting an existing logger. - /// - public static bool TrySetLogger(ILogger logger) + internal static ILogger CreateLogger(string categoryName) { - ILogger candidate = logger ?? NullLogger.Instance; - ILogger original = Interlocked.CompareExchange( - ref s_logger, - candidate, - NullLogger.Instance - ); + ArgumentException.ThrowIfNullOrWhiteSpace(categoryName); - return ReferenceEquals(original, NullLogger.Instance); + // LoggerFactory -> NullLogger + return !ReferenceEquals(LoggerFactory, NullLoggerFactory.Instance) + ? LoggerFactory.CreateLogger(categoryName) + : NullLogger.Instance; } } diff --git a/LanguageTags/Options.cs b/LanguageTags/Options.cs deleted file mode 100644 index 1dcd641..0000000 --- a/LanguageTags/Options.cs +++ /dev/null @@ -1,17 +0,0 @@ -namespace ptr727.LanguageTags; - -/// -/// Options used to configure the library. -/// -public sealed class Options -{ - /// - /// Gets the logger factory used to create per-instance loggers. - /// - public ILoggerFactory? LoggerFactory { get; init; } - - /// - /// Gets the logger used by the library. - /// - public ILogger? Logger { get; init; } -} diff --git a/LanguageTags/Rfc5646Data.cs b/LanguageTags/Rfc5646Data.cs index 400d190..1362104 100644 --- a/LanguageTags/Rfc5646Data.cs +++ b/LanguageTags/Rfc5646Data.cs @@ -12,23 +12,44 @@ public sealed partial class Rfc5646Data "https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry"; internal const string DataFileName = "rfc5646"; + private readonly Lazy _logger = new(LogOptions.CreateLogger); + internal ILogger Log => _logger.Value; + + [JsonConstructor] + internal Rfc5646Data() { } + + /// + /// Gets the file date of the language subtag registry. + /// + [JsonInclude] + public DateOnly? FileDate { get; internal set; } + /// - /// Loads RFC 5646 data from a file asynchronously. + /// Gets the collection of RFC 5646 language subtag records. + /// + [JsonInclude] + public ImmutableArray RecordList { get; internal set; } = []; + + /// + /// Creates a instance from a data file asynchronously. /// /// The path to the data file. - /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the file contains invalid data. - public static Task LoadDataAsync(string fileName, Options? options = null) => - LoadDataAsync(fileName, LogOptions.CreateLogger(options)); + public static async Task FromDataAsync(string fileName) + { + Rfc5646Data rfc5646Data = new(); + await rfc5646Data.LoadDataAsync(fileName).ConfigureAwait(false); + return rfc5646Data; + } [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadDataAsync(string fileName, ILogger logger) + private async Task LoadDataAsync(string fileName) { // File Format // https://www.rfc-editor.org/rfc/rfc5646#section-3.1 @@ -63,40 +84,37 @@ private static async Task LoadDataAsync(string fileName, ILogger lo if (recordList.Count == 0) { - logger.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); + Log.LogDataLoadEmpty(nameof(Rfc5646Data), fileName); throw new InvalidDataException($"No data found in RFC 5646 file: {fileName}"); } - Rfc5646Data data = new() { FileDate = fileDate, RecordList = [.. recordList] }; - logger.LogDataLoaded(nameof(Rfc5646Data), fileName, data.RecordList.Length); - return data; + FileDate = fileDate; + RecordList = [.. recordList]; + Log.LogDataLoaded(nameof(Rfc5646Data), fileName, RecordList.Length); } catch (Exception exception) { - logger.LogDataLoadFailed(nameof(Rfc5646Data), fileName, exception); + Log.LogDataLoadFailed(nameof(Rfc5646Data), fileName, exception); throw; } } /// - /// Loads RFC 5646 data from a JSON file asynchronously. + /// Creates a instance from a JSON file asynchronously. /// /// The path to the JSON file. - /// The options used to configure logging. If null, uses default logging configuration. /// The loaded . /// Thrown when the file cannot be read. /// Thrown when the JSON is invalid. /// Thrown when the file contains invalid data. - public static Task LoadJsonAsync(string fileName, Options? options = null) => - LoadJsonAsync(fileName, LogOptions.CreateLogger(options)); - [System.Diagnostics.CodeAnalysis.SuppressMessage( "Reliability", "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - private static async Task LoadJsonAsync(string fileName, ILogger logger) + public static async Task FromJsonAsync(string fileName) { + ILogger logger = LogOptions.CreateLogger(); try { await using FileStream fileStream = new( @@ -131,7 +149,7 @@ private static async Task LoadJsonAsync(string fileName, ILogger lo "CA2007:Consider calling ConfigureAwait on the awaited task", Justification = "https://github.com/dotnet/roslyn-analyzers/issues/7185" )] - internal static async Task SaveJsonAsync(string fileName, Rfc5646Data rfc5646) + internal async Task SaveJsonAsync(string fileName) { await using FileStream fileStream = new( fileName, @@ -142,14 +160,12 @@ internal static async Task SaveJsonAsync(string fileName, Rfc5646Data rfc5646) FileOptions.Asynchronous | FileOptions.SequentialScan ); await JsonSerializer - .SerializeAsync(fileStream, rfc5646, LanguageJsonContext.Default.Rfc5646Data) + .SerializeAsync(fileStream, this, LanguageJsonContext.Default.Rfc5646Data) .ConfigureAwait(false); } - internal static async Task GenCodeAsync(string fileName, Rfc5646Data rfc5646) + internal async Task SaveCodeAsync(string fileName) { - ArgumentNullException.ThrowIfNull(rfc5646); - using StreamWriter writer = new( new FileStream( fileName, @@ -189,12 +205,12 @@ await WriteLineAsync( await WriteLineAsync(" new()"); await WriteLineAsync(" {"); await WriteLineAsync( - $" FileDate = {LanguageSchema.GetCodeGenString(rfc5646.FileDate)}," + $" FileDate = {LanguageSchema.GetCodeGenString(FileDate)}," ); await WriteLineAsync(" RecordList ="); await WriteLineAsync(" ["); - foreach (Rfc5646Record record in rfc5646.RecordList) + foreach (Rfc5646Record record in RecordList) { await WriteLineAsync(" new()"); await WriteLineAsync(" {"); @@ -443,16 +459,6 @@ private static DateOnly DateFromString(string value) => DateOnly.ParseExact(value, "yyyy-MM-dd", CultureInfo.InvariantCulture); } - /// - /// Gets the file date of the language subtag registry. - /// - public required DateOnly? FileDate { get; init; } - - /// - /// Gets the collection of RFC 5646 language subtag records. - /// - public ImmutableArray RecordList { get; init; } - private static Rfc5646Record.RecordType TypeFromString(string value) => value.ToUpperInvariant() switch { @@ -481,22 +487,16 @@ private static Rfc5646Record.RecordScope ScopeFromString(string value) => /// /// /// Matching is case-insensitive and checks Tag, SubTag, PreferredValue, then (optionally) Description. + /// Null or empty values return null. /// /// The language tag, subtag, or description to search for. /// If true, searches in the description field; otherwise, only searches tags and subtags. /// The matching or null if not found. - /// Thrown when is null. public Rfc5646Record? Find(string languageTag, bool includeDescription) - { - ArgumentNullException.ThrowIfNull(languageTag); - return Find(languageTag, includeDescription, LogOptions.CreateLogger()); - } - - private Rfc5646Record? Find(string languageTag, bool includeDescription, ILogger logger) { if (string.IsNullOrEmpty(languageTag)) { - logger.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); return null; } @@ -510,7 +510,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -521,7 +521,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -532,7 +532,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -547,7 +547,7 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } @@ -559,13 +559,13 @@ record = RecordList.FirstOrDefault(item => ); if (record != null) { - logger.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordFound(nameof(Rfc5646Data), languageTag, includeDescription); return record; } } // Not found - logger.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); + Log.LogFindRecordNotFound(nameof(Rfc5646Data), languageTag, includeDescription); return null; } } diff --git a/LanguageTagsCreate/CreateTagData.cs b/LanguageTagsCreate/CreateTagData.cs index 7a62a39..c0ab7a2 100644 --- a/LanguageTagsCreate/CreateTagData.cs +++ b/LanguageTagsCreate/CreateTagData.cs @@ -52,22 +52,22 @@ internal async Task CreateJsonDataAsync() Log.Information("Converting data files to JSON ..."); Log.Information("Converting ISO 639-2 data to JSON ..."); - _iso6392 = await Iso6392Data.LoadDataAsync(_iso6392DataFile).ConfigureAwait(false); + _iso6392 = await Iso6392Data.FromDataAsync(_iso6392DataFile).ConfigureAwait(false); _iso6392JsonFile = Path.Combine(dataDirectory, Iso6392Data.DataFileName + ".json"); Log.Information("Writing ISO 639-2 data to {JsonPath}", _iso6392JsonFile); - await Iso6392Data.SaveJsonAsync(_iso6392JsonFile, _iso6392).ConfigureAwait(false); + await _iso6392.SaveJsonAsync(_iso6392JsonFile).ConfigureAwait(false); Log.Information("Converting ISO 639-3 data to JSON ..."); - _iso6393 = await Iso6393Data.LoadDataAsync(_iso6393DataFile).ConfigureAwait(false); + _iso6393 = await Iso6393Data.FromDataAsync(_iso6393DataFile).ConfigureAwait(false); _iso6393JsonFile = Path.Combine(dataDirectory, Iso6393Data.DataFileName + ".json"); Log.Information("Writing ISO 639-3 data to {JsonPath}", _iso6393JsonFile); - await Iso6393Data.SaveJsonAsync(_iso6393JsonFile, _iso6393).ConfigureAwait(false); + await _iso6393.SaveJsonAsync(_iso6393JsonFile).ConfigureAwait(false); Log.Information("Converting RFC 5646 data to JSON ..."); - _rfc5646 = await Rfc5646Data.LoadDataAsync(_rfc5646DataFile).ConfigureAwait(false); + _rfc5646 = await Rfc5646Data.FromDataAsync(_rfc5646DataFile).ConfigureAwait(false); _rfc5646JsonFile = Path.Combine(dataDirectory, Rfc5646Data.DataFileName + ".json"); Log.Information("Writing RFC 5646 data to {JsonPath}", _rfc5646JsonFile); - await Rfc5646Data.SaveJsonAsync(_rfc5646JsonFile, _rfc5646).ConfigureAwait(false); + await _rfc5646.SaveJsonAsync(_rfc5646JsonFile).ConfigureAwait(false); Log.Information("Data files converted to JSON successfully."); } @@ -84,17 +84,17 @@ internal async Task GenerateCodeAsync() Log.Information("Generating ISO 639-2 code ..."); _iso6392CodeFile = Path.Combine(codeDirectory, nameof(Iso6392Data) + "Gen.cs"); Log.Information("Writing ISO 639-2 code to {CodePath}", _iso6392CodeFile); - await Iso6392Data.GenCodeAsync(_iso6392CodeFile, _iso6392).ConfigureAwait(false); + await _iso6392.SaveCodeAsync(_iso6392CodeFile).ConfigureAwait(false); Log.Information("Generating ISO 639-3 code ..."); _iso6393CodeFile = Path.Combine(codeDirectory, nameof(Iso6393Data) + "Gen.cs"); Log.Information("Writing ISO 639-3 code to {CodePath}", _iso6393CodeFile); - await Iso6393Data.GenCodeAsync(_iso6393CodeFile, _iso6393).ConfigureAwait(false); + await _iso6393.SaveCodeAsync(_iso6393CodeFile).ConfigureAwait(false); Log.Information("Generating RFC 5646 code ..."); _rfc5646CodeFile = Path.Combine(codeDirectory, nameof(Rfc5646Data) + "Gen.cs"); Log.Information("Writing RFC 5646 code to {CodePath}", _rfc5646CodeFile); - await Rfc5646Data.GenCodeAsync(_rfc5646CodeFile, _rfc5646).ConfigureAwait(false); + await _rfc5646.SaveCodeAsync(_rfc5646CodeFile).ConfigureAwait(false); Log.Information("Code files generated successfully."); } diff --git a/LanguageTagsTests/Iso6392Tests.cs b/LanguageTagsTests/Iso6392Tests.cs index 452b337..c311251 100644 --- a/LanguageTagsTests/Iso6392Tests.cs +++ b/LanguageTagsTests/Iso6392Tests.cs @@ -11,9 +11,9 @@ public void Create() } [Fact] - public async Task LoadData() + public async Task FromData() { - Iso6392Data iso6392 = await Iso6392Data.LoadDataAsync( + Iso6392Data iso6392 = await Iso6392Data.FromDataAsync( GetDataFilePath(Iso6392Data.DataFileName) ); _ = iso6392.Should().NotBeNull(); @@ -21,12 +21,32 @@ public async Task LoadData() } [Fact] - public async Task LoadJson() + public async Task FromJson() { - Iso6392Data? iso6392 = await Iso6392Data.LoadJsonAsync( + Iso6392Data iso6392 = await Iso6392Data.FromJsonAsync( GetDataFilePath(Iso6392Data.DataFileName + ".json") ); _ = iso6392.Should().NotBeNull(); + _ = iso6392.RecordList.Length.Should().BeGreaterThan(0); + } + + [Fact] + public async Task Create_FromData_FromJson_RecordsMatch() + { + Iso6392Data created = Iso6392Data.Create(); + Iso6392Data fromData = await Iso6392Data.FromDataAsync( + GetDataFilePath(Iso6392Data.DataFileName) + ); + Iso6392Data fromJson = await Iso6392Data.FromJsonAsync( + GetDataFilePath(Iso6392Data.DataFileName + ".json") + ); + + _ = created.RecordList.Length.Should().BeGreaterThan(0); + _ = fromData.RecordList.Length.Should().BeGreaterThan(0); + _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); + + _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); + _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); } [Fact] @@ -38,8 +58,8 @@ public async Task SaveJsonAsync_RoundTrip() string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); try { - await Iso6392Data.SaveJsonAsync(tempFile, iso6392); - Iso6392Data? roundTrip = await Iso6392Data.LoadJsonAsync(tempFile); + await iso6392.SaveJsonAsync(tempFile); + Iso6392Data roundTrip = await Iso6392Data.FromJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); _ = roundTrip.RecordList.Length.Should().Be(iso6392.RecordList.Length); } @@ -92,10 +112,11 @@ public void Find_Fail(string input) } [Fact] - public void Find_Null_ThrowsArgumentNullException() + public void Find_Null_ReturnsNull() { Iso6392Data iso6392 = Iso6392Data.Create(); - _ = Assert.Throws(() => iso6392.Find(null!, false)); + Iso6392Record? record = iso6392.Find(null!, false); + _ = record.Should().BeNull(); } [Fact] diff --git a/LanguageTagsTests/Iso6393Tests.cs b/LanguageTagsTests/Iso6393Tests.cs index e1017db..bae6d67 100644 --- a/LanguageTagsTests/Iso6393Tests.cs +++ b/LanguageTagsTests/Iso6393Tests.cs @@ -11,9 +11,9 @@ public void Create() } [Fact] - public async Task LoadData() + public async Task FromData() { - Iso6393Data iso6393 = await Iso6393Data.LoadDataAsync( + Iso6393Data iso6393 = await Iso6393Data.FromDataAsync( GetDataFilePath(Iso6393Data.DataFileName) ); _ = iso6393.Should().NotBeNull(); @@ -21,12 +21,32 @@ public async Task LoadData() } [Fact] - public async Task LoadJson() + public async Task FromJson() { - Iso6393Data? iso6393 = await Iso6393Data.LoadJsonAsync( + Iso6393Data iso6393 = await Iso6393Data.FromJsonAsync( GetDataFilePath(Iso6393Data.DataFileName + ".json") ); _ = iso6393.Should().NotBeNull(); + _ = iso6393.RecordList.Length.Should().BeGreaterThan(0); + } + + [Fact] + public async Task Create_FromData_FromJson_RecordsMatch() + { + Iso6393Data created = Iso6393Data.Create(); + Iso6393Data fromData = await Iso6393Data.FromDataAsync( + GetDataFilePath(Iso6393Data.DataFileName) + ); + Iso6393Data fromJson = await Iso6393Data.FromJsonAsync( + GetDataFilePath(Iso6393Data.DataFileName + ".json") + ); + + _ = created.RecordList.Length.Should().BeGreaterThan(0); + _ = fromData.RecordList.Length.Should().BeGreaterThan(0); + _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); + + _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); + _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); } [Fact] @@ -38,8 +58,8 @@ public async Task SaveJsonAsync_RoundTrip() string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); try { - await Iso6393Data.SaveJsonAsync(tempFile, iso6393); - Iso6393Data? roundTrip = await Iso6393Data.LoadJsonAsync(tempFile); + await iso6393.SaveJsonAsync(tempFile); + Iso6393Data roundTrip = await Iso6393Data.FromJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); _ = roundTrip.RecordList.Length.Should().Be(iso6393.RecordList.Length); } @@ -92,10 +112,11 @@ public void Find_Fail(string input) } [Fact] - public void Find_Null_ThrowsArgumentNullException() + public void Find_Null_ReturnsNull() { Iso6393Data iso6393 = Iso6393Data.Create(); - _ = Assert.Throws(() => iso6393.Find(null!, false)); + Iso6393Record? record = iso6393.Find(null!, false); + _ = record.Should().BeNull(); } [Fact] diff --git a/LanguageTagsTests/LanguageTagTests.cs b/LanguageTagsTests/LanguageTagTests.cs index d9ed1ae..63b9914 100644 --- a/LanguageTagsTests/LanguageTagTests.cs +++ b/LanguageTagsTests/LanguageTagTests.cs @@ -17,20 +17,6 @@ public void Parse_Static_Pass(string tag) _ = languageTag.ToString().Should().Be(tag); } - [Theory] - [InlineData("en-US")] - [InlineData("zh-Hans-CN")] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - [InlineData("x-all-private")] - public void Parse_WithOptions_Pass(string tag) - { - Options options = new(); - LanguageTag? languageTag = LanguageTag.Parse(tag, options); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(tag); - } - [Theory] [InlineData("")] // Empty string [InlineData("i")] // Too short @@ -45,21 +31,6 @@ public void Parse_Static_ReturnsNull(string tag) _ = languageTag.Should().BeNull(); } - [Theory] - [InlineData("")] // Empty string - [InlineData("i")] // Too short - [InlineData("abcdefghi")] // Too long - [InlineData("en--gb")] // Empty tag - [InlineData("en-€-extension")] // Non-ASCII - [InlineData("a-extension")] // Only start with x or grandfathered - [InlineData("en-gb-x")] // Private must have parts - public void Parse_WithOptions_ReturnsNull(string tag) - { - Options options = new(); - LanguageTag? languageTag = LanguageTag.Parse(tag, options); - _ = languageTag.Should().BeNull(); - } - [Theory] [InlineData("en-US")] [InlineData("zh-Hans-CN")] @@ -73,20 +44,6 @@ public void TryParse_Success(string tag) _ = languageTag.ToString().Should().Be(tag); } - [Theory] - [InlineData("en-US")] - [InlineData("zh-Hans-CN")] - [InlineData("en-latn-gb-boont-r-extended-sequence-x-private")] - public void TryParse_WithOptions_Success(string tag) - { - Options options = new(); - bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag, options); - _ = result.Should().BeTrue(); - _ = languageTag.Should().NotBeNull(); - _ = languageTag.Validate().Should().BeTrue(); - _ = languageTag.ToString().Should().Be(tag); - } - [Theory] [InlineData("")] // Empty string [InlineData("i")] // Too short @@ -103,23 +60,6 @@ public void TryParse_Failure(string tag) _ = languageTag.Should().BeNull(); } - [Theory] - [InlineData("")] // Empty string - [InlineData("i")] // Too short - [InlineData("abcdefghi")] // Too long - [InlineData("en--gb")] // Empty tag - [InlineData("en-€-extension")] // Non-ASCII - [InlineData("a-extension")] // Only start with x or grandfathered - [InlineData("en-gb-x")] // Private must have parts - [InlineData("x")] // Private missing - public void TryParse_WithOptions_Failure(string tag) - { - Options options = new(); - bool result = LanguageTag.TryParse(tag, out LanguageTag? languageTag, options); - _ = result.Should().BeFalse(); - _ = languageTag.Should().BeNull(); - } - [Fact] public void CreateBuilder_Pass() { @@ -222,28 +162,6 @@ public void ParseAndNormalize_InvalidTag_ReturnsNull() _ = result.Should().BeNull(); } - [Theory] - [InlineData("en-latn-us", "en-US")] - [InlineData("zh-cmn-Hans-CN", "cmn-Hans-CN")] - public void ParseAndNormalize_WithOptions_ValidTag_ReturnsNormalized( - string tag, - string expected - ) - { - Options options = new(); - LanguageTag? result = LanguageTag.ParseAndNormalize(tag, options); - _ = result.Should().NotBeNull(); - _ = result.ToString().Should().Be(expected); - } - - [Fact] - public void ParseAndNormalize_WithOptions_InvalidTag_ReturnsNull() - { - Options options = new(); - LanguageTag? result = LanguageTag.ParseAndNormalize("invalid-tag", options); - _ = result.Should().BeNull(); - } - [Fact] public void IsValid_Property_ValidTag_ReturnsTrue() { diff --git a/LanguageTagsTests/LogOptionsTests.cs b/LanguageTagsTests/LogOptionsTests.cs index 26bd4cb..4a06069 100644 --- a/LanguageTagsTests/LogOptionsTests.cs +++ b/LanguageTagsTests/LogOptionsTests.cs @@ -7,206 +7,43 @@ namespace ptr727.LanguageTags.Tests; public sealed class LogOptionsTests : SingleInstanceFixture { [Fact] - public void CreateLogger_UsesLogger_WhenBothSet() + public void CreateLogger_UsesFactory_WhenFactorySet() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; using TestLoggerFactory testFactory = new(); - TestLogger testLogger = new(); try { LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = testLogger; ILogger logger = LogOptions.CreateLogger("category"); - // Logger should take precedence over LoggerFactory - _ = logger.Should().BeSameAs(testLogger); - // Factory should not be called - _ = testFactory.LastCategory.Should().BeNull(); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_UsesLogger_WhenFactoryDefault() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - - try - { - LogOptions.LoggerFactory = NullLoggerFactory.Instance; - LogOptions.Logger = testLogger; - - ILogger logger = LogOptions.CreateLogger("category"); - - _ = logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_WithOptions_UsesOptionsLoggerFirst() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - TestLogger testLogger = new(); - Options options = new() { LoggerFactory = testFactory, Logger = testLogger }; - - try - { - LogOptions.LoggerFactory = NullLoggerFactory.Instance; - LogOptions.Logger = NullLogger.Instance; - - ILogger logger = LogOptions.CreateLogger("category", options); - - // Logger should take precedence over LoggerFactory - _ = logger.Should().BeSameAs(testLogger); - // Factory should not be called - _ = testFactory.LastCategory.Should().BeNull(); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_WithOptions_UsesOptionsLoggerWhenNoFactory() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - Options options = new() { Logger = testLogger }; - - try - { - using TestLoggerFactory testFactory = new(); - LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = new TestLogger(); - - ILogger logger = LogOptions.CreateLogger("category", options); - - _ = logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_WithOptions_UsesOptionsFactoryWhenLoggerNotSet() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - Options options = new() { LoggerFactory = testFactory }; - - try - { - LogOptions.LoggerFactory = NullLoggerFactory.Instance; - LogOptions.Logger = NullLogger.Instance; - - ILogger logger = LogOptions.CreateLogger("category", options); - - // Factory should be used when Logger is not set - _ = logger.Should().BeSameAs(testFactory.Logger); - _ = testFactory.LastCategory.Should().Be("category"); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_WithOptions_FallsBackToGlobal() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - TestLogger testLogger = new(); - Options options = new(); - - try - { - LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = testLogger; - - ILogger logger = LogOptions.CreateLogger("category", options); - - _ = logger.Should().BeSameAs(testLogger); - _ = testFactory.LastCategory.Should().BeNull(); - } - finally - { - LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void CreateLogger_FallsBackToFactory_WhenGlobalLoggerIsNullLogger() - { - ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - - try - { - LogOptions.LoggerFactory = testFactory; - LogOptions.Logger = NullLogger.Instance; - - ILogger logger = LogOptions.CreateLogger("category"); - - _ = logger.Should().BeSameAs(testFactory.Logger); + _ = LogOptions.LoggerFactory.Should().BeSameAs(testFactory); _ = testFactory.LastCategory.Should().Be("category"); + _ = logger.Should().NotBeNull(); } finally { LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; } } [Fact] - public void CreateLogger_WithOptions_IgnoresNullLoggerAndFallsBackToFactory() + public void CreateLogger_UsesNullLogger_WhenFactoryDefault() { ILoggerFactory originalFactory = LogOptions.LoggerFactory; - ILogger originalLogger = LogOptions.Logger; - using TestLoggerFactory testFactory = new(); - Options options = new() { Logger = NullLogger.Instance, LoggerFactory = testFactory }; try { LogOptions.LoggerFactory = NullLoggerFactory.Instance; - LogOptions.Logger = NullLogger.Instance; - ILogger logger = LogOptions.CreateLogger("category", options); + ILogger logger = LogOptions.CreateLogger("category"); - _ = logger.Should().BeSameAs(testFactory.Logger); - _ = testFactory.LastCategory.Should().Be("category"); + _ = logger.Should().BeSameAs(NullLogger.Instance); } finally { LogOptions.LoggerFactory = originalFactory; - LogOptions.Logger = originalLogger; } } @@ -261,49 +98,6 @@ public void TrySetFactory_WhenAlreadySet_ReturnsFalseAndDoesNotOverwrite() } } - [Fact] - public void TrySetLogger_WhenUnset_ReturnsTrueAndSets() - { - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - - try - { - LogOptions.Logger = NullLogger.Instance; - - bool result = LogOptions.TrySetLogger(testLogger); - - _ = result.Should().BeTrue(); - _ = LogOptions.Logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.Logger = originalLogger; - } - } - - [Fact] - public void TrySetLogger_WhenAlreadySet_ReturnsFalseAndDoesNotOverwrite() - { - ILogger originalLogger = LogOptions.Logger; - TestLogger testLogger = new(); - TestLogger otherLogger = new(); - - try - { - LogOptions.Logger = testLogger; - - bool result = LogOptions.TrySetLogger(otherLogger); - - _ = result.Should().BeFalse(); - _ = LogOptions.Logger.Should().BeSameAs(testLogger); - } - finally - { - LogOptions.Logger = originalLogger; - } - } - private sealed class TestLoggerFactory : ILoggerFactory { public ILogger Logger { get; } = new TestLogger(); diff --git a/LanguageTagsTests/Rfc5646Tests.cs b/LanguageTagsTests/Rfc5646Tests.cs index 9a021c2..987b68f 100644 --- a/LanguageTagsTests/Rfc5646Tests.cs +++ b/LanguageTagsTests/Rfc5646Tests.cs @@ -12,9 +12,9 @@ public void Create() } [Fact] - public async Task LoadData() + public async Task FromData() { - Rfc5646Data rfc5646 = await Rfc5646Data.LoadDataAsync( + Rfc5646Data rfc5646 = await Rfc5646Data.FromDataAsync( GetDataFilePath(Rfc5646Data.DataFileName) ); _ = rfc5646.Should().NotBeNull(); @@ -22,15 +22,34 @@ public async Task LoadData() } [Fact] - public async Task LoadJson() + public async Task FromJson() { - Rfc5646Data? rfc5646 = await Rfc5646Data.LoadJsonAsync( + Rfc5646Data rfc5646 = await Rfc5646Data.FromJsonAsync( GetDataFilePath(Rfc5646Data.DataFileName + ".json") ); _ = rfc5646.Should().NotBeNull(); _ = rfc5646.RecordList.Length.Should().BeGreaterThan(0); } + [Fact] + public async Task Create_FromData_FromJson_RecordsMatch() + { + Rfc5646Data created = Rfc5646Data.Create(); + Rfc5646Data fromData = await Rfc5646Data.FromDataAsync( + GetDataFilePath(Rfc5646Data.DataFileName) + ); + Rfc5646Data fromJson = await Rfc5646Data.FromJsonAsync( + GetDataFilePath(Rfc5646Data.DataFileName + ".json") + ); + + _ = created.RecordList.Length.Should().BeGreaterThan(0); + _ = fromData.RecordList.Length.Should().BeGreaterThan(0); + _ = fromJson.RecordList.Length.Should().BeGreaterThan(0); + + _ = fromData.RecordList.Should().BeEquivalentTo(created.RecordList); + _ = fromJson.RecordList.Should().BeEquivalentTo(created.RecordList); + } + [Fact] public async Task SaveJsonAsync_RoundTrip() { @@ -40,8 +59,8 @@ public async Task SaveJsonAsync_RoundTrip() string tempFile = Path.Combine(Path.GetTempPath(), $"{Guid.NewGuid()}.json"); try { - await Rfc5646Data.SaveJsonAsync(tempFile, rfc5646); - Rfc5646Data? roundTrip = await Rfc5646Data.LoadJsonAsync(tempFile); + await rfc5646.SaveJsonAsync(tempFile); + Rfc5646Data roundTrip = await Rfc5646Data.FromJsonAsync(tempFile); _ = roundTrip.Should().NotBeNull(); _ = roundTrip.RecordList.Length.Should().Be(rfc5646.RecordList.Length); } @@ -101,10 +120,11 @@ public void Find_Fail(string input) } [Fact] - public void Find_Null_ThrowsArgumentNullException() + public void Find_Null_ReturnsNull() { Rfc5646Data rfc5646 = Rfc5646Data.Create(); - _ = Assert.Throws(() => rfc5646.Find(null!, false)); + Rfc5646Record? record = rfc5646.Find(null!, false); + _ = record.Should().BeNull(); } [Fact] diff --git a/README.md b/README.md index 6c869c1..3ef30d0 100644 --- a/README.md +++ b/README.md @@ -27,9 +27,13 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. **Summary**: -- Refactored the project to follow standard patterns across other projects. -- IO APIs are now async-only (`LoadDataAsync`, `LoadJsonAsync`, `SaveJsonAsync`, `GenCodeAsync`). -- Added logging support for `ILogger` or `ILoggerFactory` per class instance or statically. +- Refactored the project to follow standard patterns used across other projects. +- Added logging support configured through `LogOptions.SetFactory(ILoggerFactory)`. + +> **⚠️ Breaking Changes**: +> +> - IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`'. +> - Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync()`. See [Release History](./HISTORY.md) for complete release notes and older versions. @@ -115,7 +119,8 @@ See [Usage](#usage) for detailed usage instructions. ### Tag Lookup -Tag records can be constructed by calling `Create()`, or loaded from data `LoadDataAsync()`, or loaded from JSON `LoadJsonAsync()`.\ +Tag records can be created from embedded data by calling `Create()`, or loaded from data `FromDataAsync()`, or loaded from JSON `FromJsonAsync()`.\ +`FromDataAsync()` and `FromJsonAsync()` are static methods that return populated data instances. The records and record collections are immutable and can safely be reused and shared across threads. Each class implements a `Find(string languageTag, bool includeDescription)` method that will search all tags in all records for a matching tag.\ @@ -132,7 +137,7 @@ record = iso6392.Find("zulu", true); ``` ```csharp -Iso6393Data iso6393 = await Iso6393Data.LoadDataAsync("iso6393"); +Iso6393Data iso6393 = await Iso6393Data.FromDataAsync("iso6393"); Iso6393Record? record = iso6393.Find("zh", false); // record.Id = "zho" // record.Part1 = "zh" @@ -143,7 +148,7 @@ record = iso6393.Find("yue chinese", true); ``` ```csharp -Rfc5646Data rfc5646 = await Rfc5646Data.LoadJsonAsync("rfc5646.json"); +Rfc5646Data rfc5646 = await Rfc5646Data.FromJsonAsync("rfc5646.json"); Rfc5646Record? record = rfc5646.Find("de", false); // record.SubTag = "de" // record.Description[0] = "German" @@ -212,8 +217,8 @@ The `LanguageTagBuilder` class supports fluent builder style tag construction, a The `Build()` method will construct the tag, but will not perform any correctness validation or normalization.\ Use the `Validate()` method to test for shape correctness. See [Tag Validation](#tag-validation) for details. -The `Normalize()` method will build the tag and perform validation and normalization.\ -See [Tag Normalization](#tag-normalization) for details. +The `Normalize()` method will build the tag and perform normalization only.\ +Use `Validate()` to check structural correctness. See [Tag Normalization](#tag-normalization) for details. ```csharp LanguageTag languageTag = LanguageTag.CreateBuilder() @@ -235,7 +240,7 @@ string tag = languageTag.ToString(); // "x-private-use" ``` ```csharp -LanguageTag? languageTag = LanguageTag.CreateBuilder() +LanguageTag languageTag = LanguageTag.CreateBuilder() .Language("ar") .ExtendedLanguage("arb") .Script("latn") @@ -243,7 +248,7 @@ LanguageTag? languageTag = LanguageTag.CreateBuilder() .VariantAdd("nedis") .VariantAdd("foobar") .Normalize(); -string tag = languageTag?.ToString(); // "arb-Latn-DE-foobar-nedis" +string tag = languageTag.ToString(); // "arb-Latn-DE-foobar-nedis" ``` ### Tag Parser @@ -255,7 +260,7 @@ Parsing will validate all subtags for correctness in type, length, and position, Grandfathered tags will be converted to their current preferred form and parsed as such.\ E.g. `en-gb-oed` -> `en-GB-oxendict`, `i-klingon` -> `tlh`. -The `Normalize()` method will parse the text tag, and perform validation and normalization.\ +The `ParseAndNormalize()` method will parse the text tag and perform normalization.\ See [Tag Normalization](#tag-normalization) for details. ```csharp @@ -290,7 +295,7 @@ Normalization includes the following: - E.g. `iw` -> `he`, `in` -> `id` - Replace extended language subtags with their preferred language subtag values. - E.g. `ar-afb` -> `afb`, `zh-yue` -> `yue` -- Remove or replace redundant subtags their preferred values. +- Remove or replace redundant subtags with their preferred values. - E.g. `zh-cmn-Hant` -> `cmn-Hant`, `zh-gan` -> `gan`, `sgn-CO` -> `csn` - Remove redundant script subtags. - E.g. `af-Latn` -> `af`, `en-Latn` -> `en` @@ -304,13 +309,13 @@ Normalization includes the following: - Sort private use subtags by value. ```csharp -LanguageTag? languageTag = LanguageTag.CreateBuilder() +LanguageTag languageTag = LanguageTag.CreateBuilder() .Language("en") .ExtensionAdd('b', ["ccc"]) // Add b before a to force a sort .ExtensionAdd('a', ["bbb", "aaa"]) // Add bbb before aaa to force a sort .PrivateUseAddRange(["ccc", "a"]) // Add ccc before a to force a sort .Normalize(); -string tag = languageTag?.ToString(); // "en-a-aaa-bbb-b-ccc-x-a-ccc" +string tag = languageTag.ToString(); // "en-a-aaa-bbb-b-ccc-x-a-ccc" ``` ```csharp @@ -337,7 +342,7 @@ Validation includes the following: - Subtag shape correctness, see [Format](#format) for a summary. - No duplicate variants, extension prefixes, extension tags, or private tags. -- No missing subtags. +- Does not validate subtag values against the registry or enforce the full grammar beyond these checks. ```csharp LanguageTag languageTag = LanguageTag.CreateBuilder() @@ -366,7 +371,7 @@ using ptr727.LanguageTags; **Debug log configuration**: ```csharp -// Configure global logging (static fallback) +// Configure global logging (static override/factory) using Microsoft.Extensions.Logging; using ptr727.LanguageTags; using Serilog; @@ -381,25 +386,6 @@ ILoggerFactory loggerFactory = new SerilogLoggerFactory(Log.Logger, dispose: tru LogOptions.SetFactory(loggerFactory); ``` -```csharp -// Configure per-call logging (instance logger or factory) -using Microsoft.Extensions.Logging; -using ptr727.LanguageTags; -using Serilog; -using Serilog.Extensions.Logging; - -Log.Logger = new LoggerConfiguration() - .MinimumLevel.Debug() - .WriteTo.Debug() - .CreateLogger(); - -ILoggerFactory loggerFactory = new SerilogLoggerFactory(Log.Logger, dispose: true); -Options options = new() { LoggerFactory = loggerFactory }; - -LanguageTag? tag = LanguageTag.Parse("en-US", options); -LanguageLookup lookup = new(options); -``` - ## Questions or Issues **Tag testing**: @@ -428,7 +414,7 @@ LanguageLookup lookup = new(options); - **[`LanguageData`](./LanguageData/) directory**: - ISO 639-2: [Source](https://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt), [Data](./LanguageData/iso6392), [JSON](./LanguageData/iso6392.json), [Code](./LanguageTags/Iso6392DataGen.cs) - ISO 639-3: [Source](https://iso639-3.sil.org/sites/iso639-3/files/downloads/iso-639-3.tab), [Data](./LanguageData/iso6393), [JSON](./LanguageData/iso6393.json), [Code](./LanguageTags/Iso6393DataGen.cs) - - RFC 5646 : [Source](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry), [Data](./LanguageData/rfc5646), [JSON](./LanguageData/rfc5646.json), [Code](./LanguageTags/rfc5646DataGen.cs) + - RFC 5646 : [Source](https://www.iana.org/assignments/language-subtag-registry/language-subtag-registry), [Data](./LanguageData/rfc5646), [JSON](./LanguageData/rfc5646.json), [Code](./LanguageTags/Rfc5646DataGen.cs) - A weekly [GitHub Actions](./.github/workflows/run-periodic-codegen-pull-request.yml) job keeps the data files up to date and automatically publishes new releases. ## Tag Theory From 69c27e34c808d285edfdb88371b4446b20d2213c Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sun, 1 Feb 2026 09:13:47 -0800 Subject: [PATCH 5/5] Fix formatting issues in release notes and update README for clarity on breaking changes --- HISTORY.md | 6 +++--- LanguageTagsTests/Fixture.cs | 4 +++- README.md | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 6ff8cd5..1081db8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -7,9 +7,9 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. - Version 1.2: - Refactored the project to follow standard patterns used across other projects. - Added logging support configured through `LogOptions.SetFactory(ILoggerFactory)`. - - ⚠️ IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`'. - - ⚠️ Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync() - - IO now streams directly to/from from code/files without intermediate text buffers. + - ⚠️ IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`. + - ⚠️ Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync()`. + - IO now streams directly to/from code/files without intermediate text buffers. - Version 1.1: - .NET 10 and AOT support. - Refactored public surfaces to minimize internals exposure. diff --git a/LanguageTagsTests/Fixture.cs b/LanguageTagsTests/Fixture.cs index 454a5b0..357c775 100644 --- a/LanguageTagsTests/Fixture.cs +++ b/LanguageTagsTests/Fixture.cs @@ -3,7 +3,9 @@ namespace ptr727.LanguageTags.Tests; -public sealed class DisableParallelDefinition; +// Sequential execution fixture +[CollectionDefinition("Sequential Test Collection", DisableParallelization = true)] +public class SequentialCollectionDefinition; [System.Diagnostics.CodeAnalysis.SuppressMessage( "Design", diff --git a/README.md b/README.md index 3ef30d0..67ee29b 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ C# .NET library for ISO 639-2, ISO 639-3, RFC 5646 / BCP 47 language tags. > **⚠️ Breaking Changes**: > -> - IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`'. +> - IO API's are async only, e.g. `LoadJson()` -> `async FromJsonAsync()`. > - Collection instantiation follows the `From` pattern, e.g. `LoadData()` -> `FromDataAsync()`. See [Release History](./HISTORY.md) for complete release notes and older versions.