From 68ed6123ca3b58cdb2e750090dda9c3a925a4a52 Mon Sep 17 00:00:00 2001 From: "Lasse R.H. Nielsen" Date: Wed, 16 Oct 2024 20:49:13 +0200 Subject: [PATCH 1/3] Update tables to Unicode 16.0.0. Add license file change check. (Since the license file changed this time, and it's something that one should check if it happens.) Some clean-up. Documents that the BG9c rule from Unicode 15.10 is not supported. (That would require more bits of information per character, information that the current table builder does not have, and a correspondingly larger state machine.) --- pkgs/characters/CHANGELOG.md | 4 + pkgs/characters/README.md | 6 + pkgs/characters/lib/src/characters.dart | 22 +- pkgs/characters/lib/src/characters_impl.dart | 2 +- .../lib/src/grapheme_clusters/table.dart | 732 +- pkgs/characters/pubspec.yaml | 4 +- pkgs/characters/test/characters_test.dart | 9 +- .../test/src/unicode_grapheme_tests.dart | 21940 ++++++++++++---- .../GraphemeBreakProperty.txt | 96 +- .../Unicode_Consortium/GraphemeBreakTest.txt | 767 +- .../Unicode_Consortium/UNICODE_LICENSE.txt | 71 +- .../Unicode_Consortium/emoji_data.txt | 42 +- .../Unicode_Consortium/emoji_test.txt | 379 +- pkgs/characters/tool/README.txt | 4 + pkgs/characters/tool/benchmark.dart | 8 +- .../{gentable.dart => generate_tables.dart} | 61 +- .../bin/{gentest.dart => generate_tests.dart} | 44 +- pkgs/characters/tool/generate.dart | 16 +- pkgs/characters/tool/src/args.dart | 34 +- pkgs/characters/tool/src/data_files.dart | 53 +- pkgs/characters/tool/src/indirect_table.dart | 2 +- pkgs/characters/tool/src/shared.dart | 86 +- 22 files changed, 18153 insertions(+), 6229 deletions(-) rename pkgs/characters/tool/bin/{gentable.dart => generate_tables.dart} (88%) rename pkgs/characters/tool/bin/{gentest.dart => generate_tests.dart} (77%) diff --git a/pkgs/characters/CHANGELOG.md b/pkgs/characters/CHANGELOG.md index 412b5a73..29f9c4d6 100644 --- a/pkgs/characters/CHANGELOG.md +++ b/pkgs/characters/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.4.0 + +* Updated to use Unicode 16.0.0. + ## 1.3.1 * Fixed README rendering on pub.dev and API docs. diff --git a/pkgs/characters/README.md b/pkgs/characters/README.md index 6d2f76ea..b3702e72 100644 --- a/pkgs/characters/README.md +++ b/pkgs/characters/README.md @@ -11,6 +11,12 @@ the individual characters of a string, and a way to navigate back and forth between them using a [`CharacterRange`][CharacterRange]. +Based on Unicode version 16.0.0. + +This package is not script-aware, and does not currently support the rule for +Indic Conjunct Breaks introduced in Unicode 15.10.0 +([GB9c](https://www.unicode.org/reports/tr29/tr29-43.html#GB9c)). + ## Unicode characters and representations There is no such thing as plain text. diff --git a/pkgs/characters/lib/src/characters.dart b/pkgs/characters/lib/src/characters.dart index 4aa7d751..7faf8ba1 100644 --- a/pkgs/characters/lib/src/characters.dart +++ b/pkgs/characters/lib/src/characters.dart @@ -19,7 +19,7 @@ import "characters_impl.dart"; /// which allows iterating the independent characters in both directions, /// but which also provides ways to select other ranges of characters /// in different ways. -abstract class Characters implements Iterable { +abstract interface class Characters implements Iterable { /// An empty [Characters] containing no characters. static const Characters empty = StringCharacters(""); @@ -272,7 +272,7 @@ abstract class Characters implements Iterable { /// Replaces the first occurrence of [pattern] with [replacement]. /// - /// Returns a new [Characters] where the first occurence of the + /// Returns a new [Characters] where the first occurrence of the /// [pattern] character sequence, if any, is replaced by [replacement]. /// /// Returns the current characters if there is no occurrence of [pattern]. @@ -304,7 +304,7 @@ abstract class Characters implements Iterable { /// The range may even be empty, but that will still correspond to a position /// where both start and end happen to be the same position. /// -/// The source sequence can be separated into the *preceeding* characters, +/// The source sequence can be separated into the *preceding* characters, /// those before the range, the range itself, and the *following* characters, /// those after the range. /// @@ -318,11 +318,11 @@ abstract class Characters implements Iterable { /// Operations starting with `collapse` reduces the current range to /// a sub-range of itself. /// Operations starting with `expand` increase the current range -/// by moving/ the end postion to a later position +/// by moving the end position to a later position /// or the start position to an earlier position, /// and operations starting with `drop` reduce the current range /// by moving the start to a later position or the end to an earlier position, -/// therebyt dropping characters from one or both ends from the current range. +/// thereby dropping characters from one or both ends from the current range. /// /// /// The character range implements [Iterator] @@ -479,7 +479,7 @@ abstract class CharacterRange implements Iterator { /// Returns `true` if the range is modified and `false` if not. bool moveBackTo(Characters target); - /// Moves to the range after the previous occurence of [target]. + /// Moves to the range after the previous occurrence of [target]. /// /// If there is an occurrence of [target] in the characters preceding /// the current range, @@ -506,7 +506,7 @@ abstract class CharacterRange implements Iterator { /// the current range, and `false` if not. bool expandNext([int count = 1]); - /// Expands the range to include the next occurence of [target]. + /// Expands the range to include the next occurrence of [target]. /// /// If there is an occurrence of [target] in the characters following /// the current range, the end of the the range is moved to just after @@ -554,7 +554,7 @@ abstract class CharacterRange implements Iterator { /// the current range, and `false` if not. bool expandBack([int count = 1]); - /// Expands the range to include the previous occurence of [target]. + /// Expands the range to include the previous occurrence of [target]. /// /// If there is an occurrence of [target] in the characters preceding /// the current range, the stat of the the range is moved to just before @@ -579,7 +579,7 @@ abstract class CharacterRange implements Iterator { /// Returns `true` if there is an occurrence of [target] and `false` if not. bool expandBackUntil(Characters target); - /// Expands the range with the preceding characters satisffying [test]. + /// Expands the range with the preceding characters satisfying [test]. /// /// Iterates back through the characters preceding the current range /// and includes them into the range until finding a character that @@ -661,7 +661,7 @@ abstract class CharacterRange implements Iterator { /// first occurrence of [target]. /// /// If there are no occurrences of [target] in the range, - /// all characteres in the range are removed, + /// all characters in the range are removed, /// which gives the same effect as [collapseToEnd]. /// /// Returns `true` if there is an occurrence of [target] and `false` if not. @@ -713,7 +713,7 @@ abstract class CharacterRange implements Iterator { /// last occurrence of [target]. /// /// If there are no occurrences of [target] in the range, - /// all characteres in the range are removed, + /// all characters in the range are removed, /// which gives the same effect as [collapseToStart]. /// /// Returns `true` if there is an occurrence of [target] and `false` if not. diff --git a/pkgs/characters/lib/src/characters_impl.dart b/pkgs/characters/lib/src/characters_impl.dart index f7084664..63ab169b 100644 --- a/pkgs/characters/lib/src/characters_impl.dart +++ b/pkgs/characters/lib/src/characters_impl.dart @@ -10,7 +10,7 @@ import 'grapheme_clusters/table.dart'; /// The grapheme clusters of a string. /// /// Backed by a single string. -class StringCharacters extends Iterable implements Characters { +final class StringCharacters extends Iterable implements Characters { @override final String string; diff --git a/pkgs/characters/lib/src/grapheme_clusters/table.dart b/pkgs/characters/lib/src/grapheme_clusters/table.dart index fccec47d..ad6a5ebc 100644 --- a/pkgs/characters/lib/src/grapheme_clusters/table.dart +++ b/pkgs/characters/lib/src/grapheme_clusters/table.dart @@ -1,386 +1,394 @@ -// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // Generated code. Do not edit. -// Generated from [https://unicode.org/Public/15.0.0/ucd/auxiliary/GraphemeBreakProperty.txt](../../third_party/Unicode_Consortium/GraphemeBreakProperty.txt) -// and [https://unicode.org/Public/15.0.0/ucd/emoji/emoji-data.txt](../../third_party/Unicode_Consortium/emoji_data.txt). +// Generated from [https://unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakProperty.txt](../../third_party/Unicode_Consortium/GraphemeBreakProperty.txt) +// and [https://unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt](../../third_party/Unicode_Consortium/emoji_data.txt). // Licensed under the Unicode Inc. License Agreement // (https://www.unicode.org/license.txt, ../../third_party/third_party/Unicode_Consortium/UNICODE_LICENSE.txt) -const String _data = 'E533333333333333333333333333DDDDDDD4333333333333333333334' - 'C43333CD53333333333333333333333UEDTE4\x933343333\x933333333333333333333333' - '333D433333333333333333CDDEDDD43333333S5333333333333333333333C333333D533333' - '333333333333333333SUDDDDT5\x9933CD4E333333333333333333333333UEDDDDE4333333' - '33333333333333333333333333333333333333333333333333333333333333333333333333' - '333333333333333333333333333333333333333333TUUS5CT\x94\x95E3333333333333333' - '333333333333333333333333333333333333333333333333333333SUDD3DUU435333333333' - '33333333C3333333333333w733337333333s3333333w7333333333w3333333333333333333' - '3CDDTETE43333ED4S5SE3333C33333D33333333333334E433C3333333C3333333333333333' - '3333333333333CETUTDT533333CDDDDDDDDDD3333333343333333D\x244333333333333333' - '33333333SUDTEE433C34333333333333333333333333333333333333333333333333333333' - '333333333333333333333333TUDDDD3333333333CT5333333333333333333333333333DCEU' - 'U3U3U5333343333S5CDDD3CDD3333333333333333333333333333333333333333333333333' - '33333333333333333333s73333s33333333333""""""""333333339433333333333333CDDD' - 'DDDDDDDDDDDDD3333333CDDDDDDDDDDD\x94DDDDDDDDDDDDDDDDDDDDDDDD33333333DDDDDD' - 'DD3333333373s333333333333333333333333333333CDTDDDCTE43C4CD3C33333333333333' - '3D3C33333îîíîîîîîîîîîîîîîíîîîîîîîîîîîîîíîîîîîîîîîîîîî333333»»»»»»»»33ÌÌÌÌÌ' - 'ÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ<3sww73333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333swwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w7333333333333333733' - '333333333333333333333333333sww733333s7333333s3wwwww333333333wwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwgffffffffffffvww7wwwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'www733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwww733333333333333333333333333333333333333333333333333333333' - '3swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwwwwwwwwww7sw' - 'wwwwss33373733s33333w33333CT333333333333333EDTETD433333333#\x14"3333333333' - '33"""233333373ED4U5UE9333C33333D33333333333333www3333333s73333333333EEDDDC' - 'C3DDDDUUUDDDDD3T5333333333333333333333333333CCU333333333333333333333333333' - '3334EDDD33SDD4D5U4333333333C43333333333CDDD9DDD3DCD433333333C4333333333333' - '33C433333333333334443SEUCUSE4333D33333C43333333533333CU3333333333333333333' - '3333333334EDDDD3CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDDDD333' - '34333333C33333333333DD4DDDDDDD43333333333333333333333333333333333333333333' +const String _data = '"""""""""""""""""""""""""""""""""""""""""""""""""""""""""' + '""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""' + '""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""' + '"""""""""""""""""""""""""""""""""""""""""""""""""""DDDDDDDDDDDDDDDDDDDDDDD' + 'DDDDDDDDDDDDDDDDDDDDDDDDD"""""""""""""""""""""""""""""""""""""""""""""""""' + '"""""""""""""""DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD' + 'DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"""""""""""""' + '"""3333s3#733333333\x9933CDDDD3333333333333333334333333333333s733333s33333' + '333333CD4DDDD4D4DD433333333C433333333333333C433333333333334443SE5333333333' + '33333333333333333DDDDDDD4333333333333333333334C43333CD53333333333333333333' + '333UEDTE4\x933343333\x933333333333333333333333333D433333333333333333CDDEDD' + 'D43333333S5333333333333333333333C333333D533333333333333333333333SUDDDDT4' + '\x9933CD4E333333333333333333333333""""""""433CDDDDDDD333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '33333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUUUUUUU' - 'UUUUU333CD43333333333333333333333333333333333333333433333U3333333333333333' - '333333333UUUUUUTEDDDDD3333C3333333333333333373333333333s333333333333swwwww' - '33w733wwwwwww73333s33333333337swwwwsw73333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwDD4D33CDDDDDCDDDDDDDDDDDDDDDDD43EDDDT' - 'UEUCDDD33333D33333333333333DDCDDDDCDCDD333333333DT33333333333333D533333333' - '3333333333333333333CSUE4333333333333CDDDDDDDD4333333DT33333333333333333333' - '333CUDDUDU3SUSU43333433333333333333333333ET533E3333SDD3U3U4333D43333C43333' - '333333333s733333s33333333333CTE333333333333333333UUUUDDDDUD3333"""""(\x02"' - '""""""""3333333333333333333DDDD333333333333333333333333CDDDD3333C3333T3333' - '33333333333333333334343C33333333333SET334333333333DDDDDDDDDDDDDDDDDDDDDD4D' - 'DDDDDDD4CDDDC4DD43333333333333333333333333333333333333333333333333C3333333' - '3333333333333333333333333333333333333333333333333333333333333333333333333D' - 'DD433333333333333333333333333333333333333333333333333333333333333333333333' - '333333333333333333333333333334333333333333333333333333333333DD333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '33333333333333333333333333333333333333333333333333DD4333333333333333333333' - '33333333DDD433333333333333333333333333333333333333333333333333333333333333' - '33333333333333333333333333333333333333DDDDDDD533333333333333333333333DDDTT' - 'U5D4DD333C433333D333333333333333333333DDD733333s373ss33w7733333ww733333333' - '333ss33333333333333333333333333333ww3333333333333333333333333333wwww33333w' - 'ww33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' - 'wwwwwwwwwwwwwwwwwwwwwww733333333333333333333333333333333333333333333333333' + '33333333333333333333333333333333333333333333DD43DDD""""DDDD3DDD43333333333' + '3333CD43333333333333333333333333333333333333333CD3333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '333C4""3333333333333333333333333333333333333333333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '333333333333333333333333333333333DD333333333333333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '33333333333333333333333DDD433333333333333333333333333333333333333333333333' - '3333333DDD4333333333333333333333333333333333333333333333333333333333333333' - '333333333333333333333333333UEDDDTEE433333333333333333333333333333333333333' - '33333333333333CEUDDDE33333333333333333333333333333333333333333333333333CD3' - 'DDEDD333333333333333333333333333333333333333333333333333333333333333333333' - '3333333333333333333333333333333333333EDDDCDDT43333333333333333333333333333' - '333333333333CDDDDDDDDDD4EDDDETD3333333333333333333333333333333333333333333' - '333333333333333333DDD3CC4DDD\x94433333333333333333333333333333333SUUC4UT43' - '33333333333333333333333333333333333333333333333333#"""""""B333DDDDDDD43333' + '33333333343333333333333333333333333333333333333333333333333333333333333333' + '3333333333DD43333333333333333333333333333333333333333333333333333333333333' + '33333UEDDDTEDE33333333333C3333333333333333333333333333333333333333CUDDDEUT' + 'DE433333333333333333333333333333333333333333333333333333333333333333333333' + '3333333333333333333333333333333333333333333333TED4SUETD3333333333333C43333' + '333333333333C33333333333UD33D43333333CD433333D533333333333333SDDUDDD333333' + '333D4DDDDDDTDDD43C3334SD333ED4U5UE9333C33333D33333333333333DU4333333333333' + '33333333CDDt3333337s33773sws33333sww333333333333w733337333333s3333333w7333' + '333333w33333333333333333333333333333ww3333333333333333333333333333wwww3333' + '3www33333333333333333333wwww333333333333333wwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwww333333wwwwwwwwwwwwwwwwwwwwwww7wwwwwswwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwww7333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww7333333w733' + '3333333333333733333333333333333333333333333sww733333s7333333s3wwwww3333333' + '33wwwwwwwwwwwwwwwwwwwwwwwwwwwwgffffffffffffvww7wwwwwwswwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww73333333333333333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' + '3333333333333CDDDDDDDDDDDDDDDDDDDDDD4CDDDDDDDDDDD3333333333333333333333333' + '3333333333333333333333333333333333333333333333333333333333333333333C4""333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '333333333333333333333333333333333333333333333333333333333333CED3SDD\x24"""' - 'BDDD4CDDD333333333333333DD33333333333333333333333333333333333333333DEDDDUE' - '333333333333333333333333333CCD3D33CD533333333333333333333333333CESEU333333' - '3333333333333DDDD433333CU33333333333333333333333333334DC443333333333333333' - '33333333333CD4DDDDD33333333333333333333DDD\x95DD333343333DDDUD433333333333' - '33333333\x93\x99\x99IDDDDDDE4333333333333333333333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '33333333333333333333333333333333333333333333333333333333333CDDDDDDDDDDDDDD' - 'DDDDDDDD4CDDDDDDDDDDD33333333333333333333333333333333333333333333333333333' - '333333333333333333333333333333333333333CD333333333333333333333333333333333' + '33333333333333333333333DD33333333333333333333333333333333CDD33333333333333' + '33333333333333333333333333333333333333333333333333333333333DDDDDDD53333333' + '3333333333333333DDDDDUE333333333333333333333333333CCD3D33CD533333333333333' + '333333333333CESUE4333333333333CDDDDDDDD4333333T533333333333333333333333333' + '3CCU33333333333333333333333333334EDDDD3SDDDDUUT5DDD43333C43333333333333333' + 's333333333337333333333333wwwww73sw33CSD33343333333433333333333333333SUUUED' + 'DDTE4333\x93\x99\x9993333CDDDDD#33333333333333333333CDDTETE43333DT33333333' + '333333333333333CUDDUDUUCDCD4333D33333C43333333333333sww73333333w3333333333' + 'STDDD444CDDDTUUEDDDD4CDDDDDDDDDDDDDDDDDDDDDDDDDDD33DDDDDDDDDDDDDDDDDDDDDDD' + 'DD33334333333C33333333333DD4DDDDDDD433333333333333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' + '3333333333333333333333333333333333333333333333333333333CSUUUUUUUUUUUUUUUUU' + 'UUUUUUUUUU333CD43333333333333333333333333333333333333333433333D3333333D' + '\x24433333333333333333333333SUDDDDUTD3333333333333333333333333333333333333' + '3333333333333333TTEDDD433333333333333333333333333333333333333333333333333T' + '4CDTDD43333333333333333333333333333333333333333333333333333333333333333333' + '3333333333333333333333333333333333333333333333333333CDD3333333333333333333' + '3333333333CDDD333333333333333333333333333333333333333333333333333333333333' + '3333333333333333333333333333333333333333333333333333333333DD33333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' + '333333333333333333333333333333333333333D3333333333333333333333333333333333' + '33333CD43333333333333333333333333333333333CDDDDD333333333333333333333333CD' + '4333333333333333333333333333333333333333333333333333333333333CDTDDDCTE43C4' + 'CD3C333333333333333D3C33333DDDDDDDDDDDDIDDDDDDDDDDDDDDDDDDDDDDD43333333CDD' + 'DDDDD43333333\x93C333333333333333DDDDDDDDDD43333333C3333333CDC433DD3333333' + '3333333333333D43C333333333333333333333333333333333333333333333333333333333' + '3333333333333333333333333C433333333333333333333333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' + '333333333333333333333CDDDDDTUD43333333333333333333333333333333333333333333' + '333333333333333333333333333333333333333333333333333333333333CDDD3333333333' + '33333333333333333333333333333333333333333333CDDD33333333333333333333333333' + '3333333333333333333333333333333333333333333333333333333333333333SUDTED433C' '34333333333333333333333333333333333333333333333333333333333333333333333333' - '33DD4333333333333333333333333333333333333333333333333333333333333333333"""' - '"""33D4D33CD43333333333333333333CD3343333333333333333333333333333333333333' - '333333333333333333333333333333333333333333333D3333333333333333333333333333' + '333333TUDDDD3333333333CT5333333333333333333333333333DCEUU3U3U4333343333S5C' + 'DDD3CDD333333333333333333333333333333333CUDDDC34DTSEDI3333333D333333333333' + '3333DTUETU33UTUUED3333333333333333333DDDD433333#\x14"333333333333"""233333' + '373T533333333333333333333333333333SDDD4DDDE3333333333333333333333333333333' + '3333333333DDDDDDDDDDDSDDDTDE4333333333333333333333333333333333333333333333' + '333333333333333CDD434DCDDDI333333333333333333333333333333333UU5DSEE3333333' + '333333333333333333333333333333333333333333333w3333373333333333#"""""""2333' + '3333s337333333333333333333333333333333DDCDDDD43333333333333333333CDDTID433' + '3C3333CDDTED33333333333333333333\x99\x99\x99DDDDDDTD3333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '33333333333333333333333333333333333333CT53333DY333333333333333333333333UDD' - '43UT4333333333333333333333333333333333333333333333333333333333333333333333' - '3333333333333333333333333D3333333333333333333333333333333333333333D4333333' - '3333333333333333333333333333CDDDDD333333333333333333333333CD43333333333333' - '33333333333333333333333333333333333333333333333SUDDDDUDT433333333333433333' - '33333333333333333333333333333333333TEDDTTEETD33333333333333333333333333333' '33333333333333333333333333333333333333333333333333333333333333333333333333' - '33333333333333CUDD3UUDE43333333333333D3333333333333333343333333333SE43CD33' - '333333DD33333C33TEDCSUUU433333333S533333CDDDDDU333333ªªªªªªªªªªªªªª:3\x99' - '\x99\x9933333DDDDD4233333333333333333UTEUS433333333CDCDDDDDDEDDD33433C3E43' - '3#""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""' - '""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""' - '""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""' - '"""""""""""""""""""""""""""""""""""BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD' - 'DDDDDDDDD\x24"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""' - '""BDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD' - 'DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD\x24"""""""""""""""2333373' - 'r33333333\x93933CDDD4333333333333333CDUUDU53SEUUUD43£ªªªªªªªªªªªªªªªªªªªªª' - 'ªªªªªªªªªªº»»»»»»»»»»»»»»»»»»»ËÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ\f'; -const String _start = '\u1ac4\u2bb8\u411f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u3f4f\u0814\u32b6\u32b6\u32b6\u32b6\u1f81\u32b6\u32b6' - '\u32b6\u1bbb\u2f6f\u3cc2\u051e\u32b6\u11d3\u079b\u2c12\u3967\u1b18\u18aa' - '\u392b\u414f\u07f1\u2eb5\u1880\u1123\u047a\u1909\u08c6\u1909\u11af\u2f32' - '\u1a19\u04d1\u19c3\u2e6b\u209a\u1298\u1259\u0667\u108e\u1160\u3c49\u116f' - '\u1b03\u12a3\u1f7c\u121b\u2023\u1840\u34b0\u088a\u3c13\u04b6\u32b6\u41af' - '\u41cf\u41ef\u4217\u32b6\u32b6\u32b6\u32b6\u32b6\u3927\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u18d8' - '\u1201\u2e2e\u15be\u0553\u32b6\u3be9\u32b6\u416f\u32b6\u32b6\u32b6\u1a68' - '\u10e5\u2a59\u2c0e\u205e\u2ef3\u1019\u04e9\u1a84\u32b6\u32b6\u3d0f\u32b6' - '\u32b6\u32b6\u3f4f\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u104e' - '\u076a\u32b6\u07bb\u15dc\u32b6\u10ba\u32b6\u32b6\u32b6\u32b6\u32b6\u1a3f' - '\u32b6\u0cf2\u1606\u32b6\u32b6\u32b6\u0877\u32b6\u32b6\u073d\u2139\u0dcb' - '\u0bcb\u09b3\u0bcb\u0fd9\u20f7\u03e3\u32b6\u32b6\u32b6\u32b6\u32b6\u0733' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u041d\u0864\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u3915\u32b6\u3477\u32b6\u3193\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u20be\u32b6\u36b1\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u2120\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2f80\u36ac\u369a\u32b6' - '\u32b6\u32b6\u32b6\u1b8c\u32b6\u1584\u1947\u1ae4\u3c82\u1986\u03b8\u043a' - '\u1b52\u2e77\u19d9\u32b6\u32b6\u32b6\u3cdf\u090a\u0912\u091a\u0906\u090e' - '\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a' - '\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a' - '\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916' - '\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906' - '\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912' - '\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e' - '\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e' - '\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a' - '\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a' - '\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916' - '\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906' - '\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912' - '\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e\u0916\u091e' - '\u090a\u0912\u091a\u0906\u090e\u0916\u091e\u090a\u0912\u091a\u0906\u090e' - '\u0916\u093a\u0973\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f' - '\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f' - '\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u3498' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u0834' - '\u32b6\u32b6\u2bb8\u32b6\u32b6\u36ac\u35a6\u32b9\u33d6\u32b6\u32b6\u32b6' - '\u35e5\u24ee\u3847\x00\u0567\u3a12\u2826\u01d4\u2fb3\u29f7\u36f2\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u2bc7\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u1e54\u32b6\u1394\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u2412\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u30b3\u2c62\u3271\u32b6\u32b6\u32b6\u12e3\u32b6\u32b6\u1bf2' - '\u1d44\u2526\u32b6\u2656\u32b6\u32b6\u32b6\u0bcb\u1645\u0a85\u0ddf\u2168' - '\u22af\u09c3\u09c5\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u3f2f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u3d4f\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6\u32b6' - '\u32b6\u32b6\u32b6'; + '333333333;3»»3333333333333333333333333333333333333333333333333333333333333' + '3333333333333#"""""23#""""\x82" """"""""233333333333333333UTEUS433333333CD' + '43333333333333CD33333SDD4D5U4333333333C43333333333CDDD9DDD3DCD433333333CDD' + 'DDDDDDDDDDDDDDDDDDDDCDDDDDDDD3DDD4DCDD333333333333333333333333333333333333' + '33333333333333433333333333333333333333333333333333333333333333333333333333' + '33333333333333333333CDDD33333333333333333333333333333333333333333333333333' + '33333333333333333333333333333333333333333333333333C33333333333333333333333' + '3333333CD43333333333333333333333333333333333333333333333333333333333333333' + '33333333333333333333333333333333333333333333333333333333333333333333333CT5' + '3333DY333333333333333333333333UDD43UD4333333333334333333333333333333333333' + '3333333333333333333333333333333333333333333333333333333333DEDDDU3SUSU43333' + '433333333333333333333333333333TDUEEDD333333TT5D4DD333C433333D3333333S33333' + '3DC44333333333333333333333333333SUDDDDTD3333333333333333333333333333333333' + '33333333333333333333333333333333333333333333333333333333333333333333333333' + '33333333333333CUU5U3DDYY43333333333333333333333333333333333333333333333333' + '333333333333333333333UED4CTUE3S3333333333333ss333333333333333333333CDDDD33' + '33C3333T333333333333333333333334343C33333333333SET334333333333DDDDDDDDDDDD' + 'DDDD43333333DDDDDT433333£ªªªªªªªªªªªªªª3swwwwwww333337333333333s3wwww7ww33' + '33swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwGDD' + 'C433DDDDD4DDDDDDDDDDDDDDDDDD3£ªªªªªªªªªªªªªªªªªªªªªªªªªªªªªªªº»»»»»»»»»»»»' + '»»»»»»»ËÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ|ww73333swwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwww733333333333333333333333swwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww' + 'wwwwwwwwwwwwwwwwwwwwwwwwwww73333333333333333333333333333333333333333333333' + '33333333333swwwww7333333333333333333333333333333333333333333wwwwwwwwwwwwww' + 'wwwwwww7swwwwwss33373733s33333w33333ãîÞîîîîîîîîîîîîîÞîîîîîîîîîîîîîÞîîîîîîî' + 'îîîîîî>33333³»»»»»»»;3ÃÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌÌ33ED4S5SE333CD33333D3333333' + '333333333333DDDD333333333333333333333333CSDDD433T5333333333333333333333333' + '333CCT33333333333333333333333333334UDD3U3U4333343333C4333333333333C33TEDCS' + 'UUU433333333S5333333333333333333333333SUUUUUEUDDDDD43333433333333333333333' + '333ET533E3333\x03'; +const String _start = '\u33b9\u336a\u03d0\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0200\u2743\u0964\u0964\u0964\u0964\u238e\u0964\u0964' + '\u0964\u349a\u39e5\u1d4f\u27b9\u0964\u346b\u2794\u0711\u25fb\u3bfc\u046f' + '\u05dd\u0400\u2720\u1b61\u1c65\u1bdd\u43ff\u43c0\u26ea\u43c0\u3447\u4383' + '\u42f2\u394e\u3939\u1b17\u1de9\u1c1a\u39a6\u2ce3\u0f00\u2e71\u4433\u4344' + '\u4335\u1c25\u2389\u04b7\u1a9f\u3f13\u0b5e\u26ae\u0e50\u1cf1\u0964\u3f53' + '\u3f73\u3f93\u3fbb\u0964\u0964\u0964\u0964\u0964\u05d9\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u3407' + '\u049d\u38fc\u449f\u2125\u0964\u0e26\u0964\u2dc6\u0964\u0964\u0964\u0f29' + '\u1e40\u2ee4\u070d\u1ada\u2dfd\u0e90\u3966\u1d0f\u0964\u0964\u0ec0\u0964' + '\u0964\u0964\u0200\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u2e32' + '\u3085\u0964\u3ca0\u1c89\u0964\u1e15\u0964\u0964\u0964\u0964\u0964\u0445' + '\u0964\u14a4\u1cb3\u0964\u0964\u0964\u30c8\u0964\u0964\u3058\u0fff\u157d' + '\u137d\u3ffb\u137d\u4205\u0f7e\u0fa9\u0964\u0964\u0964\u0964\u0964\u304e' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0fe3\u30b5\u0964\u0964\u0964' + '\u0964\u0964\u05c7\u0964\u0b25\u0964\u1771\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0f45\u0964\u28c4\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u3be2\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u30d9\u28bf\u28ad\u0964' + '\u0964\u0964\u0964\u3c70\u0964\u4465\u1b9f\u4316\u3cd9\u1dac\u041f\u1d6c' + '\u3c36\u1b23\u44bb\u0964\u0964\u0964\u33d9\u4249\u4251\u4259\u4245\u424d' + '\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259' + '\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249' + '\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255' + '\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245' + '\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251' + '\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d' + '\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d' + '\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259' + '\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249' + '\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255' + '\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245' + '\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251' + '\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d\u4255\u425d' + '\u4249\u4251\u4259\u4245\u424d\u4255\u425d\u4249\u4251\u4259\u4245\u424d' + '\u4255\u4279\u42b2\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' + '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0b46\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u2763\u0964\u0964\u336a\u0964\u0964\u28bf\u3379\u0967\u0a84\u0964\u0964' + '\u0964\u27f8\u18d0\u24db\u04f6\u2be3\u0c4f\u2135\u39f9\u310c\u2e82\u3730' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u06c6\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u28df\u0964\u0964\u0964' + '\u0964\u2261\u31a9\u1f30\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u17f4\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u1691\u0761\u091f\u0964\u0964\u0964\u1e7f\u0964\u0964' + '\u34d1\u3623\u2398\u0964\u2a0f\u0964\u0964\u0964\u137d\u3d18\u1237\u400b' + '\u102e\u1591\u1175\u1177\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u01e0\x00\x00\x00\x00\x00\x00\x00\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964\u0964' + '\u0964\u0964'; + +@pragma('dart2js:prefer-inline') +@pragma('vm:prefer-inline') +@pragma('wasm:prefer-inline') int low(int codeUnit) { var chunkStart = _start.codeUnitAt(codeUnit >> 6); var index = chunkStart + (codeUnit & 63); diff --git a/pkgs/characters/pubspec.yaml b/pkgs/characters/pubspec.yaml index 32a0cbfb..452f81de 100644 --- a/pkgs/characters/pubspec.yaml +++ b/pkgs/characters/pubspec.yaml @@ -1,5 +1,5 @@ name: characters -version: 1.3.1 +version: 1.4.0 description: >- String replacement with operations that are Unicode/grapheme cluster aware. repository: https://github.com/dart-lang/core/tree/main/pkgs/characters @@ -12,5 +12,5 @@ environment: sdk: ^3.4.0 dev_dependencies: - dart_flutter_team_lints: ^3.0.0 + dart_flutter_team_lints: ^3.2.0 test: ^1.16.6 diff --git a/pkgs/characters/test/characters_test.dart b/pkgs/characters/test/characters_test.dart index 2d17e5f9..6d24a426 100644 --- a/pkgs/characters/test/characters_test.dart +++ b/pkgs/characters/test/characters_test.dart @@ -136,6 +136,7 @@ void main([List? args]) { range = range = CharacterRange.at(string, 0, string.length); expect(range.isEmpty, false); expect(range.current, string); + print("DONE"); }); }); }); @@ -208,7 +209,11 @@ void tests() { }); group("Unicode test", () { - for (var gcs in splitTests) { + for (var (gcs, description) in splitTests) { + if (description.contains('[9.3]')) { + print("Unsupported GB9c rule"); + continue; + } test("[${testDescription(gcs)}]", () { expectGC(gc(gcs.join()), gcs); }); @@ -216,7 +221,7 @@ void tests() { }); group("Emoji test", () { - for (var gcs in emojis) { + for (var (gcs, _) in emojis) { test("[${testDescription(gcs)}]", () { expectGC(gc(gcs.join()), gcs); }); diff --git a/pkgs/characters/test/src/unicode_grapheme_tests.dart b/pkgs/characters/test/src/unicode_grapheme_tests.dart index 1972884b..dc7b84b2 100644 --- a/pkgs/characters/test/src/unicode_grapheme_tests.dart +++ b/pkgs/characters/test/src/unicode_grapheme_tests.dart @@ -1,5542 +1,16422 @@ -// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file +// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. // Generated code. Do not edit. -// Generated from [https://unicode.org/Public/15.0.0/ucd/auxiliary/GraphemeBreakTest.txt](../../third_party/Unicode_Consortium/GraphemeBreakTest.txt) -// and [https://www.unicode.org/Public/emoji/15.0/emoji-test.txt](../../third_party/Unicode_Consortium/emoji_test.txt). +// Generated from [https://unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakTest.txt](../../third_party/Unicode_Consortium/GraphemeBreakTest.txt) +// and [https://unicode.org/Public/emoji/latest/emoji-test.txt](../../third_party/Unicode_Consortium/emoji_test.txt). // Licensed under the Unicode Inc. License Agreement // (https://www.unicode.org/license.txt, ../../third_party/third_party/Unicode_Consortium/UNICODE_LICENSE.txt) // ignore_for_file: lines_longer_than_80_chars // Grapheme cluster tests. -const List> splitTests = [ - [' ', ' '], - [' \u0308', ' '], - [' ', '\r'], - [' \u0308', '\r'], - [' ', '\n'], - [' \u0308', '\n'], - [' ', '\x01'], - [' \u0308', '\x01'], - [' \u034f'], - [' \u0308\u034f'], - [' ', '\u{1f1e6}'], - [' \u0308', '\u{1f1e6}'], - [' ', '\u0600'], - [' \u0308', '\u0600'], - [' \u0903'], - [' \u0308\u0903'], - [' ', '\u1100'], - [' \u0308', '\u1100'], - [' ', '\u1160'], - [' \u0308', '\u1160'], - [' ', '\u11a8'], - [' \u0308', '\u11a8'], - [' ', '\uac00'], - [' \u0308', '\uac00'], - [' ', '\uac01'], - [' \u0308', '\uac01'], - [' ', '\u231a'], - [' \u0308', '\u231a'], - [' \u0300'], - [' \u0308\u0300'], - [' \u200d'], - [' \u0308\u200d'], - [' ', '\u0378'], - [' \u0308', '\u0378'], - ['\r', ' '], - ['\r', '\u0308', ' '], - ['\r', '\r'], - ['\r', '\u0308', '\r'], - ['\r\n'], - ['\r', '\u0308', '\n'], - ['\r', '\x01'], - ['\r', '\u0308', '\x01'], - ['\r', '\u034f'], - ['\r', '\u0308\u034f'], - ['\r', '\u{1f1e6}'], - ['\r', '\u0308', '\u{1f1e6}'], - ['\r', '\u0600'], - ['\r', '\u0308', '\u0600'], - ['\r', '\u0903'], - ['\r', '\u0308\u0903'], - ['\r', '\u1100'], - ['\r', '\u0308', '\u1100'], - ['\r', '\u1160'], - ['\r', '\u0308', '\u1160'], - ['\r', '\u11a8'], - ['\r', '\u0308', '\u11a8'], - ['\r', '\uac00'], - ['\r', '\u0308', '\uac00'], - ['\r', '\uac01'], - ['\r', '\u0308', '\uac01'], - ['\r', '\u231a'], - ['\r', '\u0308', '\u231a'], - ['\r', '\u0300'], - ['\r', '\u0308\u0300'], - ['\r', '\u200d'], - ['\r', '\u0308\u200d'], - ['\r', '\u0378'], - ['\r', '\u0308', '\u0378'], - ['\n', ' '], - ['\n', '\u0308', ' '], - ['\n', '\r'], - ['\n', '\u0308', '\r'], - ['\n', '\n'], - ['\n', '\u0308', '\n'], - ['\n', '\x01'], - ['\n', '\u0308', '\x01'], - ['\n', '\u034f'], - ['\n', '\u0308\u034f'], - ['\n', '\u{1f1e6}'], - ['\n', '\u0308', '\u{1f1e6}'], - ['\n', '\u0600'], - ['\n', '\u0308', '\u0600'], - ['\n', '\u0903'], - ['\n', '\u0308\u0903'], - ['\n', '\u1100'], - ['\n', '\u0308', '\u1100'], - ['\n', '\u1160'], - ['\n', '\u0308', '\u1160'], - ['\n', '\u11a8'], - ['\n', '\u0308', '\u11a8'], - ['\n', '\uac00'], - ['\n', '\u0308', '\uac00'], - ['\n', '\uac01'], - ['\n', '\u0308', '\uac01'], - ['\n', '\u231a'], - ['\n', '\u0308', '\u231a'], - ['\n', '\u0300'], - ['\n', '\u0308\u0300'], - ['\n', '\u200d'], - ['\n', '\u0308\u200d'], - ['\n', '\u0378'], - ['\n', '\u0308', '\u0378'], - ['\x01', ' '], - ['\x01', '\u0308', ' '], - ['\x01', '\r'], - ['\x01', '\u0308', '\r'], - ['\x01', '\n'], - ['\x01', '\u0308', '\n'], - ['\x01', '\x01'], - ['\x01', '\u0308', '\x01'], - ['\x01', '\u034f'], - ['\x01', '\u0308\u034f'], - ['\x01', '\u{1f1e6}'], - ['\x01', '\u0308', '\u{1f1e6}'], - ['\x01', '\u0600'], - ['\x01', '\u0308', '\u0600'], - ['\x01', '\u0903'], - ['\x01', '\u0308\u0903'], - ['\x01', '\u1100'], - ['\x01', '\u0308', '\u1100'], - ['\x01', '\u1160'], - ['\x01', '\u0308', '\u1160'], - ['\x01', '\u11a8'], - ['\x01', '\u0308', '\u11a8'], - ['\x01', '\uac00'], - ['\x01', '\u0308', '\uac00'], - ['\x01', '\uac01'], - ['\x01', '\u0308', '\uac01'], - ['\x01', '\u231a'], - ['\x01', '\u0308', '\u231a'], - ['\x01', '\u0300'], - ['\x01', '\u0308\u0300'], - ['\x01', '\u200d'], - ['\x01', '\u0308\u200d'], - ['\x01', '\u0378'], - ['\x01', '\u0308', '\u0378'], - ['\u034f', ' '], - ['\u034f\u0308', ' '], - ['\u034f', '\r'], - ['\u034f\u0308', '\r'], - ['\u034f', '\n'], - ['\u034f\u0308', '\n'], - ['\u034f', '\x01'], - ['\u034f\u0308', '\x01'], - ['\u034f\u034f'], - ['\u034f\u0308\u034f'], - ['\u034f', '\u{1f1e6}'], - ['\u034f\u0308', '\u{1f1e6}'], - ['\u034f', '\u0600'], - ['\u034f\u0308', '\u0600'], - ['\u034f\u0903'], - ['\u034f\u0308\u0903'], - ['\u034f', '\u1100'], - ['\u034f\u0308', '\u1100'], - ['\u034f', '\u1160'], - ['\u034f\u0308', '\u1160'], - ['\u034f', '\u11a8'], - ['\u034f\u0308', '\u11a8'], - ['\u034f', '\uac00'], - ['\u034f\u0308', '\uac00'], - ['\u034f', '\uac01'], - ['\u034f\u0308', '\uac01'], - ['\u034f', '\u231a'], - ['\u034f\u0308', '\u231a'], - ['\u034f\u0300'], - ['\u034f\u0308\u0300'], - ['\u034f\u200d'], - ['\u034f\u0308\u200d'], - ['\u034f', '\u0378'], - ['\u034f\u0308', '\u0378'], - ['\u{1f1e6}', ' '], - ['\u{1f1e6}\u0308', ' '], - ['\u{1f1e6}', '\r'], - ['\u{1f1e6}\u0308', '\r'], - ['\u{1f1e6}', '\n'], - ['\u{1f1e6}\u0308', '\n'], - ['\u{1f1e6}', '\x01'], - ['\u{1f1e6}\u0308', '\x01'], - ['\u{1f1e6}\u034f'], - ['\u{1f1e6}\u0308\u034f'], - ['\u{1f1e6}\u{1f1e6}'], - ['\u{1f1e6}\u0308', '\u{1f1e6}'], - ['\u{1f1e6}', '\u0600'], - ['\u{1f1e6}\u0308', '\u0600'], - ['\u{1f1e6}\u0903'], - ['\u{1f1e6}\u0308\u0903'], - ['\u{1f1e6}', '\u1100'], - ['\u{1f1e6}\u0308', '\u1100'], - ['\u{1f1e6}', '\u1160'], - ['\u{1f1e6}\u0308', '\u1160'], - ['\u{1f1e6}', '\u11a8'], - ['\u{1f1e6}\u0308', '\u11a8'], - ['\u{1f1e6}', '\uac00'], - ['\u{1f1e6}\u0308', '\uac00'], - ['\u{1f1e6}', '\uac01'], - ['\u{1f1e6}\u0308', '\uac01'], - ['\u{1f1e6}', '\u231a'], - ['\u{1f1e6}\u0308', '\u231a'], - ['\u{1f1e6}\u0300'], - ['\u{1f1e6}\u0308\u0300'], - ['\u{1f1e6}\u200d'], - ['\u{1f1e6}\u0308\u200d'], - ['\u{1f1e6}', '\u0378'], - ['\u{1f1e6}\u0308', '\u0378'], - ['\u0600 '], - ['\u0600\u0308', ' '], - ['\u0600', '\r'], - ['\u0600\u0308', '\r'], - ['\u0600', '\n'], - ['\u0600\u0308', '\n'], - ['\u0600', '\x01'], - ['\u0600\u0308', '\x01'], - ['\u0600\u034f'], - ['\u0600\u0308\u034f'], - ['\u0600\u{1f1e6}'], - ['\u0600\u0308', '\u{1f1e6}'], - ['\u0600\u0600'], - ['\u0600\u0308', '\u0600'], - ['\u0600\u0903'], - ['\u0600\u0308\u0903'], - ['\u0600\u1100'], - ['\u0600\u0308', '\u1100'], - ['\u0600\u1160'], - ['\u0600\u0308', '\u1160'], - ['\u0600\u11a8'], - ['\u0600\u0308', '\u11a8'], - ['\u0600\uac00'], - ['\u0600\u0308', '\uac00'], - ['\u0600\uac01'], - ['\u0600\u0308', '\uac01'], - ['\u0600\u231a'], - ['\u0600\u0308', '\u231a'], - ['\u0600\u0300'], - ['\u0600\u0308\u0300'], - ['\u0600\u200d'], - ['\u0600\u0308\u200d'], - ['\u0600\u0378'], - ['\u0600\u0308', '\u0378'], - ['\u0903', ' '], - ['\u0903\u0308', ' '], - ['\u0903', '\r'], - ['\u0903\u0308', '\r'], - ['\u0903', '\n'], - ['\u0903\u0308', '\n'], - ['\u0903', '\x01'], - ['\u0903\u0308', '\x01'], - ['\u0903\u034f'], - ['\u0903\u0308\u034f'], - ['\u0903', '\u{1f1e6}'], - ['\u0903\u0308', '\u{1f1e6}'], - ['\u0903', '\u0600'], - ['\u0903\u0308', '\u0600'], - ['\u0903\u0903'], - ['\u0903\u0308\u0903'], - ['\u0903', '\u1100'], - ['\u0903\u0308', '\u1100'], - ['\u0903', '\u1160'], - ['\u0903\u0308', '\u1160'], - ['\u0903', '\u11a8'], - ['\u0903\u0308', '\u11a8'], - ['\u0903', '\uac00'], - ['\u0903\u0308', '\uac00'], - ['\u0903', '\uac01'], - ['\u0903\u0308', '\uac01'], - ['\u0903', '\u231a'], - ['\u0903\u0308', '\u231a'], - ['\u0903\u0300'], - ['\u0903\u0308\u0300'], - ['\u0903\u200d'], - ['\u0903\u0308\u200d'], - ['\u0903', '\u0378'], - ['\u0903\u0308', '\u0378'], - ['\u1100', ' '], - ['\u1100\u0308', ' '], - ['\u1100', '\r'], - ['\u1100\u0308', '\r'], - ['\u1100', '\n'], - ['\u1100\u0308', '\n'], - ['\u1100', '\x01'], - ['\u1100\u0308', '\x01'], - ['\u1100\u034f'], - ['\u1100\u0308\u034f'], - ['\u1100', '\u{1f1e6}'], - ['\u1100\u0308', '\u{1f1e6}'], - ['\u1100', '\u0600'], - ['\u1100\u0308', '\u0600'], - ['\u1100\u0903'], - ['\u1100\u0308\u0903'], - ['\u1100\u1100'], - ['\u1100\u0308', '\u1100'], - ['\u1100\u1160'], - ['\u1100\u0308', '\u1160'], - ['\u1100', '\u11a8'], - ['\u1100\u0308', '\u11a8'], - ['\u1100\uac00'], - ['\u1100\u0308', '\uac00'], - ['\u1100\uac01'], - ['\u1100\u0308', '\uac01'], - ['\u1100', '\u231a'], - ['\u1100\u0308', '\u231a'], - ['\u1100\u0300'], - ['\u1100\u0308\u0300'], - ['\u1100\u200d'], - ['\u1100\u0308\u200d'], - ['\u1100', '\u0378'], - ['\u1100\u0308', '\u0378'], - ['\u1160', ' '], - ['\u1160\u0308', ' '], - ['\u1160', '\r'], - ['\u1160\u0308', '\r'], - ['\u1160', '\n'], - ['\u1160\u0308', '\n'], - ['\u1160', '\x01'], - ['\u1160\u0308', '\x01'], - ['\u1160\u034f'], - ['\u1160\u0308\u034f'], - ['\u1160', '\u{1f1e6}'], - ['\u1160\u0308', '\u{1f1e6}'], - ['\u1160', '\u0600'], - ['\u1160\u0308', '\u0600'], - ['\u1160\u0903'], - ['\u1160\u0308\u0903'], - ['\u1160', '\u1100'], - ['\u1160\u0308', '\u1100'], - ['\u1160\u1160'], - ['\u1160\u0308', '\u1160'], - ['\u1160\u11a8'], - ['\u1160\u0308', '\u11a8'], - ['\u1160', '\uac00'], - ['\u1160\u0308', '\uac00'], - ['\u1160', '\uac01'], - ['\u1160\u0308', '\uac01'], - ['\u1160', '\u231a'], - ['\u1160\u0308', '\u231a'], - ['\u1160\u0300'], - ['\u1160\u0308\u0300'], - ['\u1160\u200d'], - ['\u1160\u0308\u200d'], - ['\u1160', '\u0378'], - ['\u1160\u0308', '\u0378'], - ['\u11a8', ' '], - ['\u11a8\u0308', ' '], - ['\u11a8', '\r'], - ['\u11a8\u0308', '\r'], - ['\u11a8', '\n'], - ['\u11a8\u0308', '\n'], - ['\u11a8', '\x01'], - ['\u11a8\u0308', '\x01'], - ['\u11a8\u034f'], - ['\u11a8\u0308\u034f'], - ['\u11a8', '\u{1f1e6}'], - ['\u11a8\u0308', '\u{1f1e6}'], - ['\u11a8', '\u0600'], - ['\u11a8\u0308', '\u0600'], - ['\u11a8\u0903'], - ['\u11a8\u0308\u0903'], - ['\u11a8', '\u1100'], - ['\u11a8\u0308', '\u1100'], - ['\u11a8', '\u1160'], - ['\u11a8\u0308', '\u1160'], - ['\u11a8\u11a8'], - ['\u11a8\u0308', '\u11a8'], - ['\u11a8', '\uac00'], - ['\u11a8\u0308', '\uac00'], - ['\u11a8', '\uac01'], - ['\u11a8\u0308', '\uac01'], - ['\u11a8', '\u231a'], - ['\u11a8\u0308', '\u231a'], - ['\u11a8\u0300'], - ['\u11a8\u0308\u0300'], - ['\u11a8\u200d'], - ['\u11a8\u0308\u200d'], - ['\u11a8', '\u0378'], - ['\u11a8\u0308', '\u0378'], - ['\uac00', ' '], - ['\uac00\u0308', ' '], - ['\uac00', '\r'], - ['\uac00\u0308', '\r'], - ['\uac00', '\n'], - ['\uac00\u0308', '\n'], - ['\uac00', '\x01'], - ['\uac00\u0308', '\x01'], - ['\uac00\u034f'], - ['\uac00\u0308\u034f'], - ['\uac00', '\u{1f1e6}'], - ['\uac00\u0308', '\u{1f1e6}'], - ['\uac00', '\u0600'], - ['\uac00\u0308', '\u0600'], - ['\uac00\u0903'], - ['\uac00\u0308\u0903'], - ['\uac00', '\u1100'], - ['\uac00\u0308', '\u1100'], - ['\uac00\u1160'], - ['\uac00\u0308', '\u1160'], - ['\uac00\u11a8'], - ['\uac00\u0308', '\u11a8'], - ['\uac00', '\uac00'], - ['\uac00\u0308', '\uac00'], - ['\uac00', '\uac01'], - ['\uac00\u0308', '\uac01'], - ['\uac00', '\u231a'], - ['\uac00\u0308', '\u231a'], - ['\uac00\u0300'], - ['\uac00\u0308\u0300'], - ['\uac00\u200d'], - ['\uac00\u0308\u200d'], - ['\uac00', '\u0378'], - ['\uac00\u0308', '\u0378'], - ['\uac01', ' '], - ['\uac01\u0308', ' '], - ['\uac01', '\r'], - ['\uac01\u0308', '\r'], - ['\uac01', '\n'], - ['\uac01\u0308', '\n'], - ['\uac01', '\x01'], - ['\uac01\u0308', '\x01'], - ['\uac01\u034f'], - ['\uac01\u0308\u034f'], - ['\uac01', '\u{1f1e6}'], - ['\uac01\u0308', '\u{1f1e6}'], - ['\uac01', '\u0600'], - ['\uac01\u0308', '\u0600'], - ['\uac01\u0903'], - ['\uac01\u0308\u0903'], - ['\uac01', '\u1100'], - ['\uac01\u0308', '\u1100'], - ['\uac01', '\u1160'], - ['\uac01\u0308', '\u1160'], - ['\uac01\u11a8'], - ['\uac01\u0308', '\u11a8'], - ['\uac01', '\uac00'], - ['\uac01\u0308', '\uac00'], - ['\uac01', '\uac01'], - ['\uac01\u0308', '\uac01'], - ['\uac01', '\u231a'], - ['\uac01\u0308', '\u231a'], - ['\uac01\u0300'], - ['\uac01\u0308\u0300'], - ['\uac01\u200d'], - ['\uac01\u0308\u200d'], - ['\uac01', '\u0378'], - ['\uac01\u0308', '\u0378'], - ['\u231a', ' '], - ['\u231a\u0308', ' '], - ['\u231a', '\r'], - ['\u231a\u0308', '\r'], - ['\u231a', '\n'], - ['\u231a\u0308', '\n'], - ['\u231a', '\x01'], - ['\u231a\u0308', '\x01'], - ['\u231a\u034f'], - ['\u231a\u0308\u034f'], - ['\u231a', '\u{1f1e6}'], - ['\u231a\u0308', '\u{1f1e6}'], - ['\u231a', '\u0600'], - ['\u231a\u0308', '\u0600'], - ['\u231a\u0903'], - ['\u231a\u0308\u0903'], - ['\u231a', '\u1100'], - ['\u231a\u0308', '\u1100'], - ['\u231a', '\u1160'], - ['\u231a\u0308', '\u1160'], - ['\u231a', '\u11a8'], - ['\u231a\u0308', '\u11a8'], - ['\u231a', '\uac00'], - ['\u231a\u0308', '\uac00'], - ['\u231a', '\uac01'], - ['\u231a\u0308', '\uac01'], - ['\u231a', '\u231a'], - ['\u231a\u0308', '\u231a'], - ['\u231a\u0300'], - ['\u231a\u0308\u0300'], - ['\u231a\u200d'], - ['\u231a\u0308\u200d'], - ['\u231a', '\u0378'], - ['\u231a\u0308', '\u0378'], - ['\u0300', ' '], - ['\u0300\u0308', ' '], - ['\u0300', '\r'], - ['\u0300\u0308', '\r'], - ['\u0300', '\n'], - ['\u0300\u0308', '\n'], - ['\u0300', '\x01'], - ['\u0300\u0308', '\x01'], - ['\u0300\u034f'], - ['\u0300\u0308\u034f'], - ['\u0300', '\u{1f1e6}'], - ['\u0300\u0308', '\u{1f1e6}'], - ['\u0300', '\u0600'], - ['\u0300\u0308', '\u0600'], - ['\u0300\u0903'], - ['\u0300\u0308\u0903'], - ['\u0300', '\u1100'], - ['\u0300\u0308', '\u1100'], - ['\u0300', '\u1160'], - ['\u0300\u0308', '\u1160'], - ['\u0300', '\u11a8'], - ['\u0300\u0308', '\u11a8'], - ['\u0300', '\uac00'], - ['\u0300\u0308', '\uac00'], - ['\u0300', '\uac01'], - ['\u0300\u0308', '\uac01'], - ['\u0300', '\u231a'], - ['\u0300\u0308', '\u231a'], - ['\u0300\u0300'], - ['\u0300\u0308\u0300'], - ['\u0300\u200d'], - ['\u0300\u0308\u200d'], - ['\u0300', '\u0378'], - ['\u0300\u0308', '\u0378'], - ['\u200d', ' '], - ['\u200d\u0308', ' '], - ['\u200d', '\r'], - ['\u200d\u0308', '\r'], - ['\u200d', '\n'], - ['\u200d\u0308', '\n'], - ['\u200d', '\x01'], - ['\u200d\u0308', '\x01'], - ['\u200d\u034f'], - ['\u200d\u0308\u034f'], - ['\u200d', '\u{1f1e6}'], - ['\u200d\u0308', '\u{1f1e6}'], - ['\u200d', '\u0600'], - ['\u200d\u0308', '\u0600'], - ['\u200d\u0903'], - ['\u200d\u0308\u0903'], - ['\u200d', '\u1100'], - ['\u200d\u0308', '\u1100'], - ['\u200d', '\u1160'], - ['\u200d\u0308', '\u1160'], - ['\u200d', '\u11a8'], - ['\u200d\u0308', '\u11a8'], - ['\u200d', '\uac00'], - ['\u200d\u0308', '\uac00'], - ['\u200d', '\uac01'], - ['\u200d\u0308', '\uac01'], - ['\u200d', '\u231a'], - ['\u200d\u0308', '\u231a'], - ['\u200d\u0300'], - ['\u200d\u0308\u0300'], - ['\u200d\u200d'], - ['\u200d\u0308\u200d'], - ['\u200d', '\u0378'], - ['\u200d\u0308', '\u0378'], - ['\u0378', ' '], - ['\u0378\u0308', ' '], - ['\u0378', '\r'], - ['\u0378\u0308', '\r'], - ['\u0378', '\n'], - ['\u0378\u0308', '\n'], - ['\u0378', '\x01'], - ['\u0378\u0308', '\x01'], - ['\u0378\u034f'], - ['\u0378\u0308\u034f'], - ['\u0378', '\u{1f1e6}'], - ['\u0378\u0308', '\u{1f1e6}'], - ['\u0378', '\u0600'], - ['\u0378\u0308', '\u0600'], - ['\u0378\u0903'], - ['\u0378\u0308\u0903'], - ['\u0378', '\u1100'], - ['\u0378\u0308', '\u1100'], - ['\u0378', '\u1160'], - ['\u0378\u0308', '\u1160'], - ['\u0378', '\u11a8'], - ['\u0378\u0308', '\u11a8'], - ['\u0378', '\uac00'], - ['\u0378\u0308', '\uac00'], - ['\u0378', '\uac01'], - ['\u0378\u0308', '\uac01'], - ['\u0378', '\u231a'], - ['\u0378\u0308', '\u231a'], - ['\u0378\u0300'], - ['\u0378\u0308\u0300'], - ['\u0378\u200d'], - ['\u0378\u0308\u200d'], - ['\u0378', '\u0378'], - ['\u0378\u0308', '\u0378'], - ['\r\n', 'a', '\n', '\u0308'], - ['a\u0308'], - [' \u200d', '\u0646'], - ['\u0646\u200d', ' '], - ['\u1100\u1100'], - ['\uac00\u11a8', '\u1100'], - ['\uac01\u11a8', '\u1100'], - ['\u{1f1e6}\u{1f1e7}', '\u{1f1e8}', 'b'], - ['a', '\u{1f1e6}\u{1f1e7}', '\u{1f1e8}', 'b'], - ['a', '\u{1f1e6}\u{1f1e7}\u200d', '\u{1f1e8}', 'b'], - ['a', '\u{1f1e6}\u200d', '\u{1f1e7}\u{1f1e8}', 'b'], - ['a', '\u{1f1e6}\u{1f1e7}', '\u{1f1e8}\u{1f1e9}', 'b'], - ['a\u200d'], - ['a\u0308', 'b'], - ['a\u0903', 'b'], - ['a', '\u0600b'], - ['\u{1f476}\u{1f3ff}', '\u{1f476}'], - ['a\u{1f3ff}', '\u{1f476}'], - ['a\u{1f3ff}', '\u{1f476}\u200d\u{1f6d1}'], - ['\u{1f476}\u{1f3ff}\u0308\u200d\u{1f476}\u{1f3ff}'], - ['\u{1f6d1}\u200d\u{1f6d1}'], - ['a\u200d', '\u{1f6d1}'], - ['\u2701\u200d\u2701'], - ['a\u200d', '\u2701'], +const List<(List graphemeClusters, String description)> splitTests = [ + ([' ', ' '], '÷ [0.2] SPACE (Other) ÷ [999.0] SPACE (Other) ÷ [0.3]'), + ( + [' \u0308', ' '], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + [' ', '\r'], + '÷ [0.2] SPACE (Other) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + [' \u0308', '\r'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ([' ', '\n'], '÷ [0.2] SPACE (Other) ÷ [5.0] (LF) ÷ [0.3]'), + ( + [' \u0308', '\n'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + [' ', '\x01'], + '÷ [0.2] SPACE (Other) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + [' \u0308', '\x01'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + [' \u200c'], + '÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + [' \u0308\u200c'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + [' ', '\u{1f1e6}'], + '÷ [0.2] SPACE (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + [' \u0308', '\u{1f1e6}'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + [' ', '\u0600'], + '÷ [0.2] SPACE (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + [' \u0308', '\u0600'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + [' \u0a03'], + '÷ [0.2] SPACE (Other) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + [' \u0308\u0a03'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + [' ', '\u1100'], + '÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + [' \u0308', '\u1100'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + [' ', '\u1160'], + '÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + [' \u0308', '\u1160'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + [' ', '\u11a8'], + '÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + [' \u0308', '\u11a8'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + [' ', '\uac00'], + '÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + [' \u0308', '\uac00'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + [' ', '\uac01'], + '÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + [' \u0308', '\uac01'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + [' \u0903'], + '÷ [0.2] SPACE (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + [' \u0308\u0903'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + [' ', '\u0904'], + '÷ [0.2] SPACE (Other) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + [' \u0308', '\u0904'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + [' ', '\u0d4e'], + '÷ [0.2] SPACE (Other) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + [' \u0308', '\u0d4e'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + [' ', '\u0915'], + '÷ [0.2] SPACE (Other) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + [' \u0308', '\u0915'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ([' ', '\u231a'], '÷ [0.2] SPACE (Other) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]'), + ( + [' \u0308', '\u231a'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + [' \u0300'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u0308\u0300'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u0900'], + '÷ [0.2] SPACE (Other) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u0308\u0900'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u094d'], + '÷ [0.2] SPACE (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u0308\u094d'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u200d'], + '÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u0308\u200d'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + [' ', '\u0378'], + '÷ [0.2] SPACE (Other) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + [' \u0308', '\u0378'], + '÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\r', ' '], + '÷ [0.2] (CR) ÷ [4.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\r', '\u0308', ' '], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\r', '\r'], + '÷ [0.2] (CR) ÷ [4.0] (CR) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\r'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\r\n'], + '÷ [0.2] (CR) × [3.0] (LF) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\n'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\r', '\x01'], + '÷ [0.2] (CR) ÷ [4.0] (Control) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\x01'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\r', '\u200c'], + '÷ [0.2] (CR) ÷ [4.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u200c'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\r', '\u{1f1e6}'], + '÷ [0.2] (CR) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u{1f1e6}'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\r', '\u0600'], + '÷ [0.2] (CR) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u0600'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\r', '\u0a03'], + '÷ [0.2] (CR) ÷ [4.0] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u0a03'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\r', '\u1100'], + '÷ [0.2] (CR) ÷ [4.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u1100'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\r', '\u1160'], + '÷ [0.2] (CR) ÷ [4.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u1160'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\r', '\u11a8'], + '÷ [0.2] (CR) ÷ [4.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u11a8'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\r', '\uac00'], + '÷ [0.2] (CR) ÷ [4.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\uac00'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\r', '\uac01'], + '÷ [0.2] (CR) ÷ [4.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\uac01'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\r', '\u0903'], + '÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u0903'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\r', '\u0904'], + '÷ [0.2] (CR) ÷ [4.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u0904'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\r', '\u0d4e'], + '÷ [0.2] (CR) ÷ [4.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u0d4e'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\r', '\u0915'], + '÷ [0.2] (CR) ÷ [4.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u0915'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\r', '\u231a'], + '÷ [0.2] (CR) ÷ [4.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u231a'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\r', '\u0300'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u0300'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u0900'], + '÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u0900'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u094d'], + '÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u094d'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u200d'], + '÷ [0.2] (CR) ÷ [4.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u0308\u200d'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\r', '\u0378'], + '÷ [0.2] (CR) ÷ [4.0] (Other) ÷ [0.3]' + ), + ( + ['\r', '\u0308', '\u0378'], + '÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + (['\n', ' '], '÷ [0.2] (LF) ÷ [4.0] SPACE (Other) ÷ [0.3]'), + ( + ['\n', '\u0308', ' '], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\n', '\r'], + '÷ [0.2] (LF) ÷ [4.0] (CR) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\r'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\n', '\n'], + '÷ [0.2] (LF) ÷ [4.0] (LF) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\n'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\n', '\x01'], + '÷ [0.2] (LF) ÷ [4.0] (Control) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\x01'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\n', '\u200c'], + '÷ [0.2] (LF) ÷ [4.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u200c'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\n', '\u{1f1e6}'], + '÷ [0.2] (LF) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u{1f1e6}'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\n', '\u0600'], + '÷ [0.2] (LF) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u0600'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\n', '\u0a03'], + '÷ [0.2] (LF) ÷ [4.0] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u0a03'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\n', '\u1100'], + '÷ [0.2] (LF) ÷ [4.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u1100'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\n', '\u1160'], + '÷ [0.2] (LF) ÷ [4.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u1160'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\n', '\u11a8'], + '÷ [0.2] (LF) ÷ [4.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u11a8'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\n', '\uac00'], + '÷ [0.2] (LF) ÷ [4.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\uac00'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\n', '\uac01'], + '÷ [0.2] (LF) ÷ [4.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\uac01'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\n', '\u0903'], + '÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u0903'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\n', '\u0904'], + '÷ [0.2] (LF) ÷ [4.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u0904'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\n', '\u0d4e'], + '÷ [0.2] (LF) ÷ [4.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u0d4e'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\n', '\u0915'], + '÷ [0.2] (LF) ÷ [4.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u0915'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\n', '\u231a'], + '÷ [0.2] (LF) ÷ [4.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u231a'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\n', '\u0300'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u0300'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u0900'], + '÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u0900'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u094d'], + '÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u094d'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u200d'], + '÷ [0.2] (LF) ÷ [4.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u0308\u200d'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\n', '\u0378'], + '÷ [0.2] (LF) ÷ [4.0] (Other) ÷ [0.3]' + ), + ( + ['\n', '\u0308', '\u0378'], + '÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\x01', ' '], + '÷ [0.2] (Control) ÷ [4.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', ' '], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\x01', '\r'], + '÷ [0.2] (Control) ÷ [4.0] (CR) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\r'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\x01', '\n'], + '÷ [0.2] (Control) ÷ [4.0] (LF) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\n'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\x01', '\x01'], + '÷ [0.2] (Control) ÷ [4.0] (Control) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\x01'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\x01', '\u200c'], + '÷ [0.2] (Control) ÷ [4.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u200c'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\x01', '\u{1f1e6}'], + '÷ [0.2] (Control) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u{1f1e6}'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\x01', '\u0600'], + '÷ [0.2] (Control) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u0600'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\x01', '\u0a03'], + '÷ [0.2] (Control) ÷ [4.0] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u0a03'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\x01', '\u1100'], + '÷ [0.2] (Control) ÷ [4.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u1100'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\x01', '\u1160'], + '÷ [0.2] (Control) ÷ [4.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u1160'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\x01', '\u11a8'], + '÷ [0.2] (Control) ÷ [4.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u11a8'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\x01', '\uac00'], + '÷ [0.2] (Control) ÷ [4.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\uac00'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\x01', '\uac01'], + '÷ [0.2] (Control) ÷ [4.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\uac01'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\x01', '\u0903'], + '÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u0903'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\x01', '\u0904'], + '÷ [0.2] (Control) ÷ [4.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u0904'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\x01', '\u0d4e'], + '÷ [0.2] (Control) ÷ [4.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u0d4e'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\x01', '\u0915'], + '÷ [0.2] (Control) ÷ [4.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u0915'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\x01', '\u231a'], + '÷ [0.2] (Control) ÷ [4.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u231a'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\x01', '\u0300'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u0300'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u0900'], + '÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u0900'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u094d'], + '÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u094d'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u200d'], + '÷ [0.2] (Control) ÷ [4.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u0308\u200d'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\x01', '\u0378'], + '÷ [0.2] (Control) ÷ [4.0] (Other) ÷ [0.3]' + ), + ( + ['\x01', '\u0308', '\u0378'], + '÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u200c', ' '], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u200c\u0308', ' '], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u200c', '\r'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\r'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u200c', '\n'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\n'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u200c', '\x01'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\x01'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u200c\u200c'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u200c'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u200c', '\u{1f1e6}'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u{1f1e6}'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u200c', '\u0600'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u0600'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u200c\u0a03'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u0a03'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u200c', '\u1100'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u1100'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u200c', '\u1160'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u1160'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u200c', '\u11a8'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u11a8'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u200c', '\uac00'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\uac00'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u200c', '\uac01'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\uac01'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u200c\u0903'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u0903'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200c', '\u0904'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u0904'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200c', '\u0d4e'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u0d4e'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200c', '\u0915'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u0915'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u200c', '\u231a'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u231a'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u200c\u0300'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u0300'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u0900'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u0900'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u094d'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u094d'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u200d'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c\u0308\u200d'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200c', '\u0378'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u200c\u0308', '\u0378'], + '÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', ' '], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', ' '], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\r'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\r'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\n'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\n'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\x01'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\x01'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u200c'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u200c'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u{1f1e6}'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [12.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u{1f1e6}'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u0600'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u0600'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0a03'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u0a03'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u1100'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u1100'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u1160'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u1160'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u11a8'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u11a8'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\uac00'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\uac00'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\uac01'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\uac01'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0903'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u0903'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u0904'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u0904'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u0d4e'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u0d4e'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u0915'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u0915'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u231a'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u231a'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0300'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u0300'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0900'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u0900'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u094d'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u094d'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u200d'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308\u200d'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f1e6}', '\u0378'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u0308', '\u0378'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0600 '], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0600\u0308', ' '], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0600', '\r'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\r'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0600', '\n'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\n'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0600', '\x01'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\x01'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0600\u200c'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u200c'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0600\u{1f1e6}'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u{1f1e6}'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0600\u0600'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u0600'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0600\u0a03'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u0a03'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0600\u1100'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u1100'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0600\u1160'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u1160'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0600\u11a8'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u11a8'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0600\uac00'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\uac00'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0600\uac01'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\uac01'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0600\u0903'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u0903'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0600\u0904'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u0904'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0600\u0d4e'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u0d4e'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0600\u0915'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u0915'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0600\u231a'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u231a'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0600\u0300'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u0300'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u0900'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u0900'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u094d'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u094d'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u200d'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u0308\u200d'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0600\u0378'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] (Other) ÷ [0.3]' + ), + ( + ['\u0600\u0308', '\u0378'], + '÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0a03', ' '], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', ' '], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0a03', '\r'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\r'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0a03', '\n'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\n'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0a03', '\x01'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\x01'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0a03\u200c'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u200c'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0a03', '\u{1f1e6}'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u{1f1e6}'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0a03', '\u0600'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u0600'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0a03\u0a03'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u0a03'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0a03', '\u1100'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u1100'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0a03', '\u1160'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u1160'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0a03', '\u11a8'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u11a8'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0a03', '\uac00'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\uac00'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0a03', '\uac01'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\uac01'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0a03\u0903'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u0903'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0a03', '\u0904'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u0904'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0a03', '\u0d4e'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u0d4e'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0a03', '\u0915'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u0915'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0a03', '\u231a'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u231a'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0a03\u0300'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u0300'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u0900'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u0900'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u094d'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u094d'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u200d'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03\u0308\u200d'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0a03', '\u0378'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0a03\u0308', '\u0378'], + '÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u1100', ' '], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u1100\u0308', ' '], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u1100', '\r'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\r'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u1100', '\n'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\n'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u1100', '\x01'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\x01'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u1100\u200c'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u200c'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u1100', '\u{1f1e6}'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u{1f1e6}'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u1100', '\u0600'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u0600'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u1100\u0a03'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u0a03'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u1100\u1100'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u1100'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u1100\u1160'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u1160'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u1100', '\u11a8'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u11a8'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u1100\uac00'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\uac00'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u1100\uac01'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\uac01'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u1100\u0903'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u0903'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1100', '\u0904'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u0904'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1100', '\u0d4e'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u0d4e'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1100', '\u0915'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u0915'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u1100', '\u231a'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u231a'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u1100\u0300'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u0300'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u0900'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u0900'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u094d'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u094d'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u200d'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100\u0308\u200d'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1100', '\u0378'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u1100\u0308', '\u0378'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u1160', ' '], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u1160\u0308', ' '], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u1160', '\r'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\r'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u1160', '\n'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\n'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u1160', '\x01'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\x01'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u1160\u200c'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u200c'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u1160', '\u{1f1e6}'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u{1f1e6}'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u1160', '\u0600'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u0600'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u1160\u0a03'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u0a03'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u1160', '\u1100'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u1100'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u1160\u1160'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [7.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u1160'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u1160\u11a8'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [7.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u11a8'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u1160', '\uac00'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\uac00'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u1160', '\uac01'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\uac01'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u1160\u0903'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u0903'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1160', '\u0904'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u0904'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1160', '\u0d4e'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u0d4e'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u1160', '\u0915'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u0915'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u1160', '\u231a'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u231a'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u1160\u0300'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u0300'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u0900'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u0900'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u094d'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u094d'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u200d'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160\u0308\u200d'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u1160', '\u0378'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u1160\u0308', '\u0378'], + '÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u11a8', ' '], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', ' '], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u11a8', '\r'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\r'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u11a8', '\n'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\n'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u11a8', '\x01'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\x01'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u11a8\u200c'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u200c'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u11a8', '\u{1f1e6}'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u{1f1e6}'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u11a8', '\u0600'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u0600'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u11a8\u0a03'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u0a03'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u11a8', '\u1100'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u1100'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u11a8', '\u1160'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u1160'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u11a8\u11a8'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [8.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u11a8'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u11a8', '\uac00'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\uac00'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u11a8', '\uac01'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\uac01'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u11a8\u0903'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u0903'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u11a8', '\u0904'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u0904'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u11a8', '\u0d4e'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u0d4e'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u11a8', '\u0915'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u0915'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u11a8', '\u231a'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u231a'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u11a8\u0300'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u0300'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u0900'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u0900'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u094d'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u094d'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u200d'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8\u0308\u200d'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u11a8', '\u0378'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u11a8\u0308', '\u0378'], + '÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\uac00', ' '], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\uac00\u0308', ' '], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\uac00', '\r'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\r'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\uac00', '\n'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\n'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\uac00', '\x01'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\x01'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\uac00\u200c'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u200c'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\uac00', '\u{1f1e6}'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u{1f1e6}'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\uac00', '\u0600'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u0600'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\uac00\u0a03'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u0a03'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\uac00', '\u1100'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u1100'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\uac00\u1160'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [7.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u1160'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\uac00\u11a8'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [7.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u11a8'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\uac00', '\uac00'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\uac00'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\uac00', '\uac01'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\uac01'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\uac00\u0903'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u0903'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac00', '\u0904'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u0904'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac00', '\u0d4e'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u0d4e'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac00', '\u0915'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u0915'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\uac00', '\u231a'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u231a'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\uac00\u0300'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u0300'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u0900'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u0900'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u094d'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u094d'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u200d'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00\u0308\u200d'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac00', '\u0378'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\uac00\u0308', '\u0378'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\uac01', ' '], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\uac01\u0308', ' '], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\uac01', '\r'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\r'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\uac01', '\n'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\n'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\uac01', '\x01'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\x01'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\uac01\u200c'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u200c'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\uac01', '\u{1f1e6}'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u{1f1e6}'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\uac01', '\u0600'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u0600'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\uac01\u0a03'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u0a03'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\uac01', '\u1100'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u1100'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\uac01', '\u1160'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u1160'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\uac01\u11a8'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [8.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u11a8'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\uac01', '\uac00'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\uac00'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\uac01', '\uac01'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\uac01'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\uac01\u0903'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u0903'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac01', '\u0904'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u0904'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac01', '\u0d4e'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u0d4e'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\uac01', '\u0915'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u0915'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\uac01', '\u231a'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u231a'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\uac01\u0300'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u0300'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u0900'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u0900'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u094d'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u094d'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u200d'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01\u0308\u200d'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\uac01', '\u0378'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\uac01\u0308', '\u0378'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0903', ' '], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0903\u0308', ' '], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0903', '\r'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\r'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0903', '\n'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\n'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0903', '\x01'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\x01'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0903\u200c'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u200c'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0903', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0903', '\u0600'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u0600'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0903\u0a03'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u0a03'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0903', '\u1100'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u1100'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0903', '\u1160'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u1160'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0903', '\u11a8'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u11a8'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0903', '\uac00'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\uac00'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0903', '\uac01'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\uac01'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0903\u0903'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u0903'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0903', '\u0904'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u0904'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0903', '\u0d4e'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u0d4e'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0903', '\u0915'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u0915'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0903', '\u231a'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u231a'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0903\u0300'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u0300'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u0900'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u0900'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u094d'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u094d'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u200d'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903\u0308\u200d'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0903', '\u0378'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0903\u0308', '\u0378'], + '÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0904', ' '], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0904\u0308', ' '], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0904', '\r'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\r'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0904', '\n'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\n'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0904', '\x01'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\x01'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0904\u200c'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u200c'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0904', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0904', '\u0600'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u0600'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0904\u0a03'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u0a03'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0904', '\u1100'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u1100'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0904', '\u1160'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u1160'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0904', '\u11a8'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u11a8'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0904', '\uac00'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\uac00'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0904', '\uac01'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\uac01'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0904\u0903'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u0903'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0904', '\u0904'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u0904'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0904', '\u0d4e'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u0d4e'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0904', '\u0915'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u0915'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0904', '\u231a'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u231a'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0904\u0300'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u0300'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u0900'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u0900'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u094d'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u094d'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u200d'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904\u0308\u200d'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0904', '\u0378'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0904\u0308', '\u0378'], + '÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0d4e '], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', ' '], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0d4e', '\r'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\r'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0d4e', '\n'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\n'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0d4e', '\x01'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\x01'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0d4e\u200c'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u200c'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0d4e\u{1f1e6}'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u{1f1e6}'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0d4e\u0600'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u0600'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0d4e\u0a03'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u0a03'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0d4e\u1100'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u1100'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0d4e\u1160'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u1160'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0d4e\u11a8'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u11a8'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0d4e\uac00'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\uac00'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0d4e\uac01'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\uac01'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0d4e\u0903'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u0903'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0d4e\u0904'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u0904'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0d4e\u0d4e'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u0d4e'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0d4e\u0915'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u0915'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0d4e\u231a'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u231a'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0d4e\u0300'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u0300'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u0900'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u0900'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u094d'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u094d'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u200d'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308\u200d'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0d4e\u0378'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] (Other) ÷ [0.3]' + ), + ( + ['\u0d4e\u0308', '\u0378'], + '÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0915', ' '], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0915\u0308', ' '], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0915', '\r'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\r'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0915', '\n'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\n'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0915', '\x01'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\x01'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0915\u200c'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u200c'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0915', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0915', '\u0600'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u0600'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0915\u0a03'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u0a03'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0915', '\u1100'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u1100'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0915', '\u1160'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u1160'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0915', '\u11a8'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u11a8'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0915', '\uac00'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\uac00'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0915', '\uac01'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\uac01'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0915\u0903'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u0903'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0915', '\u0904'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u0904'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0915', '\u0d4e'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u0d4e'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0915', '\u0915'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u0915'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915', '\u231a'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u231a'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0915\u0300'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u0300'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u0900'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u0900'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u094d'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u094d'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u200d'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915\u0308\u200d'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0915', '\u0378'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0915\u0308', '\u0378'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + (['\u231a', ' '], '÷ [0.2] WATCH (ExtPict) ÷ [999.0] SPACE (Other) ÷ [0.3]'), + ( + ['\u231a\u0308', ' '], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u231a', '\r'], + '÷ [0.2] WATCH (ExtPict) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\r'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u231a', '\n'], + '÷ [0.2] WATCH (ExtPict) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\n'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u231a', '\x01'], + '÷ [0.2] WATCH (ExtPict) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\x01'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u231a\u200c'], + '÷ [0.2] WATCH (ExtPict) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u200c'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u231a', '\u{1f1e6}'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u{1f1e6}'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u231a', '\u0600'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u0600'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u231a\u0a03'], + '÷ [0.2] WATCH (ExtPict) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u0a03'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u231a', '\u1100'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u1100'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u231a', '\u1160'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u1160'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u231a', '\u11a8'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u11a8'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u231a', '\uac00'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\uac00'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u231a', '\uac01'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\uac01'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u231a\u0903'], + '÷ [0.2] WATCH (ExtPict) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u0903'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u231a', '\u0904'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u0904'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u231a', '\u0d4e'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u0d4e'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u231a', '\u0915'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u0915'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u231a', '\u231a'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u231a'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u231a\u0300'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u0300'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u0900'], + '÷ [0.2] WATCH (ExtPict) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u0900'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u094d'], + '÷ [0.2] WATCH (ExtPict) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u094d'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u200d'], + '÷ [0.2] WATCH (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a\u0308\u200d'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u231a', '\u0378'], + '÷ [0.2] WATCH (ExtPict) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u231a\u0308', '\u0378'], + '÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0300', ' '], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0300\u0308', ' '], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0300', '\r'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\r'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0300', '\n'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\n'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0300', '\x01'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\x01'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0300\u200c'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u200c'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0300', '\u{1f1e6}'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u{1f1e6}'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0300', '\u0600'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u0600'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0300\u0a03'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u0a03'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0300', '\u1100'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u1100'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0300', '\u1160'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u1160'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0300', '\u11a8'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u11a8'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0300', '\uac00'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\uac00'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0300', '\uac01'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\uac01'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0300\u0903'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u0903'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0300', '\u0904'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u0904'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0300', '\u0d4e'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u0d4e'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0300', '\u0915'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u0915'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0300', '\u231a'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u231a'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0300\u0300'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u0300'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u0900'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u0900'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u094d'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u094d'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u200d'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300\u0308\u200d'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0300', '\u0378'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0300\u0308', '\u0378'], + '÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0900', ' '], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0900\u0308', ' '], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0900', '\r'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\r'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0900', '\n'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\n'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0900', '\x01'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\x01'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0900\u200c'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u200c'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0900', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0900', '\u0600'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u0600'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0900\u0a03'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u0a03'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0900', '\u1100'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u1100'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0900', '\u1160'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u1160'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0900', '\u11a8'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u11a8'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0900', '\uac00'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\uac00'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0900', '\uac01'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\uac01'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0900\u0903'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u0903'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0900', '\u0904'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u0904'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0900', '\u0d4e'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u0d4e'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0900', '\u0915'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u0915'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0900', '\u231a'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u231a'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0900\u0300'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u0300'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u0900'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u0900'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u094d'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u094d'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u200d'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900\u0308\u200d'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0900', '\u0378'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0900\u0308', '\u0378'], + '÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u094d', ' '], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u094d\u0308', ' '], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u094d', '\r'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\r'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u094d', '\n'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\n'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u094d', '\x01'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\x01'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u094d\u200c'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u200c'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u094d', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u{1f1e6}'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u094d', '\u0600'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u0600'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u094d\u0a03'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u0a03'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u094d', '\u1100'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u1100'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u094d', '\u1160'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u1160'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u094d', '\u11a8'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u11a8'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u094d', '\uac00'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\uac00'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u094d', '\uac01'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\uac01'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u094d\u0903'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u0903'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u094d', '\u0904'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u0904'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u094d', '\u0d4e'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u0d4e'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u094d', '\u0915'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u0915'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u094d', '\u231a'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u231a'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u094d\u0300'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u0300'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u0900'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u0900'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u094d'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u094d'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u200d'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d\u0308\u200d'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u094d', '\u0378'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u094d\u0308', '\u0378'], + '÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u200d', ' '], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u200d\u0308', ' '], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u200d', '\r'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\r'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u200d', '\n'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\n'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u200d', '\x01'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\x01'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u200d\u200c'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u200c'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u200d', '\u{1f1e6}'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u{1f1e6}'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u200d', '\u0600'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u0600'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u200d\u0a03'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u0a03'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u200d', '\u1100'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u1100'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u200d', '\u1160'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u1160'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u200d', '\u11a8'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u11a8'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u200d', '\uac00'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\uac00'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u200d', '\uac01'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\uac01'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u200d\u0903'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u0903'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200d', '\u0904'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u0904'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200d', '\u0d4e'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u0d4e'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u200d', '\u0915'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u0915'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u200d', '\u231a'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u231a'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u200d\u0300'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u0300'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u0900'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u0900'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u094d'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u094d'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u200d'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d\u0308\u200d'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u200d', '\u0378'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u200d\u0308', '\u0378'], + '÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0378', ' '], + '÷ [0.2] (Other) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0378\u0308', ' '], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u0378', '\r'], + '÷ [0.2] (Other) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\r'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3]' + ), + ( + ['\u0378', '\n'], + '÷ [0.2] (Other) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\n'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3]' + ), + ( + ['\u0378', '\x01'], + '÷ [0.2] (Other) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\x01'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3]' + ), + ( + ['\u0378\u200c'], + '÷ [0.2] (Other) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u200c'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3]' + ), + ( + ['\u0378', '\u{1f1e6}'], + '÷ [0.2] (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u{1f1e6}'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3]' + ), + ( + ['\u0378', '\u0600'], + '÷ [0.2] (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u0600'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3]' + ), + ( + ['\u0378\u0a03'], + '÷ [0.2] (Other) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u0a03'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3]' + ), + ( + ['\u0378', '\u1100'], + '÷ [0.2] (Other) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u1100'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u0378', '\u1160'], + '÷ [0.2] (Other) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u1160'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3]' + ), + ( + ['\u0378', '\u11a8'], + '÷ [0.2] (Other) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u11a8'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3]' + ), + ( + ['\u0378', '\uac00'], + '÷ [0.2] (Other) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\uac00'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3]' + ), + ( + ['\u0378', '\uac01'], + '÷ [0.2] (Other) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\uac01'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3]' + ), + ( + ['\u0378\u0903'], + '÷ [0.2] (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u0903'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0378', '\u0904'], + '÷ [0.2] (Other) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u0904'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0378', '\u0d4e'], + '÷ [0.2] (Other) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u0d4e'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3]' + ), + ( + ['\u0378', '\u0915'], + '÷ [0.2] (Other) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u0915'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0378', '\u231a'], + '÷ [0.2] (Other) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u231a'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3]' + ), + ( + ['\u0378\u0300'], + '÷ [0.2] (Other) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u0300'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u0900'], + '÷ [0.2] (Other) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u0900'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u094d'], + '÷ [0.2] (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u094d'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u200d'], + '÷ [0.2] (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378\u0308\u200d'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u0378', '\u0378'], + '÷ [0.2] (Other) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\u0378\u0308', '\u0378'], + '÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3]' + ), + ( + ['\r\n', 'a', '\n', '\u0308'], + '÷ [0.2] (CR) × [3.0] (LF) ÷ [4.0] LATIN SMALL LETTER A (Other) ÷ [5.0] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['a\u0308'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + [' \u200d', '\u0646'], + '÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] ARABIC LETTER NOON (Other) ÷ [0.3]' + ), + ( + ['\u0646\u200d', ' '], + '÷ [0.2] ARABIC LETTER NOON (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3]' + ), + ( + ['\u1100\u1100'], + '÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\uac00\u11a8', '\u1100'], + '÷ [0.2] HANGUL SYLLABLE GA (LV) × [7.0] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\uac01\u11a8', '\u1100'], + '÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [8.0] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3]' + ), + ( + ['\u{1f1e6}\u{1f1e7}', '\u{1f1e8}', 'b'], + '÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [12.0] REGIONAL INDICATOR SYMBOL LETTER B (RI) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER C (RI) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a', '\u{1f1e6}\u{1f1e7}', '\u{1f1e8}', 'b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER B (RI) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER C (RI) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a', '\u{1f1e6}\u{1f1e7}\u200d', '\u{1f1e8}', 'b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER B (RI) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER C (RI) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a', '\u{1f1e6}\u200d', '\u{1f1e7}\u{1f1e8}', 'b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER B (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER C (RI) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a', '\u{1f1e6}\u{1f1e7}', '\u{1f1e8}\u{1f1e9}', 'b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER B (RI) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER C (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER D (RI) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a\u200d'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3]' + ), + ( + ['a\u0308', 'b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a\u0903', 'b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['a', '\u0600b'], + '÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) × [9.2] LATIN SMALL LETTER B (Other) ÷ [0.3]' + ), + ( + ['\u{1f476}\u{1f3ff}', '\u{1f476}'], + '÷ [0.2] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [999.0] BABY (ExtPict) ÷ [0.3]' + ), + ( + ['a\u{1f3ff}', '\u{1f476}'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [999.0] BABY (ExtPict) ÷ [0.3]' + ), + ( + ['a\u{1f3ff}', '\u{1f476}\u200d\u{1f6d1}'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [999.0] BABY (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3]' + ), + ( + ['\u{1f476}\u{1f3ff}\u0308\u200d\u{1f476}\u{1f3ff}'], + '÷ [0.2] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [0.3]' + ), + ( + ['\u{1f6d1}\u200d\u{1f6d1}'], + '÷ [0.2] OCTAGONAL SIGN (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3]' + ), + ( + ['a\u200d', '\u{1f6d1}'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3]' + ), + ( + ['\u2701\u200d\u2701'], + '÷ [0.2] UPPER BLADE SCISSORS (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] UPPER BLADE SCISSORS (Other) ÷ [0.3]' + ), + ( + ['a\u200d', '\u2701'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] UPPER BLADE SCISSORS (Other) ÷ [0.3]' + ), + ( + ['\u0915', '\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u094d\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u094d\u094d\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u094d\u200d\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u093c\u200d\u094d\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN NUKTA (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u093c\u094d\u200d\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN NUKTA (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u094d\u0924\u094d\u092f'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER YA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u094d', 'a'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] LATIN SMALL LETTER A (Other) ÷ [0.3]' + ), + ( + ['a\u094d', '\u0924'], + '÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['?\u094d', '\u0924'], + '÷ [0.2] QUESTION MARK (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), + ( + ['\u0915\u094d\u094d\u0924'], + '÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3]' + ), ]; // Emoji tests. -const List> emojis = [ - ['\u{1f600}'], - ['\u{1f603}'], - ['\u{1f604}'], - ['\u{1f601}'], - ['\u{1f606}'], - ['\u{1f605}'], - ['\u{1f923}'], - ['\u{1f602}'], - ['\u{1f642}'], - ['\u{1f643}'], - ['\u{1fae0}'], - ['\u{1f609}'], - ['\u{1f60a}'], - ['\u{1f607}'], - ['\u{1f970}'], - ['\u{1f60d}'], - ['\u{1f929}'], - ['\u{1f618}'], - ['\u{1f617}'], - ['\u263a\ufe0f'], - ['\u263a'], - ['\u{1f61a}'], - ['\u{1f619}'], - ['\u{1f972}'], - ['\u{1f60b}'], - ['\u{1f61b}'], - ['\u{1f61c}'], - ['\u{1f92a}'], - ['\u{1f61d}'], - ['\u{1f911}'], - ['\u{1f917}'], - ['\u{1f92d}'], - ['\u{1fae2}'], - ['\u{1fae3}'], - ['\u{1f92b}'], - ['\u{1f914}'], - ['\u{1fae1}'], - ['\u{1f910}'], - ['\u{1f928}'], - ['\u{1f610}'], - ['\u{1f611}'], - ['\u{1f636}'], - ['\u{1fae5}'], - ['\u{1f636}\u200d\u{1f32b}\ufe0f'], - ['\u{1f636}\u200d\u{1f32b}'], - ['\u{1f60f}'], - ['\u{1f612}'], - ['\u{1f644}'], - ['\u{1f62c}'], - ['\u{1f62e}\u200d\u{1f4a8}'], - ['\u{1f925}'], - ['\u{1fae8}'], - ['\u{1f60c}'], - ['\u{1f614}'], - ['\u{1f62a}'], - ['\u{1f924}'], - ['\u{1f634}'], - ['\u{1f637}'], - ['\u{1f912}'], - ['\u{1f915}'], - ['\u{1f922}'], - ['\u{1f92e}'], - ['\u{1f927}'], - ['\u{1f975}'], - ['\u{1f976}'], - ['\u{1f974}'], - ['\u{1f635}'], - ['\u{1f635}\u200d\u{1f4ab}'], - ['\u{1f92f}'], - ['\u{1f920}'], - ['\u{1f973}'], - ['\u{1f978}'], - ['\u{1f60e}'], - ['\u{1f913}'], - ['\u{1f9d0}'], - ['\u{1f615}'], - ['\u{1fae4}'], - ['\u{1f61f}'], - ['\u{1f641}'], - ['\u2639\ufe0f'], - ['\u2639'], - ['\u{1f62e}'], - ['\u{1f62f}'], - ['\u{1f632}'], - ['\u{1f633}'], - ['\u{1f97a}'], - ['\u{1f979}'], - ['\u{1f626}'], - ['\u{1f627}'], - ['\u{1f628}'], - ['\u{1f630}'], - ['\u{1f625}'], - ['\u{1f622}'], - ['\u{1f62d}'], - ['\u{1f631}'], - ['\u{1f616}'], - ['\u{1f623}'], - ['\u{1f61e}'], - ['\u{1f613}'], - ['\u{1f629}'], - ['\u{1f62b}'], - ['\u{1f971}'], - ['\u{1f624}'], - ['\u{1f621}'], - ['\u{1f620}'], - ['\u{1f92c}'], - ['\u{1f608}'], - ['\u{1f47f}'], - ['\u{1f480}'], - ['\u2620\ufe0f'], - ['\u2620'], - ['\u{1f4a9}'], - ['\u{1f921}'], - ['\u{1f479}'], - ['\u{1f47a}'], - ['\u{1f47b}'], - ['\u{1f47d}'], - ['\u{1f47e}'], - ['\u{1f916}'], - ['\u{1f63a}'], - ['\u{1f638}'], - ['\u{1f639}'], - ['\u{1f63b}'], - ['\u{1f63c}'], - ['\u{1f63d}'], - ['\u{1f640}'], - ['\u{1f63f}'], - ['\u{1f63e}'], - ['\u{1f648}'], - ['\u{1f649}'], - ['\u{1f64a}'], - ['\u{1f48c}'], - ['\u{1f498}'], - ['\u{1f49d}'], - ['\u{1f496}'], - ['\u{1f497}'], - ['\u{1f493}'], - ['\u{1f49e}'], - ['\u{1f495}'], - ['\u{1f49f}'], - ['\u2763\ufe0f'], - ['\u2763'], - ['\u{1f494}'], - ['\u2764\ufe0f\u200d\u{1f525}'], - ['\u2764\u200d\u{1f525}'], - ['\u2764\ufe0f\u200d\u{1fa79}'], - ['\u2764\u200d\u{1fa79}'], - ['\u2764\ufe0f'], - ['\u2764'], - ['\u{1fa77}'], - ['\u{1f9e1}'], - ['\u{1f49b}'], - ['\u{1f49a}'], - ['\u{1f499}'], - ['\u{1fa75}'], - ['\u{1f49c}'], - ['\u{1f90e}'], - ['\u{1f5a4}'], - ['\u{1fa76}'], - ['\u{1f90d}'], - ['\u{1f48b}'], - ['\u{1f4af}'], - ['\u{1f4a2}'], - ['\u{1f4a5}'], - ['\u{1f4ab}'], - ['\u{1f4a6}'], - ['\u{1f4a8}'], - ['\u{1f573}\ufe0f'], - ['\u{1f573}'], - ['\u{1f4ac}'], - ['\u{1f441}\ufe0f\u200d\u{1f5e8}\ufe0f'], - ['\u{1f441}\u200d\u{1f5e8}\ufe0f'], - ['\u{1f441}\ufe0f\u200d\u{1f5e8}'], - ['\u{1f441}\u200d\u{1f5e8}'], - ['\u{1f5e8}\ufe0f'], - ['\u{1f5e8}'], - ['\u{1f5ef}\ufe0f'], - ['\u{1f5ef}'], - ['\u{1f4ad}'], - ['\u{1f4a4}'], - ['\u{1f44b}'], - ['\u{1f44b}\u{1f3fb}'], - ['\u{1f44b}\u{1f3fc}'], - ['\u{1f44b}\u{1f3fd}'], - ['\u{1f44b}\u{1f3fe}'], - ['\u{1f44b}\u{1f3ff}'], - ['\u{1f91a}'], - ['\u{1f91a}\u{1f3fb}'], - ['\u{1f91a}\u{1f3fc}'], - ['\u{1f91a}\u{1f3fd}'], - ['\u{1f91a}\u{1f3fe}'], - ['\u{1f91a}\u{1f3ff}'], - ['\u{1f590}\ufe0f'], - ['\u{1f590}'], - ['\u{1f590}\u{1f3fb}'], - ['\u{1f590}\u{1f3fc}'], - ['\u{1f590}\u{1f3fd}'], - ['\u{1f590}\u{1f3fe}'], - ['\u{1f590}\u{1f3ff}'], - ['\u270b'], - ['\u270b\u{1f3fb}'], - ['\u270b\u{1f3fc}'], - ['\u270b\u{1f3fd}'], - ['\u270b\u{1f3fe}'], - ['\u270b\u{1f3ff}'], - ['\u{1f596}'], - ['\u{1f596}\u{1f3fb}'], - ['\u{1f596}\u{1f3fc}'], - ['\u{1f596}\u{1f3fd}'], - ['\u{1f596}\u{1f3fe}'], - ['\u{1f596}\u{1f3ff}'], - ['\u{1faf1}'], - ['\u{1faf1}\u{1f3fb}'], - ['\u{1faf1}\u{1f3fc}'], - ['\u{1faf1}\u{1f3fd}'], - ['\u{1faf1}\u{1f3fe}'], - ['\u{1faf1}\u{1f3ff}'], - ['\u{1faf2}'], - ['\u{1faf2}\u{1f3fb}'], - ['\u{1faf2}\u{1f3fc}'], - ['\u{1faf2}\u{1f3fd}'], - ['\u{1faf2}\u{1f3fe}'], - ['\u{1faf2}\u{1f3ff}'], - ['\u{1faf3}'], - ['\u{1faf3}\u{1f3fb}'], - ['\u{1faf3}\u{1f3fc}'], - ['\u{1faf3}\u{1f3fd}'], - ['\u{1faf3}\u{1f3fe}'], - ['\u{1faf3}\u{1f3ff}'], - ['\u{1faf4}'], - ['\u{1faf4}\u{1f3fb}'], - ['\u{1faf4}\u{1f3fc}'], - ['\u{1faf4}\u{1f3fd}'], - ['\u{1faf4}\u{1f3fe}'], - ['\u{1faf4}\u{1f3ff}'], - ['\u{1faf7}'], - ['\u{1faf7}\u{1f3fb}'], - ['\u{1faf7}\u{1f3fc}'], - ['\u{1faf7}\u{1f3fd}'], - ['\u{1faf7}\u{1f3fe}'], - ['\u{1faf7}\u{1f3ff}'], - ['\u{1faf8}'], - ['\u{1faf8}\u{1f3fb}'], - ['\u{1faf8}\u{1f3fc}'], - ['\u{1faf8}\u{1f3fd}'], - ['\u{1faf8}\u{1f3fe}'], - ['\u{1faf8}\u{1f3ff}'], - ['\u{1f44c}'], - ['\u{1f44c}\u{1f3fb}'], - ['\u{1f44c}\u{1f3fc}'], - ['\u{1f44c}\u{1f3fd}'], - ['\u{1f44c}\u{1f3fe}'], - ['\u{1f44c}\u{1f3ff}'], - ['\u{1f90c}'], - ['\u{1f90c}\u{1f3fb}'], - ['\u{1f90c}\u{1f3fc}'], - ['\u{1f90c}\u{1f3fd}'], - ['\u{1f90c}\u{1f3fe}'], - ['\u{1f90c}\u{1f3ff}'], - ['\u{1f90f}'], - ['\u{1f90f}\u{1f3fb}'], - ['\u{1f90f}\u{1f3fc}'], - ['\u{1f90f}\u{1f3fd}'], - ['\u{1f90f}\u{1f3fe}'], - ['\u{1f90f}\u{1f3ff}'], - ['\u270c\ufe0f'], - ['\u270c'], - ['\u270c\u{1f3fb}'], - ['\u270c\u{1f3fc}'], - ['\u270c\u{1f3fd}'], - ['\u270c\u{1f3fe}'], - ['\u270c\u{1f3ff}'], - ['\u{1f91e}'], - ['\u{1f91e}\u{1f3fb}'], - ['\u{1f91e}\u{1f3fc}'], - ['\u{1f91e}\u{1f3fd}'], - ['\u{1f91e}\u{1f3fe}'], - ['\u{1f91e}\u{1f3ff}'], - ['\u{1faf0}'], - ['\u{1faf0}\u{1f3fb}'], - ['\u{1faf0}\u{1f3fc}'], - ['\u{1faf0}\u{1f3fd}'], - ['\u{1faf0}\u{1f3fe}'], - ['\u{1faf0}\u{1f3ff}'], - ['\u{1f91f}'], - ['\u{1f91f}\u{1f3fb}'], - ['\u{1f91f}\u{1f3fc}'], - ['\u{1f91f}\u{1f3fd}'], - ['\u{1f91f}\u{1f3fe}'], - ['\u{1f91f}\u{1f3ff}'], - ['\u{1f918}'], - ['\u{1f918}\u{1f3fb}'], - ['\u{1f918}\u{1f3fc}'], - ['\u{1f918}\u{1f3fd}'], - ['\u{1f918}\u{1f3fe}'], - ['\u{1f918}\u{1f3ff}'], - ['\u{1f919}'], - ['\u{1f919}\u{1f3fb}'], - ['\u{1f919}\u{1f3fc}'], - ['\u{1f919}\u{1f3fd}'], - ['\u{1f919}\u{1f3fe}'], - ['\u{1f919}\u{1f3ff}'], - ['\u{1f448}'], - ['\u{1f448}\u{1f3fb}'], - ['\u{1f448}\u{1f3fc}'], - ['\u{1f448}\u{1f3fd}'], - ['\u{1f448}\u{1f3fe}'], - ['\u{1f448}\u{1f3ff}'], - ['\u{1f449}'], - ['\u{1f449}\u{1f3fb}'], - ['\u{1f449}\u{1f3fc}'], - ['\u{1f449}\u{1f3fd}'], - ['\u{1f449}\u{1f3fe}'], - ['\u{1f449}\u{1f3ff}'], - ['\u{1f446}'], - ['\u{1f446}\u{1f3fb}'], - ['\u{1f446}\u{1f3fc}'], - ['\u{1f446}\u{1f3fd}'], - ['\u{1f446}\u{1f3fe}'], - ['\u{1f446}\u{1f3ff}'], - ['\u{1f595}'], - ['\u{1f595}\u{1f3fb}'], - ['\u{1f595}\u{1f3fc}'], - ['\u{1f595}\u{1f3fd}'], - ['\u{1f595}\u{1f3fe}'], - ['\u{1f595}\u{1f3ff}'], - ['\u{1f447}'], - ['\u{1f447}\u{1f3fb}'], - ['\u{1f447}\u{1f3fc}'], - ['\u{1f447}\u{1f3fd}'], - ['\u{1f447}\u{1f3fe}'], - ['\u{1f447}\u{1f3ff}'], - ['\u261d\ufe0f'], - ['\u261d'], - ['\u261d\u{1f3fb}'], - ['\u261d\u{1f3fc}'], - ['\u261d\u{1f3fd}'], - ['\u261d\u{1f3fe}'], - ['\u261d\u{1f3ff}'], - ['\u{1faf5}'], - ['\u{1faf5}\u{1f3fb}'], - ['\u{1faf5}\u{1f3fc}'], - ['\u{1faf5}\u{1f3fd}'], - ['\u{1faf5}\u{1f3fe}'], - ['\u{1faf5}\u{1f3ff}'], - ['\u{1f44d}'], - ['\u{1f44d}\u{1f3fb}'], - ['\u{1f44d}\u{1f3fc}'], - ['\u{1f44d}\u{1f3fd}'], - ['\u{1f44d}\u{1f3fe}'], - ['\u{1f44d}\u{1f3ff}'], - ['\u{1f44e}'], - ['\u{1f44e}\u{1f3fb}'], - ['\u{1f44e}\u{1f3fc}'], - ['\u{1f44e}\u{1f3fd}'], - ['\u{1f44e}\u{1f3fe}'], - ['\u{1f44e}\u{1f3ff}'], - ['\u270a'], - ['\u270a\u{1f3fb}'], - ['\u270a\u{1f3fc}'], - ['\u270a\u{1f3fd}'], - ['\u270a\u{1f3fe}'], - ['\u270a\u{1f3ff}'], - ['\u{1f44a}'], - ['\u{1f44a}\u{1f3fb}'], - ['\u{1f44a}\u{1f3fc}'], - ['\u{1f44a}\u{1f3fd}'], - ['\u{1f44a}\u{1f3fe}'], - ['\u{1f44a}\u{1f3ff}'], - ['\u{1f91b}'], - ['\u{1f91b}\u{1f3fb}'], - ['\u{1f91b}\u{1f3fc}'], - ['\u{1f91b}\u{1f3fd}'], - ['\u{1f91b}\u{1f3fe}'], - ['\u{1f91b}\u{1f3ff}'], - ['\u{1f91c}'], - ['\u{1f91c}\u{1f3fb}'], - ['\u{1f91c}\u{1f3fc}'], - ['\u{1f91c}\u{1f3fd}'], - ['\u{1f91c}\u{1f3fe}'], - ['\u{1f91c}\u{1f3ff}'], - ['\u{1f44f}'], - ['\u{1f44f}\u{1f3fb}'], - ['\u{1f44f}\u{1f3fc}'], - ['\u{1f44f}\u{1f3fd}'], - ['\u{1f44f}\u{1f3fe}'], - ['\u{1f44f}\u{1f3ff}'], - ['\u{1f64c}'], - ['\u{1f64c}\u{1f3fb}'], - ['\u{1f64c}\u{1f3fc}'], - ['\u{1f64c}\u{1f3fd}'], - ['\u{1f64c}\u{1f3fe}'], - ['\u{1f64c}\u{1f3ff}'], - ['\u{1faf6}'], - ['\u{1faf6}\u{1f3fb}'], - ['\u{1faf6}\u{1f3fc}'], - ['\u{1faf6}\u{1f3fd}'], - ['\u{1faf6}\u{1f3fe}'], - ['\u{1faf6}\u{1f3ff}'], - ['\u{1f450}'], - ['\u{1f450}\u{1f3fb}'], - ['\u{1f450}\u{1f3fc}'], - ['\u{1f450}\u{1f3fd}'], - ['\u{1f450}\u{1f3fe}'], - ['\u{1f450}\u{1f3ff}'], - ['\u{1f932}'], - ['\u{1f932}\u{1f3fb}'], - ['\u{1f932}\u{1f3fc}'], - ['\u{1f932}\u{1f3fd}'], - ['\u{1f932}\u{1f3fe}'], - ['\u{1f932}\u{1f3ff}'], - ['\u{1f91d}'], - ['\u{1f91d}\u{1f3fb}'], - ['\u{1f91d}\u{1f3fc}'], - ['\u{1f91d}\u{1f3fd}'], - ['\u{1f91d}\u{1f3fe}'], - ['\u{1f91d}\u{1f3ff}'], - ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3fc}'], - ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3fd}'], - ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3fe}'], - ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3ff}'], - ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3fb}'], - ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3fd}'], - ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3fe}'], - ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3ff}'], - ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3fb}'], - ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3fc}'], - ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3fe}'], - ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3ff}'], - ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3fb}'], - ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3fc}'], - ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3fd}'], - ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3ff}'], - ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fb}'], - ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fc}'], - ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fd}'], - ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fe}'], - ['\u{1f64f}'], - ['\u{1f64f}\u{1f3fb}'], - ['\u{1f64f}\u{1f3fc}'], - ['\u{1f64f}\u{1f3fd}'], - ['\u{1f64f}\u{1f3fe}'], - ['\u{1f64f}\u{1f3ff}'], - ['\u270d\ufe0f'], - ['\u270d'], - ['\u270d\u{1f3fb}'], - ['\u270d\u{1f3fc}'], - ['\u270d\u{1f3fd}'], - ['\u270d\u{1f3fe}'], - ['\u270d\u{1f3ff}'], - ['\u{1f485}'], - ['\u{1f485}\u{1f3fb}'], - ['\u{1f485}\u{1f3fc}'], - ['\u{1f485}\u{1f3fd}'], - ['\u{1f485}\u{1f3fe}'], - ['\u{1f485}\u{1f3ff}'], - ['\u{1f933}'], - ['\u{1f933}\u{1f3fb}'], - ['\u{1f933}\u{1f3fc}'], - ['\u{1f933}\u{1f3fd}'], - ['\u{1f933}\u{1f3fe}'], - ['\u{1f933}\u{1f3ff}'], - ['\u{1f4aa}'], - ['\u{1f4aa}\u{1f3fb}'], - ['\u{1f4aa}\u{1f3fc}'], - ['\u{1f4aa}\u{1f3fd}'], - ['\u{1f4aa}\u{1f3fe}'], - ['\u{1f4aa}\u{1f3ff}'], - ['\u{1f9be}'], - ['\u{1f9bf}'], - ['\u{1f9b5}'], - ['\u{1f9b5}\u{1f3fb}'], - ['\u{1f9b5}\u{1f3fc}'], - ['\u{1f9b5}\u{1f3fd}'], - ['\u{1f9b5}\u{1f3fe}'], - ['\u{1f9b5}\u{1f3ff}'], - ['\u{1f9b6}'], - ['\u{1f9b6}\u{1f3fb}'], - ['\u{1f9b6}\u{1f3fc}'], - ['\u{1f9b6}\u{1f3fd}'], - ['\u{1f9b6}\u{1f3fe}'], - ['\u{1f9b6}\u{1f3ff}'], - ['\u{1f442}'], - ['\u{1f442}\u{1f3fb}'], - ['\u{1f442}\u{1f3fc}'], - ['\u{1f442}\u{1f3fd}'], - ['\u{1f442}\u{1f3fe}'], - ['\u{1f442}\u{1f3ff}'], - ['\u{1f9bb}'], - ['\u{1f9bb}\u{1f3fb}'], - ['\u{1f9bb}\u{1f3fc}'], - ['\u{1f9bb}\u{1f3fd}'], - ['\u{1f9bb}\u{1f3fe}'], - ['\u{1f9bb}\u{1f3ff}'], - ['\u{1f443}'], - ['\u{1f443}\u{1f3fb}'], - ['\u{1f443}\u{1f3fc}'], - ['\u{1f443}\u{1f3fd}'], - ['\u{1f443}\u{1f3fe}'], - ['\u{1f443}\u{1f3ff}'], - ['\u{1f9e0}'], - ['\u{1fac0}'], - ['\u{1fac1}'], - ['\u{1f9b7}'], - ['\u{1f9b4}'], - ['\u{1f440}'], - ['\u{1f441}\ufe0f'], - ['\u{1f441}'], - ['\u{1f445}'], - ['\u{1f444}'], - ['\u{1fae6}'], - ['\u{1f476}'], - ['\u{1f476}\u{1f3fb}'], - ['\u{1f476}\u{1f3fc}'], - ['\u{1f476}\u{1f3fd}'], - ['\u{1f476}\u{1f3fe}'], - ['\u{1f476}\u{1f3ff}'], - ['\u{1f9d2}'], - ['\u{1f9d2}\u{1f3fb}'], - ['\u{1f9d2}\u{1f3fc}'], - ['\u{1f9d2}\u{1f3fd}'], - ['\u{1f9d2}\u{1f3fe}'], - ['\u{1f9d2}\u{1f3ff}'], - ['\u{1f466}'], - ['\u{1f466}\u{1f3fb}'], - ['\u{1f466}\u{1f3fc}'], - ['\u{1f466}\u{1f3fd}'], - ['\u{1f466}\u{1f3fe}'], - ['\u{1f466}\u{1f3ff}'], - ['\u{1f467}'], - ['\u{1f467}\u{1f3fb}'], - ['\u{1f467}\u{1f3fc}'], - ['\u{1f467}\u{1f3fd}'], - ['\u{1f467}\u{1f3fe}'], - ['\u{1f467}\u{1f3ff}'], - ['\u{1f9d1}'], - ['\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3ff}'], - ['\u{1f471}'], - ['\u{1f471}\u{1f3fb}'], - ['\u{1f471}\u{1f3fc}'], - ['\u{1f471}\u{1f3fd}'], - ['\u{1f471}\u{1f3fe}'], - ['\u{1f471}\u{1f3ff}'], - ['\u{1f468}'], - ['\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3ff}'], - ['\u{1f9d4}'], - ['\u{1f9d4}\u{1f3fb}'], - ['\u{1f9d4}\u{1f3fc}'], - ['\u{1f9d4}\u{1f3fd}'], - ['\u{1f9d4}\u{1f3fe}'], - ['\u{1f9d4}\u{1f3ff}'], - ['\u{1f9d4}\u200d\u2642\ufe0f'], - ['\u{1f9d4}\u200d\u2642'], - ['\u{1f9d4}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9d4}\u{1f3fb}\u200d\u2642'], - ['\u{1f9d4}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9d4}\u{1f3fc}\u200d\u2642'], - ['\u{1f9d4}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9d4}\u{1f3fd}\u200d\u2642'], - ['\u{1f9d4}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9d4}\u{1f3fe}\u200d\u2642'], - ['\u{1f9d4}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9d4}\u{1f3ff}\u200d\u2642'], - ['\u{1f9d4}\u200d\u2640\ufe0f'], - ['\u{1f9d4}\u200d\u2640'], - ['\u{1f9d4}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9d4}\u{1f3fb}\u200d\u2640'], - ['\u{1f9d4}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9d4}\u{1f3fc}\u200d\u2640'], - ['\u{1f9d4}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9d4}\u{1f3fd}\u200d\u2640'], - ['\u{1f9d4}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9d4}\u{1f3fe}\u200d\u2640'], - ['\u{1f9d4}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9d4}\u{1f3ff}\u200d\u2640'], - ['\u{1f468}\u200d\u{1f9b0}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9b0}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9b0}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9b0}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9b0}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9b0}'], - ['\u{1f468}\u200d\u{1f9b1}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9b1}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9b1}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9b1}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9b1}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9b1}'], - ['\u{1f468}\u200d\u{1f9b3}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9b3}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9b3}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9b3}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9b3}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9b3}'], - ['\u{1f468}\u200d\u{1f9b2}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9b2}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9b2}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9b2}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9b2}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9b2}'], - ['\u{1f469}'], - ['\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u200d\u{1f9b0}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9b0}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9b0}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9b0}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9b0}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9b0}'], - ['\u{1f9d1}\u200d\u{1f9b0}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b0}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b0}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b0}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b0}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b0}'], - ['\u{1f469}\u200d\u{1f9b1}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9b1}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9b1}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9b1}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9b1}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9b1}'], - ['\u{1f9d1}\u200d\u{1f9b1}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b1}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b1}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b1}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b1}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b1}'], - ['\u{1f469}\u200d\u{1f9b3}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9b3}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9b3}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9b3}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9b3}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9b3}'], - ['\u{1f9d1}\u200d\u{1f9b3}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b3}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b3}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b3}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b3}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b3}'], - ['\u{1f469}\u200d\u{1f9b2}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9b2}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9b2}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9b2}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9b2}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9b2}'], - ['\u{1f9d1}\u200d\u{1f9b2}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b2}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b2}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b2}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b2}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b2}'], - ['\u{1f471}\u200d\u2640\ufe0f'], - ['\u{1f471}\u200d\u2640'], - ['\u{1f471}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f471}\u{1f3fb}\u200d\u2640'], - ['\u{1f471}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f471}\u{1f3fc}\u200d\u2640'], - ['\u{1f471}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f471}\u{1f3fd}\u200d\u2640'], - ['\u{1f471}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f471}\u{1f3fe}\u200d\u2640'], - ['\u{1f471}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f471}\u{1f3ff}\u200d\u2640'], - ['\u{1f471}\u200d\u2642\ufe0f'], - ['\u{1f471}\u200d\u2642'], - ['\u{1f471}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f471}\u{1f3fb}\u200d\u2642'], - ['\u{1f471}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f471}\u{1f3fc}\u200d\u2642'], - ['\u{1f471}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f471}\u{1f3fd}\u200d\u2642'], - ['\u{1f471}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f471}\u{1f3fe}\u200d\u2642'], - ['\u{1f471}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f471}\u{1f3ff}\u200d\u2642'], - ['\u{1f9d3}'], - ['\u{1f9d3}\u{1f3fb}'], - ['\u{1f9d3}\u{1f3fc}'], - ['\u{1f9d3}\u{1f3fd}'], - ['\u{1f9d3}\u{1f3fe}'], - ['\u{1f9d3}\u{1f3ff}'], - ['\u{1f474}'], - ['\u{1f474}\u{1f3fb}'], - ['\u{1f474}\u{1f3fc}'], - ['\u{1f474}\u{1f3fd}'], - ['\u{1f474}\u{1f3fe}'], - ['\u{1f474}\u{1f3ff}'], - ['\u{1f475}'], - ['\u{1f475}\u{1f3fb}'], - ['\u{1f475}\u{1f3fc}'], - ['\u{1f475}\u{1f3fd}'], - ['\u{1f475}\u{1f3fe}'], - ['\u{1f475}\u{1f3ff}'], - ['\u{1f64d}'], - ['\u{1f64d}\u{1f3fb}'], - ['\u{1f64d}\u{1f3fc}'], - ['\u{1f64d}\u{1f3fd}'], - ['\u{1f64d}\u{1f3fe}'], - ['\u{1f64d}\u{1f3ff}'], - ['\u{1f64d}\u200d\u2642\ufe0f'], - ['\u{1f64d}\u200d\u2642'], - ['\u{1f64d}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f64d}\u{1f3fb}\u200d\u2642'], - ['\u{1f64d}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f64d}\u{1f3fc}\u200d\u2642'], - ['\u{1f64d}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f64d}\u{1f3fd}\u200d\u2642'], - ['\u{1f64d}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f64d}\u{1f3fe}\u200d\u2642'], - ['\u{1f64d}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f64d}\u{1f3ff}\u200d\u2642'], - ['\u{1f64d}\u200d\u2640\ufe0f'], - ['\u{1f64d}\u200d\u2640'], - ['\u{1f64d}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f64d}\u{1f3fb}\u200d\u2640'], - ['\u{1f64d}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f64d}\u{1f3fc}\u200d\u2640'], - ['\u{1f64d}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f64d}\u{1f3fd}\u200d\u2640'], - ['\u{1f64d}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f64d}\u{1f3fe}\u200d\u2640'], - ['\u{1f64d}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f64d}\u{1f3ff}\u200d\u2640'], - ['\u{1f64e}'], - ['\u{1f64e}\u{1f3fb}'], - ['\u{1f64e}\u{1f3fc}'], - ['\u{1f64e}\u{1f3fd}'], - ['\u{1f64e}\u{1f3fe}'], - ['\u{1f64e}\u{1f3ff}'], - ['\u{1f64e}\u200d\u2642\ufe0f'], - ['\u{1f64e}\u200d\u2642'], - ['\u{1f64e}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f64e}\u{1f3fb}\u200d\u2642'], - ['\u{1f64e}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f64e}\u{1f3fc}\u200d\u2642'], - ['\u{1f64e}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f64e}\u{1f3fd}\u200d\u2642'], - ['\u{1f64e}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f64e}\u{1f3fe}\u200d\u2642'], - ['\u{1f64e}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f64e}\u{1f3ff}\u200d\u2642'], - ['\u{1f64e}\u200d\u2640\ufe0f'], - ['\u{1f64e}\u200d\u2640'], - ['\u{1f64e}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f64e}\u{1f3fb}\u200d\u2640'], - ['\u{1f64e}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f64e}\u{1f3fc}\u200d\u2640'], - ['\u{1f64e}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f64e}\u{1f3fd}\u200d\u2640'], - ['\u{1f64e}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f64e}\u{1f3fe}\u200d\u2640'], - ['\u{1f64e}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f64e}\u{1f3ff}\u200d\u2640'], - ['\u{1f645}'], - ['\u{1f645}\u{1f3fb}'], - ['\u{1f645}\u{1f3fc}'], - ['\u{1f645}\u{1f3fd}'], - ['\u{1f645}\u{1f3fe}'], - ['\u{1f645}\u{1f3ff}'], - ['\u{1f645}\u200d\u2642\ufe0f'], - ['\u{1f645}\u200d\u2642'], - ['\u{1f645}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f645}\u{1f3fb}\u200d\u2642'], - ['\u{1f645}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f645}\u{1f3fc}\u200d\u2642'], - ['\u{1f645}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f645}\u{1f3fd}\u200d\u2642'], - ['\u{1f645}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f645}\u{1f3fe}\u200d\u2642'], - ['\u{1f645}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f645}\u{1f3ff}\u200d\u2642'], - ['\u{1f645}\u200d\u2640\ufe0f'], - ['\u{1f645}\u200d\u2640'], - ['\u{1f645}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f645}\u{1f3fb}\u200d\u2640'], - ['\u{1f645}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f645}\u{1f3fc}\u200d\u2640'], - ['\u{1f645}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f645}\u{1f3fd}\u200d\u2640'], - ['\u{1f645}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f645}\u{1f3fe}\u200d\u2640'], - ['\u{1f645}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f645}\u{1f3ff}\u200d\u2640'], - ['\u{1f646}'], - ['\u{1f646}\u{1f3fb}'], - ['\u{1f646}\u{1f3fc}'], - ['\u{1f646}\u{1f3fd}'], - ['\u{1f646}\u{1f3fe}'], - ['\u{1f646}\u{1f3ff}'], - ['\u{1f646}\u200d\u2642\ufe0f'], - ['\u{1f646}\u200d\u2642'], - ['\u{1f646}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f646}\u{1f3fb}\u200d\u2642'], - ['\u{1f646}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f646}\u{1f3fc}\u200d\u2642'], - ['\u{1f646}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f646}\u{1f3fd}\u200d\u2642'], - ['\u{1f646}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f646}\u{1f3fe}\u200d\u2642'], - ['\u{1f646}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f646}\u{1f3ff}\u200d\u2642'], - ['\u{1f646}\u200d\u2640\ufe0f'], - ['\u{1f646}\u200d\u2640'], - ['\u{1f646}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f646}\u{1f3fb}\u200d\u2640'], - ['\u{1f646}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f646}\u{1f3fc}\u200d\u2640'], - ['\u{1f646}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f646}\u{1f3fd}\u200d\u2640'], - ['\u{1f646}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f646}\u{1f3fe}\u200d\u2640'], - ['\u{1f646}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f646}\u{1f3ff}\u200d\u2640'], - ['\u{1f481}'], - ['\u{1f481}\u{1f3fb}'], - ['\u{1f481}\u{1f3fc}'], - ['\u{1f481}\u{1f3fd}'], - ['\u{1f481}\u{1f3fe}'], - ['\u{1f481}\u{1f3ff}'], - ['\u{1f481}\u200d\u2642\ufe0f'], - ['\u{1f481}\u200d\u2642'], - ['\u{1f481}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f481}\u{1f3fb}\u200d\u2642'], - ['\u{1f481}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f481}\u{1f3fc}\u200d\u2642'], - ['\u{1f481}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f481}\u{1f3fd}\u200d\u2642'], - ['\u{1f481}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f481}\u{1f3fe}\u200d\u2642'], - ['\u{1f481}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f481}\u{1f3ff}\u200d\u2642'], - ['\u{1f481}\u200d\u2640\ufe0f'], - ['\u{1f481}\u200d\u2640'], - ['\u{1f481}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f481}\u{1f3fb}\u200d\u2640'], - ['\u{1f481}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f481}\u{1f3fc}\u200d\u2640'], - ['\u{1f481}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f481}\u{1f3fd}\u200d\u2640'], - ['\u{1f481}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f481}\u{1f3fe}\u200d\u2640'], - ['\u{1f481}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f481}\u{1f3ff}\u200d\u2640'], - ['\u{1f64b}'], - ['\u{1f64b}\u{1f3fb}'], - ['\u{1f64b}\u{1f3fc}'], - ['\u{1f64b}\u{1f3fd}'], - ['\u{1f64b}\u{1f3fe}'], - ['\u{1f64b}\u{1f3ff}'], - ['\u{1f64b}\u200d\u2642\ufe0f'], - ['\u{1f64b}\u200d\u2642'], - ['\u{1f64b}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f64b}\u{1f3fb}\u200d\u2642'], - ['\u{1f64b}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f64b}\u{1f3fc}\u200d\u2642'], - ['\u{1f64b}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f64b}\u{1f3fd}\u200d\u2642'], - ['\u{1f64b}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f64b}\u{1f3fe}\u200d\u2642'], - ['\u{1f64b}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f64b}\u{1f3ff}\u200d\u2642'], - ['\u{1f64b}\u200d\u2640\ufe0f'], - ['\u{1f64b}\u200d\u2640'], - ['\u{1f64b}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f64b}\u{1f3fb}\u200d\u2640'], - ['\u{1f64b}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f64b}\u{1f3fc}\u200d\u2640'], - ['\u{1f64b}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f64b}\u{1f3fd}\u200d\u2640'], - ['\u{1f64b}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f64b}\u{1f3fe}\u200d\u2640'], - ['\u{1f64b}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f64b}\u{1f3ff}\u200d\u2640'], - ['\u{1f9cf}'], - ['\u{1f9cf}\u{1f3fb}'], - ['\u{1f9cf}\u{1f3fc}'], - ['\u{1f9cf}\u{1f3fd}'], - ['\u{1f9cf}\u{1f3fe}'], - ['\u{1f9cf}\u{1f3ff}'], - ['\u{1f9cf}\u200d\u2642\ufe0f'], - ['\u{1f9cf}\u200d\u2642'], - ['\u{1f9cf}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9cf}\u{1f3fb}\u200d\u2642'], - ['\u{1f9cf}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9cf}\u{1f3fc}\u200d\u2642'], - ['\u{1f9cf}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9cf}\u{1f3fd}\u200d\u2642'], - ['\u{1f9cf}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9cf}\u{1f3fe}\u200d\u2642'], - ['\u{1f9cf}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9cf}\u{1f3ff}\u200d\u2642'], - ['\u{1f9cf}\u200d\u2640\ufe0f'], - ['\u{1f9cf}\u200d\u2640'], - ['\u{1f9cf}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9cf}\u{1f3fb}\u200d\u2640'], - ['\u{1f9cf}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9cf}\u{1f3fc}\u200d\u2640'], - ['\u{1f9cf}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9cf}\u{1f3fd}\u200d\u2640'], - ['\u{1f9cf}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9cf}\u{1f3fe}\u200d\u2640'], - ['\u{1f9cf}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9cf}\u{1f3ff}\u200d\u2640'], - ['\u{1f647}'], - ['\u{1f647}\u{1f3fb}'], - ['\u{1f647}\u{1f3fc}'], - ['\u{1f647}\u{1f3fd}'], - ['\u{1f647}\u{1f3fe}'], - ['\u{1f647}\u{1f3ff}'], - ['\u{1f647}\u200d\u2642\ufe0f'], - ['\u{1f647}\u200d\u2642'], - ['\u{1f647}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f647}\u{1f3fb}\u200d\u2642'], - ['\u{1f647}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f647}\u{1f3fc}\u200d\u2642'], - ['\u{1f647}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f647}\u{1f3fd}\u200d\u2642'], - ['\u{1f647}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f647}\u{1f3fe}\u200d\u2642'], - ['\u{1f647}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f647}\u{1f3ff}\u200d\u2642'], - ['\u{1f647}\u200d\u2640\ufe0f'], - ['\u{1f647}\u200d\u2640'], - ['\u{1f647}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f647}\u{1f3fb}\u200d\u2640'], - ['\u{1f647}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f647}\u{1f3fc}\u200d\u2640'], - ['\u{1f647}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f647}\u{1f3fd}\u200d\u2640'], - ['\u{1f647}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f647}\u{1f3fe}\u200d\u2640'], - ['\u{1f647}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f647}\u{1f3ff}\u200d\u2640'], - ['\u{1f926}'], - ['\u{1f926}\u{1f3fb}'], - ['\u{1f926}\u{1f3fc}'], - ['\u{1f926}\u{1f3fd}'], - ['\u{1f926}\u{1f3fe}'], - ['\u{1f926}\u{1f3ff}'], - ['\u{1f926}\u200d\u2642\ufe0f'], - ['\u{1f926}\u200d\u2642'], - ['\u{1f926}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f926}\u{1f3fb}\u200d\u2642'], - ['\u{1f926}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f926}\u{1f3fc}\u200d\u2642'], - ['\u{1f926}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f926}\u{1f3fd}\u200d\u2642'], - ['\u{1f926}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f926}\u{1f3fe}\u200d\u2642'], - ['\u{1f926}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f926}\u{1f3ff}\u200d\u2642'], - ['\u{1f926}\u200d\u2640\ufe0f'], - ['\u{1f926}\u200d\u2640'], - ['\u{1f926}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f926}\u{1f3fb}\u200d\u2640'], - ['\u{1f926}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f926}\u{1f3fc}\u200d\u2640'], - ['\u{1f926}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f926}\u{1f3fd}\u200d\u2640'], - ['\u{1f926}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f926}\u{1f3fe}\u200d\u2640'], - ['\u{1f926}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f926}\u{1f3ff}\u200d\u2640'], - ['\u{1f937}'], - ['\u{1f937}\u{1f3fb}'], - ['\u{1f937}\u{1f3fc}'], - ['\u{1f937}\u{1f3fd}'], - ['\u{1f937}\u{1f3fe}'], - ['\u{1f937}\u{1f3ff}'], - ['\u{1f937}\u200d\u2642\ufe0f'], - ['\u{1f937}\u200d\u2642'], - ['\u{1f937}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f937}\u{1f3fb}\u200d\u2642'], - ['\u{1f937}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f937}\u{1f3fc}\u200d\u2642'], - ['\u{1f937}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f937}\u{1f3fd}\u200d\u2642'], - ['\u{1f937}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f937}\u{1f3fe}\u200d\u2642'], - ['\u{1f937}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f937}\u{1f3ff}\u200d\u2642'], - ['\u{1f937}\u200d\u2640\ufe0f'], - ['\u{1f937}\u200d\u2640'], - ['\u{1f937}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f937}\u{1f3fb}\u200d\u2640'], - ['\u{1f937}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f937}\u{1f3fc}\u200d\u2640'], - ['\u{1f937}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f937}\u{1f3fd}\u200d\u2640'], - ['\u{1f937}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f937}\u{1f3fe}\u200d\u2640'], - ['\u{1f937}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f937}\u{1f3ff}\u200d\u2640'], - ['\u{1f9d1}\u200d\u2695\ufe0f'], - ['\u{1f9d1}\u200d\u2695'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2695\ufe0f'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2695'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2695\ufe0f'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2695'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2695\ufe0f'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2695'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2695\ufe0f'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2695'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2695\ufe0f'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2695'], - ['\u{1f468}\u200d\u2695\ufe0f'], - ['\u{1f468}\u200d\u2695'], - ['\u{1f468}\u{1f3fb}\u200d\u2695\ufe0f'], - ['\u{1f468}\u{1f3fb}\u200d\u2695'], - ['\u{1f468}\u{1f3fc}\u200d\u2695\ufe0f'], - ['\u{1f468}\u{1f3fc}\u200d\u2695'], - ['\u{1f468}\u{1f3fd}\u200d\u2695\ufe0f'], - ['\u{1f468}\u{1f3fd}\u200d\u2695'], - ['\u{1f468}\u{1f3fe}\u200d\u2695\ufe0f'], - ['\u{1f468}\u{1f3fe}\u200d\u2695'], - ['\u{1f468}\u{1f3ff}\u200d\u2695\ufe0f'], - ['\u{1f468}\u{1f3ff}\u200d\u2695'], - ['\u{1f469}\u200d\u2695\ufe0f'], - ['\u{1f469}\u200d\u2695'], - ['\u{1f469}\u{1f3fb}\u200d\u2695\ufe0f'], - ['\u{1f469}\u{1f3fb}\u200d\u2695'], - ['\u{1f469}\u{1f3fc}\u200d\u2695\ufe0f'], - ['\u{1f469}\u{1f3fc}\u200d\u2695'], - ['\u{1f469}\u{1f3fd}\u200d\u2695\ufe0f'], - ['\u{1f469}\u{1f3fd}\u200d\u2695'], - ['\u{1f469}\u{1f3fe}\u200d\u2695\ufe0f'], - ['\u{1f469}\u{1f3fe}\u200d\u2695'], - ['\u{1f469}\u{1f3ff}\u200d\u2695\ufe0f'], - ['\u{1f469}\u{1f3ff}\u200d\u2695'], - ['\u{1f9d1}\u200d\u{1f393}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f393}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f393}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f393}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f393}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f393}'], - ['\u{1f468}\u200d\u{1f393}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f393}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f393}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f393}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f393}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f393}'], - ['\u{1f469}\u200d\u{1f393}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f393}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f393}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f393}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f393}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f393}'], - ['\u{1f9d1}\u200d\u{1f3eb}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3eb}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3eb}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3eb}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3eb}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3eb}'], - ['\u{1f468}\u200d\u{1f3eb}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f3eb}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f3eb}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f3eb}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f3eb}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f3eb}'], - ['\u{1f469}\u200d\u{1f3eb}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f3eb}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f3eb}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f3eb}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f3eb}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f3eb}'], - ['\u{1f9d1}\u200d\u2696\ufe0f'], - ['\u{1f9d1}\u200d\u2696'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2696\ufe0f'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2696'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2696\ufe0f'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2696'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2696\ufe0f'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2696'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2696\ufe0f'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2696'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2696\ufe0f'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2696'], - ['\u{1f468}\u200d\u2696\ufe0f'], - ['\u{1f468}\u200d\u2696'], - ['\u{1f468}\u{1f3fb}\u200d\u2696\ufe0f'], - ['\u{1f468}\u{1f3fb}\u200d\u2696'], - ['\u{1f468}\u{1f3fc}\u200d\u2696\ufe0f'], - ['\u{1f468}\u{1f3fc}\u200d\u2696'], - ['\u{1f468}\u{1f3fd}\u200d\u2696\ufe0f'], - ['\u{1f468}\u{1f3fd}\u200d\u2696'], - ['\u{1f468}\u{1f3fe}\u200d\u2696\ufe0f'], - ['\u{1f468}\u{1f3fe}\u200d\u2696'], - ['\u{1f468}\u{1f3ff}\u200d\u2696\ufe0f'], - ['\u{1f468}\u{1f3ff}\u200d\u2696'], - ['\u{1f469}\u200d\u2696\ufe0f'], - ['\u{1f469}\u200d\u2696'], - ['\u{1f469}\u{1f3fb}\u200d\u2696\ufe0f'], - ['\u{1f469}\u{1f3fb}\u200d\u2696'], - ['\u{1f469}\u{1f3fc}\u200d\u2696\ufe0f'], - ['\u{1f469}\u{1f3fc}\u200d\u2696'], - ['\u{1f469}\u{1f3fd}\u200d\u2696\ufe0f'], - ['\u{1f469}\u{1f3fd}\u200d\u2696'], - ['\u{1f469}\u{1f3fe}\u200d\u2696\ufe0f'], - ['\u{1f469}\u{1f3fe}\u200d\u2696'], - ['\u{1f469}\u{1f3ff}\u200d\u2696\ufe0f'], - ['\u{1f469}\u{1f3ff}\u200d\u2696'], - ['\u{1f9d1}\u200d\u{1f33e}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f33e}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f33e}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f33e}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f33e}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f33e}'], - ['\u{1f468}\u200d\u{1f33e}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f33e}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f33e}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f33e}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f33e}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f33e}'], - ['\u{1f469}\u200d\u{1f33e}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f33e}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f33e}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f33e}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f33e}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f33e}'], - ['\u{1f9d1}\u200d\u{1f373}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f373}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f373}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f373}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f373}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f373}'], - ['\u{1f468}\u200d\u{1f373}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f373}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f373}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f373}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f373}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f373}'], - ['\u{1f469}\u200d\u{1f373}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f373}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f373}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f373}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f373}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f373}'], - ['\u{1f9d1}\u200d\u{1f527}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f527}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f527}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f527}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f527}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f527}'], - ['\u{1f468}\u200d\u{1f527}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f527}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f527}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f527}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f527}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f527}'], - ['\u{1f469}\u200d\u{1f527}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f527}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f527}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f527}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f527}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f527}'], - ['\u{1f9d1}\u200d\u{1f3ed}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3ed}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3ed}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3ed}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3ed}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3ed}'], - ['\u{1f468}\u200d\u{1f3ed}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f3ed}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f3ed}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f3ed}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f3ed}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f3ed}'], - ['\u{1f469}\u200d\u{1f3ed}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f3ed}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f3ed}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f3ed}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f3ed}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f3ed}'], - ['\u{1f9d1}\u200d\u{1f4bc}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f4bc}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f4bc}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f4bc}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f4bc}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f4bc}'], - ['\u{1f468}\u200d\u{1f4bc}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f4bc}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f4bc}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f4bc}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f4bc}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f4bc}'], - ['\u{1f469}\u200d\u{1f4bc}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f4bc}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f4bc}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f4bc}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f4bc}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f4bc}'], - ['\u{1f9d1}\u200d\u{1f52c}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f52c}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f52c}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f52c}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f52c}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f52c}'], - ['\u{1f468}\u200d\u{1f52c}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f52c}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f52c}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f52c}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f52c}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f52c}'], - ['\u{1f469}\u200d\u{1f52c}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f52c}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f52c}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f52c}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f52c}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f52c}'], - ['\u{1f9d1}\u200d\u{1f4bb}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f4bb}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f4bb}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f4bb}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f4bb}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f4bb}'], - ['\u{1f468}\u200d\u{1f4bb}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f4bb}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f4bb}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f4bb}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f4bb}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f4bb}'], - ['\u{1f469}\u200d\u{1f4bb}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f4bb}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f4bb}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f4bb}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f4bb}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f4bb}'], - ['\u{1f9d1}\u200d\u{1f3a4}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3a4}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3a4}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3a4}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3a4}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3a4}'], - ['\u{1f468}\u200d\u{1f3a4}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f3a4}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f3a4}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f3a4}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f3a4}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f3a4}'], - ['\u{1f469}\u200d\u{1f3a4}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f3a4}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f3a4}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f3a4}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f3a4}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f3a4}'], - ['\u{1f9d1}\u200d\u{1f3a8}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3a8}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3a8}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3a8}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3a8}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3a8}'], - ['\u{1f468}\u200d\u{1f3a8}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f3a8}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f3a8}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f3a8}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f3a8}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f3a8}'], - ['\u{1f469}\u200d\u{1f3a8}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f3a8}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f3a8}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f3a8}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f3a8}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f3a8}'], - ['\u{1f9d1}\u200d\u2708\ufe0f'], - ['\u{1f9d1}\u200d\u2708'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2708\ufe0f'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2708'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2708\ufe0f'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2708'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2708\ufe0f'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2708'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2708\ufe0f'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2708'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2708\ufe0f'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2708'], - ['\u{1f468}\u200d\u2708\ufe0f'], - ['\u{1f468}\u200d\u2708'], - ['\u{1f468}\u{1f3fb}\u200d\u2708\ufe0f'], - ['\u{1f468}\u{1f3fb}\u200d\u2708'], - ['\u{1f468}\u{1f3fc}\u200d\u2708\ufe0f'], - ['\u{1f468}\u{1f3fc}\u200d\u2708'], - ['\u{1f468}\u{1f3fd}\u200d\u2708\ufe0f'], - ['\u{1f468}\u{1f3fd}\u200d\u2708'], - ['\u{1f468}\u{1f3fe}\u200d\u2708\ufe0f'], - ['\u{1f468}\u{1f3fe}\u200d\u2708'], - ['\u{1f468}\u{1f3ff}\u200d\u2708\ufe0f'], - ['\u{1f468}\u{1f3ff}\u200d\u2708'], - ['\u{1f469}\u200d\u2708\ufe0f'], - ['\u{1f469}\u200d\u2708'], - ['\u{1f469}\u{1f3fb}\u200d\u2708\ufe0f'], - ['\u{1f469}\u{1f3fb}\u200d\u2708'], - ['\u{1f469}\u{1f3fc}\u200d\u2708\ufe0f'], - ['\u{1f469}\u{1f3fc}\u200d\u2708'], - ['\u{1f469}\u{1f3fd}\u200d\u2708\ufe0f'], - ['\u{1f469}\u{1f3fd}\u200d\u2708'], - ['\u{1f469}\u{1f3fe}\u200d\u2708\ufe0f'], - ['\u{1f469}\u{1f3fe}\u200d\u2708'], - ['\u{1f469}\u{1f3ff}\u200d\u2708\ufe0f'], - ['\u{1f469}\u{1f3ff}\u200d\u2708'], - ['\u{1f9d1}\u200d\u{1f680}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f680}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f680}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f680}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f680}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f680}'], - ['\u{1f468}\u200d\u{1f680}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f680}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f680}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f680}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f680}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f680}'], - ['\u{1f469}\u200d\u{1f680}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f680}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f680}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f680}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f680}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f680}'], - ['\u{1f9d1}\u200d\u{1f692}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f692}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f692}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f692}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f692}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f692}'], - ['\u{1f468}\u200d\u{1f692}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f692}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f692}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f692}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f692}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f692}'], - ['\u{1f469}\u200d\u{1f692}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f692}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f692}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f692}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f692}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f692}'], - ['\u{1f46e}'], - ['\u{1f46e}\u{1f3fb}'], - ['\u{1f46e}\u{1f3fc}'], - ['\u{1f46e}\u{1f3fd}'], - ['\u{1f46e}\u{1f3fe}'], - ['\u{1f46e}\u{1f3ff}'], - ['\u{1f46e}\u200d\u2642\ufe0f'], - ['\u{1f46e}\u200d\u2642'], - ['\u{1f46e}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f46e}\u{1f3fb}\u200d\u2642'], - ['\u{1f46e}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f46e}\u{1f3fc}\u200d\u2642'], - ['\u{1f46e}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f46e}\u{1f3fd}\u200d\u2642'], - ['\u{1f46e}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f46e}\u{1f3fe}\u200d\u2642'], - ['\u{1f46e}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f46e}\u{1f3ff}\u200d\u2642'], - ['\u{1f46e}\u200d\u2640\ufe0f'], - ['\u{1f46e}\u200d\u2640'], - ['\u{1f46e}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f46e}\u{1f3fb}\u200d\u2640'], - ['\u{1f46e}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f46e}\u{1f3fc}\u200d\u2640'], - ['\u{1f46e}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f46e}\u{1f3fd}\u200d\u2640'], - ['\u{1f46e}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f46e}\u{1f3fe}\u200d\u2640'], - ['\u{1f46e}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f46e}\u{1f3ff}\u200d\u2640'], - ['\u{1f575}\ufe0f'], - ['\u{1f575}'], - ['\u{1f575}\u{1f3fb}'], - ['\u{1f575}\u{1f3fc}'], - ['\u{1f575}\u{1f3fd}'], - ['\u{1f575}\u{1f3fe}'], - ['\u{1f575}\u{1f3ff}'], - ['\u{1f575}\ufe0f\u200d\u2642\ufe0f'], - ['\u{1f575}\u200d\u2642\ufe0f'], - ['\u{1f575}\ufe0f\u200d\u2642'], - ['\u{1f575}\u200d\u2642'], - ['\u{1f575}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f575}\u{1f3fb}\u200d\u2642'], - ['\u{1f575}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f575}\u{1f3fc}\u200d\u2642'], - ['\u{1f575}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f575}\u{1f3fd}\u200d\u2642'], - ['\u{1f575}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f575}\u{1f3fe}\u200d\u2642'], - ['\u{1f575}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f575}\u{1f3ff}\u200d\u2642'], - ['\u{1f575}\ufe0f\u200d\u2640\ufe0f'], - ['\u{1f575}\u200d\u2640\ufe0f'], - ['\u{1f575}\ufe0f\u200d\u2640'], - ['\u{1f575}\u200d\u2640'], - ['\u{1f575}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f575}\u{1f3fb}\u200d\u2640'], - ['\u{1f575}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f575}\u{1f3fc}\u200d\u2640'], - ['\u{1f575}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f575}\u{1f3fd}\u200d\u2640'], - ['\u{1f575}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f575}\u{1f3fe}\u200d\u2640'], - ['\u{1f575}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f575}\u{1f3ff}\u200d\u2640'], - ['\u{1f482}'], - ['\u{1f482}\u{1f3fb}'], - ['\u{1f482}\u{1f3fc}'], - ['\u{1f482}\u{1f3fd}'], - ['\u{1f482}\u{1f3fe}'], - ['\u{1f482}\u{1f3ff}'], - ['\u{1f482}\u200d\u2642\ufe0f'], - ['\u{1f482}\u200d\u2642'], - ['\u{1f482}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f482}\u{1f3fb}\u200d\u2642'], - ['\u{1f482}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f482}\u{1f3fc}\u200d\u2642'], - ['\u{1f482}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f482}\u{1f3fd}\u200d\u2642'], - ['\u{1f482}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f482}\u{1f3fe}\u200d\u2642'], - ['\u{1f482}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f482}\u{1f3ff}\u200d\u2642'], - ['\u{1f482}\u200d\u2640\ufe0f'], - ['\u{1f482}\u200d\u2640'], - ['\u{1f482}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f482}\u{1f3fb}\u200d\u2640'], - ['\u{1f482}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f482}\u{1f3fc}\u200d\u2640'], - ['\u{1f482}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f482}\u{1f3fd}\u200d\u2640'], - ['\u{1f482}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f482}\u{1f3fe}\u200d\u2640'], - ['\u{1f482}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f482}\u{1f3ff}\u200d\u2640'], - ['\u{1f977}'], - ['\u{1f977}\u{1f3fb}'], - ['\u{1f977}\u{1f3fc}'], - ['\u{1f977}\u{1f3fd}'], - ['\u{1f977}\u{1f3fe}'], - ['\u{1f977}\u{1f3ff}'], - ['\u{1f477}'], - ['\u{1f477}\u{1f3fb}'], - ['\u{1f477}\u{1f3fc}'], - ['\u{1f477}\u{1f3fd}'], - ['\u{1f477}\u{1f3fe}'], - ['\u{1f477}\u{1f3ff}'], - ['\u{1f477}\u200d\u2642\ufe0f'], - ['\u{1f477}\u200d\u2642'], - ['\u{1f477}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f477}\u{1f3fb}\u200d\u2642'], - ['\u{1f477}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f477}\u{1f3fc}\u200d\u2642'], - ['\u{1f477}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f477}\u{1f3fd}\u200d\u2642'], - ['\u{1f477}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f477}\u{1f3fe}\u200d\u2642'], - ['\u{1f477}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f477}\u{1f3ff}\u200d\u2642'], - ['\u{1f477}\u200d\u2640\ufe0f'], - ['\u{1f477}\u200d\u2640'], - ['\u{1f477}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f477}\u{1f3fb}\u200d\u2640'], - ['\u{1f477}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f477}\u{1f3fc}\u200d\u2640'], - ['\u{1f477}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f477}\u{1f3fd}\u200d\u2640'], - ['\u{1f477}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f477}\u{1f3fe}\u200d\u2640'], - ['\u{1f477}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f477}\u{1f3ff}\u200d\u2640'], - ['\u{1fac5}'], - ['\u{1fac5}\u{1f3fb}'], - ['\u{1fac5}\u{1f3fc}'], - ['\u{1fac5}\u{1f3fd}'], - ['\u{1fac5}\u{1f3fe}'], - ['\u{1fac5}\u{1f3ff}'], - ['\u{1f934}'], - ['\u{1f934}\u{1f3fb}'], - ['\u{1f934}\u{1f3fc}'], - ['\u{1f934}\u{1f3fd}'], - ['\u{1f934}\u{1f3fe}'], - ['\u{1f934}\u{1f3ff}'], - ['\u{1f478}'], - ['\u{1f478}\u{1f3fb}'], - ['\u{1f478}\u{1f3fc}'], - ['\u{1f478}\u{1f3fd}'], - ['\u{1f478}\u{1f3fe}'], - ['\u{1f478}\u{1f3ff}'], - ['\u{1f473}'], - ['\u{1f473}\u{1f3fb}'], - ['\u{1f473}\u{1f3fc}'], - ['\u{1f473}\u{1f3fd}'], - ['\u{1f473}\u{1f3fe}'], - ['\u{1f473}\u{1f3ff}'], - ['\u{1f473}\u200d\u2642\ufe0f'], - ['\u{1f473}\u200d\u2642'], - ['\u{1f473}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f473}\u{1f3fb}\u200d\u2642'], - ['\u{1f473}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f473}\u{1f3fc}\u200d\u2642'], - ['\u{1f473}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f473}\u{1f3fd}\u200d\u2642'], - ['\u{1f473}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f473}\u{1f3fe}\u200d\u2642'], - ['\u{1f473}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f473}\u{1f3ff}\u200d\u2642'], - ['\u{1f473}\u200d\u2640\ufe0f'], - ['\u{1f473}\u200d\u2640'], - ['\u{1f473}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f473}\u{1f3fb}\u200d\u2640'], - ['\u{1f473}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f473}\u{1f3fc}\u200d\u2640'], - ['\u{1f473}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f473}\u{1f3fd}\u200d\u2640'], - ['\u{1f473}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f473}\u{1f3fe}\u200d\u2640'], - ['\u{1f473}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f473}\u{1f3ff}\u200d\u2640'], - ['\u{1f472}'], - ['\u{1f472}\u{1f3fb}'], - ['\u{1f472}\u{1f3fc}'], - ['\u{1f472}\u{1f3fd}'], - ['\u{1f472}\u{1f3fe}'], - ['\u{1f472}\u{1f3ff}'], - ['\u{1f9d5}'], - ['\u{1f9d5}\u{1f3fb}'], - ['\u{1f9d5}\u{1f3fc}'], - ['\u{1f9d5}\u{1f3fd}'], - ['\u{1f9d5}\u{1f3fe}'], - ['\u{1f9d5}\u{1f3ff}'], - ['\u{1f935}'], - ['\u{1f935}\u{1f3fb}'], - ['\u{1f935}\u{1f3fc}'], - ['\u{1f935}\u{1f3fd}'], - ['\u{1f935}\u{1f3fe}'], - ['\u{1f935}\u{1f3ff}'], - ['\u{1f935}\u200d\u2642\ufe0f'], - ['\u{1f935}\u200d\u2642'], - ['\u{1f935}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f935}\u{1f3fb}\u200d\u2642'], - ['\u{1f935}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f935}\u{1f3fc}\u200d\u2642'], - ['\u{1f935}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f935}\u{1f3fd}\u200d\u2642'], - ['\u{1f935}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f935}\u{1f3fe}\u200d\u2642'], - ['\u{1f935}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f935}\u{1f3ff}\u200d\u2642'], - ['\u{1f935}\u200d\u2640\ufe0f'], - ['\u{1f935}\u200d\u2640'], - ['\u{1f935}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f935}\u{1f3fb}\u200d\u2640'], - ['\u{1f935}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f935}\u{1f3fc}\u200d\u2640'], - ['\u{1f935}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f935}\u{1f3fd}\u200d\u2640'], - ['\u{1f935}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f935}\u{1f3fe}\u200d\u2640'], - ['\u{1f935}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f935}\u{1f3ff}\u200d\u2640'], - ['\u{1f470}'], - ['\u{1f470}\u{1f3fb}'], - ['\u{1f470}\u{1f3fc}'], - ['\u{1f470}\u{1f3fd}'], - ['\u{1f470}\u{1f3fe}'], - ['\u{1f470}\u{1f3ff}'], - ['\u{1f470}\u200d\u2642\ufe0f'], - ['\u{1f470}\u200d\u2642'], - ['\u{1f470}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f470}\u{1f3fb}\u200d\u2642'], - ['\u{1f470}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f470}\u{1f3fc}\u200d\u2642'], - ['\u{1f470}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f470}\u{1f3fd}\u200d\u2642'], - ['\u{1f470}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f470}\u{1f3fe}\u200d\u2642'], - ['\u{1f470}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f470}\u{1f3ff}\u200d\u2642'], - ['\u{1f470}\u200d\u2640\ufe0f'], - ['\u{1f470}\u200d\u2640'], - ['\u{1f470}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f470}\u{1f3fb}\u200d\u2640'], - ['\u{1f470}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f470}\u{1f3fc}\u200d\u2640'], - ['\u{1f470}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f470}\u{1f3fd}\u200d\u2640'], - ['\u{1f470}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f470}\u{1f3fe}\u200d\u2640'], - ['\u{1f470}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f470}\u{1f3ff}\u200d\u2640'], - ['\u{1f930}'], - ['\u{1f930}\u{1f3fb}'], - ['\u{1f930}\u{1f3fc}'], - ['\u{1f930}\u{1f3fd}'], - ['\u{1f930}\u{1f3fe}'], - ['\u{1f930}\u{1f3ff}'], - ['\u{1fac3}'], - ['\u{1fac3}\u{1f3fb}'], - ['\u{1fac3}\u{1f3fc}'], - ['\u{1fac3}\u{1f3fd}'], - ['\u{1fac3}\u{1f3fe}'], - ['\u{1fac3}\u{1f3ff}'], - ['\u{1fac4}'], - ['\u{1fac4}\u{1f3fb}'], - ['\u{1fac4}\u{1f3fc}'], - ['\u{1fac4}\u{1f3fd}'], - ['\u{1fac4}\u{1f3fe}'], - ['\u{1fac4}\u{1f3ff}'], - ['\u{1f931}'], - ['\u{1f931}\u{1f3fb}'], - ['\u{1f931}\u{1f3fc}'], - ['\u{1f931}\u{1f3fd}'], - ['\u{1f931}\u{1f3fe}'], - ['\u{1f931}\u{1f3ff}'], - ['\u{1f469}\u200d\u{1f37c}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f37c}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f37c}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f37c}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f37c}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f37c}'], - ['\u{1f468}\u200d\u{1f37c}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f37c}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f37c}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f37c}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f37c}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f37c}'], - ['\u{1f9d1}\u200d\u{1f37c}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f37c}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f37c}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f37c}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f37c}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f37c}'], - ['\u{1f47c}'], - ['\u{1f47c}\u{1f3fb}'], - ['\u{1f47c}\u{1f3fc}'], - ['\u{1f47c}\u{1f3fd}'], - ['\u{1f47c}\u{1f3fe}'], - ['\u{1f47c}\u{1f3ff}'], - ['\u{1f385}'], - ['\u{1f385}\u{1f3fb}'], - ['\u{1f385}\u{1f3fc}'], - ['\u{1f385}\u{1f3fd}'], - ['\u{1f385}\u{1f3fe}'], - ['\u{1f385}\u{1f3ff}'], - ['\u{1f936}'], - ['\u{1f936}\u{1f3fb}'], - ['\u{1f936}\u{1f3fc}'], - ['\u{1f936}\u{1f3fd}'], - ['\u{1f936}\u{1f3fe}'], - ['\u{1f936}\u{1f3ff}'], - ['\u{1f9d1}\u200d\u{1f384}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f384}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f384}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f384}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f384}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f384}'], - ['\u{1f9b8}'], - ['\u{1f9b8}\u{1f3fb}'], - ['\u{1f9b8}\u{1f3fc}'], - ['\u{1f9b8}\u{1f3fd}'], - ['\u{1f9b8}\u{1f3fe}'], - ['\u{1f9b8}\u{1f3ff}'], - ['\u{1f9b8}\u200d\u2642\ufe0f'], - ['\u{1f9b8}\u200d\u2642'], - ['\u{1f9b8}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9b8}\u{1f3fb}\u200d\u2642'], - ['\u{1f9b8}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9b8}\u{1f3fc}\u200d\u2642'], - ['\u{1f9b8}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9b8}\u{1f3fd}\u200d\u2642'], - ['\u{1f9b8}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9b8}\u{1f3fe}\u200d\u2642'], - ['\u{1f9b8}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9b8}\u{1f3ff}\u200d\u2642'], - ['\u{1f9b8}\u200d\u2640\ufe0f'], - ['\u{1f9b8}\u200d\u2640'], - ['\u{1f9b8}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9b8}\u{1f3fb}\u200d\u2640'], - ['\u{1f9b8}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9b8}\u{1f3fc}\u200d\u2640'], - ['\u{1f9b8}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9b8}\u{1f3fd}\u200d\u2640'], - ['\u{1f9b8}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9b8}\u{1f3fe}\u200d\u2640'], - ['\u{1f9b8}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9b8}\u{1f3ff}\u200d\u2640'], - ['\u{1f9b9}'], - ['\u{1f9b9}\u{1f3fb}'], - ['\u{1f9b9}\u{1f3fc}'], - ['\u{1f9b9}\u{1f3fd}'], - ['\u{1f9b9}\u{1f3fe}'], - ['\u{1f9b9}\u{1f3ff}'], - ['\u{1f9b9}\u200d\u2642\ufe0f'], - ['\u{1f9b9}\u200d\u2642'], - ['\u{1f9b9}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9b9}\u{1f3fb}\u200d\u2642'], - ['\u{1f9b9}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9b9}\u{1f3fc}\u200d\u2642'], - ['\u{1f9b9}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9b9}\u{1f3fd}\u200d\u2642'], - ['\u{1f9b9}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9b9}\u{1f3fe}\u200d\u2642'], - ['\u{1f9b9}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9b9}\u{1f3ff}\u200d\u2642'], - ['\u{1f9b9}\u200d\u2640\ufe0f'], - ['\u{1f9b9}\u200d\u2640'], - ['\u{1f9b9}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9b9}\u{1f3fb}\u200d\u2640'], - ['\u{1f9b9}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9b9}\u{1f3fc}\u200d\u2640'], - ['\u{1f9b9}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9b9}\u{1f3fd}\u200d\u2640'], - ['\u{1f9b9}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9b9}\u{1f3fe}\u200d\u2640'], - ['\u{1f9b9}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9b9}\u{1f3ff}\u200d\u2640'], - ['\u{1f9d9}'], - ['\u{1f9d9}\u{1f3fb}'], - ['\u{1f9d9}\u{1f3fc}'], - ['\u{1f9d9}\u{1f3fd}'], - ['\u{1f9d9}\u{1f3fe}'], - ['\u{1f9d9}\u{1f3ff}'], - ['\u{1f9d9}\u200d\u2642\ufe0f'], - ['\u{1f9d9}\u200d\u2642'], - ['\u{1f9d9}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9d9}\u{1f3fb}\u200d\u2642'], - ['\u{1f9d9}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9d9}\u{1f3fc}\u200d\u2642'], - ['\u{1f9d9}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9d9}\u{1f3fd}\u200d\u2642'], - ['\u{1f9d9}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9d9}\u{1f3fe}\u200d\u2642'], - ['\u{1f9d9}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9d9}\u{1f3ff}\u200d\u2642'], - ['\u{1f9d9}\u200d\u2640\ufe0f'], - ['\u{1f9d9}\u200d\u2640'], - ['\u{1f9d9}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9d9}\u{1f3fb}\u200d\u2640'], - ['\u{1f9d9}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9d9}\u{1f3fc}\u200d\u2640'], - ['\u{1f9d9}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9d9}\u{1f3fd}\u200d\u2640'], - ['\u{1f9d9}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9d9}\u{1f3fe}\u200d\u2640'], - ['\u{1f9d9}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9d9}\u{1f3ff}\u200d\u2640'], - ['\u{1f9da}'], - ['\u{1f9da}\u{1f3fb}'], - ['\u{1f9da}\u{1f3fc}'], - ['\u{1f9da}\u{1f3fd}'], - ['\u{1f9da}\u{1f3fe}'], - ['\u{1f9da}\u{1f3ff}'], - ['\u{1f9da}\u200d\u2642\ufe0f'], - ['\u{1f9da}\u200d\u2642'], - ['\u{1f9da}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9da}\u{1f3fb}\u200d\u2642'], - ['\u{1f9da}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9da}\u{1f3fc}\u200d\u2642'], - ['\u{1f9da}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9da}\u{1f3fd}\u200d\u2642'], - ['\u{1f9da}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9da}\u{1f3fe}\u200d\u2642'], - ['\u{1f9da}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9da}\u{1f3ff}\u200d\u2642'], - ['\u{1f9da}\u200d\u2640\ufe0f'], - ['\u{1f9da}\u200d\u2640'], - ['\u{1f9da}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9da}\u{1f3fb}\u200d\u2640'], - ['\u{1f9da}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9da}\u{1f3fc}\u200d\u2640'], - ['\u{1f9da}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9da}\u{1f3fd}\u200d\u2640'], - ['\u{1f9da}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9da}\u{1f3fe}\u200d\u2640'], - ['\u{1f9da}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9da}\u{1f3ff}\u200d\u2640'], - ['\u{1f9db}'], - ['\u{1f9db}\u{1f3fb}'], - ['\u{1f9db}\u{1f3fc}'], - ['\u{1f9db}\u{1f3fd}'], - ['\u{1f9db}\u{1f3fe}'], - ['\u{1f9db}\u{1f3ff}'], - ['\u{1f9db}\u200d\u2642\ufe0f'], - ['\u{1f9db}\u200d\u2642'], - ['\u{1f9db}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9db}\u{1f3fb}\u200d\u2642'], - ['\u{1f9db}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9db}\u{1f3fc}\u200d\u2642'], - ['\u{1f9db}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9db}\u{1f3fd}\u200d\u2642'], - ['\u{1f9db}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9db}\u{1f3fe}\u200d\u2642'], - ['\u{1f9db}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9db}\u{1f3ff}\u200d\u2642'], - ['\u{1f9db}\u200d\u2640\ufe0f'], - ['\u{1f9db}\u200d\u2640'], - ['\u{1f9db}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9db}\u{1f3fb}\u200d\u2640'], - ['\u{1f9db}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9db}\u{1f3fc}\u200d\u2640'], - ['\u{1f9db}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9db}\u{1f3fd}\u200d\u2640'], - ['\u{1f9db}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9db}\u{1f3fe}\u200d\u2640'], - ['\u{1f9db}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9db}\u{1f3ff}\u200d\u2640'], - ['\u{1f9dc}'], - ['\u{1f9dc}\u{1f3fb}'], - ['\u{1f9dc}\u{1f3fc}'], - ['\u{1f9dc}\u{1f3fd}'], - ['\u{1f9dc}\u{1f3fe}'], - ['\u{1f9dc}\u{1f3ff}'], - ['\u{1f9dc}\u200d\u2642\ufe0f'], - ['\u{1f9dc}\u200d\u2642'], - ['\u{1f9dc}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9dc}\u{1f3fb}\u200d\u2642'], - ['\u{1f9dc}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9dc}\u{1f3fc}\u200d\u2642'], - ['\u{1f9dc}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9dc}\u{1f3fd}\u200d\u2642'], - ['\u{1f9dc}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9dc}\u{1f3fe}\u200d\u2642'], - ['\u{1f9dc}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9dc}\u{1f3ff}\u200d\u2642'], - ['\u{1f9dc}\u200d\u2640\ufe0f'], - ['\u{1f9dc}\u200d\u2640'], - ['\u{1f9dc}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9dc}\u{1f3fb}\u200d\u2640'], - ['\u{1f9dc}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9dc}\u{1f3fc}\u200d\u2640'], - ['\u{1f9dc}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9dc}\u{1f3fd}\u200d\u2640'], - ['\u{1f9dc}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9dc}\u{1f3fe}\u200d\u2640'], - ['\u{1f9dc}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9dc}\u{1f3ff}\u200d\u2640'], - ['\u{1f9dd}'], - ['\u{1f9dd}\u{1f3fb}'], - ['\u{1f9dd}\u{1f3fc}'], - ['\u{1f9dd}\u{1f3fd}'], - ['\u{1f9dd}\u{1f3fe}'], - ['\u{1f9dd}\u{1f3ff}'], - ['\u{1f9dd}\u200d\u2642\ufe0f'], - ['\u{1f9dd}\u200d\u2642'], - ['\u{1f9dd}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9dd}\u{1f3fb}\u200d\u2642'], - ['\u{1f9dd}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9dd}\u{1f3fc}\u200d\u2642'], - ['\u{1f9dd}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9dd}\u{1f3fd}\u200d\u2642'], - ['\u{1f9dd}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9dd}\u{1f3fe}\u200d\u2642'], - ['\u{1f9dd}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9dd}\u{1f3ff}\u200d\u2642'], - ['\u{1f9dd}\u200d\u2640\ufe0f'], - ['\u{1f9dd}\u200d\u2640'], - ['\u{1f9dd}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9dd}\u{1f3fb}\u200d\u2640'], - ['\u{1f9dd}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9dd}\u{1f3fc}\u200d\u2640'], - ['\u{1f9dd}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9dd}\u{1f3fd}\u200d\u2640'], - ['\u{1f9dd}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9dd}\u{1f3fe}\u200d\u2640'], - ['\u{1f9dd}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9dd}\u{1f3ff}\u200d\u2640'], - ['\u{1f9de}'], - ['\u{1f9de}\u200d\u2642\ufe0f'], - ['\u{1f9de}\u200d\u2642'], - ['\u{1f9de}\u200d\u2640\ufe0f'], - ['\u{1f9de}\u200d\u2640'], - ['\u{1f9df}'], - ['\u{1f9df}\u200d\u2642\ufe0f'], - ['\u{1f9df}\u200d\u2642'], - ['\u{1f9df}\u200d\u2640\ufe0f'], - ['\u{1f9df}\u200d\u2640'], - ['\u{1f9cc}'], - ['\u{1f486}'], - ['\u{1f486}\u{1f3fb}'], - ['\u{1f486}\u{1f3fc}'], - ['\u{1f486}\u{1f3fd}'], - ['\u{1f486}\u{1f3fe}'], - ['\u{1f486}\u{1f3ff}'], - ['\u{1f486}\u200d\u2642\ufe0f'], - ['\u{1f486}\u200d\u2642'], - ['\u{1f486}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f486}\u{1f3fb}\u200d\u2642'], - ['\u{1f486}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f486}\u{1f3fc}\u200d\u2642'], - ['\u{1f486}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f486}\u{1f3fd}\u200d\u2642'], - ['\u{1f486}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f486}\u{1f3fe}\u200d\u2642'], - ['\u{1f486}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f486}\u{1f3ff}\u200d\u2642'], - ['\u{1f486}\u200d\u2640\ufe0f'], - ['\u{1f486}\u200d\u2640'], - ['\u{1f486}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f486}\u{1f3fb}\u200d\u2640'], - ['\u{1f486}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f486}\u{1f3fc}\u200d\u2640'], - ['\u{1f486}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f486}\u{1f3fd}\u200d\u2640'], - ['\u{1f486}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f486}\u{1f3fe}\u200d\u2640'], - ['\u{1f486}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f486}\u{1f3ff}\u200d\u2640'], - ['\u{1f487}'], - ['\u{1f487}\u{1f3fb}'], - ['\u{1f487}\u{1f3fc}'], - ['\u{1f487}\u{1f3fd}'], - ['\u{1f487}\u{1f3fe}'], - ['\u{1f487}\u{1f3ff}'], - ['\u{1f487}\u200d\u2642\ufe0f'], - ['\u{1f487}\u200d\u2642'], - ['\u{1f487}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f487}\u{1f3fb}\u200d\u2642'], - ['\u{1f487}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f487}\u{1f3fc}\u200d\u2642'], - ['\u{1f487}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f487}\u{1f3fd}\u200d\u2642'], - ['\u{1f487}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f487}\u{1f3fe}\u200d\u2642'], - ['\u{1f487}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f487}\u{1f3ff}\u200d\u2642'], - ['\u{1f487}\u200d\u2640\ufe0f'], - ['\u{1f487}\u200d\u2640'], - ['\u{1f487}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f487}\u{1f3fb}\u200d\u2640'], - ['\u{1f487}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f487}\u{1f3fc}\u200d\u2640'], - ['\u{1f487}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f487}\u{1f3fd}\u200d\u2640'], - ['\u{1f487}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f487}\u{1f3fe}\u200d\u2640'], - ['\u{1f487}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f487}\u{1f3ff}\u200d\u2640'], - ['\u{1f6b6}'], - ['\u{1f6b6}\u{1f3fb}'], - ['\u{1f6b6}\u{1f3fc}'], - ['\u{1f6b6}\u{1f3fd}'], - ['\u{1f6b6}\u{1f3fe}'], - ['\u{1f6b6}\u{1f3ff}'], - ['\u{1f6b6}\u200d\u2642\ufe0f'], - ['\u{1f6b6}\u200d\u2642'], - ['\u{1f6b6}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f6b6}\u{1f3fb}\u200d\u2642'], - ['\u{1f6b6}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f6b6}\u{1f3fc}\u200d\u2642'], - ['\u{1f6b6}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f6b6}\u{1f3fd}\u200d\u2642'], - ['\u{1f6b6}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f6b6}\u{1f3fe}\u200d\u2642'], - ['\u{1f6b6}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f6b6}\u{1f3ff}\u200d\u2642'], - ['\u{1f6b6}\u200d\u2640\ufe0f'], - ['\u{1f6b6}\u200d\u2640'], - ['\u{1f6b6}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f6b6}\u{1f3fb}\u200d\u2640'], - ['\u{1f6b6}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f6b6}\u{1f3fc}\u200d\u2640'], - ['\u{1f6b6}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f6b6}\u{1f3fd}\u200d\u2640'], - ['\u{1f6b6}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f6b6}\u{1f3fe}\u200d\u2640'], - ['\u{1f6b6}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f6b6}\u{1f3ff}\u200d\u2640'], - ['\u{1f9cd}'], - ['\u{1f9cd}\u{1f3fb}'], - ['\u{1f9cd}\u{1f3fc}'], - ['\u{1f9cd}\u{1f3fd}'], - ['\u{1f9cd}\u{1f3fe}'], - ['\u{1f9cd}\u{1f3ff}'], - ['\u{1f9cd}\u200d\u2642\ufe0f'], - ['\u{1f9cd}\u200d\u2642'], - ['\u{1f9cd}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9cd}\u{1f3fb}\u200d\u2642'], - ['\u{1f9cd}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9cd}\u{1f3fc}\u200d\u2642'], - ['\u{1f9cd}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9cd}\u{1f3fd}\u200d\u2642'], - ['\u{1f9cd}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9cd}\u{1f3fe}\u200d\u2642'], - ['\u{1f9cd}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9cd}\u{1f3ff}\u200d\u2642'], - ['\u{1f9cd}\u200d\u2640\ufe0f'], - ['\u{1f9cd}\u200d\u2640'], - ['\u{1f9cd}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9cd}\u{1f3fb}\u200d\u2640'], - ['\u{1f9cd}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9cd}\u{1f3fc}\u200d\u2640'], - ['\u{1f9cd}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9cd}\u{1f3fd}\u200d\u2640'], - ['\u{1f9cd}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9cd}\u{1f3fe}\u200d\u2640'], - ['\u{1f9cd}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9cd}\u{1f3ff}\u200d\u2640'], - ['\u{1f9ce}'], - ['\u{1f9ce}\u{1f3fb}'], - ['\u{1f9ce}\u{1f3fc}'], - ['\u{1f9ce}\u{1f3fd}'], - ['\u{1f9ce}\u{1f3fe}'], - ['\u{1f9ce}\u{1f3ff}'], - ['\u{1f9ce}\u200d\u2642\ufe0f'], - ['\u{1f9ce}\u200d\u2642'], - ['\u{1f9ce}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9ce}\u{1f3fb}\u200d\u2642'], - ['\u{1f9ce}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9ce}\u{1f3fc}\u200d\u2642'], - ['\u{1f9ce}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9ce}\u{1f3fd}\u200d\u2642'], - ['\u{1f9ce}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9ce}\u{1f3fe}\u200d\u2642'], - ['\u{1f9ce}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9ce}\u{1f3ff}\u200d\u2642'], - ['\u{1f9ce}\u200d\u2640\ufe0f'], - ['\u{1f9ce}\u200d\u2640'], - ['\u{1f9ce}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9ce}\u{1f3fb}\u200d\u2640'], - ['\u{1f9ce}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9ce}\u{1f3fc}\u200d\u2640'], - ['\u{1f9ce}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9ce}\u{1f3fd}\u200d\u2640'], - ['\u{1f9ce}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9ce}\u{1f3fe}\u200d\u2640'], - ['\u{1f9ce}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9ce}\u{1f3ff}\u200d\u2640'], - ['\u{1f9d1}\u200d\u{1f9af}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9af}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9af}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9af}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9af}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9af}'], - ['\u{1f468}\u200d\u{1f9af}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9af}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9af}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9af}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9af}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9af}'], - ['\u{1f469}\u200d\u{1f9af}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9af}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9af}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9af}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9af}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9af}'], - ['\u{1f9d1}\u200d\u{1f9bc}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bc}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bc}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bc}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bc}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bc}'], - ['\u{1f468}\u200d\u{1f9bc}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9bc}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9bc}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9bc}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9bc}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9bc}'], - ['\u{1f469}\u200d\u{1f9bc}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9bc}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9bc}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9bc}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9bc}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9bc}'], - ['\u{1f9d1}\u200d\u{1f9bd}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bd}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bd}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bd}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bd}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bd}'], - ['\u{1f468}\u200d\u{1f9bd}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f9bd}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f9bd}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f9bd}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f9bd}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f9bd}'], - ['\u{1f469}\u200d\u{1f9bd}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f9bd}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f9bd}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f9bd}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f9bd}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f9bd}'], - ['\u{1f3c3}'], - ['\u{1f3c3}\u{1f3fb}'], - ['\u{1f3c3}\u{1f3fc}'], - ['\u{1f3c3}\u{1f3fd}'], - ['\u{1f3c3}\u{1f3fe}'], - ['\u{1f3c3}\u{1f3ff}'], - ['\u{1f3c3}\u200d\u2642\ufe0f'], - ['\u{1f3c3}\u200d\u2642'], - ['\u{1f3c3}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f3c3}\u{1f3fb}\u200d\u2642'], - ['\u{1f3c3}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f3c3}\u{1f3fc}\u200d\u2642'], - ['\u{1f3c3}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f3c3}\u{1f3fd}\u200d\u2642'], - ['\u{1f3c3}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f3c3}\u{1f3fe}\u200d\u2642'], - ['\u{1f3c3}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f3c3}\u{1f3ff}\u200d\u2642'], - ['\u{1f3c3}\u200d\u2640\ufe0f'], - ['\u{1f3c3}\u200d\u2640'], - ['\u{1f3c3}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f3c3}\u{1f3fb}\u200d\u2640'], - ['\u{1f3c3}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f3c3}\u{1f3fc}\u200d\u2640'], - ['\u{1f3c3}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f3c3}\u{1f3fd}\u200d\u2640'], - ['\u{1f3c3}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f3c3}\u{1f3fe}\u200d\u2640'], - ['\u{1f3c3}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f3c3}\u{1f3ff}\u200d\u2640'], - ['\u{1f483}'], - ['\u{1f483}\u{1f3fb}'], - ['\u{1f483}\u{1f3fc}'], - ['\u{1f483}\u{1f3fd}'], - ['\u{1f483}\u{1f3fe}'], - ['\u{1f483}\u{1f3ff}'], - ['\u{1f57a}'], - ['\u{1f57a}\u{1f3fb}'], - ['\u{1f57a}\u{1f3fc}'], - ['\u{1f57a}\u{1f3fd}'], - ['\u{1f57a}\u{1f3fe}'], - ['\u{1f57a}\u{1f3ff}'], - ['\u{1f574}\ufe0f'], - ['\u{1f574}'], - ['\u{1f574}\u{1f3fb}'], - ['\u{1f574}\u{1f3fc}'], - ['\u{1f574}\u{1f3fd}'], - ['\u{1f574}\u{1f3fe}'], - ['\u{1f574}\u{1f3ff}'], - ['\u{1f46f}'], - ['\u{1f46f}\u200d\u2642\ufe0f'], - ['\u{1f46f}\u200d\u2642'], - ['\u{1f46f}\u200d\u2640\ufe0f'], - ['\u{1f46f}\u200d\u2640'], - ['\u{1f9d6}'], - ['\u{1f9d6}\u{1f3fb}'], - ['\u{1f9d6}\u{1f3fc}'], - ['\u{1f9d6}\u{1f3fd}'], - ['\u{1f9d6}\u{1f3fe}'], - ['\u{1f9d6}\u{1f3ff}'], - ['\u{1f9d6}\u200d\u2642\ufe0f'], - ['\u{1f9d6}\u200d\u2642'], - ['\u{1f9d6}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9d6}\u{1f3fb}\u200d\u2642'], - ['\u{1f9d6}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9d6}\u{1f3fc}\u200d\u2642'], - ['\u{1f9d6}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9d6}\u{1f3fd}\u200d\u2642'], - ['\u{1f9d6}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9d6}\u{1f3fe}\u200d\u2642'], - ['\u{1f9d6}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9d6}\u{1f3ff}\u200d\u2642'], - ['\u{1f9d6}\u200d\u2640\ufe0f'], - ['\u{1f9d6}\u200d\u2640'], - ['\u{1f9d6}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9d6}\u{1f3fb}\u200d\u2640'], - ['\u{1f9d6}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9d6}\u{1f3fc}\u200d\u2640'], - ['\u{1f9d6}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9d6}\u{1f3fd}\u200d\u2640'], - ['\u{1f9d6}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9d6}\u{1f3fe}\u200d\u2640'], - ['\u{1f9d6}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9d6}\u{1f3ff}\u200d\u2640'], - ['\u{1f9d7}'], - ['\u{1f9d7}\u{1f3fb}'], - ['\u{1f9d7}\u{1f3fc}'], - ['\u{1f9d7}\u{1f3fd}'], - ['\u{1f9d7}\u{1f3fe}'], - ['\u{1f9d7}\u{1f3ff}'], - ['\u{1f9d7}\u200d\u2642\ufe0f'], - ['\u{1f9d7}\u200d\u2642'], - ['\u{1f9d7}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9d7}\u{1f3fb}\u200d\u2642'], - ['\u{1f9d7}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9d7}\u{1f3fc}\u200d\u2642'], - ['\u{1f9d7}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9d7}\u{1f3fd}\u200d\u2642'], - ['\u{1f9d7}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9d7}\u{1f3fe}\u200d\u2642'], - ['\u{1f9d7}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9d7}\u{1f3ff}\u200d\u2642'], - ['\u{1f9d7}\u200d\u2640\ufe0f'], - ['\u{1f9d7}\u200d\u2640'], - ['\u{1f9d7}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9d7}\u{1f3fb}\u200d\u2640'], - ['\u{1f9d7}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9d7}\u{1f3fc}\u200d\u2640'], - ['\u{1f9d7}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9d7}\u{1f3fd}\u200d\u2640'], - ['\u{1f9d7}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9d7}\u{1f3fe}\u200d\u2640'], - ['\u{1f9d7}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9d7}\u{1f3ff}\u200d\u2640'], - ['\u{1f93a}'], - ['\u{1f3c7}'], - ['\u{1f3c7}\u{1f3fb}'], - ['\u{1f3c7}\u{1f3fc}'], - ['\u{1f3c7}\u{1f3fd}'], - ['\u{1f3c7}\u{1f3fe}'], - ['\u{1f3c7}\u{1f3ff}'], - ['\u26f7\ufe0f'], - ['\u26f7'], - ['\u{1f3c2}'], - ['\u{1f3c2}\u{1f3fb}'], - ['\u{1f3c2}\u{1f3fc}'], - ['\u{1f3c2}\u{1f3fd}'], - ['\u{1f3c2}\u{1f3fe}'], - ['\u{1f3c2}\u{1f3ff}'], - ['\u{1f3cc}\ufe0f'], - ['\u{1f3cc}'], - ['\u{1f3cc}\u{1f3fb}'], - ['\u{1f3cc}\u{1f3fc}'], - ['\u{1f3cc}\u{1f3fd}'], - ['\u{1f3cc}\u{1f3fe}'], - ['\u{1f3cc}\u{1f3ff}'], - ['\u{1f3cc}\ufe0f\u200d\u2642\ufe0f'], - ['\u{1f3cc}\u200d\u2642\ufe0f'], - ['\u{1f3cc}\ufe0f\u200d\u2642'], - ['\u{1f3cc}\u200d\u2642'], - ['\u{1f3cc}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f3cc}\u{1f3fb}\u200d\u2642'], - ['\u{1f3cc}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f3cc}\u{1f3fc}\u200d\u2642'], - ['\u{1f3cc}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f3cc}\u{1f3fd}\u200d\u2642'], - ['\u{1f3cc}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f3cc}\u{1f3fe}\u200d\u2642'], - ['\u{1f3cc}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f3cc}\u{1f3ff}\u200d\u2642'], - ['\u{1f3cc}\ufe0f\u200d\u2640\ufe0f'], - ['\u{1f3cc}\u200d\u2640\ufe0f'], - ['\u{1f3cc}\ufe0f\u200d\u2640'], - ['\u{1f3cc}\u200d\u2640'], - ['\u{1f3cc}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f3cc}\u{1f3fb}\u200d\u2640'], - ['\u{1f3cc}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f3cc}\u{1f3fc}\u200d\u2640'], - ['\u{1f3cc}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f3cc}\u{1f3fd}\u200d\u2640'], - ['\u{1f3cc}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f3cc}\u{1f3fe}\u200d\u2640'], - ['\u{1f3cc}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f3cc}\u{1f3ff}\u200d\u2640'], - ['\u{1f3c4}'], - ['\u{1f3c4}\u{1f3fb}'], - ['\u{1f3c4}\u{1f3fc}'], - ['\u{1f3c4}\u{1f3fd}'], - ['\u{1f3c4}\u{1f3fe}'], - ['\u{1f3c4}\u{1f3ff}'], - ['\u{1f3c4}\u200d\u2642\ufe0f'], - ['\u{1f3c4}\u200d\u2642'], - ['\u{1f3c4}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f3c4}\u{1f3fb}\u200d\u2642'], - ['\u{1f3c4}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f3c4}\u{1f3fc}\u200d\u2642'], - ['\u{1f3c4}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f3c4}\u{1f3fd}\u200d\u2642'], - ['\u{1f3c4}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f3c4}\u{1f3fe}\u200d\u2642'], - ['\u{1f3c4}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f3c4}\u{1f3ff}\u200d\u2642'], - ['\u{1f3c4}\u200d\u2640\ufe0f'], - ['\u{1f3c4}\u200d\u2640'], - ['\u{1f3c4}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f3c4}\u{1f3fb}\u200d\u2640'], - ['\u{1f3c4}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f3c4}\u{1f3fc}\u200d\u2640'], - ['\u{1f3c4}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f3c4}\u{1f3fd}\u200d\u2640'], - ['\u{1f3c4}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f3c4}\u{1f3fe}\u200d\u2640'], - ['\u{1f3c4}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f3c4}\u{1f3ff}\u200d\u2640'], - ['\u{1f6a3}'], - ['\u{1f6a3}\u{1f3fb}'], - ['\u{1f6a3}\u{1f3fc}'], - ['\u{1f6a3}\u{1f3fd}'], - ['\u{1f6a3}\u{1f3fe}'], - ['\u{1f6a3}\u{1f3ff}'], - ['\u{1f6a3}\u200d\u2642\ufe0f'], - ['\u{1f6a3}\u200d\u2642'], - ['\u{1f6a3}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f6a3}\u{1f3fb}\u200d\u2642'], - ['\u{1f6a3}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f6a3}\u{1f3fc}\u200d\u2642'], - ['\u{1f6a3}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f6a3}\u{1f3fd}\u200d\u2642'], - ['\u{1f6a3}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f6a3}\u{1f3fe}\u200d\u2642'], - ['\u{1f6a3}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f6a3}\u{1f3ff}\u200d\u2642'], - ['\u{1f6a3}\u200d\u2640\ufe0f'], - ['\u{1f6a3}\u200d\u2640'], - ['\u{1f6a3}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f6a3}\u{1f3fb}\u200d\u2640'], - ['\u{1f6a3}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f6a3}\u{1f3fc}\u200d\u2640'], - ['\u{1f6a3}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f6a3}\u{1f3fd}\u200d\u2640'], - ['\u{1f6a3}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f6a3}\u{1f3fe}\u200d\u2640'], - ['\u{1f6a3}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f6a3}\u{1f3ff}\u200d\u2640'], - ['\u{1f3ca}'], - ['\u{1f3ca}\u{1f3fb}'], - ['\u{1f3ca}\u{1f3fc}'], - ['\u{1f3ca}\u{1f3fd}'], - ['\u{1f3ca}\u{1f3fe}'], - ['\u{1f3ca}\u{1f3ff}'], - ['\u{1f3ca}\u200d\u2642\ufe0f'], - ['\u{1f3ca}\u200d\u2642'], - ['\u{1f3ca}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f3ca}\u{1f3fb}\u200d\u2642'], - ['\u{1f3ca}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f3ca}\u{1f3fc}\u200d\u2642'], - ['\u{1f3ca}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f3ca}\u{1f3fd}\u200d\u2642'], - ['\u{1f3ca}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f3ca}\u{1f3fe}\u200d\u2642'], - ['\u{1f3ca}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f3ca}\u{1f3ff}\u200d\u2642'], - ['\u{1f3ca}\u200d\u2640\ufe0f'], - ['\u{1f3ca}\u200d\u2640'], - ['\u{1f3ca}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f3ca}\u{1f3fb}\u200d\u2640'], - ['\u{1f3ca}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f3ca}\u{1f3fc}\u200d\u2640'], - ['\u{1f3ca}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f3ca}\u{1f3fd}\u200d\u2640'], - ['\u{1f3ca}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f3ca}\u{1f3fe}\u200d\u2640'], - ['\u{1f3ca}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f3ca}\u{1f3ff}\u200d\u2640'], - ['\u26f9\ufe0f'], - ['\u26f9'], - ['\u26f9\u{1f3fb}'], - ['\u26f9\u{1f3fc}'], - ['\u26f9\u{1f3fd}'], - ['\u26f9\u{1f3fe}'], - ['\u26f9\u{1f3ff}'], - ['\u26f9\ufe0f\u200d\u2642\ufe0f'], - ['\u26f9\u200d\u2642\ufe0f'], - ['\u26f9\ufe0f\u200d\u2642'], - ['\u26f9\u200d\u2642'], - ['\u26f9\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u26f9\u{1f3fb}\u200d\u2642'], - ['\u26f9\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u26f9\u{1f3fc}\u200d\u2642'], - ['\u26f9\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u26f9\u{1f3fd}\u200d\u2642'], - ['\u26f9\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u26f9\u{1f3fe}\u200d\u2642'], - ['\u26f9\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u26f9\u{1f3ff}\u200d\u2642'], - ['\u26f9\ufe0f\u200d\u2640\ufe0f'], - ['\u26f9\u200d\u2640\ufe0f'], - ['\u26f9\ufe0f\u200d\u2640'], - ['\u26f9\u200d\u2640'], - ['\u26f9\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u26f9\u{1f3fb}\u200d\u2640'], - ['\u26f9\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u26f9\u{1f3fc}\u200d\u2640'], - ['\u26f9\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u26f9\u{1f3fd}\u200d\u2640'], - ['\u26f9\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u26f9\u{1f3fe}\u200d\u2640'], - ['\u26f9\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u26f9\u{1f3ff}\u200d\u2640'], - ['\u{1f3cb}\ufe0f'], - ['\u{1f3cb}'], - ['\u{1f3cb}\u{1f3fb}'], - ['\u{1f3cb}\u{1f3fc}'], - ['\u{1f3cb}\u{1f3fd}'], - ['\u{1f3cb}\u{1f3fe}'], - ['\u{1f3cb}\u{1f3ff}'], - ['\u{1f3cb}\ufe0f\u200d\u2642\ufe0f'], - ['\u{1f3cb}\u200d\u2642\ufe0f'], - ['\u{1f3cb}\ufe0f\u200d\u2642'], - ['\u{1f3cb}\u200d\u2642'], - ['\u{1f3cb}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f3cb}\u{1f3fb}\u200d\u2642'], - ['\u{1f3cb}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f3cb}\u{1f3fc}\u200d\u2642'], - ['\u{1f3cb}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f3cb}\u{1f3fd}\u200d\u2642'], - ['\u{1f3cb}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f3cb}\u{1f3fe}\u200d\u2642'], - ['\u{1f3cb}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f3cb}\u{1f3ff}\u200d\u2642'], - ['\u{1f3cb}\ufe0f\u200d\u2640\ufe0f'], - ['\u{1f3cb}\u200d\u2640\ufe0f'], - ['\u{1f3cb}\ufe0f\u200d\u2640'], - ['\u{1f3cb}\u200d\u2640'], - ['\u{1f3cb}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f3cb}\u{1f3fb}\u200d\u2640'], - ['\u{1f3cb}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f3cb}\u{1f3fc}\u200d\u2640'], - ['\u{1f3cb}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f3cb}\u{1f3fd}\u200d\u2640'], - ['\u{1f3cb}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f3cb}\u{1f3fe}\u200d\u2640'], - ['\u{1f3cb}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f3cb}\u{1f3ff}\u200d\u2640'], - ['\u{1f6b4}'], - ['\u{1f6b4}\u{1f3fb}'], - ['\u{1f6b4}\u{1f3fc}'], - ['\u{1f6b4}\u{1f3fd}'], - ['\u{1f6b4}\u{1f3fe}'], - ['\u{1f6b4}\u{1f3ff}'], - ['\u{1f6b4}\u200d\u2642\ufe0f'], - ['\u{1f6b4}\u200d\u2642'], - ['\u{1f6b4}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f6b4}\u{1f3fb}\u200d\u2642'], - ['\u{1f6b4}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f6b4}\u{1f3fc}\u200d\u2642'], - ['\u{1f6b4}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f6b4}\u{1f3fd}\u200d\u2642'], - ['\u{1f6b4}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f6b4}\u{1f3fe}\u200d\u2642'], - ['\u{1f6b4}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f6b4}\u{1f3ff}\u200d\u2642'], - ['\u{1f6b4}\u200d\u2640\ufe0f'], - ['\u{1f6b4}\u200d\u2640'], - ['\u{1f6b4}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f6b4}\u{1f3fb}\u200d\u2640'], - ['\u{1f6b4}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f6b4}\u{1f3fc}\u200d\u2640'], - ['\u{1f6b4}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f6b4}\u{1f3fd}\u200d\u2640'], - ['\u{1f6b4}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f6b4}\u{1f3fe}\u200d\u2640'], - ['\u{1f6b4}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f6b4}\u{1f3ff}\u200d\u2640'], - ['\u{1f6b5}'], - ['\u{1f6b5}\u{1f3fb}'], - ['\u{1f6b5}\u{1f3fc}'], - ['\u{1f6b5}\u{1f3fd}'], - ['\u{1f6b5}\u{1f3fe}'], - ['\u{1f6b5}\u{1f3ff}'], - ['\u{1f6b5}\u200d\u2642\ufe0f'], - ['\u{1f6b5}\u200d\u2642'], - ['\u{1f6b5}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f6b5}\u{1f3fb}\u200d\u2642'], - ['\u{1f6b5}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f6b5}\u{1f3fc}\u200d\u2642'], - ['\u{1f6b5}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f6b5}\u{1f3fd}\u200d\u2642'], - ['\u{1f6b5}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f6b5}\u{1f3fe}\u200d\u2642'], - ['\u{1f6b5}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f6b5}\u{1f3ff}\u200d\u2642'], - ['\u{1f6b5}\u200d\u2640\ufe0f'], - ['\u{1f6b5}\u200d\u2640'], - ['\u{1f6b5}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f6b5}\u{1f3fb}\u200d\u2640'], - ['\u{1f6b5}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f6b5}\u{1f3fc}\u200d\u2640'], - ['\u{1f6b5}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f6b5}\u{1f3fd}\u200d\u2640'], - ['\u{1f6b5}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f6b5}\u{1f3fe}\u200d\u2640'], - ['\u{1f6b5}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f6b5}\u{1f3ff}\u200d\u2640'], - ['\u{1f938}'], - ['\u{1f938}\u{1f3fb}'], - ['\u{1f938}\u{1f3fc}'], - ['\u{1f938}\u{1f3fd}'], - ['\u{1f938}\u{1f3fe}'], - ['\u{1f938}\u{1f3ff}'], - ['\u{1f938}\u200d\u2642\ufe0f'], - ['\u{1f938}\u200d\u2642'], - ['\u{1f938}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f938}\u{1f3fb}\u200d\u2642'], - ['\u{1f938}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f938}\u{1f3fc}\u200d\u2642'], - ['\u{1f938}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f938}\u{1f3fd}\u200d\u2642'], - ['\u{1f938}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f938}\u{1f3fe}\u200d\u2642'], - ['\u{1f938}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f938}\u{1f3ff}\u200d\u2642'], - ['\u{1f938}\u200d\u2640\ufe0f'], - ['\u{1f938}\u200d\u2640'], - ['\u{1f938}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f938}\u{1f3fb}\u200d\u2640'], - ['\u{1f938}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f938}\u{1f3fc}\u200d\u2640'], - ['\u{1f938}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f938}\u{1f3fd}\u200d\u2640'], - ['\u{1f938}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f938}\u{1f3fe}\u200d\u2640'], - ['\u{1f938}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f938}\u{1f3ff}\u200d\u2640'], - ['\u{1f93c}'], - ['\u{1f93c}\u200d\u2642\ufe0f'], - ['\u{1f93c}\u200d\u2642'], - ['\u{1f93c}\u200d\u2640\ufe0f'], - ['\u{1f93c}\u200d\u2640'], - ['\u{1f93d}'], - ['\u{1f93d}\u{1f3fb}'], - ['\u{1f93d}\u{1f3fc}'], - ['\u{1f93d}\u{1f3fd}'], - ['\u{1f93d}\u{1f3fe}'], - ['\u{1f93d}\u{1f3ff}'], - ['\u{1f93d}\u200d\u2642\ufe0f'], - ['\u{1f93d}\u200d\u2642'], - ['\u{1f93d}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f93d}\u{1f3fb}\u200d\u2642'], - ['\u{1f93d}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f93d}\u{1f3fc}\u200d\u2642'], - ['\u{1f93d}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f93d}\u{1f3fd}\u200d\u2642'], - ['\u{1f93d}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f93d}\u{1f3fe}\u200d\u2642'], - ['\u{1f93d}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f93d}\u{1f3ff}\u200d\u2642'], - ['\u{1f93d}\u200d\u2640\ufe0f'], - ['\u{1f93d}\u200d\u2640'], - ['\u{1f93d}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f93d}\u{1f3fb}\u200d\u2640'], - ['\u{1f93d}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f93d}\u{1f3fc}\u200d\u2640'], - ['\u{1f93d}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f93d}\u{1f3fd}\u200d\u2640'], - ['\u{1f93d}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f93d}\u{1f3fe}\u200d\u2640'], - ['\u{1f93d}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f93d}\u{1f3ff}\u200d\u2640'], - ['\u{1f93e}'], - ['\u{1f93e}\u{1f3fb}'], - ['\u{1f93e}\u{1f3fc}'], - ['\u{1f93e}\u{1f3fd}'], - ['\u{1f93e}\u{1f3fe}'], - ['\u{1f93e}\u{1f3ff}'], - ['\u{1f93e}\u200d\u2642\ufe0f'], - ['\u{1f93e}\u200d\u2642'], - ['\u{1f93e}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f93e}\u{1f3fb}\u200d\u2642'], - ['\u{1f93e}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f93e}\u{1f3fc}\u200d\u2642'], - ['\u{1f93e}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f93e}\u{1f3fd}\u200d\u2642'], - ['\u{1f93e}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f93e}\u{1f3fe}\u200d\u2642'], - ['\u{1f93e}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f93e}\u{1f3ff}\u200d\u2642'], - ['\u{1f93e}\u200d\u2640\ufe0f'], - ['\u{1f93e}\u200d\u2640'], - ['\u{1f93e}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f93e}\u{1f3fb}\u200d\u2640'], - ['\u{1f93e}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f93e}\u{1f3fc}\u200d\u2640'], - ['\u{1f93e}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f93e}\u{1f3fd}\u200d\u2640'], - ['\u{1f93e}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f93e}\u{1f3fe}\u200d\u2640'], - ['\u{1f93e}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f93e}\u{1f3ff}\u200d\u2640'], - ['\u{1f939}'], - ['\u{1f939}\u{1f3fb}'], - ['\u{1f939}\u{1f3fc}'], - ['\u{1f939}\u{1f3fd}'], - ['\u{1f939}\u{1f3fe}'], - ['\u{1f939}\u{1f3ff}'], - ['\u{1f939}\u200d\u2642\ufe0f'], - ['\u{1f939}\u200d\u2642'], - ['\u{1f939}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f939}\u{1f3fb}\u200d\u2642'], - ['\u{1f939}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f939}\u{1f3fc}\u200d\u2642'], - ['\u{1f939}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f939}\u{1f3fd}\u200d\u2642'], - ['\u{1f939}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f939}\u{1f3fe}\u200d\u2642'], - ['\u{1f939}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f939}\u{1f3ff}\u200d\u2642'], - ['\u{1f939}\u200d\u2640\ufe0f'], - ['\u{1f939}\u200d\u2640'], - ['\u{1f939}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f939}\u{1f3fb}\u200d\u2640'], - ['\u{1f939}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f939}\u{1f3fc}\u200d\u2640'], - ['\u{1f939}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f939}\u{1f3fd}\u200d\u2640'], - ['\u{1f939}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f939}\u{1f3fe}\u200d\u2640'], - ['\u{1f939}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f939}\u{1f3ff}\u200d\u2640'], - ['\u{1f9d8}'], - ['\u{1f9d8}\u{1f3fb}'], - ['\u{1f9d8}\u{1f3fc}'], - ['\u{1f9d8}\u{1f3fd}'], - ['\u{1f9d8}\u{1f3fe}'], - ['\u{1f9d8}\u{1f3ff}'], - ['\u{1f9d8}\u200d\u2642\ufe0f'], - ['\u{1f9d8}\u200d\u2642'], - ['\u{1f9d8}\u{1f3fb}\u200d\u2642\ufe0f'], - ['\u{1f9d8}\u{1f3fb}\u200d\u2642'], - ['\u{1f9d8}\u{1f3fc}\u200d\u2642\ufe0f'], - ['\u{1f9d8}\u{1f3fc}\u200d\u2642'], - ['\u{1f9d8}\u{1f3fd}\u200d\u2642\ufe0f'], - ['\u{1f9d8}\u{1f3fd}\u200d\u2642'], - ['\u{1f9d8}\u{1f3fe}\u200d\u2642\ufe0f'], - ['\u{1f9d8}\u{1f3fe}\u200d\u2642'], - ['\u{1f9d8}\u{1f3ff}\u200d\u2642\ufe0f'], - ['\u{1f9d8}\u{1f3ff}\u200d\u2642'], - ['\u{1f9d8}\u200d\u2640\ufe0f'], - ['\u{1f9d8}\u200d\u2640'], - ['\u{1f9d8}\u{1f3fb}\u200d\u2640\ufe0f'], - ['\u{1f9d8}\u{1f3fb}\u200d\u2640'], - ['\u{1f9d8}\u{1f3fc}\u200d\u2640\ufe0f'], - ['\u{1f9d8}\u{1f3fc}\u200d\u2640'], - ['\u{1f9d8}\u{1f3fd}\u200d\u2640\ufe0f'], - ['\u{1f9d8}\u{1f3fd}\u200d\u2640'], - ['\u{1f9d8}\u{1f3fe}\u200d\u2640\ufe0f'], - ['\u{1f9d8}\u{1f3fe}\u200d\u2640'], - ['\u{1f9d8}\u{1f3ff}\u200d\u2640\ufe0f'], - ['\u{1f9d8}\u{1f3ff}\u200d\u2640'], - ['\u{1f6c0}'], - ['\u{1f6c0}\u{1f3fb}'], - ['\u{1f6c0}\u{1f3fc}'], - ['\u{1f6c0}\u{1f3fd}'], - ['\u{1f6c0}\u{1f3fe}'], - ['\u{1f6c0}\u{1f3ff}'], - ['\u{1f6cc}'], - ['\u{1f6cc}\u{1f3fb}'], - ['\u{1f6cc}\u{1f3fc}'], - ['\u{1f6cc}\u{1f3fd}'], - ['\u{1f6cc}\u{1f3fe}'], - ['\u{1f6cc}\u{1f3ff}'], - ['\u{1f9d1}\u200d\u{1f91d}\u200d\u{1f9d1}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f46d}'], - ['\u{1f46d}\u{1f3fb}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f46d}\u{1f3fc}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f46d}\u{1f3fd}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f46d}\u{1f3fe}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f46d}\u{1f3ff}'], - ['\u{1f46b}'], - ['\u{1f46b}\u{1f3fb}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f46b}\u{1f3fc}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f46b}\u{1f3fd}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f46b}\u{1f3fe}'], - ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f46b}\u{1f3ff}'], - ['\u{1f46c}'], - ['\u{1f46c}\u{1f3fb}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f46c}\u{1f3fc}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f46c}\u{1f3fd}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f46c}\u{1f3fe}'], - ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f46c}\u{1f3ff}'], - ['\u{1f48f}'], - ['\u{1f48f}\u{1f3fb}'], - ['\u{1f48f}\u{1f3fc}'], - ['\u{1f48f}\u{1f3fd}'], - ['\u{1f48f}\u{1f3fe}'], - ['\u{1f48f}\u{1f3ff}'], - [ - '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' - ], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], - [ - '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' - ], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], - [ - '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' - ], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], - [ - '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' - ], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], - [ - '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' - ], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], - [ - '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' - ], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], - [ - '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' - ], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], - [ - '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' - ], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], - [ - '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' - ], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], - [ - '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' - ], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], - [ - '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' - ], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], - [ - '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' - ], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], - [ - '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' - ], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], - [ - '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' - ], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], - [ - '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' - ], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], - [ - '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' - ], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], - [ - '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' - ], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], - [ - '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' - ], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], - [ - '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' - ], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], - [ - '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' - ], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}'], - ['\u{1f469}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}'], - ['\u{1f468}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}'], - [ - '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - [ - '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' - ], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], - [ - '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' - ], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], - [ - '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' - ], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], - [ - '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' - ], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], - [ - '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' - ], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}'], - ['\u{1f469}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], - [ - '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' - ], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f491}'], - ['\u{1f491}\u{1f3fb}'], - ['\u{1f491}\u{1f3fc}'], - ['\u{1f491}\u{1f3fd}'], - ['\u{1f491}\u{1f3fe}'], - ['\u{1f491}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], - ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f468}'], - ['\u{1f469}\u200d\u2764\u200d\u{1f468}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f468}'], - ['\u{1f468}\u200d\u2764\u200d\u{1f468}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], - ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f469}'], - ['\u{1f469}\u200d\u2764\u200d\u{1f469}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], - ['\u{1f46a}'], - ['\u{1f468}\u200d\u{1f469}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f469}\u200d\u{1f467}'], - ['\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}'], - ['\u{1f468}\u200d\u{1f468}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f468}\u200d\u{1f467}'], - ['\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f468}\u200d\u{1f466}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f467}'], - ['\u{1f469}\u200d\u{1f469}\u200d\u{1f466}'], - ['\u{1f469}\u200d\u{1f469}\u200d\u{1f467}'], - ['\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}'], - ['\u{1f469}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}'], - ['\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}'], - ['\u{1f468}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f466}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f467}'], - ['\u{1f468}\u200d\u{1f467}\u200d\u{1f466}'], - ['\u{1f468}\u200d\u{1f467}\u200d\u{1f467}'], - ['\u{1f469}\u200d\u{1f466}'], - ['\u{1f469}\u200d\u{1f466}\u200d\u{1f466}'], - ['\u{1f469}\u200d\u{1f467}'], - ['\u{1f469}\u200d\u{1f467}\u200d\u{1f466}'], - ['\u{1f469}\u200d\u{1f467}\u200d\u{1f467}'], - ['\u{1f5e3}\ufe0f'], - ['\u{1f5e3}'], - ['\u{1f464}'], - ['\u{1f465}'], - ['\u{1fac2}'], - ['\u{1f463}'], - ['\u{1f3fb}'], - ['\u{1f3fc}'], - ['\u{1f3fd}'], - ['\u{1f3fe}'], - ['\u{1f3ff}'], - ['\u{1f9b0}'], - ['\u{1f9b1}'], - ['\u{1f9b3}'], - ['\u{1f9b2}'], - ['\u{1f435}'], - ['\u{1f412}'], - ['\u{1f98d}'], - ['\u{1f9a7}'], - ['\u{1f436}'], - ['\u{1f415}'], - ['\u{1f9ae}'], - ['\u{1f415}\u200d\u{1f9ba}'], - ['\u{1f429}'], - ['\u{1f43a}'], - ['\u{1f98a}'], - ['\u{1f99d}'], - ['\u{1f431}'], - ['\u{1f408}'], - ['\u{1f408}\u200d\u2b1b'], - ['\u{1f981}'], - ['\u{1f42f}'], - ['\u{1f405}'], - ['\u{1f406}'], - ['\u{1f434}'], - ['\u{1face}'], - ['\u{1facf}'], - ['\u{1f40e}'], - ['\u{1f984}'], - ['\u{1f993}'], - ['\u{1f98c}'], - ['\u{1f9ac}'], - ['\u{1f42e}'], - ['\u{1f402}'], - ['\u{1f403}'], - ['\u{1f404}'], - ['\u{1f437}'], - ['\u{1f416}'], - ['\u{1f417}'], - ['\u{1f43d}'], - ['\u{1f40f}'], - ['\u{1f411}'], - ['\u{1f410}'], - ['\u{1f42a}'], - ['\u{1f42b}'], - ['\u{1f999}'], - ['\u{1f992}'], - ['\u{1f418}'], - ['\u{1f9a3}'], - ['\u{1f98f}'], - ['\u{1f99b}'], - ['\u{1f42d}'], - ['\u{1f401}'], - ['\u{1f400}'], - ['\u{1f439}'], - ['\u{1f430}'], - ['\u{1f407}'], - ['\u{1f43f}\ufe0f'], - ['\u{1f43f}'], - ['\u{1f9ab}'], - ['\u{1f994}'], - ['\u{1f987}'], - ['\u{1f43b}'], - ['\u{1f43b}\u200d\u2744\ufe0f'], - ['\u{1f43b}\u200d\u2744'], - ['\u{1f428}'], - ['\u{1f43c}'], - ['\u{1f9a5}'], - ['\u{1f9a6}'], - ['\u{1f9a8}'], - ['\u{1f998}'], - ['\u{1f9a1}'], - ['\u{1f43e}'], - ['\u{1f983}'], - ['\u{1f414}'], - ['\u{1f413}'], - ['\u{1f423}'], - ['\u{1f424}'], - ['\u{1f425}'], - ['\u{1f426}'], - ['\u{1f427}'], - ['\u{1f54a}\ufe0f'], - ['\u{1f54a}'], - ['\u{1f985}'], - ['\u{1f986}'], - ['\u{1f9a2}'], - ['\u{1f989}'], - ['\u{1f9a4}'], - ['\u{1fab6}'], - ['\u{1f9a9}'], - ['\u{1f99a}'], - ['\u{1f99c}'], - ['\u{1fabd}'], - ['\u{1f426}\u200d\u2b1b'], - ['\u{1fabf}'], - ['\u{1f438}'], - ['\u{1f40a}'], - ['\u{1f422}'], - ['\u{1f98e}'], - ['\u{1f40d}'], - ['\u{1f432}'], - ['\u{1f409}'], - ['\u{1f995}'], - ['\u{1f996}'], - ['\u{1f433}'], - ['\u{1f40b}'], - ['\u{1f42c}'], - ['\u{1f9ad}'], - ['\u{1f41f}'], - ['\u{1f420}'], - ['\u{1f421}'], - ['\u{1f988}'], - ['\u{1f419}'], - ['\u{1f41a}'], - ['\u{1fab8}'], - ['\u{1fabc}'], - ['\u{1f40c}'], - ['\u{1f98b}'], - ['\u{1f41b}'], - ['\u{1f41c}'], - ['\u{1f41d}'], - ['\u{1fab2}'], - ['\u{1f41e}'], - ['\u{1f997}'], - ['\u{1fab3}'], - ['\u{1f577}\ufe0f'], - ['\u{1f577}'], - ['\u{1f578}\ufe0f'], - ['\u{1f578}'], - ['\u{1f982}'], - ['\u{1f99f}'], - ['\u{1fab0}'], - ['\u{1fab1}'], - ['\u{1f9a0}'], - ['\u{1f490}'], - ['\u{1f338}'], - ['\u{1f4ae}'], - ['\u{1fab7}'], - ['\u{1f3f5}\ufe0f'], - ['\u{1f3f5}'], - ['\u{1f339}'], - ['\u{1f940}'], - ['\u{1f33a}'], - ['\u{1f33b}'], - ['\u{1f33c}'], - ['\u{1f337}'], - ['\u{1fabb}'], - ['\u{1f331}'], - ['\u{1fab4}'], - ['\u{1f332}'], - ['\u{1f333}'], - ['\u{1f334}'], - ['\u{1f335}'], - ['\u{1f33e}'], - ['\u{1f33f}'], - ['\u2618\ufe0f'], - ['\u2618'], - ['\u{1f340}'], - ['\u{1f341}'], - ['\u{1f342}'], - ['\u{1f343}'], - ['\u{1fab9}'], - ['\u{1faba}'], - ['\u{1f344}'], - ['\u{1f347}'], - ['\u{1f348}'], - ['\u{1f349}'], - ['\u{1f34a}'], - ['\u{1f34b}'], - ['\u{1f34c}'], - ['\u{1f34d}'], - ['\u{1f96d}'], - ['\u{1f34e}'], - ['\u{1f34f}'], - ['\u{1f350}'], - ['\u{1f351}'], - ['\u{1f352}'], - ['\u{1f353}'], - ['\u{1fad0}'], - ['\u{1f95d}'], - ['\u{1f345}'], - ['\u{1fad2}'], - ['\u{1f965}'], - ['\u{1f951}'], - ['\u{1f346}'], - ['\u{1f954}'], - ['\u{1f955}'], - ['\u{1f33d}'], - ['\u{1f336}\ufe0f'], - ['\u{1f336}'], - ['\u{1fad1}'], - ['\u{1f952}'], - ['\u{1f96c}'], - ['\u{1f966}'], - ['\u{1f9c4}'], - ['\u{1f9c5}'], - ['\u{1f95c}'], - ['\u{1fad8}'], - ['\u{1f330}'], - ['\u{1fada}'], - ['\u{1fadb}'], - ['\u{1f35e}'], - ['\u{1f950}'], - ['\u{1f956}'], - ['\u{1fad3}'], - ['\u{1f968}'], - ['\u{1f96f}'], - ['\u{1f95e}'], - ['\u{1f9c7}'], - ['\u{1f9c0}'], - ['\u{1f356}'], - ['\u{1f357}'], - ['\u{1f969}'], - ['\u{1f953}'], - ['\u{1f354}'], - ['\u{1f35f}'], - ['\u{1f355}'], - ['\u{1f32d}'], - ['\u{1f96a}'], - ['\u{1f32e}'], - ['\u{1f32f}'], - ['\u{1fad4}'], - ['\u{1f959}'], - ['\u{1f9c6}'], - ['\u{1f95a}'], - ['\u{1f373}'], - ['\u{1f958}'], - ['\u{1f372}'], - ['\u{1fad5}'], - ['\u{1f963}'], - ['\u{1f957}'], - ['\u{1f37f}'], - ['\u{1f9c8}'], - ['\u{1f9c2}'], - ['\u{1f96b}'], - ['\u{1f371}'], - ['\u{1f358}'], - ['\u{1f359}'], - ['\u{1f35a}'], - ['\u{1f35b}'], - ['\u{1f35c}'], - ['\u{1f35d}'], - ['\u{1f360}'], - ['\u{1f362}'], - ['\u{1f363}'], - ['\u{1f364}'], - ['\u{1f365}'], - ['\u{1f96e}'], - ['\u{1f361}'], - ['\u{1f95f}'], - ['\u{1f960}'], - ['\u{1f961}'], - ['\u{1f980}'], - ['\u{1f99e}'], - ['\u{1f990}'], - ['\u{1f991}'], - ['\u{1f9aa}'], - ['\u{1f366}'], - ['\u{1f367}'], - ['\u{1f368}'], - ['\u{1f369}'], - ['\u{1f36a}'], - ['\u{1f382}'], - ['\u{1f370}'], - ['\u{1f9c1}'], - ['\u{1f967}'], - ['\u{1f36b}'], - ['\u{1f36c}'], - ['\u{1f36d}'], - ['\u{1f36e}'], - ['\u{1f36f}'], - ['\u{1f37c}'], - ['\u{1f95b}'], - ['\u2615'], - ['\u{1fad6}'], - ['\u{1f375}'], - ['\u{1f376}'], - ['\u{1f37e}'], - ['\u{1f377}'], - ['\u{1f378}'], - ['\u{1f379}'], - ['\u{1f37a}'], - ['\u{1f37b}'], - ['\u{1f942}'], - ['\u{1f943}'], - ['\u{1fad7}'], - ['\u{1f964}'], - ['\u{1f9cb}'], - ['\u{1f9c3}'], - ['\u{1f9c9}'], - ['\u{1f9ca}'], - ['\u{1f962}'], - ['\u{1f37d}\ufe0f'], - ['\u{1f37d}'], - ['\u{1f374}'], - ['\u{1f944}'], - ['\u{1f52a}'], - ['\u{1fad9}'], - ['\u{1f3fa}'], - ['\u{1f30d}'], - ['\u{1f30e}'], - ['\u{1f30f}'], - ['\u{1f310}'], - ['\u{1f5fa}\ufe0f'], - ['\u{1f5fa}'], - ['\u{1f5fe}'], - ['\u{1f9ed}'], - ['\u{1f3d4}\ufe0f'], - ['\u{1f3d4}'], - ['\u26f0\ufe0f'], - ['\u26f0'], - ['\u{1f30b}'], - ['\u{1f5fb}'], - ['\u{1f3d5}\ufe0f'], - ['\u{1f3d5}'], - ['\u{1f3d6}\ufe0f'], - ['\u{1f3d6}'], - ['\u{1f3dc}\ufe0f'], - ['\u{1f3dc}'], - ['\u{1f3dd}\ufe0f'], - ['\u{1f3dd}'], - ['\u{1f3de}\ufe0f'], - ['\u{1f3de}'], - ['\u{1f3df}\ufe0f'], - ['\u{1f3df}'], - ['\u{1f3db}\ufe0f'], - ['\u{1f3db}'], - ['\u{1f3d7}\ufe0f'], - ['\u{1f3d7}'], - ['\u{1f9f1}'], - ['\u{1faa8}'], - ['\u{1fab5}'], - ['\u{1f6d6}'], - ['\u{1f3d8}\ufe0f'], - ['\u{1f3d8}'], - ['\u{1f3da}\ufe0f'], - ['\u{1f3da}'], - ['\u{1f3e0}'], - ['\u{1f3e1}'], - ['\u{1f3e2}'], - ['\u{1f3e3}'], - ['\u{1f3e4}'], - ['\u{1f3e5}'], - ['\u{1f3e6}'], - ['\u{1f3e8}'], - ['\u{1f3e9}'], - ['\u{1f3ea}'], - ['\u{1f3eb}'], - ['\u{1f3ec}'], - ['\u{1f3ed}'], - ['\u{1f3ef}'], - ['\u{1f3f0}'], - ['\u{1f492}'], - ['\u{1f5fc}'], - ['\u{1f5fd}'], - ['\u26ea'], - ['\u{1f54c}'], - ['\u{1f6d5}'], - ['\u{1f54d}'], - ['\u26e9\ufe0f'], - ['\u26e9'], - ['\u{1f54b}'], - ['\u26f2'], - ['\u26fa'], - ['\u{1f301}'], - ['\u{1f303}'], - ['\u{1f3d9}\ufe0f'], - ['\u{1f3d9}'], - ['\u{1f304}'], - ['\u{1f305}'], - ['\u{1f306}'], - ['\u{1f307}'], - ['\u{1f309}'], - ['\u2668\ufe0f'], - ['\u2668'], - ['\u{1f3a0}'], - ['\u{1f6dd}'], - ['\u{1f3a1}'], - ['\u{1f3a2}'], - ['\u{1f488}'], - ['\u{1f3aa}'], - ['\u{1f682}'], - ['\u{1f683}'], - ['\u{1f684}'], - ['\u{1f685}'], - ['\u{1f686}'], - ['\u{1f687}'], - ['\u{1f688}'], - ['\u{1f689}'], - ['\u{1f68a}'], - ['\u{1f69d}'], - ['\u{1f69e}'], - ['\u{1f68b}'], - ['\u{1f68c}'], - ['\u{1f68d}'], - ['\u{1f68e}'], - ['\u{1f690}'], - ['\u{1f691}'], - ['\u{1f692}'], - ['\u{1f693}'], - ['\u{1f694}'], - ['\u{1f695}'], - ['\u{1f696}'], - ['\u{1f697}'], - ['\u{1f698}'], - ['\u{1f699}'], - ['\u{1f6fb}'], - ['\u{1f69a}'], - ['\u{1f69b}'], - ['\u{1f69c}'], - ['\u{1f3ce}\ufe0f'], - ['\u{1f3ce}'], - ['\u{1f3cd}\ufe0f'], - ['\u{1f3cd}'], - ['\u{1f6f5}'], - ['\u{1f9bd}'], - ['\u{1f9bc}'], - ['\u{1f6fa}'], - ['\u{1f6b2}'], - ['\u{1f6f4}'], - ['\u{1f6f9}'], - ['\u{1f6fc}'], - ['\u{1f68f}'], - ['\u{1f6e3}\ufe0f'], - ['\u{1f6e3}'], - ['\u{1f6e4}\ufe0f'], - ['\u{1f6e4}'], - ['\u{1f6e2}\ufe0f'], - ['\u{1f6e2}'], - ['\u26fd'], - ['\u{1f6de}'], - ['\u{1f6a8}'], - ['\u{1f6a5}'], - ['\u{1f6a6}'], - ['\u{1f6d1}'], - ['\u{1f6a7}'], - ['\u2693'], - ['\u{1f6df}'], - ['\u26f5'], - ['\u{1f6f6}'], - ['\u{1f6a4}'], - ['\u{1f6f3}\ufe0f'], - ['\u{1f6f3}'], - ['\u26f4\ufe0f'], - ['\u26f4'], - ['\u{1f6e5}\ufe0f'], - ['\u{1f6e5}'], - ['\u{1f6a2}'], - ['\u2708\ufe0f'], - ['\u2708'], - ['\u{1f6e9}\ufe0f'], - ['\u{1f6e9}'], - ['\u{1f6eb}'], - ['\u{1f6ec}'], - ['\u{1fa82}'], - ['\u{1f4ba}'], - ['\u{1f681}'], - ['\u{1f69f}'], - ['\u{1f6a0}'], - ['\u{1f6a1}'], - ['\u{1f6f0}\ufe0f'], - ['\u{1f6f0}'], - ['\u{1f680}'], - ['\u{1f6f8}'], - ['\u{1f6ce}\ufe0f'], - ['\u{1f6ce}'], - ['\u{1f9f3}'], - ['\u231b'], - ['\u23f3'], - ['\u231a'], - ['\u23f0'], - ['\u23f1\ufe0f'], - ['\u23f1'], - ['\u23f2\ufe0f'], - ['\u23f2'], - ['\u{1f570}\ufe0f'], - ['\u{1f570}'], - ['\u{1f55b}'], - ['\u{1f567}'], - ['\u{1f550}'], - ['\u{1f55c}'], - ['\u{1f551}'], - ['\u{1f55d}'], - ['\u{1f552}'], - ['\u{1f55e}'], - ['\u{1f553}'], - ['\u{1f55f}'], - ['\u{1f554}'], - ['\u{1f560}'], - ['\u{1f555}'], - ['\u{1f561}'], - ['\u{1f556}'], - ['\u{1f562}'], - ['\u{1f557}'], - ['\u{1f563}'], - ['\u{1f558}'], - ['\u{1f564}'], - ['\u{1f559}'], - ['\u{1f565}'], - ['\u{1f55a}'], - ['\u{1f566}'], - ['\u{1f311}'], - ['\u{1f312}'], - ['\u{1f313}'], - ['\u{1f314}'], - ['\u{1f315}'], - ['\u{1f316}'], - ['\u{1f317}'], - ['\u{1f318}'], - ['\u{1f319}'], - ['\u{1f31a}'], - ['\u{1f31b}'], - ['\u{1f31c}'], - ['\u{1f321}\ufe0f'], - ['\u{1f321}'], - ['\u2600\ufe0f'], - ['\u2600'], - ['\u{1f31d}'], - ['\u{1f31e}'], - ['\u{1fa90}'], - ['\u2b50'], - ['\u{1f31f}'], - ['\u{1f320}'], - ['\u{1f30c}'], - ['\u2601\ufe0f'], - ['\u2601'], - ['\u26c5'], - ['\u26c8\ufe0f'], - ['\u26c8'], - ['\u{1f324}\ufe0f'], - ['\u{1f324}'], - ['\u{1f325}\ufe0f'], - ['\u{1f325}'], - ['\u{1f326}\ufe0f'], - ['\u{1f326}'], - ['\u{1f327}\ufe0f'], - ['\u{1f327}'], - ['\u{1f328}\ufe0f'], - ['\u{1f328}'], - ['\u{1f329}\ufe0f'], - ['\u{1f329}'], - ['\u{1f32a}\ufe0f'], - ['\u{1f32a}'], - ['\u{1f32b}\ufe0f'], - ['\u{1f32b}'], - ['\u{1f32c}\ufe0f'], - ['\u{1f32c}'], - ['\u{1f300}'], - ['\u{1f308}'], - ['\u{1f302}'], - ['\u2602\ufe0f'], - ['\u2602'], - ['\u2614'], - ['\u26f1\ufe0f'], - ['\u26f1'], - ['\u26a1'], - ['\u2744\ufe0f'], - ['\u2744'], - ['\u2603\ufe0f'], - ['\u2603'], - ['\u26c4'], - ['\u2604\ufe0f'], - ['\u2604'], - ['\u{1f525}'], - ['\u{1f4a7}'], - ['\u{1f30a}'], - ['\u{1f383}'], - ['\u{1f384}'], - ['\u{1f386}'], - ['\u{1f387}'], - ['\u{1f9e8}'], - ['\u2728'], - ['\u{1f388}'], - ['\u{1f389}'], - ['\u{1f38a}'], - ['\u{1f38b}'], - ['\u{1f38d}'], - ['\u{1f38e}'], - ['\u{1f38f}'], - ['\u{1f390}'], - ['\u{1f391}'], - ['\u{1f9e7}'], - ['\u{1f380}'], - ['\u{1f381}'], - ['\u{1f397}\ufe0f'], - ['\u{1f397}'], - ['\u{1f39f}\ufe0f'], - ['\u{1f39f}'], - ['\u{1f3ab}'], - ['\u{1f396}\ufe0f'], - ['\u{1f396}'], - ['\u{1f3c6}'], - ['\u{1f3c5}'], - ['\u{1f947}'], - ['\u{1f948}'], - ['\u{1f949}'], - ['\u26bd'], - ['\u26be'], - ['\u{1f94e}'], - ['\u{1f3c0}'], - ['\u{1f3d0}'], - ['\u{1f3c8}'], - ['\u{1f3c9}'], - ['\u{1f3be}'], - ['\u{1f94f}'], - ['\u{1f3b3}'], - ['\u{1f3cf}'], - ['\u{1f3d1}'], - ['\u{1f3d2}'], - ['\u{1f94d}'], - ['\u{1f3d3}'], - ['\u{1f3f8}'], - ['\u{1f94a}'], - ['\u{1f94b}'], - ['\u{1f945}'], - ['\u26f3'], - ['\u26f8\ufe0f'], - ['\u26f8'], - ['\u{1f3a3}'], - ['\u{1f93f}'], - ['\u{1f3bd}'], - ['\u{1f3bf}'], - ['\u{1f6f7}'], - ['\u{1f94c}'], - ['\u{1f3af}'], - ['\u{1fa80}'], - ['\u{1fa81}'], - ['\u{1f52b}'], - ['\u{1f3b1}'], - ['\u{1f52e}'], - ['\u{1fa84}'], - ['\u{1f3ae}'], - ['\u{1f579}\ufe0f'], - ['\u{1f579}'], - ['\u{1f3b0}'], - ['\u{1f3b2}'], - ['\u{1f9e9}'], - ['\u{1f9f8}'], - ['\u{1fa85}'], - ['\u{1faa9}'], - ['\u{1fa86}'], - ['\u2660\ufe0f'], - ['\u2660'], - ['\u2665\ufe0f'], - ['\u2665'], - ['\u2666\ufe0f'], - ['\u2666'], - ['\u2663\ufe0f'], - ['\u2663'], - ['\u265f\ufe0f'], - ['\u265f'], - ['\u{1f0cf}'], - ['\u{1f004}'], - ['\u{1f3b4}'], - ['\u{1f3ad}'], - ['\u{1f5bc}\ufe0f'], - ['\u{1f5bc}'], - ['\u{1f3a8}'], - ['\u{1f9f5}'], - ['\u{1faa1}'], - ['\u{1f9f6}'], - ['\u{1faa2}'], - ['\u{1f453}'], - ['\u{1f576}\ufe0f'], - ['\u{1f576}'], - ['\u{1f97d}'], - ['\u{1f97c}'], - ['\u{1f9ba}'], - ['\u{1f454}'], - ['\u{1f455}'], - ['\u{1f456}'], - ['\u{1f9e3}'], - ['\u{1f9e4}'], - ['\u{1f9e5}'], - ['\u{1f9e6}'], - ['\u{1f457}'], - ['\u{1f458}'], - ['\u{1f97b}'], - ['\u{1fa71}'], - ['\u{1fa72}'], - ['\u{1fa73}'], - ['\u{1f459}'], - ['\u{1f45a}'], - ['\u{1faad}'], - ['\u{1f45b}'], - ['\u{1f45c}'], - ['\u{1f45d}'], - ['\u{1f6cd}\ufe0f'], - ['\u{1f6cd}'], - ['\u{1f392}'], - ['\u{1fa74}'], - ['\u{1f45e}'], - ['\u{1f45f}'], - ['\u{1f97e}'], - ['\u{1f97f}'], - ['\u{1f460}'], - ['\u{1f461}'], - ['\u{1fa70}'], - ['\u{1f462}'], - ['\u{1faae}'], - ['\u{1f451}'], - ['\u{1f452}'], - ['\u{1f3a9}'], - ['\u{1f393}'], - ['\u{1f9e2}'], - ['\u{1fa96}'], - ['\u26d1\ufe0f'], - ['\u26d1'], - ['\u{1f4ff}'], - ['\u{1f484}'], - ['\u{1f48d}'], - ['\u{1f48e}'], - ['\u{1f507}'], - ['\u{1f508}'], - ['\u{1f509}'], - ['\u{1f50a}'], - ['\u{1f4e2}'], - ['\u{1f4e3}'], - ['\u{1f4ef}'], - ['\u{1f514}'], - ['\u{1f515}'], - ['\u{1f3bc}'], - ['\u{1f3b5}'], - ['\u{1f3b6}'], - ['\u{1f399}\ufe0f'], - ['\u{1f399}'], - ['\u{1f39a}\ufe0f'], - ['\u{1f39a}'], - ['\u{1f39b}\ufe0f'], - ['\u{1f39b}'], - ['\u{1f3a4}'], - ['\u{1f3a7}'], - ['\u{1f4fb}'], - ['\u{1f3b7}'], - ['\u{1fa97}'], - ['\u{1f3b8}'], - ['\u{1f3b9}'], - ['\u{1f3ba}'], - ['\u{1f3bb}'], - ['\u{1fa95}'], - ['\u{1f941}'], - ['\u{1fa98}'], - ['\u{1fa87}'], - ['\u{1fa88}'], - ['\u{1f4f1}'], - ['\u{1f4f2}'], - ['\u260e\ufe0f'], - ['\u260e'], - ['\u{1f4de}'], - ['\u{1f4df}'], - ['\u{1f4e0}'], - ['\u{1f50b}'], - ['\u{1faab}'], - ['\u{1f50c}'], - ['\u{1f4bb}'], - ['\u{1f5a5}\ufe0f'], - ['\u{1f5a5}'], - ['\u{1f5a8}\ufe0f'], - ['\u{1f5a8}'], - ['\u2328\ufe0f'], - ['\u2328'], - ['\u{1f5b1}\ufe0f'], - ['\u{1f5b1}'], - ['\u{1f5b2}\ufe0f'], - ['\u{1f5b2}'], - ['\u{1f4bd}'], - ['\u{1f4be}'], - ['\u{1f4bf}'], - ['\u{1f4c0}'], - ['\u{1f9ee}'], - ['\u{1f3a5}'], - ['\u{1f39e}\ufe0f'], - ['\u{1f39e}'], - ['\u{1f4fd}\ufe0f'], - ['\u{1f4fd}'], - ['\u{1f3ac}'], - ['\u{1f4fa}'], - ['\u{1f4f7}'], - ['\u{1f4f8}'], - ['\u{1f4f9}'], - ['\u{1f4fc}'], - ['\u{1f50d}'], - ['\u{1f50e}'], - ['\u{1f56f}\ufe0f'], - ['\u{1f56f}'], - ['\u{1f4a1}'], - ['\u{1f526}'], - ['\u{1f3ee}'], - ['\u{1fa94}'], - ['\u{1f4d4}'], - ['\u{1f4d5}'], - ['\u{1f4d6}'], - ['\u{1f4d7}'], - ['\u{1f4d8}'], - ['\u{1f4d9}'], - ['\u{1f4da}'], - ['\u{1f4d3}'], - ['\u{1f4d2}'], - ['\u{1f4c3}'], - ['\u{1f4dc}'], - ['\u{1f4c4}'], - ['\u{1f4f0}'], - ['\u{1f5de}\ufe0f'], - ['\u{1f5de}'], - ['\u{1f4d1}'], - ['\u{1f516}'], - ['\u{1f3f7}\ufe0f'], - ['\u{1f3f7}'], - ['\u{1f4b0}'], - ['\u{1fa99}'], - ['\u{1f4b4}'], - ['\u{1f4b5}'], - ['\u{1f4b6}'], - ['\u{1f4b7}'], - ['\u{1f4b8}'], - ['\u{1f4b3}'], - ['\u{1f9fe}'], - ['\u{1f4b9}'], - ['\u2709\ufe0f'], - ['\u2709'], - ['\u{1f4e7}'], - ['\u{1f4e8}'], - ['\u{1f4e9}'], - ['\u{1f4e4}'], - ['\u{1f4e5}'], - ['\u{1f4e6}'], - ['\u{1f4eb}'], - ['\u{1f4ea}'], - ['\u{1f4ec}'], - ['\u{1f4ed}'], - ['\u{1f4ee}'], - ['\u{1f5f3}\ufe0f'], - ['\u{1f5f3}'], - ['\u270f\ufe0f'], - ['\u270f'], - ['\u2712\ufe0f'], - ['\u2712'], - ['\u{1f58b}\ufe0f'], - ['\u{1f58b}'], - ['\u{1f58a}\ufe0f'], - ['\u{1f58a}'], - ['\u{1f58c}\ufe0f'], - ['\u{1f58c}'], - ['\u{1f58d}\ufe0f'], - ['\u{1f58d}'], - ['\u{1f4dd}'], - ['\u{1f4bc}'], - ['\u{1f4c1}'], - ['\u{1f4c2}'], - ['\u{1f5c2}\ufe0f'], - ['\u{1f5c2}'], - ['\u{1f4c5}'], - ['\u{1f4c6}'], - ['\u{1f5d2}\ufe0f'], - ['\u{1f5d2}'], - ['\u{1f5d3}\ufe0f'], - ['\u{1f5d3}'], - ['\u{1f4c7}'], - ['\u{1f4c8}'], - ['\u{1f4c9}'], - ['\u{1f4ca}'], - ['\u{1f4cb}'], - ['\u{1f4cc}'], - ['\u{1f4cd}'], - ['\u{1f4ce}'], - ['\u{1f587}\ufe0f'], - ['\u{1f587}'], - ['\u{1f4cf}'], - ['\u{1f4d0}'], - ['\u2702\ufe0f'], - ['\u2702'], - ['\u{1f5c3}\ufe0f'], - ['\u{1f5c3}'], - ['\u{1f5c4}\ufe0f'], - ['\u{1f5c4}'], - ['\u{1f5d1}\ufe0f'], - ['\u{1f5d1}'], - ['\u{1f512}'], - ['\u{1f513}'], - ['\u{1f50f}'], - ['\u{1f510}'], - ['\u{1f511}'], - ['\u{1f5dd}\ufe0f'], - ['\u{1f5dd}'], - ['\u{1f528}'], - ['\u{1fa93}'], - ['\u26cf\ufe0f'], - ['\u26cf'], - ['\u2692\ufe0f'], - ['\u2692'], - ['\u{1f6e0}\ufe0f'], - ['\u{1f6e0}'], - ['\u{1f5e1}\ufe0f'], - ['\u{1f5e1}'], - ['\u2694\ufe0f'], - ['\u2694'], - ['\u{1f4a3}'], - ['\u{1fa83}'], - ['\u{1f3f9}'], - ['\u{1f6e1}\ufe0f'], - ['\u{1f6e1}'], - ['\u{1fa9a}'], - ['\u{1f527}'], - ['\u{1fa9b}'], - ['\u{1f529}'], - ['\u2699\ufe0f'], - ['\u2699'], - ['\u{1f5dc}\ufe0f'], - ['\u{1f5dc}'], - ['\u2696\ufe0f'], - ['\u2696'], - ['\u{1f9af}'], - ['\u{1f517}'], - ['\u26d3\ufe0f'], - ['\u26d3'], - ['\u{1fa9d}'], - ['\u{1f9f0}'], - ['\u{1f9f2}'], - ['\u{1fa9c}'], - ['\u2697\ufe0f'], - ['\u2697'], - ['\u{1f9ea}'], - ['\u{1f9eb}'], - ['\u{1f9ec}'], - ['\u{1f52c}'], - ['\u{1f52d}'], - ['\u{1f4e1}'], - ['\u{1f489}'], - ['\u{1fa78}'], - ['\u{1f48a}'], - ['\u{1fa79}'], - ['\u{1fa7c}'], - ['\u{1fa7a}'], - ['\u{1fa7b}'], - ['\u{1f6aa}'], - ['\u{1f6d7}'], - ['\u{1fa9e}'], - ['\u{1fa9f}'], - ['\u{1f6cf}\ufe0f'], - ['\u{1f6cf}'], - ['\u{1f6cb}\ufe0f'], - ['\u{1f6cb}'], - ['\u{1fa91}'], - ['\u{1f6bd}'], - ['\u{1faa0}'], - ['\u{1f6bf}'], - ['\u{1f6c1}'], - ['\u{1faa4}'], - ['\u{1fa92}'], - ['\u{1f9f4}'], - ['\u{1f9f7}'], - ['\u{1f9f9}'], - ['\u{1f9fa}'], - ['\u{1f9fb}'], - ['\u{1faa3}'], - ['\u{1f9fc}'], - ['\u{1fae7}'], - ['\u{1faa5}'], - ['\u{1f9fd}'], - ['\u{1f9ef}'], - ['\u{1f6d2}'], - ['\u{1f6ac}'], - ['\u26b0\ufe0f'], - ['\u26b0'], - ['\u{1faa6}'], - ['\u26b1\ufe0f'], - ['\u26b1'], - ['\u{1f9ff}'], - ['\u{1faac}'], - ['\u{1f5ff}'], - ['\u{1faa7}'], - ['\u{1faaa}'], - ['\u{1f3e7}'], - ['\u{1f6ae}'], - ['\u{1f6b0}'], - ['\u267f'], - ['\u{1f6b9}'], - ['\u{1f6ba}'], - ['\u{1f6bb}'], - ['\u{1f6bc}'], - ['\u{1f6be}'], - ['\u{1f6c2}'], - ['\u{1f6c3}'], - ['\u{1f6c4}'], - ['\u{1f6c5}'], - ['\u26a0\ufe0f'], - ['\u26a0'], - ['\u{1f6b8}'], - ['\u26d4'], - ['\u{1f6ab}'], - ['\u{1f6b3}'], - ['\u{1f6ad}'], - ['\u{1f6af}'], - ['\u{1f6b1}'], - ['\u{1f6b7}'], - ['\u{1f4f5}'], - ['\u{1f51e}'], - ['\u2622\ufe0f'], - ['\u2622'], - ['\u2623\ufe0f'], - ['\u2623'], - ['\u2b06\ufe0f'], - ['\u2b06'], - ['\u2197\ufe0f'], - ['\u2197'], - ['\u27a1\ufe0f'], - ['\u27a1'], - ['\u2198\ufe0f'], - ['\u2198'], - ['\u2b07\ufe0f'], - ['\u2b07'], - ['\u2199\ufe0f'], - ['\u2199'], - ['\u2b05\ufe0f'], - ['\u2b05'], - ['\u2196\ufe0f'], - ['\u2196'], - ['\u2195\ufe0f'], - ['\u2195'], - ['\u2194\ufe0f'], - ['\u2194'], - ['\u21a9\ufe0f'], - ['\u21a9'], - ['\u21aa\ufe0f'], - ['\u21aa'], - ['\u2934\ufe0f'], - ['\u2934'], - ['\u2935\ufe0f'], - ['\u2935'], - ['\u{1f503}'], - ['\u{1f504}'], - ['\u{1f519}'], - ['\u{1f51a}'], - ['\u{1f51b}'], - ['\u{1f51c}'], - ['\u{1f51d}'], - ['\u{1f6d0}'], - ['\u269b\ufe0f'], - ['\u269b'], - ['\u{1f549}\ufe0f'], - ['\u{1f549}'], - ['\u2721\ufe0f'], - ['\u2721'], - ['\u2638\ufe0f'], - ['\u2638'], - ['\u262f\ufe0f'], - ['\u262f'], - ['\u271d\ufe0f'], - ['\u271d'], - ['\u2626\ufe0f'], - ['\u2626'], - ['\u262a\ufe0f'], - ['\u262a'], - ['\u262e\ufe0f'], - ['\u262e'], - ['\u{1f54e}'], - ['\u{1f52f}'], - ['\u{1faaf}'], - ['\u2648'], - ['\u2649'], - ['\u264a'], - ['\u264b'], - ['\u264c'], - ['\u264d'], - ['\u264e'], - ['\u264f'], - ['\u2650'], - ['\u2651'], - ['\u2652'], - ['\u2653'], - ['\u26ce'], - ['\u{1f500}'], - ['\u{1f501}'], - ['\u{1f502}'], - ['\u25b6\ufe0f'], - ['\u25b6'], - ['\u23e9'], - ['\u23ed\ufe0f'], - ['\u23ed'], - ['\u23ef\ufe0f'], - ['\u23ef'], - ['\u25c0\ufe0f'], - ['\u25c0'], - ['\u23ea'], - ['\u23ee\ufe0f'], - ['\u23ee'], - ['\u{1f53c}'], - ['\u23eb'], - ['\u{1f53d}'], - ['\u23ec'], - ['\u23f8\ufe0f'], - ['\u23f8'], - ['\u23f9\ufe0f'], - ['\u23f9'], - ['\u23fa\ufe0f'], - ['\u23fa'], - ['\u23cf\ufe0f'], - ['\u23cf'], - ['\u{1f3a6}'], - ['\u{1f505}'], - ['\u{1f506}'], - ['\u{1f4f6}'], - ['\u{1f6dc}'], - ['\u{1f4f3}'], - ['\u{1f4f4}'], - ['\u2640\ufe0f'], - ['\u2640'], - ['\u2642\ufe0f'], - ['\u2642'], - ['\u26a7\ufe0f'], - ['\u26a7'], - ['\u2716\ufe0f'], - ['\u2716'], - ['\u2795'], - ['\u2796'], - ['\u2797'], - ['\u{1f7f0}'], - ['\u267e\ufe0f'], - ['\u267e'], - ['\u203c\ufe0f'], - ['\u203c'], - ['\u2049\ufe0f'], - ['\u2049'], - ['\u2753'], - ['\u2754'], - ['\u2755'], - ['\u2757'], - ['\u3030\ufe0f'], - ['\u3030'], - ['\u{1f4b1}'], - ['\u{1f4b2}'], - ['\u2695\ufe0f'], - ['\u2695'], - ['\u267b\ufe0f'], - ['\u267b'], - ['\u269c\ufe0f'], - ['\u269c'], - ['\u{1f531}'], - ['\u{1f4db}'], - ['\u{1f530}'], - ['\u2b55'], - ['\u2705'], - ['\u2611\ufe0f'], - ['\u2611'], - ['\u2714\ufe0f'], - ['\u2714'], - ['\u274c'], - ['\u274e'], - ['\u27b0'], - ['\u27bf'], - ['\u303d\ufe0f'], - ['\u303d'], - ['\u2733\ufe0f'], - ['\u2733'], - ['\u2734\ufe0f'], - ['\u2734'], - ['\u2747\ufe0f'], - ['\u2747'], - ['©\ufe0f'], - ['©'], - ['®\ufe0f'], - ['®'], - ['\u2122\ufe0f'], - ['\u2122'], - ['#\ufe0f\u20e3'], - ['#\u20e3'], - ['*\ufe0f\u20e3'], - ['*\u20e3'], - ['0\ufe0f\u20e3'], - ['0\u20e3'], - ['1\ufe0f\u20e3'], - ['1\u20e3'], - ['2\ufe0f\u20e3'], - ['2\u20e3'], - ['3\ufe0f\u20e3'], - ['3\u20e3'], - ['4\ufe0f\u20e3'], - ['4\u20e3'], - ['5\ufe0f\u20e3'], - ['5\u20e3'], - ['6\ufe0f\u20e3'], - ['6\u20e3'], - ['7\ufe0f\u20e3'], - ['7\u20e3'], - ['8\ufe0f\u20e3'], - ['8\u20e3'], - ['9\ufe0f\u20e3'], - ['9\u20e3'], - ['\u{1f51f}'], - ['\u{1f520}'], - ['\u{1f521}'], - ['\u{1f522}'], - ['\u{1f523}'], - ['\u{1f524}'], - ['\u{1f170}\ufe0f'], - ['\u{1f170}'], - ['\u{1f18e}'], - ['\u{1f171}\ufe0f'], - ['\u{1f171}'], - ['\u{1f191}'], - ['\u{1f192}'], - ['\u{1f193}'], - ['\u2139\ufe0f'], - ['\u2139'], - ['\u{1f194}'], - ['\u24c2\ufe0f'], - ['\u24c2'], - ['\u{1f195}'], - ['\u{1f196}'], - ['\u{1f17e}\ufe0f'], - ['\u{1f17e}'], - ['\u{1f197}'], - ['\u{1f17f}\ufe0f'], - ['\u{1f17f}'], - ['\u{1f198}'], - ['\u{1f199}'], - ['\u{1f19a}'], - ['\u{1f201}'], - ['\u{1f202}\ufe0f'], - ['\u{1f202}'], - ['\u{1f237}\ufe0f'], - ['\u{1f237}'], - ['\u{1f236}'], - ['\u{1f22f}'], - ['\u{1f250}'], - ['\u{1f239}'], - ['\u{1f21a}'], - ['\u{1f232}'], - ['\u{1f251}'], - ['\u{1f238}'], - ['\u{1f234}'], - ['\u{1f233}'], - ['\u3297\ufe0f'], - ['\u3297'], - ['\u3299\ufe0f'], - ['\u3299'], - ['\u{1f23a}'], - ['\u{1f235}'], - ['\u{1f534}'], - ['\u{1f7e0}'], - ['\u{1f7e1}'], - ['\u{1f7e2}'], - ['\u{1f535}'], - ['\u{1f7e3}'], - ['\u{1f7e4}'], - ['\u26ab'], - ['\u26aa'], - ['\u{1f7e5}'], - ['\u{1f7e7}'], - ['\u{1f7e8}'], - ['\u{1f7e9}'], - ['\u{1f7e6}'], - ['\u{1f7ea}'], - ['\u{1f7eb}'], - ['\u2b1b'], - ['\u2b1c'], - ['\u25fc\ufe0f'], - ['\u25fc'], - ['\u25fb\ufe0f'], - ['\u25fb'], - ['\u25fe'], - ['\u25fd'], - ['\u25aa\ufe0f'], - ['\u25aa'], - ['\u25ab\ufe0f'], - ['\u25ab'], - ['\u{1f536}'], - ['\u{1f537}'], - ['\u{1f538}'], - ['\u{1f539}'], - ['\u{1f53a}'], - ['\u{1f53b}'], - ['\u{1f4a0}'], - ['\u{1f518}'], - ['\u{1f533}'], - ['\u{1f532}'], - ['\u{1f3c1}'], - ['\u{1f6a9}'], - ['\u{1f38c}'], - ['\u{1f3f4}'], - ['\u{1f3f3}\ufe0f'], - ['\u{1f3f3}'], - ['\u{1f3f3}\ufe0f\u200d\u{1f308}'], - ['\u{1f3f3}\u200d\u{1f308}'], - ['\u{1f3f3}\ufe0f\u200d\u26a7\ufe0f'], - ['\u{1f3f3}\u200d\u26a7\ufe0f'], - ['\u{1f3f3}\ufe0f\u200d\u26a7'], - ['\u{1f3f3}\u200d\u26a7'], - ['\u{1f3f4}\u200d\u2620\ufe0f'], - ['\u{1f3f4}\u200d\u2620'], - ['\u{1f1e6}\u{1f1e8}'], - ['\u{1f1e6}\u{1f1e9}'], - ['\u{1f1e6}\u{1f1ea}'], - ['\u{1f1e6}\u{1f1eb}'], - ['\u{1f1e6}\u{1f1ec}'], - ['\u{1f1e6}\u{1f1ee}'], - ['\u{1f1e6}\u{1f1f1}'], - ['\u{1f1e6}\u{1f1f2}'], - ['\u{1f1e6}\u{1f1f4}'], - ['\u{1f1e6}\u{1f1f6}'], - ['\u{1f1e6}\u{1f1f7}'], - ['\u{1f1e6}\u{1f1f8}'], - ['\u{1f1e6}\u{1f1f9}'], - ['\u{1f1e6}\u{1f1fa}'], - ['\u{1f1e6}\u{1f1fc}'], - ['\u{1f1e6}\u{1f1fd}'], - ['\u{1f1e6}\u{1f1ff}'], - ['\u{1f1e7}\u{1f1e6}'], - ['\u{1f1e7}\u{1f1e7}'], - ['\u{1f1e7}\u{1f1e9}'], - ['\u{1f1e7}\u{1f1ea}'], - ['\u{1f1e7}\u{1f1eb}'], - ['\u{1f1e7}\u{1f1ec}'], - ['\u{1f1e7}\u{1f1ed}'], - ['\u{1f1e7}\u{1f1ee}'], - ['\u{1f1e7}\u{1f1ef}'], - ['\u{1f1e7}\u{1f1f1}'], - ['\u{1f1e7}\u{1f1f2}'], - ['\u{1f1e7}\u{1f1f3}'], - ['\u{1f1e7}\u{1f1f4}'], - ['\u{1f1e7}\u{1f1f6}'], - ['\u{1f1e7}\u{1f1f7}'], - ['\u{1f1e7}\u{1f1f8}'], - ['\u{1f1e7}\u{1f1f9}'], - ['\u{1f1e7}\u{1f1fb}'], - ['\u{1f1e7}\u{1f1fc}'], - ['\u{1f1e7}\u{1f1fe}'], - ['\u{1f1e7}\u{1f1ff}'], - ['\u{1f1e8}\u{1f1e6}'], - ['\u{1f1e8}\u{1f1e8}'], - ['\u{1f1e8}\u{1f1e9}'], - ['\u{1f1e8}\u{1f1eb}'], - ['\u{1f1e8}\u{1f1ec}'], - ['\u{1f1e8}\u{1f1ed}'], - ['\u{1f1e8}\u{1f1ee}'], - ['\u{1f1e8}\u{1f1f0}'], - ['\u{1f1e8}\u{1f1f1}'], - ['\u{1f1e8}\u{1f1f2}'], - ['\u{1f1e8}\u{1f1f3}'], - ['\u{1f1e8}\u{1f1f4}'], - ['\u{1f1e8}\u{1f1f5}'], - ['\u{1f1e8}\u{1f1f7}'], - ['\u{1f1e8}\u{1f1fa}'], - ['\u{1f1e8}\u{1f1fb}'], - ['\u{1f1e8}\u{1f1fc}'], - ['\u{1f1e8}\u{1f1fd}'], - ['\u{1f1e8}\u{1f1fe}'], - ['\u{1f1e8}\u{1f1ff}'], - ['\u{1f1e9}\u{1f1ea}'], - ['\u{1f1e9}\u{1f1ec}'], - ['\u{1f1e9}\u{1f1ef}'], - ['\u{1f1e9}\u{1f1f0}'], - ['\u{1f1e9}\u{1f1f2}'], - ['\u{1f1e9}\u{1f1f4}'], - ['\u{1f1e9}\u{1f1ff}'], - ['\u{1f1ea}\u{1f1e6}'], - ['\u{1f1ea}\u{1f1e8}'], - ['\u{1f1ea}\u{1f1ea}'], - ['\u{1f1ea}\u{1f1ec}'], - ['\u{1f1ea}\u{1f1ed}'], - ['\u{1f1ea}\u{1f1f7}'], - ['\u{1f1ea}\u{1f1f8}'], - ['\u{1f1ea}\u{1f1f9}'], - ['\u{1f1ea}\u{1f1fa}'], - ['\u{1f1eb}\u{1f1ee}'], - ['\u{1f1eb}\u{1f1ef}'], - ['\u{1f1eb}\u{1f1f0}'], - ['\u{1f1eb}\u{1f1f2}'], - ['\u{1f1eb}\u{1f1f4}'], - ['\u{1f1eb}\u{1f1f7}'], - ['\u{1f1ec}\u{1f1e6}'], - ['\u{1f1ec}\u{1f1e7}'], - ['\u{1f1ec}\u{1f1e9}'], - ['\u{1f1ec}\u{1f1ea}'], - ['\u{1f1ec}\u{1f1eb}'], - ['\u{1f1ec}\u{1f1ec}'], - ['\u{1f1ec}\u{1f1ed}'], - ['\u{1f1ec}\u{1f1ee}'], - ['\u{1f1ec}\u{1f1f1}'], - ['\u{1f1ec}\u{1f1f2}'], - ['\u{1f1ec}\u{1f1f3}'], - ['\u{1f1ec}\u{1f1f5}'], - ['\u{1f1ec}\u{1f1f6}'], - ['\u{1f1ec}\u{1f1f7}'], - ['\u{1f1ec}\u{1f1f8}'], - ['\u{1f1ec}\u{1f1f9}'], - ['\u{1f1ec}\u{1f1fa}'], - ['\u{1f1ec}\u{1f1fc}'], - ['\u{1f1ec}\u{1f1fe}'], - ['\u{1f1ed}\u{1f1f0}'], - ['\u{1f1ed}\u{1f1f2}'], - ['\u{1f1ed}\u{1f1f3}'], - ['\u{1f1ed}\u{1f1f7}'], - ['\u{1f1ed}\u{1f1f9}'], - ['\u{1f1ed}\u{1f1fa}'], - ['\u{1f1ee}\u{1f1e8}'], - ['\u{1f1ee}\u{1f1e9}'], - ['\u{1f1ee}\u{1f1ea}'], - ['\u{1f1ee}\u{1f1f1}'], - ['\u{1f1ee}\u{1f1f2}'], - ['\u{1f1ee}\u{1f1f3}'], - ['\u{1f1ee}\u{1f1f4}'], - ['\u{1f1ee}\u{1f1f6}'], - ['\u{1f1ee}\u{1f1f7}'], - ['\u{1f1ee}\u{1f1f8}'], - ['\u{1f1ee}\u{1f1f9}'], - ['\u{1f1ef}\u{1f1ea}'], - ['\u{1f1ef}\u{1f1f2}'], - ['\u{1f1ef}\u{1f1f4}'], - ['\u{1f1ef}\u{1f1f5}'], - ['\u{1f1f0}\u{1f1ea}'], - ['\u{1f1f0}\u{1f1ec}'], - ['\u{1f1f0}\u{1f1ed}'], - ['\u{1f1f0}\u{1f1ee}'], - ['\u{1f1f0}\u{1f1f2}'], - ['\u{1f1f0}\u{1f1f3}'], - ['\u{1f1f0}\u{1f1f5}'], - ['\u{1f1f0}\u{1f1f7}'], - ['\u{1f1f0}\u{1f1fc}'], - ['\u{1f1f0}\u{1f1fe}'], - ['\u{1f1f0}\u{1f1ff}'], - ['\u{1f1f1}\u{1f1e6}'], - ['\u{1f1f1}\u{1f1e7}'], - ['\u{1f1f1}\u{1f1e8}'], - ['\u{1f1f1}\u{1f1ee}'], - ['\u{1f1f1}\u{1f1f0}'], - ['\u{1f1f1}\u{1f1f7}'], - ['\u{1f1f1}\u{1f1f8}'], - ['\u{1f1f1}\u{1f1f9}'], - ['\u{1f1f1}\u{1f1fa}'], - ['\u{1f1f1}\u{1f1fb}'], - ['\u{1f1f1}\u{1f1fe}'], - ['\u{1f1f2}\u{1f1e6}'], - ['\u{1f1f2}\u{1f1e8}'], - ['\u{1f1f2}\u{1f1e9}'], - ['\u{1f1f2}\u{1f1ea}'], - ['\u{1f1f2}\u{1f1eb}'], - ['\u{1f1f2}\u{1f1ec}'], - ['\u{1f1f2}\u{1f1ed}'], - ['\u{1f1f2}\u{1f1f0}'], - ['\u{1f1f2}\u{1f1f1}'], - ['\u{1f1f2}\u{1f1f2}'], - ['\u{1f1f2}\u{1f1f3}'], - ['\u{1f1f2}\u{1f1f4}'], - ['\u{1f1f2}\u{1f1f5}'], - ['\u{1f1f2}\u{1f1f6}'], - ['\u{1f1f2}\u{1f1f7}'], - ['\u{1f1f2}\u{1f1f8}'], - ['\u{1f1f2}\u{1f1f9}'], - ['\u{1f1f2}\u{1f1fa}'], - ['\u{1f1f2}\u{1f1fb}'], - ['\u{1f1f2}\u{1f1fc}'], - ['\u{1f1f2}\u{1f1fd}'], - ['\u{1f1f2}\u{1f1fe}'], - ['\u{1f1f2}\u{1f1ff}'], - ['\u{1f1f3}\u{1f1e6}'], - ['\u{1f1f3}\u{1f1e8}'], - ['\u{1f1f3}\u{1f1ea}'], - ['\u{1f1f3}\u{1f1eb}'], - ['\u{1f1f3}\u{1f1ec}'], - ['\u{1f1f3}\u{1f1ee}'], - ['\u{1f1f3}\u{1f1f1}'], - ['\u{1f1f3}\u{1f1f4}'], - ['\u{1f1f3}\u{1f1f5}'], - ['\u{1f1f3}\u{1f1f7}'], - ['\u{1f1f3}\u{1f1fa}'], - ['\u{1f1f3}\u{1f1ff}'], - ['\u{1f1f4}\u{1f1f2}'], - ['\u{1f1f5}\u{1f1e6}'], - ['\u{1f1f5}\u{1f1ea}'], - ['\u{1f1f5}\u{1f1eb}'], - ['\u{1f1f5}\u{1f1ec}'], - ['\u{1f1f5}\u{1f1ed}'], - ['\u{1f1f5}\u{1f1f0}'], - ['\u{1f1f5}\u{1f1f1}'], - ['\u{1f1f5}\u{1f1f2}'], - ['\u{1f1f5}\u{1f1f3}'], - ['\u{1f1f5}\u{1f1f7}'], - ['\u{1f1f5}\u{1f1f8}'], - ['\u{1f1f5}\u{1f1f9}'], - ['\u{1f1f5}\u{1f1fc}'], - ['\u{1f1f5}\u{1f1fe}'], - ['\u{1f1f6}\u{1f1e6}'], - ['\u{1f1f7}\u{1f1ea}'], - ['\u{1f1f7}\u{1f1f4}'], - ['\u{1f1f7}\u{1f1f8}'], - ['\u{1f1f7}\u{1f1fa}'], - ['\u{1f1f7}\u{1f1fc}'], - ['\u{1f1f8}\u{1f1e6}'], - ['\u{1f1f8}\u{1f1e7}'], - ['\u{1f1f8}\u{1f1e8}'], - ['\u{1f1f8}\u{1f1e9}'], - ['\u{1f1f8}\u{1f1ea}'], - ['\u{1f1f8}\u{1f1ec}'], - ['\u{1f1f8}\u{1f1ed}'], - ['\u{1f1f8}\u{1f1ee}'], - ['\u{1f1f8}\u{1f1ef}'], - ['\u{1f1f8}\u{1f1f0}'], - ['\u{1f1f8}\u{1f1f1}'], - ['\u{1f1f8}\u{1f1f2}'], - ['\u{1f1f8}\u{1f1f3}'], - ['\u{1f1f8}\u{1f1f4}'], - ['\u{1f1f8}\u{1f1f7}'], - ['\u{1f1f8}\u{1f1f8}'], - ['\u{1f1f8}\u{1f1f9}'], - ['\u{1f1f8}\u{1f1fb}'], - ['\u{1f1f8}\u{1f1fd}'], - ['\u{1f1f8}\u{1f1fe}'], - ['\u{1f1f8}\u{1f1ff}'], - ['\u{1f1f9}\u{1f1e6}'], - ['\u{1f1f9}\u{1f1e8}'], - ['\u{1f1f9}\u{1f1e9}'], - ['\u{1f1f9}\u{1f1eb}'], - ['\u{1f1f9}\u{1f1ec}'], - ['\u{1f1f9}\u{1f1ed}'], - ['\u{1f1f9}\u{1f1ef}'], - ['\u{1f1f9}\u{1f1f0}'], - ['\u{1f1f9}\u{1f1f1}'], - ['\u{1f1f9}\u{1f1f2}'], - ['\u{1f1f9}\u{1f1f3}'], - ['\u{1f1f9}\u{1f1f4}'], - ['\u{1f1f9}\u{1f1f7}'], - ['\u{1f1f9}\u{1f1f9}'], - ['\u{1f1f9}\u{1f1fb}'], - ['\u{1f1f9}\u{1f1fc}'], - ['\u{1f1f9}\u{1f1ff}'], - ['\u{1f1fa}\u{1f1e6}'], - ['\u{1f1fa}\u{1f1ec}'], - ['\u{1f1fa}\u{1f1f2}'], - ['\u{1f1fa}\u{1f1f3}'], - ['\u{1f1fa}\u{1f1f8}'], - ['\u{1f1fa}\u{1f1fe}'], - ['\u{1f1fa}\u{1f1ff}'], - ['\u{1f1fb}\u{1f1e6}'], - ['\u{1f1fb}\u{1f1e8}'], - ['\u{1f1fb}\u{1f1ea}'], - ['\u{1f1fb}\u{1f1ec}'], - ['\u{1f1fb}\u{1f1ee}'], - ['\u{1f1fb}\u{1f1f3}'], - ['\u{1f1fb}\u{1f1fa}'], - ['\u{1f1fc}\u{1f1eb}'], - ['\u{1f1fc}\u{1f1f8}'], - ['\u{1f1fd}\u{1f1f0}'], - ['\u{1f1fe}\u{1f1ea}'], - ['\u{1f1fe}\u{1f1f9}'], - ['\u{1f1ff}\u{1f1e6}'], - ['\u{1f1ff}\u{1f1f2}'], - ['\u{1f1ff}\u{1f1fc}'], - ['\u{1f3f4}\u{e0067}\u{e0062}\u{e0065}\u{e006e}\u{e0067}\u{e007f}'], - ['\u{1f3f4}\u{e0067}\u{e0062}\u{e0073}\u{e0063}\u{e0074}\u{e007f}'], - ['\u{1f3f4}\u{e0067}\u{e0062}\u{e0077}\u{e006c}\u{e0073}\u{e007f}'], +const List<(List graphemeClusters, String description)> emojis = [ + (['\u{1f600}'], '😀 E1.0 grinning face'), + (['\u{1f603}'], '😃 E0.6 grinning face with big eyes'), + (['\u{1f604}'], '😄 E0.6 grinning face with smiling eyes'), + (['\u{1f601}'], '😁 E0.6 beaming face with smiling eyes'), + (['\u{1f606}'], '😆 E0.6 grinning squinting face'), + (['\u{1f605}'], '😅 E0.6 grinning face with sweat'), + (['\u{1f923}'], '🤣 E3.0 rolling on the floor laughing'), + (['\u{1f602}'], '😂 E0.6 face with tears of joy'), + (['\u{1f642}'], '🙂 E1.0 slightly smiling face'), + (['\u{1f643}'], '🙃 E1.0 upside-down face'), + (['\u{1fae0}'], '🫠 E14.0 melting face'), + (['\u{1f609}'], '😉 E0.6 winking face'), + (['\u{1f60a}'], '😊 E0.6 smiling face with smiling eyes'), + (['\u{1f607}'], '😇 E1.0 smiling face with halo'), + (['\u{1f970}'], '🥰 E11.0 smiling face with hearts'), + (['\u{1f60d}'], '😍 E0.6 smiling face with heart-eyes'), + (['\u{1f929}'], '🤩 E5.0 star-struck'), + (['\u{1f618}'], '😘 E0.6 face blowing a kiss'), + (['\u{1f617}'], '😗 E1.0 kissing face'), + (['\u263a\ufe0f'], '☺️ E0.6 smiling face'), + (['\u263a'], '☺ E0.6 smiling face'), + (['\u{1f61a}'], '😚 E0.6 kissing face with closed eyes'), + (['\u{1f619}'], '😙 E1.0 kissing face with smiling eyes'), + (['\u{1f972}'], '🥲 E13.0 smiling face with tear'), + (['\u{1f60b}'], '😋 E0.6 face savoring food'), + (['\u{1f61b}'], '😛 E1.0 face with tongue'), + (['\u{1f61c}'], '😜 E0.6 winking face with tongue'), + (['\u{1f92a}'], '🤪 E5.0 zany face'), + (['\u{1f61d}'], '😝 E0.6 squinting face with tongue'), + (['\u{1f911}'], '🤑 E1.0 money-mouth face'), + (['\u{1f917}'], '🤗 E1.0 smiling face with open hands'), + (['\u{1f92d}'], '🤭 E5.0 face with hand over mouth'), + (['\u{1fae2}'], '🫢 E14.0 face with open eyes and hand over mouth'), + (['\u{1fae3}'], '🫣 E14.0 face with peeking eye'), + (['\u{1f92b}'], '🤫 E5.0 shushing face'), + (['\u{1f914}'], '🤔 E1.0 thinking face'), + (['\u{1fae1}'], '🫡 E14.0 saluting face'), + (['\u{1f910}'], '🤐 E1.0 zipper-mouth face'), + (['\u{1f928}'], '🤨 E5.0 face with raised eyebrow'), + (['\u{1f610}'], '😐 E0.7 neutral face'), + (['\u{1f611}'], '😑 E1.0 expressionless face'), + (['\u{1f636}'], '😶 E1.0 face without mouth'), + (['\u{1fae5}'], '🫥 E14.0 dotted line face'), + (['\u{1f636}\u200d\u{1f32b}\ufe0f'], '😶‍🌫️ E13.1 face in clouds'), + (['\u{1f636}\u200d\u{1f32b}'], '😶‍🌫 E13.1 face in clouds'), + (['\u{1f60f}'], '😏 E0.6 smirking face'), + (['\u{1f612}'], '😒 E0.6 unamused face'), + (['\u{1f644}'], '🙄 E1.0 face with rolling eyes'), + (['\u{1f62c}'], '😬 E1.0 grimacing face'), + (['\u{1f62e}\u200d\u{1f4a8}'], '😮‍💨 E13.1 face exhaling'), + (['\u{1f925}'], '🤥 E3.0 lying face'), + (['\u{1fae8}'], '🫨 E15.0 shaking face'), + (['\u{1f642}\u200d\u2194\ufe0f'], '🙂‍↔️ E15.1 head shaking horizontally'), + (['\u{1f642}\u200d\u2194'], '🙂‍↔ E15.1 head shaking horizontally'), + (['\u{1f642}\u200d\u2195\ufe0f'], '🙂‍↕️ E15.1 head shaking vertically'), + (['\u{1f642}\u200d\u2195'], '🙂‍↕ E15.1 head shaking vertically'), + (['\u{1f60c}'], '😌 E0.6 relieved face'), + (['\u{1f614}'], '😔 E0.6 pensive face'), + (['\u{1f62a}'], '😪 E0.6 sleepy face'), + (['\u{1f924}'], '🤤 E3.0 drooling face'), + (['\u{1f634}'], '😴 E1.0 sleeping face'), + (['\u{1fae9}'], '🫩 E16.0 face with bags under eyes'), + (['\u{1f637}'], '😷 E0.6 face with medical mask'), + (['\u{1f912}'], '🤒 E1.0 face with thermometer'), + (['\u{1f915}'], '🤕 E1.0 face with head-bandage'), + (['\u{1f922}'], '🤢 E3.0 nauseated face'), + (['\u{1f92e}'], '🤮 E5.0 face vomiting'), + (['\u{1f927}'], '🤧 E3.0 sneezing face'), + (['\u{1f975}'], '🥵 E11.0 hot face'), + (['\u{1f976}'], '🥶 E11.0 cold face'), + (['\u{1f974}'], '🥴 E11.0 woozy face'), + (['\u{1f635}'], '😵 E0.6 face with crossed-out eyes'), + (['\u{1f635}\u200d\u{1f4ab}'], '😵‍💫 E13.1 face with spiral eyes'), + (['\u{1f92f}'], '🤯 E5.0 exploding head'), + (['\u{1f920}'], '🤠 E3.0 cowboy hat face'), + (['\u{1f973}'], '🥳 E11.0 partying face'), + (['\u{1f978}'], '🥸 E13.0 disguised face'), + (['\u{1f60e}'], '😎 E1.0 smiling face with sunglasses'), + (['\u{1f913}'], '🤓 E1.0 nerd face'), + (['\u{1f9d0}'], '🧐 E5.0 face with monocle'), + (['\u{1f615}'], '😕 E1.0 confused face'), + (['\u{1fae4}'], '🫤 E14.0 face with diagonal mouth'), + (['\u{1f61f}'], '😟 E1.0 worried face'), + (['\u{1f641}'], '🙁 E1.0 slightly frowning face'), + (['\u2639\ufe0f'], '☹️ E0.7 frowning face'), + (['\u2639'], '☹ E0.7 frowning face'), + (['\u{1f62e}'], '😮 E1.0 face with open mouth'), + (['\u{1f62f}'], '😯 E1.0 hushed face'), + (['\u{1f632}'], '😲 E0.6 astonished face'), + (['\u{1f633}'], '😳 E0.6 flushed face'), + (['\u{1f97a}'], '🥺 E11.0 pleading face'), + (['\u{1f979}'], '🥹 E14.0 face holding back tears'), + (['\u{1f626}'], '😦 E1.0 frowning face with open mouth'), + (['\u{1f627}'], '😧 E1.0 anguished face'), + (['\u{1f628}'], '😨 E0.6 fearful face'), + (['\u{1f630}'], '😰 E0.6 anxious face with sweat'), + (['\u{1f625}'], '😥 E0.6 sad but relieved face'), + (['\u{1f622}'], '😢 E0.6 crying face'), + (['\u{1f62d}'], '😭 E0.6 loudly crying face'), + (['\u{1f631}'], '😱 E0.6 face screaming in fear'), + (['\u{1f616}'], '😖 E0.6 confounded face'), + (['\u{1f623}'], '😣 E0.6 persevering face'), + (['\u{1f61e}'], '😞 E0.6 disappointed face'), + (['\u{1f613}'], '😓 E0.6 downcast face with sweat'), + (['\u{1f629}'], '😩 E0.6 weary face'), + (['\u{1f62b}'], '😫 E0.6 tired face'), + (['\u{1f971}'], '🥱 E12.0 yawning face'), + (['\u{1f624}'], '😤 E0.6 face with steam from nose'), + (['\u{1f621}'], '😡 E0.6 enraged face'), + (['\u{1f620}'], '😠 E0.6 angry face'), + (['\u{1f92c}'], '🤬 E5.0 face with symbols on mouth'), + (['\u{1f608}'], '😈 E1.0 smiling face with horns'), + (['\u{1f47f}'], '👿 E0.6 angry face with horns'), + (['\u{1f480}'], '💀 E0.6 skull'), + (['\u2620\ufe0f'], '☠️ E1.0 skull and crossbones'), + (['\u2620'], '☠ E1.0 skull and crossbones'), + (['\u{1f4a9}'], '💩 E0.6 pile of poo'), + (['\u{1f921}'], '🤡 E3.0 clown face'), + (['\u{1f479}'], '👹 E0.6 ogre'), + (['\u{1f47a}'], '👺 E0.6 goblin'), + (['\u{1f47b}'], '👻 E0.6 ghost'), + (['\u{1f47d}'], '👽 E0.6 alien'), + (['\u{1f47e}'], '👾 E0.6 alien monster'), + (['\u{1f916}'], '🤖 E1.0 robot'), + (['\u{1f63a}'], '😺 E0.6 grinning cat'), + (['\u{1f638}'], '😸 E0.6 grinning cat with smiling eyes'), + (['\u{1f639}'], '😹 E0.6 cat with tears of joy'), + (['\u{1f63b}'], '😻 E0.6 smiling cat with heart-eyes'), + (['\u{1f63c}'], '😼 E0.6 cat with wry smile'), + (['\u{1f63d}'], '😽 E0.6 kissing cat'), + (['\u{1f640}'], '🙀 E0.6 weary cat'), + (['\u{1f63f}'], '😿 E0.6 crying cat'), + (['\u{1f63e}'], '😾 E0.6 pouting cat'), + (['\u{1f648}'], '🙈 E0.6 see-no-evil monkey'), + (['\u{1f649}'], '🙉 E0.6 hear-no-evil monkey'), + (['\u{1f64a}'], '🙊 E0.6 speak-no-evil monkey'), + (['\u{1f48c}'], '💌 E0.6 love letter'), + (['\u{1f498}'], '💘 E0.6 heart with arrow'), + (['\u{1f49d}'], '💝 E0.6 heart with ribbon'), + (['\u{1f496}'], '💖 E0.6 sparkling heart'), + (['\u{1f497}'], '💗 E0.6 growing heart'), + (['\u{1f493}'], '💓 E0.6 beating heart'), + (['\u{1f49e}'], '💞 E0.6 revolving hearts'), + (['\u{1f495}'], '💕 E0.6 two hearts'), + (['\u{1f49f}'], '💟 E0.6 heart decoration'), + (['\u2763\ufe0f'], '❣️ E1.0 heart exclamation'), + (['\u2763'], '❣ E1.0 heart exclamation'), + (['\u{1f494}'], '💔 E0.6 broken heart'), + (['\u2764\ufe0f\u200d\u{1f525}'], '❤️‍🔥 E13.1 heart on fire'), + (['\u2764\u200d\u{1f525}'], '❤‍🔥 E13.1 heart on fire'), + (['\u2764\ufe0f\u200d\u{1fa79}'], '❤️‍🩹 E13.1 mending heart'), + (['\u2764\u200d\u{1fa79}'], '❤‍🩹 E13.1 mending heart'), + (['\u2764\ufe0f'], '❤️ E0.6 red heart'), + (['\u2764'], '❤ E0.6 red heart'), + (['\u{1fa77}'], '🩷 E15.0 pink heart'), + (['\u{1f9e1}'], '🧡 E5.0 orange heart'), + (['\u{1f49b}'], '💛 E0.6 yellow heart'), + (['\u{1f49a}'], '💚 E0.6 green heart'), + (['\u{1f499}'], '💙 E0.6 blue heart'), + (['\u{1fa75}'], '🩵 E15.0 light blue heart'), + (['\u{1f49c}'], '💜 E0.6 purple heart'), + (['\u{1f90e}'], '🤎 E12.0 brown heart'), + (['\u{1f5a4}'], '🖤 E3.0 black heart'), + (['\u{1fa76}'], '🩶 E15.0 grey heart'), + (['\u{1f90d}'], '🤍 E12.0 white heart'), + (['\u{1f48b}'], '💋 E0.6 kiss mark'), + (['\u{1f4af}'], '💯 E0.6 hundred points'), + (['\u{1f4a2}'], '💢 E0.6 anger symbol'), + (['\u{1f4a5}'], '💥 E0.6 collision'), + (['\u{1f4ab}'], '💫 E0.6 dizzy'), + (['\u{1f4a6}'], '💦 E0.6 sweat droplets'), + (['\u{1f4a8}'], '💨 E0.6 dashing away'), + (['\u{1f573}\ufe0f'], '🕳️ E0.7 hole'), + (['\u{1f573}'], '🕳 E0.7 hole'), + (['\u{1f4ac}'], '💬 E0.6 speech balloon'), + ( + ['\u{1f441}\ufe0f\u200d\u{1f5e8}\ufe0f'], + '👁️‍🗨️ E2.0 eye in speech bubble' + ), + (['\u{1f441}\u200d\u{1f5e8}\ufe0f'], '👁‍🗨️ E2.0 eye in speech bubble'), + (['\u{1f441}\ufe0f\u200d\u{1f5e8}'], '👁️‍🗨 E2.0 eye in speech bubble'), + (['\u{1f441}\u200d\u{1f5e8}'], '👁‍🗨 E2.0 eye in speech bubble'), + (['\u{1f5e8}\ufe0f'], '🗨️ E2.0 left speech bubble'), + (['\u{1f5e8}'], '🗨 E2.0 left speech bubble'), + (['\u{1f5ef}\ufe0f'], '🗯️ E0.7 right anger bubble'), + (['\u{1f5ef}'], '🗯 E0.7 right anger bubble'), + (['\u{1f4ad}'], '💭 E1.0 thought balloon'), + (['\u{1f4a4}'], '💤 E0.6 ZZZ'), + (['\u{1f44b}'], '👋 E0.6 waving hand'), + (['\u{1f44b}\u{1f3fb}'], '👋🏻 E1.0 waving hand: light skin tone'), + (['\u{1f44b}\u{1f3fc}'], '👋🏼 E1.0 waving hand: medium-light skin tone'), + (['\u{1f44b}\u{1f3fd}'], '👋🏽 E1.0 waving hand: medium skin tone'), + (['\u{1f44b}\u{1f3fe}'], '👋🏾 E1.0 waving hand: medium-dark skin tone'), + (['\u{1f44b}\u{1f3ff}'], '👋🏿 E1.0 waving hand: dark skin tone'), + (['\u{1f91a}'], '🤚 E3.0 raised back of hand'), + (['\u{1f91a}\u{1f3fb}'], '🤚🏻 E3.0 raised back of hand: light skin tone'), + ( + ['\u{1f91a}\u{1f3fc}'], + '🤚🏼 E3.0 raised back of hand: medium-light skin tone' + ), + (['\u{1f91a}\u{1f3fd}'], '🤚🏽 E3.0 raised back of hand: medium skin tone'), + ( + ['\u{1f91a}\u{1f3fe}'], + '🤚🏾 E3.0 raised back of hand: medium-dark skin tone' + ), + (['\u{1f91a}\u{1f3ff}'], '🤚🏿 E3.0 raised back of hand: dark skin tone'), + (['\u{1f590}\ufe0f'], '🖐️ E0.7 hand with fingers splayed'), + (['\u{1f590}'], '🖐 E0.7 hand with fingers splayed'), + ( + ['\u{1f590}\u{1f3fb}'], + '🖐🏻 E1.0 hand with fingers splayed: light skin tone' + ), + ( + ['\u{1f590}\u{1f3fc}'], + '🖐🏼 E1.0 hand with fingers splayed: medium-light skin tone' + ), + ( + ['\u{1f590}\u{1f3fd}'], + '🖐🏽 E1.0 hand with fingers splayed: medium skin tone' + ), + ( + ['\u{1f590}\u{1f3fe}'], + '🖐🏾 E1.0 hand with fingers splayed: medium-dark skin tone' + ), + ( + ['\u{1f590}\u{1f3ff}'], + '🖐🏿 E1.0 hand with fingers splayed: dark skin tone' + ), + (['\u270b'], '✋ E0.6 raised hand'), + (['\u270b\u{1f3fb}'], '✋🏻 E1.0 raised hand: light skin tone'), + (['\u270b\u{1f3fc}'], '✋🏼 E1.0 raised hand: medium-light skin tone'), + (['\u270b\u{1f3fd}'], '✋🏽 E1.0 raised hand: medium skin tone'), + (['\u270b\u{1f3fe}'], '✋🏾 E1.0 raised hand: medium-dark skin tone'), + (['\u270b\u{1f3ff}'], '✋🏿 E1.0 raised hand: dark skin tone'), + (['\u{1f596}'], '🖖 E1.0 vulcan salute'), + (['\u{1f596}\u{1f3fb}'], '🖖🏻 E1.0 vulcan salute: light skin tone'), + (['\u{1f596}\u{1f3fc}'], '🖖🏼 E1.0 vulcan salute: medium-light skin tone'), + (['\u{1f596}\u{1f3fd}'], '🖖🏽 E1.0 vulcan salute: medium skin tone'), + (['\u{1f596}\u{1f3fe}'], '🖖🏾 E1.0 vulcan salute: medium-dark skin tone'), + (['\u{1f596}\u{1f3ff}'], '🖖🏿 E1.0 vulcan salute: dark skin tone'), + (['\u{1faf1}'], '🫱 E14.0 rightwards hand'), + (['\u{1faf1}\u{1f3fb}'], '🫱🏻 E14.0 rightwards hand: light skin tone'), + ( + ['\u{1faf1}\u{1f3fc}'], + '🫱🏼 E14.0 rightwards hand: medium-light skin tone' + ), + (['\u{1faf1}\u{1f3fd}'], '🫱🏽 E14.0 rightwards hand: medium skin tone'), + (['\u{1faf1}\u{1f3fe}'], '🫱🏾 E14.0 rightwards hand: medium-dark skin tone'), + (['\u{1faf1}\u{1f3ff}'], '🫱🏿 E14.0 rightwards hand: dark skin tone'), + (['\u{1faf2}'], '🫲 E14.0 leftwards hand'), + (['\u{1faf2}\u{1f3fb}'], '🫲🏻 E14.0 leftwards hand: light skin tone'), + (['\u{1faf2}\u{1f3fc}'], '🫲🏼 E14.0 leftwards hand: medium-light skin tone'), + (['\u{1faf2}\u{1f3fd}'], '🫲🏽 E14.0 leftwards hand: medium skin tone'), + (['\u{1faf2}\u{1f3fe}'], '🫲🏾 E14.0 leftwards hand: medium-dark skin tone'), + (['\u{1faf2}\u{1f3ff}'], '🫲🏿 E14.0 leftwards hand: dark skin tone'), + (['\u{1faf3}'], '🫳 E14.0 palm down hand'), + (['\u{1faf3}\u{1f3fb}'], '🫳🏻 E14.0 palm down hand: light skin tone'), + (['\u{1faf3}\u{1f3fc}'], '🫳🏼 E14.0 palm down hand: medium-light skin tone'), + (['\u{1faf3}\u{1f3fd}'], '🫳🏽 E14.0 palm down hand: medium skin tone'), + (['\u{1faf3}\u{1f3fe}'], '🫳🏾 E14.0 palm down hand: medium-dark skin tone'), + (['\u{1faf3}\u{1f3ff}'], '🫳🏿 E14.0 palm down hand: dark skin tone'), + (['\u{1faf4}'], '🫴 E14.0 palm up hand'), + (['\u{1faf4}\u{1f3fb}'], '🫴🏻 E14.0 palm up hand: light skin tone'), + (['\u{1faf4}\u{1f3fc}'], '🫴🏼 E14.0 palm up hand: medium-light skin tone'), + (['\u{1faf4}\u{1f3fd}'], '🫴🏽 E14.0 palm up hand: medium skin tone'), + (['\u{1faf4}\u{1f3fe}'], '🫴🏾 E14.0 palm up hand: medium-dark skin tone'), + (['\u{1faf4}\u{1f3ff}'], '🫴🏿 E14.0 palm up hand: dark skin tone'), + (['\u{1faf7}'], '🫷 E15.0 leftwards pushing hand'), + ( + ['\u{1faf7}\u{1f3fb}'], + '🫷🏻 E15.0 leftwards pushing hand: light skin tone' + ), + ( + ['\u{1faf7}\u{1f3fc}'], + '🫷🏼 E15.0 leftwards pushing hand: medium-light skin tone' + ), + ( + ['\u{1faf7}\u{1f3fd}'], + '🫷🏽 E15.0 leftwards pushing hand: medium skin tone' + ), + ( + ['\u{1faf7}\u{1f3fe}'], + '🫷🏾 E15.0 leftwards pushing hand: medium-dark skin tone' + ), + (['\u{1faf7}\u{1f3ff}'], '🫷🏿 E15.0 leftwards pushing hand: dark skin tone'), + (['\u{1faf8}'], '🫸 E15.0 rightwards pushing hand'), + ( + ['\u{1faf8}\u{1f3fb}'], + '🫸🏻 E15.0 rightwards pushing hand: light skin tone' + ), + ( + ['\u{1faf8}\u{1f3fc}'], + '🫸🏼 E15.0 rightwards pushing hand: medium-light skin tone' + ), + ( + ['\u{1faf8}\u{1f3fd}'], + '🫸🏽 E15.0 rightwards pushing hand: medium skin tone' + ), + ( + ['\u{1faf8}\u{1f3fe}'], + '🫸🏾 E15.0 rightwards pushing hand: medium-dark skin tone' + ), + ( + ['\u{1faf8}\u{1f3ff}'], + '🫸🏿 E15.0 rightwards pushing hand: dark skin tone' + ), + (['\u{1f44c}'], '👌 E0.6 OK hand'), + (['\u{1f44c}\u{1f3fb}'], '👌🏻 E1.0 OK hand: light skin tone'), + (['\u{1f44c}\u{1f3fc}'], '👌🏼 E1.0 OK hand: medium-light skin tone'), + (['\u{1f44c}\u{1f3fd}'], '👌🏽 E1.0 OK hand: medium skin tone'), + (['\u{1f44c}\u{1f3fe}'], '👌🏾 E1.0 OK hand: medium-dark skin tone'), + (['\u{1f44c}\u{1f3ff}'], '👌🏿 E1.0 OK hand: dark skin tone'), + (['\u{1f90c}'], '🤌 E13.0 pinched fingers'), + (['\u{1f90c}\u{1f3fb}'], '🤌🏻 E13.0 pinched fingers: light skin tone'), + ( + ['\u{1f90c}\u{1f3fc}'], + '🤌🏼 E13.0 pinched fingers: medium-light skin tone' + ), + (['\u{1f90c}\u{1f3fd}'], '🤌🏽 E13.0 pinched fingers: medium skin tone'), + (['\u{1f90c}\u{1f3fe}'], '🤌🏾 E13.0 pinched fingers: medium-dark skin tone'), + (['\u{1f90c}\u{1f3ff}'], '🤌🏿 E13.0 pinched fingers: dark skin tone'), + (['\u{1f90f}'], '🤏 E12.0 pinching hand'), + (['\u{1f90f}\u{1f3fb}'], '🤏🏻 E12.0 pinching hand: light skin tone'), + (['\u{1f90f}\u{1f3fc}'], '🤏🏼 E12.0 pinching hand: medium-light skin tone'), + (['\u{1f90f}\u{1f3fd}'], '🤏🏽 E12.0 pinching hand: medium skin tone'), + (['\u{1f90f}\u{1f3fe}'], '🤏🏾 E12.0 pinching hand: medium-dark skin tone'), + (['\u{1f90f}\u{1f3ff}'], '🤏🏿 E12.0 pinching hand: dark skin tone'), + (['\u270c\ufe0f'], '✌️ E0.6 victory hand'), + (['\u270c'], '✌ E0.6 victory hand'), + (['\u270c\u{1f3fb}'], '✌🏻 E1.0 victory hand: light skin tone'), + (['\u270c\u{1f3fc}'], '✌🏼 E1.0 victory hand: medium-light skin tone'), + (['\u270c\u{1f3fd}'], '✌🏽 E1.0 victory hand: medium skin tone'), + (['\u270c\u{1f3fe}'], '✌🏾 E1.0 victory hand: medium-dark skin tone'), + (['\u270c\u{1f3ff}'], '✌🏿 E1.0 victory hand: dark skin tone'), + (['\u{1f91e}'], '🤞 E3.0 crossed fingers'), + (['\u{1f91e}\u{1f3fb}'], '🤞🏻 E3.0 crossed fingers: light skin tone'), + (['\u{1f91e}\u{1f3fc}'], '🤞🏼 E3.0 crossed fingers: medium-light skin tone'), + (['\u{1f91e}\u{1f3fd}'], '🤞🏽 E3.0 crossed fingers: medium skin tone'), + (['\u{1f91e}\u{1f3fe}'], '🤞🏾 E3.0 crossed fingers: medium-dark skin tone'), + (['\u{1f91e}\u{1f3ff}'], '🤞🏿 E3.0 crossed fingers: dark skin tone'), + (['\u{1faf0}'], '🫰 E14.0 hand with index finger and thumb crossed'), + ( + ['\u{1faf0}\u{1f3fb}'], + '🫰🏻 E14.0 hand with index finger and thumb crossed: light skin tone' + ), + ( + ['\u{1faf0}\u{1f3fc}'], + '🫰🏼 E14.0 hand with index finger and thumb crossed: medium-light skin tone' + ), + ( + ['\u{1faf0}\u{1f3fd}'], + '🫰🏽 E14.0 hand with index finger and thumb crossed: medium skin tone' + ), + ( + ['\u{1faf0}\u{1f3fe}'], + '🫰🏾 E14.0 hand with index finger and thumb crossed: medium-dark skin tone' + ), + ( + ['\u{1faf0}\u{1f3ff}'], + '🫰🏿 E14.0 hand with index finger and thumb crossed: dark skin tone' + ), + (['\u{1f91f}'], '🤟 E5.0 love-you gesture'), + (['\u{1f91f}\u{1f3fb}'], '🤟🏻 E5.0 love-you gesture: light skin tone'), + ( + ['\u{1f91f}\u{1f3fc}'], + '🤟🏼 E5.0 love-you gesture: medium-light skin tone' + ), + (['\u{1f91f}\u{1f3fd}'], '🤟🏽 E5.0 love-you gesture: medium skin tone'), + (['\u{1f91f}\u{1f3fe}'], '🤟🏾 E5.0 love-you gesture: medium-dark skin tone'), + (['\u{1f91f}\u{1f3ff}'], '🤟🏿 E5.0 love-you gesture: dark skin tone'), + (['\u{1f918}'], '🤘 E1.0 sign of the horns'), + (['\u{1f918}\u{1f3fb}'], '🤘🏻 E1.0 sign of the horns: light skin tone'), + ( + ['\u{1f918}\u{1f3fc}'], + '🤘🏼 E1.0 sign of the horns: medium-light skin tone' + ), + (['\u{1f918}\u{1f3fd}'], '🤘🏽 E1.0 sign of the horns: medium skin tone'), + ( + ['\u{1f918}\u{1f3fe}'], + '🤘🏾 E1.0 sign of the horns: medium-dark skin tone' + ), + (['\u{1f918}\u{1f3ff}'], '🤘🏿 E1.0 sign of the horns: dark skin tone'), + (['\u{1f919}'], '🤙 E3.0 call me hand'), + (['\u{1f919}\u{1f3fb}'], '🤙🏻 E3.0 call me hand: light skin tone'), + (['\u{1f919}\u{1f3fc}'], '🤙🏼 E3.0 call me hand: medium-light skin tone'), + (['\u{1f919}\u{1f3fd}'], '🤙🏽 E3.0 call me hand: medium skin tone'), + (['\u{1f919}\u{1f3fe}'], '🤙🏾 E3.0 call me hand: medium-dark skin tone'), + (['\u{1f919}\u{1f3ff}'], '🤙🏿 E3.0 call me hand: dark skin tone'), + (['\u{1f448}'], '👈 E0.6 backhand index pointing left'), + ( + ['\u{1f448}\u{1f3fb}'], + '👈🏻 E1.0 backhand index pointing left: light skin tone' + ), + ( + ['\u{1f448}\u{1f3fc}'], + '👈🏼 E1.0 backhand index pointing left: medium-light skin tone' + ), + ( + ['\u{1f448}\u{1f3fd}'], + '👈🏽 E1.0 backhand index pointing left: medium skin tone' + ), + ( + ['\u{1f448}\u{1f3fe}'], + '👈🏾 E1.0 backhand index pointing left: medium-dark skin tone' + ), + ( + ['\u{1f448}\u{1f3ff}'], + '👈🏿 E1.0 backhand index pointing left: dark skin tone' + ), + (['\u{1f449}'], '👉 E0.6 backhand index pointing right'), + ( + ['\u{1f449}\u{1f3fb}'], + '👉🏻 E1.0 backhand index pointing right: light skin tone' + ), + ( + ['\u{1f449}\u{1f3fc}'], + '👉🏼 E1.0 backhand index pointing right: medium-light skin tone' + ), + ( + ['\u{1f449}\u{1f3fd}'], + '👉🏽 E1.0 backhand index pointing right: medium skin tone' + ), + ( + ['\u{1f449}\u{1f3fe}'], + '👉🏾 E1.0 backhand index pointing right: medium-dark skin tone' + ), + ( + ['\u{1f449}\u{1f3ff}'], + '👉🏿 E1.0 backhand index pointing right: dark skin tone' + ), + (['\u{1f446}'], '👆 E0.6 backhand index pointing up'), + ( + ['\u{1f446}\u{1f3fb}'], + '👆🏻 E1.0 backhand index pointing up: light skin tone' + ), + ( + ['\u{1f446}\u{1f3fc}'], + '👆🏼 E1.0 backhand index pointing up: medium-light skin tone' + ), + ( + ['\u{1f446}\u{1f3fd}'], + '👆🏽 E1.0 backhand index pointing up: medium skin tone' + ), + ( + ['\u{1f446}\u{1f3fe}'], + '👆🏾 E1.0 backhand index pointing up: medium-dark skin tone' + ), + ( + ['\u{1f446}\u{1f3ff}'], + '👆🏿 E1.0 backhand index pointing up: dark skin tone' + ), + (['\u{1f595}'], '🖕 E1.0 middle finger'), + (['\u{1f595}\u{1f3fb}'], '🖕🏻 E1.0 middle finger: light skin tone'), + (['\u{1f595}\u{1f3fc}'], '🖕🏼 E1.0 middle finger: medium-light skin tone'), + (['\u{1f595}\u{1f3fd}'], '🖕🏽 E1.0 middle finger: medium skin tone'), + (['\u{1f595}\u{1f3fe}'], '🖕🏾 E1.0 middle finger: medium-dark skin tone'), + (['\u{1f595}\u{1f3ff}'], '🖕🏿 E1.0 middle finger: dark skin tone'), + (['\u{1f447}'], '👇 E0.6 backhand index pointing down'), + ( + ['\u{1f447}\u{1f3fb}'], + '👇🏻 E1.0 backhand index pointing down: light skin tone' + ), + ( + ['\u{1f447}\u{1f3fc}'], + '👇🏼 E1.0 backhand index pointing down: medium-light skin tone' + ), + ( + ['\u{1f447}\u{1f3fd}'], + '👇🏽 E1.0 backhand index pointing down: medium skin tone' + ), + ( + ['\u{1f447}\u{1f3fe}'], + '👇🏾 E1.0 backhand index pointing down: medium-dark skin tone' + ), + ( + ['\u{1f447}\u{1f3ff}'], + '👇🏿 E1.0 backhand index pointing down: dark skin tone' + ), + (['\u261d\ufe0f'], '☝️ E0.6 index pointing up'), + (['\u261d'], '☝ E0.6 index pointing up'), + (['\u261d\u{1f3fb}'], '☝🏻 E1.0 index pointing up: light skin tone'), + (['\u261d\u{1f3fc}'], '☝🏼 E1.0 index pointing up: medium-light skin tone'), + (['\u261d\u{1f3fd}'], '☝🏽 E1.0 index pointing up: medium skin tone'), + (['\u261d\u{1f3fe}'], '☝🏾 E1.0 index pointing up: medium-dark skin tone'), + (['\u261d\u{1f3ff}'], '☝🏿 E1.0 index pointing up: dark skin tone'), + (['\u{1faf5}'], '🫵 E14.0 index pointing at the viewer'), + ( + ['\u{1faf5}\u{1f3fb}'], + '🫵🏻 E14.0 index pointing at the viewer: light skin tone' + ), + ( + ['\u{1faf5}\u{1f3fc}'], + '🫵🏼 E14.0 index pointing at the viewer: medium-light skin tone' + ), + ( + ['\u{1faf5}\u{1f3fd}'], + '🫵🏽 E14.0 index pointing at the viewer: medium skin tone' + ), + ( + ['\u{1faf5}\u{1f3fe}'], + '🫵🏾 E14.0 index pointing at the viewer: medium-dark skin tone' + ), + ( + ['\u{1faf5}\u{1f3ff}'], + '🫵🏿 E14.0 index pointing at the viewer: dark skin tone' + ), + (['\u{1f44d}'], '👍 E0.6 thumbs up'), + (['\u{1f44d}\u{1f3fb}'], '👍🏻 E1.0 thumbs up: light skin tone'), + (['\u{1f44d}\u{1f3fc}'], '👍🏼 E1.0 thumbs up: medium-light skin tone'), + (['\u{1f44d}\u{1f3fd}'], '👍🏽 E1.0 thumbs up: medium skin tone'), + (['\u{1f44d}\u{1f3fe}'], '👍🏾 E1.0 thumbs up: medium-dark skin tone'), + (['\u{1f44d}\u{1f3ff}'], '👍🏿 E1.0 thumbs up: dark skin tone'), + (['\u{1f44e}'], '👎 E0.6 thumbs down'), + (['\u{1f44e}\u{1f3fb}'], '👎🏻 E1.0 thumbs down: light skin tone'), + (['\u{1f44e}\u{1f3fc}'], '👎🏼 E1.0 thumbs down: medium-light skin tone'), + (['\u{1f44e}\u{1f3fd}'], '👎🏽 E1.0 thumbs down: medium skin tone'), + (['\u{1f44e}\u{1f3fe}'], '👎🏾 E1.0 thumbs down: medium-dark skin tone'), + (['\u{1f44e}\u{1f3ff}'], '👎🏿 E1.0 thumbs down: dark skin tone'), + (['\u270a'], '✊ E0.6 raised fist'), + (['\u270a\u{1f3fb}'], '✊🏻 E1.0 raised fist: light skin tone'), + (['\u270a\u{1f3fc}'], '✊🏼 E1.0 raised fist: medium-light skin tone'), + (['\u270a\u{1f3fd}'], '✊🏽 E1.0 raised fist: medium skin tone'), + (['\u270a\u{1f3fe}'], '✊🏾 E1.0 raised fist: medium-dark skin tone'), + (['\u270a\u{1f3ff}'], '✊🏿 E1.0 raised fist: dark skin tone'), + (['\u{1f44a}'], '👊 E0.6 oncoming fist'), + (['\u{1f44a}\u{1f3fb}'], '👊🏻 E1.0 oncoming fist: light skin tone'), + (['\u{1f44a}\u{1f3fc}'], '👊🏼 E1.0 oncoming fist: medium-light skin tone'), + (['\u{1f44a}\u{1f3fd}'], '👊🏽 E1.0 oncoming fist: medium skin tone'), + (['\u{1f44a}\u{1f3fe}'], '👊🏾 E1.0 oncoming fist: medium-dark skin tone'), + (['\u{1f44a}\u{1f3ff}'], '👊🏿 E1.0 oncoming fist: dark skin tone'), + (['\u{1f91b}'], '🤛 E3.0 left-facing fist'), + (['\u{1f91b}\u{1f3fb}'], '🤛🏻 E3.0 left-facing fist: light skin tone'), + ( + ['\u{1f91b}\u{1f3fc}'], + '🤛🏼 E3.0 left-facing fist: medium-light skin tone' + ), + (['\u{1f91b}\u{1f3fd}'], '🤛🏽 E3.0 left-facing fist: medium skin tone'), + (['\u{1f91b}\u{1f3fe}'], '🤛🏾 E3.0 left-facing fist: medium-dark skin tone'), + (['\u{1f91b}\u{1f3ff}'], '🤛🏿 E3.0 left-facing fist: dark skin tone'), + (['\u{1f91c}'], '🤜 E3.0 right-facing fist'), + (['\u{1f91c}\u{1f3fb}'], '🤜🏻 E3.0 right-facing fist: light skin tone'), + ( + ['\u{1f91c}\u{1f3fc}'], + '🤜🏼 E3.0 right-facing fist: medium-light skin tone' + ), + (['\u{1f91c}\u{1f3fd}'], '🤜🏽 E3.0 right-facing fist: medium skin tone'), + ( + ['\u{1f91c}\u{1f3fe}'], + '🤜🏾 E3.0 right-facing fist: medium-dark skin tone' + ), + (['\u{1f91c}\u{1f3ff}'], '🤜🏿 E3.0 right-facing fist: dark skin tone'), + (['\u{1f44f}'], '👏 E0.6 clapping hands'), + (['\u{1f44f}\u{1f3fb}'], '👏🏻 E1.0 clapping hands: light skin tone'), + (['\u{1f44f}\u{1f3fc}'], '👏🏼 E1.0 clapping hands: medium-light skin tone'), + (['\u{1f44f}\u{1f3fd}'], '👏🏽 E1.0 clapping hands: medium skin tone'), + (['\u{1f44f}\u{1f3fe}'], '👏🏾 E1.0 clapping hands: medium-dark skin tone'), + (['\u{1f44f}\u{1f3ff}'], '👏🏿 E1.0 clapping hands: dark skin tone'), + (['\u{1f64c}'], '🙌 E0.6 raising hands'), + (['\u{1f64c}\u{1f3fb}'], '🙌🏻 E1.0 raising hands: light skin tone'), + (['\u{1f64c}\u{1f3fc}'], '🙌🏼 E1.0 raising hands: medium-light skin tone'), + (['\u{1f64c}\u{1f3fd}'], '🙌🏽 E1.0 raising hands: medium skin tone'), + (['\u{1f64c}\u{1f3fe}'], '🙌🏾 E1.0 raising hands: medium-dark skin tone'), + (['\u{1f64c}\u{1f3ff}'], '🙌🏿 E1.0 raising hands: dark skin tone'), + (['\u{1faf6}'], '🫶 E14.0 heart hands'), + (['\u{1faf6}\u{1f3fb}'], '🫶🏻 E14.0 heart hands: light skin tone'), + (['\u{1faf6}\u{1f3fc}'], '🫶🏼 E14.0 heart hands: medium-light skin tone'), + (['\u{1faf6}\u{1f3fd}'], '🫶🏽 E14.0 heart hands: medium skin tone'), + (['\u{1faf6}\u{1f3fe}'], '🫶🏾 E14.0 heart hands: medium-dark skin tone'), + (['\u{1faf6}\u{1f3ff}'], '🫶🏿 E14.0 heart hands: dark skin tone'), + (['\u{1f450}'], '👐 E0.6 open hands'), + (['\u{1f450}\u{1f3fb}'], '👐🏻 E1.0 open hands: light skin tone'), + (['\u{1f450}\u{1f3fc}'], '👐🏼 E1.0 open hands: medium-light skin tone'), + (['\u{1f450}\u{1f3fd}'], '👐🏽 E1.0 open hands: medium skin tone'), + (['\u{1f450}\u{1f3fe}'], '👐🏾 E1.0 open hands: medium-dark skin tone'), + (['\u{1f450}\u{1f3ff}'], '👐🏿 E1.0 open hands: dark skin tone'), + (['\u{1f932}'], '🤲 E5.0 palms up together'), + (['\u{1f932}\u{1f3fb}'], '🤲🏻 E5.0 palms up together: light skin tone'), + ( + ['\u{1f932}\u{1f3fc}'], + '🤲🏼 E5.0 palms up together: medium-light skin tone' + ), + (['\u{1f932}\u{1f3fd}'], '🤲🏽 E5.0 palms up together: medium skin tone'), + ( + ['\u{1f932}\u{1f3fe}'], + '🤲🏾 E5.0 palms up together: medium-dark skin tone' + ), + (['\u{1f932}\u{1f3ff}'], '🤲🏿 E5.0 palms up together: dark skin tone'), + (['\u{1f91d}'], '🤝 E3.0 handshake'), + (['\u{1f91d}\u{1f3fb}'], '🤝🏻 E14.0 handshake: light skin tone'), + (['\u{1f91d}\u{1f3fc}'], '🤝🏼 E14.0 handshake: medium-light skin tone'), + (['\u{1f91d}\u{1f3fd}'], '🤝🏽 E14.0 handshake: medium skin tone'), + (['\u{1f91d}\u{1f3fe}'], '🤝🏾 E14.0 handshake: medium-dark skin tone'), + (['\u{1f91d}\u{1f3ff}'], '🤝🏿 E14.0 handshake: dark skin tone'), + ( + ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3fc}'], + '🫱🏻‍🫲🏼 E14.0 handshake: light skin tone, medium-light skin tone' + ), + ( + ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3fd}'], + '🫱🏻‍🫲🏽 E14.0 handshake: light skin tone, medium skin tone' + ), + ( + ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3fe}'], + '🫱🏻‍🫲🏾 E14.0 handshake: light skin tone, medium-dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3fb}\u200d\u{1faf2}\u{1f3ff}'], + '🫱🏻‍🫲🏿 E14.0 handshake: light skin tone, dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3fb}'], + '🫱🏼‍🫲🏻 E14.0 handshake: medium-light skin tone, light skin tone' + ), + ( + ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3fd}'], + '🫱🏼‍🫲🏽 E14.0 handshake: medium-light skin tone, medium skin tone' + ), + ( + ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3fe}'], + '🫱🏼‍🫲🏾 E14.0 handshake: medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3fc}\u200d\u{1faf2}\u{1f3ff}'], + '🫱🏼‍🫲🏿 E14.0 handshake: medium-light skin tone, dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3fb}'], + '🫱🏽‍🫲🏻 E14.0 handshake: medium skin tone, light skin tone' + ), + ( + ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3fc}'], + '🫱🏽‍🫲🏼 E14.0 handshake: medium skin tone, medium-light skin tone' + ), + ( + ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3fe}'], + '🫱🏽‍🫲🏾 E14.0 handshake: medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3fd}\u200d\u{1faf2}\u{1f3ff}'], + '🫱🏽‍🫲🏿 E14.0 handshake: medium skin tone, dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3fb}'], + '🫱🏾‍🫲🏻 E14.0 handshake: medium-dark skin tone, light skin tone' + ), + ( + ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3fc}'], + '🫱🏾‍🫲🏼 E14.0 handshake: medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3fd}'], + '🫱🏾‍🫲🏽 E14.0 handshake: medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1faf1}\u{1f3fe}\u200d\u{1faf2}\u{1f3ff}'], + '🫱🏾‍🫲🏿 E14.0 handshake: medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fb}'], + '🫱🏿‍🫲🏻 E14.0 handshake: dark skin tone, light skin tone' + ), + ( + ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fc}'], + '🫱🏿‍🫲🏼 E14.0 handshake: dark skin tone, medium-light skin tone' + ), + ( + ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fd}'], + '🫱🏿‍🫲🏽 E14.0 handshake: dark skin tone, medium skin tone' + ), + ( + ['\u{1faf1}\u{1f3ff}\u200d\u{1faf2}\u{1f3fe}'], + '🫱🏿‍🫲🏾 E14.0 handshake: dark skin tone, medium-dark skin tone' + ), + (['\u{1f64f}'], '🙏 E0.6 folded hands'), + (['\u{1f64f}\u{1f3fb}'], '🙏🏻 E1.0 folded hands: light skin tone'), + (['\u{1f64f}\u{1f3fc}'], '🙏🏼 E1.0 folded hands: medium-light skin tone'), + (['\u{1f64f}\u{1f3fd}'], '🙏🏽 E1.0 folded hands: medium skin tone'), + (['\u{1f64f}\u{1f3fe}'], '🙏🏾 E1.0 folded hands: medium-dark skin tone'), + (['\u{1f64f}\u{1f3ff}'], '🙏🏿 E1.0 folded hands: dark skin tone'), + (['\u270d\ufe0f'], '✍️ E0.7 writing hand'), + (['\u270d'], '✍ E0.7 writing hand'), + (['\u270d\u{1f3fb}'], '✍🏻 E1.0 writing hand: light skin tone'), + (['\u270d\u{1f3fc}'], '✍🏼 E1.0 writing hand: medium-light skin tone'), + (['\u270d\u{1f3fd}'], '✍🏽 E1.0 writing hand: medium skin tone'), + (['\u270d\u{1f3fe}'], '✍🏾 E1.0 writing hand: medium-dark skin tone'), + (['\u270d\u{1f3ff}'], '✍🏿 E1.0 writing hand: dark skin tone'), + (['\u{1f485}'], '💅 E0.6 nail polish'), + (['\u{1f485}\u{1f3fb}'], '💅🏻 E1.0 nail polish: light skin tone'), + (['\u{1f485}\u{1f3fc}'], '💅🏼 E1.0 nail polish: medium-light skin tone'), + (['\u{1f485}\u{1f3fd}'], '💅🏽 E1.0 nail polish: medium skin tone'), + (['\u{1f485}\u{1f3fe}'], '💅🏾 E1.0 nail polish: medium-dark skin tone'), + (['\u{1f485}\u{1f3ff}'], '💅🏿 E1.0 nail polish: dark skin tone'), + (['\u{1f933}'], '🤳 E3.0 selfie'), + (['\u{1f933}\u{1f3fb}'], '🤳🏻 E3.0 selfie: light skin tone'), + (['\u{1f933}\u{1f3fc}'], '🤳🏼 E3.0 selfie: medium-light skin tone'), + (['\u{1f933}\u{1f3fd}'], '🤳🏽 E3.0 selfie: medium skin tone'), + (['\u{1f933}\u{1f3fe}'], '🤳🏾 E3.0 selfie: medium-dark skin tone'), + (['\u{1f933}\u{1f3ff}'], '🤳🏿 E3.0 selfie: dark skin tone'), + (['\u{1f4aa}'], '💪 E0.6 flexed biceps'), + (['\u{1f4aa}\u{1f3fb}'], '💪🏻 E1.0 flexed biceps: light skin tone'), + (['\u{1f4aa}\u{1f3fc}'], '💪🏼 E1.0 flexed biceps: medium-light skin tone'), + (['\u{1f4aa}\u{1f3fd}'], '💪🏽 E1.0 flexed biceps: medium skin tone'), + (['\u{1f4aa}\u{1f3fe}'], '💪🏾 E1.0 flexed biceps: medium-dark skin tone'), + (['\u{1f4aa}\u{1f3ff}'], '💪🏿 E1.0 flexed biceps: dark skin tone'), + (['\u{1f9be}'], '🦾 E12.0 mechanical arm'), + (['\u{1f9bf}'], '🦿 E12.0 mechanical leg'), + (['\u{1f9b5}'], '🦵 E11.0 leg'), + (['\u{1f9b5}\u{1f3fb}'], '🦵🏻 E11.0 leg: light skin tone'), + (['\u{1f9b5}\u{1f3fc}'], '🦵🏼 E11.0 leg: medium-light skin tone'), + (['\u{1f9b5}\u{1f3fd}'], '🦵🏽 E11.0 leg: medium skin tone'), + (['\u{1f9b5}\u{1f3fe}'], '🦵🏾 E11.0 leg: medium-dark skin tone'), + (['\u{1f9b5}\u{1f3ff}'], '🦵🏿 E11.0 leg: dark skin tone'), + (['\u{1f9b6}'], '🦶 E11.0 foot'), + (['\u{1f9b6}\u{1f3fb}'], '🦶🏻 E11.0 foot: light skin tone'), + (['\u{1f9b6}\u{1f3fc}'], '🦶🏼 E11.0 foot: medium-light skin tone'), + (['\u{1f9b6}\u{1f3fd}'], '🦶🏽 E11.0 foot: medium skin tone'), + (['\u{1f9b6}\u{1f3fe}'], '🦶🏾 E11.0 foot: medium-dark skin tone'), + (['\u{1f9b6}\u{1f3ff}'], '🦶🏿 E11.0 foot: dark skin tone'), + (['\u{1f442}'], '👂 E0.6 ear'), + (['\u{1f442}\u{1f3fb}'], '👂🏻 E1.0 ear: light skin tone'), + (['\u{1f442}\u{1f3fc}'], '👂🏼 E1.0 ear: medium-light skin tone'), + (['\u{1f442}\u{1f3fd}'], '👂🏽 E1.0 ear: medium skin tone'), + (['\u{1f442}\u{1f3fe}'], '👂🏾 E1.0 ear: medium-dark skin tone'), + (['\u{1f442}\u{1f3ff}'], '👂🏿 E1.0 ear: dark skin tone'), + (['\u{1f9bb}'], '🦻 E12.0 ear with hearing aid'), + (['\u{1f9bb}\u{1f3fb}'], '🦻🏻 E12.0 ear with hearing aid: light skin tone'), + ( + ['\u{1f9bb}\u{1f3fc}'], + '🦻🏼 E12.0 ear with hearing aid: medium-light skin tone' + ), + (['\u{1f9bb}\u{1f3fd}'], '🦻🏽 E12.0 ear with hearing aid: medium skin tone'), + ( + ['\u{1f9bb}\u{1f3fe}'], + '🦻🏾 E12.0 ear with hearing aid: medium-dark skin tone' + ), + (['\u{1f9bb}\u{1f3ff}'], '🦻🏿 E12.0 ear with hearing aid: dark skin tone'), + (['\u{1f443}'], '👃 E0.6 nose'), + (['\u{1f443}\u{1f3fb}'], '👃🏻 E1.0 nose: light skin tone'), + (['\u{1f443}\u{1f3fc}'], '👃🏼 E1.0 nose: medium-light skin tone'), + (['\u{1f443}\u{1f3fd}'], '👃🏽 E1.0 nose: medium skin tone'), + (['\u{1f443}\u{1f3fe}'], '👃🏾 E1.0 nose: medium-dark skin tone'), + (['\u{1f443}\u{1f3ff}'], '👃🏿 E1.0 nose: dark skin tone'), + (['\u{1f9e0}'], '🧠 E5.0 brain'), + (['\u{1fac0}'], '🫀 E13.0 anatomical heart'), + (['\u{1fac1}'], '🫁 E13.0 lungs'), + (['\u{1f9b7}'], '🦷 E11.0 tooth'), + (['\u{1f9b4}'], '🦴 E11.0 bone'), + (['\u{1f440}'], '👀 E0.6 eyes'), + (['\u{1f441}\ufe0f'], '👁️ E0.7 eye'), + (['\u{1f441}'], '👁 E0.7 eye'), + (['\u{1f445}'], '👅 E0.6 tongue'), + (['\u{1f444}'], '👄 E0.6 mouth'), + (['\u{1fae6}'], '🫦 E14.0 biting lip'), + (['\u{1f476}'], '👶 E0.6 baby'), + (['\u{1f476}\u{1f3fb}'], '👶🏻 E1.0 baby: light skin tone'), + (['\u{1f476}\u{1f3fc}'], '👶🏼 E1.0 baby: medium-light skin tone'), + (['\u{1f476}\u{1f3fd}'], '👶🏽 E1.0 baby: medium skin tone'), + (['\u{1f476}\u{1f3fe}'], '👶🏾 E1.0 baby: medium-dark skin tone'), + (['\u{1f476}\u{1f3ff}'], '👶🏿 E1.0 baby: dark skin tone'), + (['\u{1f9d2}'], '🧒 E5.0 child'), + (['\u{1f9d2}\u{1f3fb}'], '🧒🏻 E5.0 child: light skin tone'), + (['\u{1f9d2}\u{1f3fc}'], '🧒🏼 E5.0 child: medium-light skin tone'), + (['\u{1f9d2}\u{1f3fd}'], '🧒🏽 E5.0 child: medium skin tone'), + (['\u{1f9d2}\u{1f3fe}'], '🧒🏾 E5.0 child: medium-dark skin tone'), + (['\u{1f9d2}\u{1f3ff}'], '🧒🏿 E5.0 child: dark skin tone'), + (['\u{1f466}'], '👦 E0.6 boy'), + (['\u{1f466}\u{1f3fb}'], '👦🏻 E1.0 boy: light skin tone'), + (['\u{1f466}\u{1f3fc}'], '👦🏼 E1.0 boy: medium-light skin tone'), + (['\u{1f466}\u{1f3fd}'], '👦🏽 E1.0 boy: medium skin tone'), + (['\u{1f466}\u{1f3fe}'], '👦🏾 E1.0 boy: medium-dark skin tone'), + (['\u{1f466}\u{1f3ff}'], '👦🏿 E1.0 boy: dark skin tone'), + (['\u{1f467}'], '👧 E0.6 girl'), + (['\u{1f467}\u{1f3fb}'], '👧🏻 E1.0 girl: light skin tone'), + (['\u{1f467}\u{1f3fc}'], '👧🏼 E1.0 girl: medium-light skin tone'), + (['\u{1f467}\u{1f3fd}'], '👧🏽 E1.0 girl: medium skin tone'), + (['\u{1f467}\u{1f3fe}'], '👧🏾 E1.0 girl: medium-dark skin tone'), + (['\u{1f467}\u{1f3ff}'], '👧🏿 E1.0 girl: dark skin tone'), + (['\u{1f9d1}'], '🧑 E5.0 person'), + (['\u{1f9d1}\u{1f3fb}'], '🧑🏻 E5.0 person: light skin tone'), + (['\u{1f9d1}\u{1f3fc}'], '🧑🏼 E5.0 person: medium-light skin tone'), + (['\u{1f9d1}\u{1f3fd}'], '🧑🏽 E5.0 person: medium skin tone'), + (['\u{1f9d1}\u{1f3fe}'], '🧑🏾 E5.0 person: medium-dark skin tone'), + (['\u{1f9d1}\u{1f3ff}'], '🧑🏿 E5.0 person: dark skin tone'), + (['\u{1f471}'], '👱 E0.6 person: blond hair'), + (['\u{1f471}\u{1f3fb}'], '👱🏻 E1.0 person: light skin tone, blond hair'), + ( + ['\u{1f471}\u{1f3fc}'], + '👱🏼 E1.0 person: medium-light skin tone, blond hair' + ), + (['\u{1f471}\u{1f3fd}'], '👱🏽 E1.0 person: medium skin tone, blond hair'), + ( + ['\u{1f471}\u{1f3fe}'], + '👱🏾 E1.0 person: medium-dark skin tone, blond hair' + ), + (['\u{1f471}\u{1f3ff}'], '👱🏿 E1.0 person: dark skin tone, blond hair'), + (['\u{1f468}'], '👨 E0.6 man'), + (['\u{1f468}\u{1f3fb}'], '👨🏻 E1.0 man: light skin tone'), + (['\u{1f468}\u{1f3fc}'], '👨🏼 E1.0 man: medium-light skin tone'), + (['\u{1f468}\u{1f3fd}'], '👨🏽 E1.0 man: medium skin tone'), + (['\u{1f468}\u{1f3fe}'], '👨🏾 E1.0 man: medium-dark skin tone'), + (['\u{1f468}\u{1f3ff}'], '👨🏿 E1.0 man: dark skin tone'), + (['\u{1f9d4}'], '🧔 E5.0 person: beard'), + (['\u{1f9d4}\u{1f3fb}'], '🧔🏻 E5.0 person: light skin tone, beard'), + (['\u{1f9d4}\u{1f3fc}'], '🧔🏼 E5.0 person: medium-light skin tone, beard'), + (['\u{1f9d4}\u{1f3fd}'], '🧔🏽 E5.0 person: medium skin tone, beard'), + (['\u{1f9d4}\u{1f3fe}'], '🧔🏾 E5.0 person: medium-dark skin tone, beard'), + (['\u{1f9d4}\u{1f3ff}'], '🧔🏿 E5.0 person: dark skin tone, beard'), + (['\u{1f9d4}\u200d\u2642\ufe0f'], '🧔‍♂️ E13.1 man: beard'), + (['\u{1f9d4}\u200d\u2642'], '🧔‍♂ E13.1 man: beard'), + ( + ['\u{1f9d4}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧔🏻‍♂️ E13.1 man: light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fb}\u200d\u2642'], + '🧔🏻‍♂ E13.1 man: light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧔🏼‍♂️ E13.1 man: medium-light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fc}\u200d\u2642'], + '🧔🏼‍♂ E13.1 man: medium-light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧔🏽‍♂️ E13.1 man: medium skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fd}\u200d\u2642'], + '🧔🏽‍♂ E13.1 man: medium skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧔🏾‍♂️ E13.1 man: medium-dark skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fe}\u200d\u2642'], + '🧔🏾‍♂ E13.1 man: medium-dark skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧔🏿‍♂️ E13.1 man: dark skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3ff}\u200d\u2642'], + '🧔🏿‍♂ E13.1 man: dark skin tone, beard' + ), + (['\u{1f9d4}\u200d\u2640\ufe0f'], '🧔‍♀️ E13.1 woman: beard'), + (['\u{1f9d4}\u200d\u2640'], '🧔‍♀ E13.1 woman: beard'), + ( + ['\u{1f9d4}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧔🏻‍♀️ E13.1 woman: light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fb}\u200d\u2640'], + '🧔🏻‍♀ E13.1 woman: light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧔🏼‍♀️ E13.1 woman: medium-light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fc}\u200d\u2640'], + '🧔🏼‍♀ E13.1 woman: medium-light skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧔🏽‍♀️ E13.1 woman: medium skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fd}\u200d\u2640'], + '🧔🏽‍♀ E13.1 woman: medium skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧔🏾‍♀️ E13.1 woman: medium-dark skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3fe}\u200d\u2640'], + '🧔🏾‍♀ E13.1 woman: medium-dark skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧔🏿‍♀️ E13.1 woman: dark skin tone, beard' + ), + ( + ['\u{1f9d4}\u{1f3ff}\u200d\u2640'], + '🧔🏿‍♀ E13.1 woman: dark skin tone, beard' + ), + (['\u{1f468}\u200d\u{1f9b0}'], '👨‍🦰 E11.0 man: red hair'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9b0}'], + '👨🏻‍🦰 E11.0 man: light skin tone, red hair' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9b0}'], + '👨🏼‍🦰 E11.0 man: medium-light skin tone, red hair' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9b0}'], + '👨🏽‍🦰 E11.0 man: medium skin tone, red hair' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9b0}'], + '👨🏾‍🦰 E11.0 man: medium-dark skin tone, red hair' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9b0}'], + '👨🏿‍🦰 E11.0 man: dark skin tone, red hair' + ), + (['\u{1f468}\u200d\u{1f9b1}'], '👨‍🦱 E11.0 man: curly hair'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9b1}'], + '👨🏻‍🦱 E11.0 man: light skin tone, curly hair' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9b1}'], + '👨🏼‍🦱 E11.0 man: medium-light skin tone, curly hair' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9b1}'], + '👨🏽‍🦱 E11.0 man: medium skin tone, curly hair' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9b1}'], + '👨🏾‍🦱 E11.0 man: medium-dark skin tone, curly hair' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9b1}'], + '👨🏿‍🦱 E11.0 man: dark skin tone, curly hair' + ), + (['\u{1f468}\u200d\u{1f9b3}'], '👨‍🦳 E11.0 man: white hair'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9b3}'], + '👨🏻‍🦳 E11.0 man: light skin tone, white hair' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9b3}'], + '👨🏼‍🦳 E11.0 man: medium-light skin tone, white hair' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9b3}'], + '👨🏽‍🦳 E11.0 man: medium skin tone, white hair' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9b3}'], + '👨🏾‍🦳 E11.0 man: medium-dark skin tone, white hair' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9b3}'], + '👨🏿‍🦳 E11.0 man: dark skin tone, white hair' + ), + (['\u{1f468}\u200d\u{1f9b2}'], '👨‍🦲 E11.0 man: bald'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9b2}'], + '👨🏻‍🦲 E11.0 man: light skin tone, bald' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9b2}'], + '👨🏼‍🦲 E11.0 man: medium-light skin tone, bald' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9b2}'], + '👨🏽‍🦲 E11.0 man: medium skin tone, bald' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9b2}'], + '👨🏾‍🦲 E11.0 man: medium-dark skin tone, bald' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9b2}'], + '👨🏿‍🦲 E11.0 man: dark skin tone, bald' + ), + (['\u{1f469}'], '👩 E0.6 woman'), + (['\u{1f469}\u{1f3fb}'], '👩🏻 E1.0 woman: light skin tone'), + (['\u{1f469}\u{1f3fc}'], '👩🏼 E1.0 woman: medium-light skin tone'), + (['\u{1f469}\u{1f3fd}'], '👩🏽 E1.0 woman: medium skin tone'), + (['\u{1f469}\u{1f3fe}'], '👩🏾 E1.0 woman: medium-dark skin tone'), + (['\u{1f469}\u{1f3ff}'], '👩🏿 E1.0 woman: dark skin tone'), + (['\u{1f469}\u200d\u{1f9b0}'], '👩‍🦰 E11.0 woman: red hair'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9b0}'], + '👩🏻‍🦰 E11.0 woman: light skin tone, red hair' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9b0}'], + '👩🏼‍🦰 E11.0 woman: medium-light skin tone, red hair' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9b0}'], + '👩🏽‍🦰 E11.0 woman: medium skin tone, red hair' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9b0}'], + '👩🏾‍🦰 E11.0 woman: medium-dark skin tone, red hair' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9b0}'], + '👩🏿‍🦰 E11.0 woman: dark skin tone, red hair' + ), + (['\u{1f9d1}\u200d\u{1f9b0}'], '🧑‍🦰 E12.1 person: red hair'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b0}'], + '🧑🏻‍🦰 E12.1 person: light skin tone, red hair' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b0}'], + '🧑🏼‍🦰 E12.1 person: medium-light skin tone, red hair' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b0}'], + '🧑🏽‍🦰 E12.1 person: medium skin tone, red hair' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b0}'], + '🧑🏾‍🦰 E12.1 person: medium-dark skin tone, red hair' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b0}'], + '🧑🏿‍🦰 E12.1 person: dark skin tone, red hair' + ), + (['\u{1f469}\u200d\u{1f9b1}'], '👩‍🦱 E11.0 woman: curly hair'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9b1}'], + '👩🏻‍🦱 E11.0 woman: light skin tone, curly hair' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9b1}'], + '👩🏼‍🦱 E11.0 woman: medium-light skin tone, curly hair' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9b1}'], + '👩🏽‍🦱 E11.0 woman: medium skin tone, curly hair' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9b1}'], + '👩🏾‍🦱 E11.0 woman: medium-dark skin tone, curly hair' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9b1}'], + '👩🏿‍🦱 E11.0 woman: dark skin tone, curly hair' + ), + (['\u{1f9d1}\u200d\u{1f9b1}'], '🧑‍🦱 E12.1 person: curly hair'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b1}'], + '🧑🏻‍🦱 E12.1 person: light skin tone, curly hair' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b1}'], + '🧑🏼‍🦱 E12.1 person: medium-light skin tone, curly hair' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b1}'], + '🧑🏽‍🦱 E12.1 person: medium skin tone, curly hair' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b1}'], + '🧑🏾‍🦱 E12.1 person: medium-dark skin tone, curly hair' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b1}'], + '🧑🏿‍🦱 E12.1 person: dark skin tone, curly hair' + ), + (['\u{1f469}\u200d\u{1f9b3}'], '👩‍🦳 E11.0 woman: white hair'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9b3}'], + '👩🏻‍🦳 E11.0 woman: light skin tone, white hair' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9b3}'], + '👩🏼‍🦳 E11.0 woman: medium-light skin tone, white hair' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9b3}'], + '👩🏽‍🦳 E11.0 woman: medium skin tone, white hair' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9b3}'], + '👩🏾‍🦳 E11.0 woman: medium-dark skin tone, white hair' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9b3}'], + '👩🏿‍🦳 E11.0 woman: dark skin tone, white hair' + ), + (['\u{1f9d1}\u200d\u{1f9b3}'], '🧑‍🦳 E12.1 person: white hair'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b3}'], + '🧑🏻‍🦳 E12.1 person: light skin tone, white hair' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b3}'], + '🧑🏼‍🦳 E12.1 person: medium-light skin tone, white hair' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b3}'], + '🧑🏽‍🦳 E12.1 person: medium skin tone, white hair' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b3}'], + '🧑🏾‍🦳 E12.1 person: medium-dark skin tone, white hair' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b3}'], + '🧑🏿‍🦳 E12.1 person: dark skin tone, white hair' + ), + (['\u{1f469}\u200d\u{1f9b2}'], '👩‍🦲 E11.0 woman: bald'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9b2}'], + '👩🏻‍🦲 E11.0 woman: light skin tone, bald' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9b2}'], + '👩🏼‍🦲 E11.0 woman: medium-light skin tone, bald' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9b2}'], + '👩🏽‍🦲 E11.0 woman: medium skin tone, bald' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9b2}'], + '👩🏾‍🦲 E11.0 woman: medium-dark skin tone, bald' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9b2}'], + '👩🏿‍🦲 E11.0 woman: dark skin tone, bald' + ), + (['\u{1f9d1}\u200d\u{1f9b2}'], '🧑‍🦲 E12.1 person: bald'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9b2}'], + '🧑🏻‍🦲 E12.1 person: light skin tone, bald' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9b2}'], + '🧑🏼‍🦲 E12.1 person: medium-light skin tone, bald' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9b2}'], + '🧑🏽‍🦲 E12.1 person: medium skin tone, bald' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9b2}'], + '🧑🏾‍🦲 E12.1 person: medium-dark skin tone, bald' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9b2}'], + '🧑🏿‍🦲 E12.1 person: dark skin tone, bald' + ), + (['\u{1f471}\u200d\u2640\ufe0f'], '👱‍♀️ E4.0 woman: blond hair'), + (['\u{1f471}\u200d\u2640'], '👱‍♀ E4.0 woman: blond hair'), + ( + ['\u{1f471}\u{1f3fb}\u200d\u2640\ufe0f'], + '👱🏻‍♀️ E4.0 woman: light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fb}\u200d\u2640'], + '👱🏻‍♀ E4.0 woman: light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fc}\u200d\u2640\ufe0f'], + '👱🏼‍♀️ E4.0 woman: medium-light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fc}\u200d\u2640'], + '👱🏼‍♀ E4.0 woman: medium-light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fd}\u200d\u2640\ufe0f'], + '👱🏽‍♀️ E4.0 woman: medium skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fd}\u200d\u2640'], + '👱🏽‍♀ E4.0 woman: medium skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fe}\u200d\u2640\ufe0f'], + '👱🏾‍♀️ E4.0 woman: medium-dark skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fe}\u200d\u2640'], + '👱🏾‍♀ E4.0 woman: medium-dark skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3ff}\u200d\u2640\ufe0f'], + '👱🏿‍♀️ E4.0 woman: dark skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3ff}\u200d\u2640'], + '👱🏿‍♀ E4.0 woman: dark skin tone, blond hair' + ), + (['\u{1f471}\u200d\u2642\ufe0f'], '👱‍♂️ E4.0 man: blond hair'), + (['\u{1f471}\u200d\u2642'], '👱‍♂ E4.0 man: blond hair'), + ( + ['\u{1f471}\u{1f3fb}\u200d\u2642\ufe0f'], + '👱🏻‍♂️ E4.0 man: light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fb}\u200d\u2642'], + '👱🏻‍♂ E4.0 man: light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fc}\u200d\u2642\ufe0f'], + '👱🏼‍♂️ E4.0 man: medium-light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fc}\u200d\u2642'], + '👱🏼‍♂ E4.0 man: medium-light skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fd}\u200d\u2642\ufe0f'], + '👱🏽‍♂️ E4.0 man: medium skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fd}\u200d\u2642'], + '👱🏽‍♂ E4.0 man: medium skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fe}\u200d\u2642\ufe0f'], + '👱🏾‍♂️ E4.0 man: medium-dark skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3fe}\u200d\u2642'], + '👱🏾‍♂ E4.0 man: medium-dark skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3ff}\u200d\u2642\ufe0f'], + '👱🏿‍♂️ E4.0 man: dark skin tone, blond hair' + ), + ( + ['\u{1f471}\u{1f3ff}\u200d\u2642'], + '👱🏿‍♂ E4.0 man: dark skin tone, blond hair' + ), + (['\u{1f9d3}'], '🧓 E5.0 older person'), + (['\u{1f9d3}\u{1f3fb}'], '🧓🏻 E5.0 older person: light skin tone'), + (['\u{1f9d3}\u{1f3fc}'], '🧓🏼 E5.0 older person: medium-light skin tone'), + (['\u{1f9d3}\u{1f3fd}'], '🧓🏽 E5.0 older person: medium skin tone'), + (['\u{1f9d3}\u{1f3fe}'], '🧓🏾 E5.0 older person: medium-dark skin tone'), + (['\u{1f9d3}\u{1f3ff}'], '🧓🏿 E5.0 older person: dark skin tone'), + (['\u{1f474}'], '👴 E0.6 old man'), + (['\u{1f474}\u{1f3fb}'], '👴🏻 E1.0 old man: light skin tone'), + (['\u{1f474}\u{1f3fc}'], '👴🏼 E1.0 old man: medium-light skin tone'), + (['\u{1f474}\u{1f3fd}'], '👴🏽 E1.0 old man: medium skin tone'), + (['\u{1f474}\u{1f3fe}'], '👴🏾 E1.0 old man: medium-dark skin tone'), + (['\u{1f474}\u{1f3ff}'], '👴🏿 E1.0 old man: dark skin tone'), + (['\u{1f475}'], '👵 E0.6 old woman'), + (['\u{1f475}\u{1f3fb}'], '👵🏻 E1.0 old woman: light skin tone'), + (['\u{1f475}\u{1f3fc}'], '👵🏼 E1.0 old woman: medium-light skin tone'), + (['\u{1f475}\u{1f3fd}'], '👵🏽 E1.0 old woman: medium skin tone'), + (['\u{1f475}\u{1f3fe}'], '👵🏾 E1.0 old woman: medium-dark skin tone'), + (['\u{1f475}\u{1f3ff}'], '👵🏿 E1.0 old woman: dark skin tone'), + (['\u{1f64d}'], '🙍 E0.6 person frowning'), + (['\u{1f64d}\u{1f3fb}'], '🙍🏻 E1.0 person frowning: light skin tone'), + (['\u{1f64d}\u{1f3fc}'], '🙍🏼 E1.0 person frowning: medium-light skin tone'), + (['\u{1f64d}\u{1f3fd}'], '🙍🏽 E1.0 person frowning: medium skin tone'), + (['\u{1f64d}\u{1f3fe}'], '🙍🏾 E1.0 person frowning: medium-dark skin tone'), + (['\u{1f64d}\u{1f3ff}'], '🙍🏿 E1.0 person frowning: dark skin tone'), + (['\u{1f64d}\u200d\u2642\ufe0f'], '🙍‍♂️ E4.0 man frowning'), + (['\u{1f64d}\u200d\u2642'], '🙍‍♂ E4.0 man frowning'), + ( + ['\u{1f64d}\u{1f3fb}\u200d\u2642\ufe0f'], + '🙍🏻‍♂️ E4.0 man frowning: light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fb}\u200d\u2642'], + '🙍🏻‍♂ E4.0 man frowning: light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fc}\u200d\u2642\ufe0f'], + '🙍🏼‍♂️ E4.0 man frowning: medium-light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fc}\u200d\u2642'], + '🙍🏼‍♂ E4.0 man frowning: medium-light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fd}\u200d\u2642\ufe0f'], + '🙍🏽‍♂️ E4.0 man frowning: medium skin tone' + ), + ( + ['\u{1f64d}\u{1f3fd}\u200d\u2642'], + '🙍🏽‍♂ E4.0 man frowning: medium skin tone' + ), + ( + ['\u{1f64d}\u{1f3fe}\u200d\u2642\ufe0f'], + '🙍🏾‍♂️ E4.0 man frowning: medium-dark skin tone' + ), + ( + ['\u{1f64d}\u{1f3fe}\u200d\u2642'], + '🙍🏾‍♂ E4.0 man frowning: medium-dark skin tone' + ), + ( + ['\u{1f64d}\u{1f3ff}\u200d\u2642\ufe0f'], + '🙍🏿‍♂️ E4.0 man frowning: dark skin tone' + ), + ( + ['\u{1f64d}\u{1f3ff}\u200d\u2642'], + '🙍🏿‍♂ E4.0 man frowning: dark skin tone' + ), + (['\u{1f64d}\u200d\u2640\ufe0f'], '🙍‍♀️ E4.0 woman frowning'), + (['\u{1f64d}\u200d\u2640'], '🙍‍♀ E4.0 woman frowning'), + ( + ['\u{1f64d}\u{1f3fb}\u200d\u2640\ufe0f'], + '🙍🏻‍♀️ E4.0 woman frowning: light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fb}\u200d\u2640'], + '🙍🏻‍♀ E4.0 woman frowning: light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fc}\u200d\u2640\ufe0f'], + '🙍🏼‍♀️ E4.0 woman frowning: medium-light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fc}\u200d\u2640'], + '🙍🏼‍♀ E4.0 woman frowning: medium-light skin tone' + ), + ( + ['\u{1f64d}\u{1f3fd}\u200d\u2640\ufe0f'], + '🙍🏽‍♀️ E4.0 woman frowning: medium skin tone' + ), + ( + ['\u{1f64d}\u{1f3fd}\u200d\u2640'], + '🙍🏽‍♀ E4.0 woman frowning: medium skin tone' + ), + ( + ['\u{1f64d}\u{1f3fe}\u200d\u2640\ufe0f'], + '🙍🏾‍♀️ E4.0 woman frowning: medium-dark skin tone' + ), + ( + ['\u{1f64d}\u{1f3fe}\u200d\u2640'], + '🙍🏾‍♀ E4.0 woman frowning: medium-dark skin tone' + ), + ( + ['\u{1f64d}\u{1f3ff}\u200d\u2640\ufe0f'], + '🙍🏿‍♀️ E4.0 woman frowning: dark skin tone' + ), + ( + ['\u{1f64d}\u{1f3ff}\u200d\u2640'], + '🙍🏿‍♀ E4.0 woman frowning: dark skin tone' + ), + (['\u{1f64e}'], '🙎 E0.6 person pouting'), + (['\u{1f64e}\u{1f3fb}'], '🙎🏻 E1.0 person pouting: light skin tone'), + (['\u{1f64e}\u{1f3fc}'], '🙎🏼 E1.0 person pouting: medium-light skin tone'), + (['\u{1f64e}\u{1f3fd}'], '🙎🏽 E1.0 person pouting: medium skin tone'), + (['\u{1f64e}\u{1f3fe}'], '🙎🏾 E1.0 person pouting: medium-dark skin tone'), + (['\u{1f64e}\u{1f3ff}'], '🙎🏿 E1.0 person pouting: dark skin tone'), + (['\u{1f64e}\u200d\u2642\ufe0f'], '🙎‍♂️ E4.0 man pouting'), + (['\u{1f64e}\u200d\u2642'], '🙎‍♂ E4.0 man pouting'), + ( + ['\u{1f64e}\u{1f3fb}\u200d\u2642\ufe0f'], + '🙎🏻‍♂️ E4.0 man pouting: light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fb}\u200d\u2642'], + '🙎🏻‍♂ E4.0 man pouting: light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fc}\u200d\u2642\ufe0f'], + '🙎🏼‍♂️ E4.0 man pouting: medium-light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fc}\u200d\u2642'], + '🙎🏼‍♂ E4.0 man pouting: medium-light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fd}\u200d\u2642\ufe0f'], + '🙎🏽‍♂️ E4.0 man pouting: medium skin tone' + ), + ( + ['\u{1f64e}\u{1f3fd}\u200d\u2642'], + '🙎🏽‍♂ E4.0 man pouting: medium skin tone' + ), + ( + ['\u{1f64e}\u{1f3fe}\u200d\u2642\ufe0f'], + '🙎🏾‍♂️ E4.0 man pouting: medium-dark skin tone' + ), + ( + ['\u{1f64e}\u{1f3fe}\u200d\u2642'], + '🙎🏾‍♂ E4.0 man pouting: medium-dark skin tone' + ), + ( + ['\u{1f64e}\u{1f3ff}\u200d\u2642\ufe0f'], + '🙎🏿‍♂️ E4.0 man pouting: dark skin tone' + ), + ( + ['\u{1f64e}\u{1f3ff}\u200d\u2642'], + '🙎🏿‍♂ E4.0 man pouting: dark skin tone' + ), + (['\u{1f64e}\u200d\u2640\ufe0f'], '🙎‍♀️ E4.0 woman pouting'), + (['\u{1f64e}\u200d\u2640'], '🙎‍♀ E4.0 woman pouting'), + ( + ['\u{1f64e}\u{1f3fb}\u200d\u2640\ufe0f'], + '🙎🏻‍♀️ E4.0 woman pouting: light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fb}\u200d\u2640'], + '🙎🏻‍♀ E4.0 woman pouting: light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fc}\u200d\u2640\ufe0f'], + '🙎🏼‍♀️ E4.0 woman pouting: medium-light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fc}\u200d\u2640'], + '🙎🏼‍♀ E4.0 woman pouting: medium-light skin tone' + ), + ( + ['\u{1f64e}\u{1f3fd}\u200d\u2640\ufe0f'], + '🙎🏽‍♀️ E4.0 woman pouting: medium skin tone' + ), + ( + ['\u{1f64e}\u{1f3fd}\u200d\u2640'], + '🙎🏽‍♀ E4.0 woman pouting: medium skin tone' + ), + ( + ['\u{1f64e}\u{1f3fe}\u200d\u2640\ufe0f'], + '🙎🏾‍♀️ E4.0 woman pouting: medium-dark skin tone' + ), + ( + ['\u{1f64e}\u{1f3fe}\u200d\u2640'], + '🙎🏾‍♀ E4.0 woman pouting: medium-dark skin tone' + ), + ( + ['\u{1f64e}\u{1f3ff}\u200d\u2640\ufe0f'], + '🙎🏿‍♀️ E4.0 woman pouting: dark skin tone' + ), + ( + ['\u{1f64e}\u{1f3ff}\u200d\u2640'], + '🙎🏿‍♀ E4.0 woman pouting: dark skin tone' + ), + (['\u{1f645}'], '🙅 E0.6 person gesturing NO'), + (['\u{1f645}\u{1f3fb}'], '🙅🏻 E1.0 person gesturing NO: light skin tone'), + ( + ['\u{1f645}\u{1f3fc}'], + '🙅🏼 E1.0 person gesturing NO: medium-light skin tone' + ), + (['\u{1f645}\u{1f3fd}'], '🙅🏽 E1.0 person gesturing NO: medium skin tone'), + ( + ['\u{1f645}\u{1f3fe}'], + '🙅🏾 E1.0 person gesturing NO: medium-dark skin tone' + ), + (['\u{1f645}\u{1f3ff}'], '🙅🏿 E1.0 person gesturing NO: dark skin tone'), + (['\u{1f645}\u200d\u2642\ufe0f'], '🙅‍♂️ E4.0 man gesturing NO'), + (['\u{1f645}\u200d\u2642'], '🙅‍♂ E4.0 man gesturing NO'), + ( + ['\u{1f645}\u{1f3fb}\u200d\u2642\ufe0f'], + '🙅🏻‍♂️ E4.0 man gesturing NO: light skin tone' + ), + ( + ['\u{1f645}\u{1f3fb}\u200d\u2642'], + '🙅🏻‍♂ E4.0 man gesturing NO: light skin tone' + ), + ( + ['\u{1f645}\u{1f3fc}\u200d\u2642\ufe0f'], + '🙅🏼‍♂️ E4.0 man gesturing NO: medium-light skin tone' + ), + ( + ['\u{1f645}\u{1f3fc}\u200d\u2642'], + '🙅🏼‍♂ E4.0 man gesturing NO: medium-light skin tone' + ), + ( + ['\u{1f645}\u{1f3fd}\u200d\u2642\ufe0f'], + '🙅🏽‍♂️ E4.0 man gesturing NO: medium skin tone' + ), + ( + ['\u{1f645}\u{1f3fd}\u200d\u2642'], + '🙅🏽‍♂ E4.0 man gesturing NO: medium skin tone' + ), + ( + ['\u{1f645}\u{1f3fe}\u200d\u2642\ufe0f'], + '🙅🏾‍♂️ E4.0 man gesturing NO: medium-dark skin tone' + ), + ( + ['\u{1f645}\u{1f3fe}\u200d\u2642'], + '🙅🏾‍♂ E4.0 man gesturing NO: medium-dark skin tone' + ), + ( + ['\u{1f645}\u{1f3ff}\u200d\u2642\ufe0f'], + '🙅🏿‍♂️ E4.0 man gesturing NO: dark skin tone' + ), + ( + ['\u{1f645}\u{1f3ff}\u200d\u2642'], + '🙅🏿‍♂ E4.0 man gesturing NO: dark skin tone' + ), + (['\u{1f645}\u200d\u2640\ufe0f'], '🙅‍♀️ E4.0 woman gesturing NO'), + (['\u{1f645}\u200d\u2640'], '🙅‍♀ E4.0 woman gesturing NO'), + ( + ['\u{1f645}\u{1f3fb}\u200d\u2640\ufe0f'], + '🙅🏻‍♀️ E4.0 woman gesturing NO: light skin tone' + ), + ( + ['\u{1f645}\u{1f3fb}\u200d\u2640'], + '🙅🏻‍♀ E4.0 woman gesturing NO: light skin tone' + ), + ( + ['\u{1f645}\u{1f3fc}\u200d\u2640\ufe0f'], + '🙅🏼‍♀️ E4.0 woman gesturing NO: medium-light skin tone' + ), + ( + ['\u{1f645}\u{1f3fc}\u200d\u2640'], + '🙅🏼‍♀ E4.0 woman gesturing NO: medium-light skin tone' + ), + ( + ['\u{1f645}\u{1f3fd}\u200d\u2640\ufe0f'], + '🙅🏽‍♀️ E4.0 woman gesturing NO: medium skin tone' + ), + ( + ['\u{1f645}\u{1f3fd}\u200d\u2640'], + '🙅🏽‍♀ E4.0 woman gesturing NO: medium skin tone' + ), + ( + ['\u{1f645}\u{1f3fe}\u200d\u2640\ufe0f'], + '🙅🏾‍♀️ E4.0 woman gesturing NO: medium-dark skin tone' + ), + ( + ['\u{1f645}\u{1f3fe}\u200d\u2640'], + '🙅🏾‍♀ E4.0 woman gesturing NO: medium-dark skin tone' + ), + ( + ['\u{1f645}\u{1f3ff}\u200d\u2640\ufe0f'], + '🙅🏿‍♀️ E4.0 woman gesturing NO: dark skin tone' + ), + ( + ['\u{1f645}\u{1f3ff}\u200d\u2640'], + '🙅🏿‍♀ E4.0 woman gesturing NO: dark skin tone' + ), + (['\u{1f646}'], '🙆 E0.6 person gesturing OK'), + (['\u{1f646}\u{1f3fb}'], '🙆🏻 E1.0 person gesturing OK: light skin tone'), + ( + ['\u{1f646}\u{1f3fc}'], + '🙆🏼 E1.0 person gesturing OK: medium-light skin tone' + ), + (['\u{1f646}\u{1f3fd}'], '🙆🏽 E1.0 person gesturing OK: medium skin tone'), + ( + ['\u{1f646}\u{1f3fe}'], + '🙆🏾 E1.0 person gesturing OK: medium-dark skin tone' + ), + (['\u{1f646}\u{1f3ff}'], '🙆🏿 E1.0 person gesturing OK: dark skin tone'), + (['\u{1f646}\u200d\u2642\ufe0f'], '🙆‍♂️ E4.0 man gesturing OK'), + (['\u{1f646}\u200d\u2642'], '🙆‍♂ E4.0 man gesturing OK'), + ( + ['\u{1f646}\u{1f3fb}\u200d\u2642\ufe0f'], + '🙆🏻‍♂️ E4.0 man gesturing OK: light skin tone' + ), + ( + ['\u{1f646}\u{1f3fb}\u200d\u2642'], + '🙆🏻‍♂ E4.0 man gesturing OK: light skin tone' + ), + ( + ['\u{1f646}\u{1f3fc}\u200d\u2642\ufe0f'], + '🙆🏼‍♂️ E4.0 man gesturing OK: medium-light skin tone' + ), + ( + ['\u{1f646}\u{1f3fc}\u200d\u2642'], + '🙆🏼‍♂ E4.0 man gesturing OK: medium-light skin tone' + ), + ( + ['\u{1f646}\u{1f3fd}\u200d\u2642\ufe0f'], + '🙆🏽‍♂️ E4.0 man gesturing OK: medium skin tone' + ), + ( + ['\u{1f646}\u{1f3fd}\u200d\u2642'], + '🙆🏽‍♂ E4.0 man gesturing OK: medium skin tone' + ), + ( + ['\u{1f646}\u{1f3fe}\u200d\u2642\ufe0f'], + '🙆🏾‍♂️ E4.0 man gesturing OK: medium-dark skin tone' + ), + ( + ['\u{1f646}\u{1f3fe}\u200d\u2642'], + '🙆🏾‍♂ E4.0 man gesturing OK: medium-dark skin tone' + ), + ( + ['\u{1f646}\u{1f3ff}\u200d\u2642\ufe0f'], + '🙆🏿‍♂️ E4.0 man gesturing OK: dark skin tone' + ), + ( + ['\u{1f646}\u{1f3ff}\u200d\u2642'], + '🙆🏿‍♂ E4.0 man gesturing OK: dark skin tone' + ), + (['\u{1f646}\u200d\u2640\ufe0f'], '🙆‍♀️ E4.0 woman gesturing OK'), + (['\u{1f646}\u200d\u2640'], '🙆‍♀ E4.0 woman gesturing OK'), + ( + ['\u{1f646}\u{1f3fb}\u200d\u2640\ufe0f'], + '🙆🏻‍♀️ E4.0 woman gesturing OK: light skin tone' + ), + ( + ['\u{1f646}\u{1f3fb}\u200d\u2640'], + '🙆🏻‍♀ E4.0 woman gesturing OK: light skin tone' + ), + ( + ['\u{1f646}\u{1f3fc}\u200d\u2640\ufe0f'], + '🙆🏼‍♀️ E4.0 woman gesturing OK: medium-light skin tone' + ), + ( + ['\u{1f646}\u{1f3fc}\u200d\u2640'], + '🙆🏼‍♀ E4.0 woman gesturing OK: medium-light skin tone' + ), + ( + ['\u{1f646}\u{1f3fd}\u200d\u2640\ufe0f'], + '🙆🏽‍♀️ E4.0 woman gesturing OK: medium skin tone' + ), + ( + ['\u{1f646}\u{1f3fd}\u200d\u2640'], + '🙆🏽‍♀ E4.0 woman gesturing OK: medium skin tone' + ), + ( + ['\u{1f646}\u{1f3fe}\u200d\u2640\ufe0f'], + '🙆🏾‍♀️ E4.0 woman gesturing OK: medium-dark skin tone' + ), + ( + ['\u{1f646}\u{1f3fe}\u200d\u2640'], + '🙆🏾‍♀ E4.0 woman gesturing OK: medium-dark skin tone' + ), + ( + ['\u{1f646}\u{1f3ff}\u200d\u2640\ufe0f'], + '🙆🏿‍♀️ E4.0 woman gesturing OK: dark skin tone' + ), + ( + ['\u{1f646}\u{1f3ff}\u200d\u2640'], + '🙆🏿‍♀ E4.0 woman gesturing OK: dark skin tone' + ), + (['\u{1f481}'], '💁 E0.6 person tipping hand'), + (['\u{1f481}\u{1f3fb}'], '💁🏻 E1.0 person tipping hand: light skin tone'), + ( + ['\u{1f481}\u{1f3fc}'], + '💁🏼 E1.0 person tipping hand: medium-light skin tone' + ), + (['\u{1f481}\u{1f3fd}'], '💁🏽 E1.0 person tipping hand: medium skin tone'), + ( + ['\u{1f481}\u{1f3fe}'], + '💁🏾 E1.0 person tipping hand: medium-dark skin tone' + ), + (['\u{1f481}\u{1f3ff}'], '💁🏿 E1.0 person tipping hand: dark skin tone'), + (['\u{1f481}\u200d\u2642\ufe0f'], '💁‍♂️ E4.0 man tipping hand'), + (['\u{1f481}\u200d\u2642'], '💁‍♂ E4.0 man tipping hand'), + ( + ['\u{1f481}\u{1f3fb}\u200d\u2642\ufe0f'], + '💁🏻‍♂️ E4.0 man tipping hand: light skin tone' + ), + ( + ['\u{1f481}\u{1f3fb}\u200d\u2642'], + '💁🏻‍♂ E4.0 man tipping hand: light skin tone' + ), + ( + ['\u{1f481}\u{1f3fc}\u200d\u2642\ufe0f'], + '💁🏼‍♂️ E4.0 man tipping hand: medium-light skin tone' + ), + ( + ['\u{1f481}\u{1f3fc}\u200d\u2642'], + '💁🏼‍♂ E4.0 man tipping hand: medium-light skin tone' + ), + ( + ['\u{1f481}\u{1f3fd}\u200d\u2642\ufe0f'], + '💁🏽‍♂️ E4.0 man tipping hand: medium skin tone' + ), + ( + ['\u{1f481}\u{1f3fd}\u200d\u2642'], + '💁🏽‍♂ E4.0 man tipping hand: medium skin tone' + ), + ( + ['\u{1f481}\u{1f3fe}\u200d\u2642\ufe0f'], + '💁🏾‍♂️ E4.0 man tipping hand: medium-dark skin tone' + ), + ( + ['\u{1f481}\u{1f3fe}\u200d\u2642'], + '💁🏾‍♂ E4.0 man tipping hand: medium-dark skin tone' + ), + ( + ['\u{1f481}\u{1f3ff}\u200d\u2642\ufe0f'], + '💁🏿‍♂️ E4.0 man tipping hand: dark skin tone' + ), + ( + ['\u{1f481}\u{1f3ff}\u200d\u2642'], + '💁🏿‍♂ E4.0 man tipping hand: dark skin tone' + ), + (['\u{1f481}\u200d\u2640\ufe0f'], '💁‍♀️ E4.0 woman tipping hand'), + (['\u{1f481}\u200d\u2640'], '💁‍♀ E4.0 woman tipping hand'), + ( + ['\u{1f481}\u{1f3fb}\u200d\u2640\ufe0f'], + '💁🏻‍♀️ E4.0 woman tipping hand: light skin tone' + ), + ( + ['\u{1f481}\u{1f3fb}\u200d\u2640'], + '💁🏻‍♀ E4.0 woman tipping hand: light skin tone' + ), + ( + ['\u{1f481}\u{1f3fc}\u200d\u2640\ufe0f'], + '💁🏼‍♀️ E4.0 woman tipping hand: medium-light skin tone' + ), + ( + ['\u{1f481}\u{1f3fc}\u200d\u2640'], + '💁🏼‍♀ E4.0 woman tipping hand: medium-light skin tone' + ), + ( + ['\u{1f481}\u{1f3fd}\u200d\u2640\ufe0f'], + '💁🏽‍♀️ E4.0 woman tipping hand: medium skin tone' + ), + ( + ['\u{1f481}\u{1f3fd}\u200d\u2640'], + '💁🏽‍♀ E4.0 woman tipping hand: medium skin tone' + ), + ( + ['\u{1f481}\u{1f3fe}\u200d\u2640\ufe0f'], + '💁🏾‍♀️ E4.0 woman tipping hand: medium-dark skin tone' + ), + ( + ['\u{1f481}\u{1f3fe}\u200d\u2640'], + '💁🏾‍♀ E4.0 woman tipping hand: medium-dark skin tone' + ), + ( + ['\u{1f481}\u{1f3ff}\u200d\u2640\ufe0f'], + '💁🏿‍♀️ E4.0 woman tipping hand: dark skin tone' + ), + ( + ['\u{1f481}\u{1f3ff}\u200d\u2640'], + '💁🏿‍♀ E4.0 woman tipping hand: dark skin tone' + ), + (['\u{1f64b}'], '🙋 E0.6 person raising hand'), + (['\u{1f64b}\u{1f3fb}'], '🙋🏻 E1.0 person raising hand: light skin tone'), + ( + ['\u{1f64b}\u{1f3fc}'], + '🙋🏼 E1.0 person raising hand: medium-light skin tone' + ), + (['\u{1f64b}\u{1f3fd}'], '🙋🏽 E1.0 person raising hand: medium skin tone'), + ( + ['\u{1f64b}\u{1f3fe}'], + '🙋🏾 E1.0 person raising hand: medium-dark skin tone' + ), + (['\u{1f64b}\u{1f3ff}'], '🙋🏿 E1.0 person raising hand: dark skin tone'), + (['\u{1f64b}\u200d\u2642\ufe0f'], '🙋‍♂️ E4.0 man raising hand'), + (['\u{1f64b}\u200d\u2642'], '🙋‍♂ E4.0 man raising hand'), + ( + ['\u{1f64b}\u{1f3fb}\u200d\u2642\ufe0f'], + '🙋🏻‍♂️ E4.0 man raising hand: light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fb}\u200d\u2642'], + '🙋🏻‍♂ E4.0 man raising hand: light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fc}\u200d\u2642\ufe0f'], + '🙋🏼‍♂️ E4.0 man raising hand: medium-light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fc}\u200d\u2642'], + '🙋🏼‍♂ E4.0 man raising hand: medium-light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fd}\u200d\u2642\ufe0f'], + '🙋🏽‍♂️ E4.0 man raising hand: medium skin tone' + ), + ( + ['\u{1f64b}\u{1f3fd}\u200d\u2642'], + '🙋🏽‍♂ E4.0 man raising hand: medium skin tone' + ), + ( + ['\u{1f64b}\u{1f3fe}\u200d\u2642\ufe0f'], + '🙋🏾‍♂️ E4.0 man raising hand: medium-dark skin tone' + ), + ( + ['\u{1f64b}\u{1f3fe}\u200d\u2642'], + '🙋🏾‍♂ E4.0 man raising hand: medium-dark skin tone' + ), + ( + ['\u{1f64b}\u{1f3ff}\u200d\u2642\ufe0f'], + '🙋🏿‍♂️ E4.0 man raising hand: dark skin tone' + ), + ( + ['\u{1f64b}\u{1f3ff}\u200d\u2642'], + '🙋🏿‍♂ E4.0 man raising hand: dark skin tone' + ), + (['\u{1f64b}\u200d\u2640\ufe0f'], '🙋‍♀️ E4.0 woman raising hand'), + (['\u{1f64b}\u200d\u2640'], '🙋‍♀ E4.0 woman raising hand'), + ( + ['\u{1f64b}\u{1f3fb}\u200d\u2640\ufe0f'], + '🙋🏻‍♀️ E4.0 woman raising hand: light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fb}\u200d\u2640'], + '🙋🏻‍♀ E4.0 woman raising hand: light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fc}\u200d\u2640\ufe0f'], + '🙋🏼‍♀️ E4.0 woman raising hand: medium-light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fc}\u200d\u2640'], + '🙋🏼‍♀ E4.0 woman raising hand: medium-light skin tone' + ), + ( + ['\u{1f64b}\u{1f3fd}\u200d\u2640\ufe0f'], + '🙋🏽‍♀️ E4.0 woman raising hand: medium skin tone' + ), + ( + ['\u{1f64b}\u{1f3fd}\u200d\u2640'], + '🙋🏽‍♀ E4.0 woman raising hand: medium skin tone' + ), + ( + ['\u{1f64b}\u{1f3fe}\u200d\u2640\ufe0f'], + '🙋🏾‍♀️ E4.0 woman raising hand: medium-dark skin tone' + ), + ( + ['\u{1f64b}\u{1f3fe}\u200d\u2640'], + '🙋🏾‍♀ E4.0 woman raising hand: medium-dark skin tone' + ), + ( + ['\u{1f64b}\u{1f3ff}\u200d\u2640\ufe0f'], + '🙋🏿‍♀️ E4.0 woman raising hand: dark skin tone' + ), + ( + ['\u{1f64b}\u{1f3ff}\u200d\u2640'], + '🙋🏿‍♀ E4.0 woman raising hand: dark skin tone' + ), + (['\u{1f9cf}'], '🧏 E12.0 deaf person'), + (['\u{1f9cf}\u{1f3fb}'], '🧏🏻 E12.0 deaf person: light skin tone'), + (['\u{1f9cf}\u{1f3fc}'], '🧏🏼 E12.0 deaf person: medium-light skin tone'), + (['\u{1f9cf}\u{1f3fd}'], '🧏🏽 E12.0 deaf person: medium skin tone'), + (['\u{1f9cf}\u{1f3fe}'], '🧏🏾 E12.0 deaf person: medium-dark skin tone'), + (['\u{1f9cf}\u{1f3ff}'], '🧏🏿 E12.0 deaf person: dark skin tone'), + (['\u{1f9cf}\u200d\u2642\ufe0f'], '🧏‍♂️ E12.0 deaf man'), + (['\u{1f9cf}\u200d\u2642'], '🧏‍♂ E12.0 deaf man'), + ( + ['\u{1f9cf}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧏🏻‍♂️ E12.0 deaf man: light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fb}\u200d\u2642'], + '🧏🏻‍♂ E12.0 deaf man: light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧏🏼‍♂️ E12.0 deaf man: medium-light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fc}\u200d\u2642'], + '🧏🏼‍♂ E12.0 deaf man: medium-light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧏🏽‍♂️ E12.0 deaf man: medium skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fd}\u200d\u2642'], + '🧏🏽‍♂ E12.0 deaf man: medium skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧏🏾‍♂️ E12.0 deaf man: medium-dark skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fe}\u200d\u2642'], + '🧏🏾‍♂ E12.0 deaf man: medium-dark skin tone' + ), + ( + ['\u{1f9cf}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧏🏿‍♂️ E12.0 deaf man: dark skin tone' + ), + (['\u{1f9cf}\u{1f3ff}\u200d\u2642'], '🧏🏿‍♂ E12.0 deaf man: dark skin tone'), + (['\u{1f9cf}\u200d\u2640\ufe0f'], '🧏‍♀️ E12.0 deaf woman'), + (['\u{1f9cf}\u200d\u2640'], '🧏‍♀ E12.0 deaf woman'), + ( + ['\u{1f9cf}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧏🏻‍♀️ E12.0 deaf woman: light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fb}\u200d\u2640'], + '🧏🏻‍♀ E12.0 deaf woman: light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧏🏼‍♀️ E12.0 deaf woman: medium-light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fc}\u200d\u2640'], + '🧏🏼‍♀ E12.0 deaf woman: medium-light skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧏🏽‍♀️ E12.0 deaf woman: medium skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fd}\u200d\u2640'], + '🧏🏽‍♀ E12.0 deaf woman: medium skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧏🏾‍♀️ E12.0 deaf woman: medium-dark skin tone' + ), + ( + ['\u{1f9cf}\u{1f3fe}\u200d\u2640'], + '🧏🏾‍♀ E12.0 deaf woman: medium-dark skin tone' + ), + ( + ['\u{1f9cf}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧏🏿‍♀️ E12.0 deaf woman: dark skin tone' + ), + ( + ['\u{1f9cf}\u{1f3ff}\u200d\u2640'], + '🧏🏿‍♀ E12.0 deaf woman: dark skin tone' + ), + (['\u{1f647}'], '🙇 E0.6 person bowing'), + (['\u{1f647}\u{1f3fb}'], '🙇🏻 E1.0 person bowing: light skin tone'), + (['\u{1f647}\u{1f3fc}'], '🙇🏼 E1.0 person bowing: medium-light skin tone'), + (['\u{1f647}\u{1f3fd}'], '🙇🏽 E1.0 person bowing: medium skin tone'), + (['\u{1f647}\u{1f3fe}'], '🙇🏾 E1.0 person bowing: medium-dark skin tone'), + (['\u{1f647}\u{1f3ff}'], '🙇🏿 E1.0 person bowing: dark skin tone'), + (['\u{1f647}\u200d\u2642\ufe0f'], '🙇‍♂️ E4.0 man bowing'), + (['\u{1f647}\u200d\u2642'], '🙇‍♂ E4.0 man bowing'), + ( + ['\u{1f647}\u{1f3fb}\u200d\u2642\ufe0f'], + '🙇🏻‍♂️ E4.0 man bowing: light skin tone' + ), + ( + ['\u{1f647}\u{1f3fb}\u200d\u2642'], + '🙇🏻‍♂ E4.0 man bowing: light skin tone' + ), + ( + ['\u{1f647}\u{1f3fc}\u200d\u2642\ufe0f'], + '🙇🏼‍♂️ E4.0 man bowing: medium-light skin tone' + ), + ( + ['\u{1f647}\u{1f3fc}\u200d\u2642'], + '🙇🏼‍♂ E4.0 man bowing: medium-light skin tone' + ), + ( + ['\u{1f647}\u{1f3fd}\u200d\u2642\ufe0f'], + '🙇🏽‍♂️ E4.0 man bowing: medium skin tone' + ), + ( + ['\u{1f647}\u{1f3fd}\u200d\u2642'], + '🙇🏽‍♂ E4.0 man bowing: medium skin tone' + ), + ( + ['\u{1f647}\u{1f3fe}\u200d\u2642\ufe0f'], + '🙇🏾‍♂️ E4.0 man bowing: medium-dark skin tone' + ), + ( + ['\u{1f647}\u{1f3fe}\u200d\u2642'], + '🙇🏾‍♂ E4.0 man bowing: medium-dark skin tone' + ), + ( + ['\u{1f647}\u{1f3ff}\u200d\u2642\ufe0f'], + '🙇🏿‍♂️ E4.0 man bowing: dark skin tone' + ), + ( + ['\u{1f647}\u{1f3ff}\u200d\u2642'], + '🙇🏿‍♂ E4.0 man bowing: dark skin tone' + ), + (['\u{1f647}\u200d\u2640\ufe0f'], '🙇‍♀️ E4.0 woman bowing'), + (['\u{1f647}\u200d\u2640'], '🙇‍♀ E4.0 woman bowing'), + ( + ['\u{1f647}\u{1f3fb}\u200d\u2640\ufe0f'], + '🙇🏻‍♀️ E4.0 woman bowing: light skin tone' + ), + ( + ['\u{1f647}\u{1f3fb}\u200d\u2640'], + '🙇🏻‍♀ E4.0 woman bowing: light skin tone' + ), + ( + ['\u{1f647}\u{1f3fc}\u200d\u2640\ufe0f'], + '🙇🏼‍♀️ E4.0 woman bowing: medium-light skin tone' + ), + ( + ['\u{1f647}\u{1f3fc}\u200d\u2640'], + '🙇🏼‍♀ E4.0 woman bowing: medium-light skin tone' + ), + ( + ['\u{1f647}\u{1f3fd}\u200d\u2640\ufe0f'], + '🙇🏽‍♀️ E4.0 woman bowing: medium skin tone' + ), + ( + ['\u{1f647}\u{1f3fd}\u200d\u2640'], + '🙇🏽‍♀ E4.0 woman bowing: medium skin tone' + ), + ( + ['\u{1f647}\u{1f3fe}\u200d\u2640\ufe0f'], + '🙇🏾‍♀️ E4.0 woman bowing: medium-dark skin tone' + ), + ( + ['\u{1f647}\u{1f3fe}\u200d\u2640'], + '🙇🏾‍♀ E4.0 woman bowing: medium-dark skin tone' + ), + ( + ['\u{1f647}\u{1f3ff}\u200d\u2640\ufe0f'], + '🙇🏿‍♀️ E4.0 woman bowing: dark skin tone' + ), + ( + ['\u{1f647}\u{1f3ff}\u200d\u2640'], + '🙇🏿‍♀ E4.0 woman bowing: dark skin tone' + ), + (['\u{1f926}'], '🤦 E3.0 person facepalming'), + (['\u{1f926}\u{1f3fb}'], '🤦🏻 E3.0 person facepalming: light skin tone'), + ( + ['\u{1f926}\u{1f3fc}'], + '🤦🏼 E3.0 person facepalming: medium-light skin tone' + ), + (['\u{1f926}\u{1f3fd}'], '🤦🏽 E3.0 person facepalming: medium skin tone'), + ( + ['\u{1f926}\u{1f3fe}'], + '🤦🏾 E3.0 person facepalming: medium-dark skin tone' + ), + (['\u{1f926}\u{1f3ff}'], '🤦🏿 E3.0 person facepalming: dark skin tone'), + (['\u{1f926}\u200d\u2642\ufe0f'], '🤦‍♂️ E4.0 man facepalming'), + (['\u{1f926}\u200d\u2642'], '🤦‍♂ E4.0 man facepalming'), + ( + ['\u{1f926}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤦🏻‍♂️ E4.0 man facepalming: light skin tone' + ), + ( + ['\u{1f926}\u{1f3fb}\u200d\u2642'], + '🤦🏻‍♂ E4.0 man facepalming: light skin tone' + ), + ( + ['\u{1f926}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤦🏼‍♂️ E4.0 man facepalming: medium-light skin tone' + ), + ( + ['\u{1f926}\u{1f3fc}\u200d\u2642'], + '🤦🏼‍♂ E4.0 man facepalming: medium-light skin tone' + ), + ( + ['\u{1f926}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤦🏽‍♂️ E4.0 man facepalming: medium skin tone' + ), + ( + ['\u{1f926}\u{1f3fd}\u200d\u2642'], + '🤦🏽‍♂ E4.0 man facepalming: medium skin tone' + ), + ( + ['\u{1f926}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤦🏾‍♂️ E4.0 man facepalming: medium-dark skin tone' + ), + ( + ['\u{1f926}\u{1f3fe}\u200d\u2642'], + '🤦🏾‍♂ E4.0 man facepalming: medium-dark skin tone' + ), + ( + ['\u{1f926}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤦🏿‍♂️ E4.0 man facepalming: dark skin tone' + ), + ( + ['\u{1f926}\u{1f3ff}\u200d\u2642'], + '🤦🏿‍♂ E4.0 man facepalming: dark skin tone' + ), + (['\u{1f926}\u200d\u2640\ufe0f'], '🤦‍♀️ E4.0 woman facepalming'), + (['\u{1f926}\u200d\u2640'], '🤦‍♀ E4.0 woman facepalming'), + ( + ['\u{1f926}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤦🏻‍♀️ E4.0 woman facepalming: light skin tone' + ), + ( + ['\u{1f926}\u{1f3fb}\u200d\u2640'], + '🤦🏻‍♀ E4.0 woman facepalming: light skin tone' + ), + ( + ['\u{1f926}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤦🏼‍♀️ E4.0 woman facepalming: medium-light skin tone' + ), + ( + ['\u{1f926}\u{1f3fc}\u200d\u2640'], + '🤦🏼‍♀ E4.0 woman facepalming: medium-light skin tone' + ), + ( + ['\u{1f926}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤦🏽‍♀️ E4.0 woman facepalming: medium skin tone' + ), + ( + ['\u{1f926}\u{1f3fd}\u200d\u2640'], + '🤦🏽‍♀ E4.0 woman facepalming: medium skin tone' + ), + ( + ['\u{1f926}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤦🏾‍♀️ E4.0 woman facepalming: medium-dark skin tone' + ), + ( + ['\u{1f926}\u{1f3fe}\u200d\u2640'], + '🤦🏾‍♀ E4.0 woman facepalming: medium-dark skin tone' + ), + ( + ['\u{1f926}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤦🏿‍♀️ E4.0 woman facepalming: dark skin tone' + ), + ( + ['\u{1f926}\u{1f3ff}\u200d\u2640'], + '🤦🏿‍♀ E4.0 woman facepalming: dark skin tone' + ), + (['\u{1f937}'], '🤷 E3.0 person shrugging'), + (['\u{1f937}\u{1f3fb}'], '🤷🏻 E3.0 person shrugging: light skin tone'), + ( + ['\u{1f937}\u{1f3fc}'], + '🤷🏼 E3.0 person shrugging: medium-light skin tone' + ), + (['\u{1f937}\u{1f3fd}'], '🤷🏽 E3.0 person shrugging: medium skin tone'), + (['\u{1f937}\u{1f3fe}'], '🤷🏾 E3.0 person shrugging: medium-dark skin tone'), + (['\u{1f937}\u{1f3ff}'], '🤷🏿 E3.0 person shrugging: dark skin tone'), + (['\u{1f937}\u200d\u2642\ufe0f'], '🤷‍♂️ E4.0 man shrugging'), + (['\u{1f937}\u200d\u2642'], '🤷‍♂ E4.0 man shrugging'), + ( + ['\u{1f937}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤷🏻‍♂️ E4.0 man shrugging: light skin tone' + ), + ( + ['\u{1f937}\u{1f3fb}\u200d\u2642'], + '🤷🏻‍♂ E4.0 man shrugging: light skin tone' + ), + ( + ['\u{1f937}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤷🏼‍♂️ E4.0 man shrugging: medium-light skin tone' + ), + ( + ['\u{1f937}\u{1f3fc}\u200d\u2642'], + '🤷🏼‍♂ E4.0 man shrugging: medium-light skin tone' + ), + ( + ['\u{1f937}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤷🏽‍♂️ E4.0 man shrugging: medium skin tone' + ), + ( + ['\u{1f937}\u{1f3fd}\u200d\u2642'], + '🤷🏽‍♂ E4.0 man shrugging: medium skin tone' + ), + ( + ['\u{1f937}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤷🏾‍♂️ E4.0 man shrugging: medium-dark skin tone' + ), + ( + ['\u{1f937}\u{1f3fe}\u200d\u2642'], + '🤷🏾‍♂ E4.0 man shrugging: medium-dark skin tone' + ), + ( + ['\u{1f937}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤷🏿‍♂️ E4.0 man shrugging: dark skin tone' + ), + ( + ['\u{1f937}\u{1f3ff}\u200d\u2642'], + '🤷🏿‍♂ E4.0 man shrugging: dark skin tone' + ), + (['\u{1f937}\u200d\u2640\ufe0f'], '🤷‍♀️ E4.0 woman shrugging'), + (['\u{1f937}\u200d\u2640'], '🤷‍♀ E4.0 woman shrugging'), + ( + ['\u{1f937}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤷🏻‍♀️ E4.0 woman shrugging: light skin tone' + ), + ( + ['\u{1f937}\u{1f3fb}\u200d\u2640'], + '🤷🏻‍♀ E4.0 woman shrugging: light skin tone' + ), + ( + ['\u{1f937}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤷🏼‍♀️ E4.0 woman shrugging: medium-light skin tone' + ), + ( + ['\u{1f937}\u{1f3fc}\u200d\u2640'], + '🤷🏼‍♀ E4.0 woman shrugging: medium-light skin tone' + ), + ( + ['\u{1f937}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤷🏽‍♀️ E4.0 woman shrugging: medium skin tone' + ), + ( + ['\u{1f937}\u{1f3fd}\u200d\u2640'], + '🤷🏽‍♀ E4.0 woman shrugging: medium skin tone' + ), + ( + ['\u{1f937}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤷🏾‍♀️ E4.0 woman shrugging: medium-dark skin tone' + ), + ( + ['\u{1f937}\u{1f3fe}\u200d\u2640'], + '🤷🏾‍♀ E4.0 woman shrugging: medium-dark skin tone' + ), + ( + ['\u{1f937}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤷🏿‍♀️ E4.0 woman shrugging: dark skin tone' + ), + ( + ['\u{1f937}\u{1f3ff}\u200d\u2640'], + '🤷🏿‍♀ E4.0 woman shrugging: dark skin tone' + ), + (['\u{1f9d1}\u200d\u2695\ufe0f'], '🧑‍⚕️ E12.1 health worker'), + (['\u{1f9d1}\u200d\u2695'], '🧑‍⚕ E12.1 health worker'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2695\ufe0f'], + '🧑🏻‍⚕️ E12.1 health worker: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2695'], + '🧑🏻‍⚕ E12.1 health worker: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2695\ufe0f'], + '🧑🏼‍⚕️ E12.1 health worker: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2695'], + '🧑🏼‍⚕ E12.1 health worker: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2695\ufe0f'], + '🧑🏽‍⚕️ E12.1 health worker: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2695'], + '🧑🏽‍⚕ E12.1 health worker: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2695\ufe0f'], + '🧑🏾‍⚕️ E12.1 health worker: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2695'], + '🧑🏾‍⚕ E12.1 health worker: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2695\ufe0f'], + '🧑🏿‍⚕️ E12.1 health worker: dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2695'], + '🧑🏿‍⚕ E12.1 health worker: dark skin tone' + ), + (['\u{1f468}\u200d\u2695\ufe0f'], '👨‍⚕️ E4.0 man health worker'), + (['\u{1f468}\u200d\u2695'], '👨‍⚕ E4.0 man health worker'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2695\ufe0f'], + '👨🏻‍⚕️ E4.0 man health worker: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2695'], + '👨🏻‍⚕ E4.0 man health worker: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2695\ufe0f'], + '👨🏼‍⚕️ E4.0 man health worker: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2695'], + '👨🏼‍⚕ E4.0 man health worker: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2695\ufe0f'], + '👨🏽‍⚕️ E4.0 man health worker: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2695'], + '👨🏽‍⚕ E4.0 man health worker: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2695\ufe0f'], + '👨🏾‍⚕️ E4.0 man health worker: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2695'], + '👨🏾‍⚕ E4.0 man health worker: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2695\ufe0f'], + '👨🏿‍⚕️ E4.0 man health worker: dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2695'], + '👨🏿‍⚕ E4.0 man health worker: dark skin tone' + ), + (['\u{1f469}\u200d\u2695\ufe0f'], '👩‍⚕️ E4.0 woman health worker'), + (['\u{1f469}\u200d\u2695'], '👩‍⚕ E4.0 woman health worker'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2695\ufe0f'], + '👩🏻‍⚕️ E4.0 woman health worker: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2695'], + '👩🏻‍⚕ E4.0 woman health worker: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2695\ufe0f'], + '👩🏼‍⚕️ E4.0 woman health worker: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2695'], + '👩🏼‍⚕ E4.0 woman health worker: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2695\ufe0f'], + '👩🏽‍⚕️ E4.0 woman health worker: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2695'], + '👩🏽‍⚕ E4.0 woman health worker: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2695\ufe0f'], + '👩🏾‍⚕️ E4.0 woman health worker: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2695'], + '👩🏾‍⚕ E4.0 woman health worker: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2695\ufe0f'], + '👩🏿‍⚕️ E4.0 woman health worker: dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2695'], + '👩🏿‍⚕ E4.0 woman health worker: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f393}'], '🧑‍🎓 E12.1 student'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f393}'], + '🧑🏻‍🎓 E12.1 student: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f393}'], + '🧑🏼‍🎓 E12.1 student: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f393}'], + '🧑🏽‍🎓 E12.1 student: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f393}'], + '🧑🏾‍🎓 E12.1 student: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f393}'], + '🧑🏿‍🎓 E12.1 student: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f393}'], '👨‍🎓 E4.0 man student'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f393}'], + '👨🏻‍🎓 E4.0 man student: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f393}'], + '👨🏼‍🎓 E4.0 man student: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f393}'], + '👨🏽‍🎓 E4.0 man student: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f393}'], + '👨🏾‍🎓 E4.0 man student: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f393}'], + '👨🏿‍🎓 E4.0 man student: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f393}'], '👩‍🎓 E4.0 woman student'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f393}'], + '👩🏻‍🎓 E4.0 woman student: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f393}'], + '👩🏼‍🎓 E4.0 woman student: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f393}'], + '👩🏽‍🎓 E4.0 woman student: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f393}'], + '👩🏾‍🎓 E4.0 woman student: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f393}'], + '👩🏿‍🎓 E4.0 woman student: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f3eb}'], '🧑‍🏫 E12.1 teacher'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3eb}'], + '🧑🏻‍🏫 E12.1 teacher: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3eb}'], + '🧑🏼‍🏫 E12.1 teacher: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3eb}'], + '🧑🏽‍🏫 E12.1 teacher: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3eb}'], + '🧑🏾‍🏫 E12.1 teacher: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3eb}'], + '🧑🏿‍🏫 E12.1 teacher: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f3eb}'], '👨‍🏫 E4.0 man teacher'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f3eb}'], + '👨🏻‍🏫 E4.0 man teacher: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f3eb}'], + '👨🏼‍🏫 E4.0 man teacher: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f3eb}'], + '👨🏽‍🏫 E4.0 man teacher: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f3eb}'], + '👨🏾‍🏫 E4.0 man teacher: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f3eb}'], + '👨🏿‍🏫 E4.0 man teacher: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f3eb}'], '👩‍🏫 E4.0 woman teacher'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f3eb}'], + '👩🏻‍🏫 E4.0 woman teacher: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f3eb}'], + '👩🏼‍🏫 E4.0 woman teacher: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f3eb}'], + '👩🏽‍🏫 E4.0 woman teacher: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f3eb}'], + '👩🏾‍🏫 E4.0 woman teacher: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f3eb}'], + '👩🏿‍🏫 E4.0 woman teacher: dark skin tone' + ), + (['\u{1f9d1}\u200d\u2696\ufe0f'], '🧑‍⚖️ E12.1 judge'), + (['\u{1f9d1}\u200d\u2696'], '🧑‍⚖ E12.1 judge'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2696\ufe0f'], + '🧑🏻‍⚖️ E12.1 judge: light skin tone' + ), + (['\u{1f9d1}\u{1f3fb}\u200d\u2696'], '🧑🏻‍⚖ E12.1 judge: light skin tone'), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2696\ufe0f'], + '🧑🏼‍⚖️ E12.1 judge: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2696'], + '🧑🏼‍⚖ E12.1 judge: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2696\ufe0f'], + '🧑🏽‍⚖️ E12.1 judge: medium skin tone' + ), + (['\u{1f9d1}\u{1f3fd}\u200d\u2696'], '🧑🏽‍⚖ E12.1 judge: medium skin tone'), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2696\ufe0f'], + '🧑🏾‍⚖️ E12.1 judge: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2696'], + '🧑🏾‍⚖ E12.1 judge: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2696\ufe0f'], + '🧑🏿‍⚖️ E12.1 judge: dark skin tone' + ), + (['\u{1f9d1}\u{1f3ff}\u200d\u2696'], '🧑🏿‍⚖ E12.1 judge: dark skin tone'), + (['\u{1f468}\u200d\u2696\ufe0f'], '👨‍⚖️ E4.0 man judge'), + (['\u{1f468}\u200d\u2696'], '👨‍⚖ E4.0 man judge'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2696\ufe0f'], + '👨🏻‍⚖️ E4.0 man judge: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2696'], + '👨🏻‍⚖ E4.0 man judge: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2696\ufe0f'], + '👨🏼‍⚖️ E4.0 man judge: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2696'], + '👨🏼‍⚖ E4.0 man judge: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2696\ufe0f'], + '👨🏽‍⚖️ E4.0 man judge: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2696'], + '👨🏽‍⚖ E4.0 man judge: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2696\ufe0f'], + '👨🏾‍⚖️ E4.0 man judge: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2696'], + '👨🏾‍⚖ E4.0 man judge: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2696\ufe0f'], + '👨🏿‍⚖️ E4.0 man judge: dark skin tone' + ), + (['\u{1f468}\u{1f3ff}\u200d\u2696'], '👨🏿‍⚖ E4.0 man judge: dark skin tone'), + (['\u{1f469}\u200d\u2696\ufe0f'], '👩‍⚖️ E4.0 woman judge'), + (['\u{1f469}\u200d\u2696'], '👩‍⚖ E4.0 woman judge'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2696\ufe0f'], + '👩🏻‍⚖️ E4.0 woman judge: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2696'], + '👩🏻‍⚖ E4.0 woman judge: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2696\ufe0f'], + '👩🏼‍⚖️ E4.0 woman judge: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2696'], + '👩🏼‍⚖ E4.0 woman judge: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2696\ufe0f'], + '👩🏽‍⚖️ E4.0 woman judge: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2696'], + '👩🏽‍⚖ E4.0 woman judge: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2696\ufe0f'], + '👩🏾‍⚖️ E4.0 woman judge: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2696'], + '👩🏾‍⚖ E4.0 woman judge: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2696\ufe0f'], + '👩🏿‍⚖️ E4.0 woman judge: dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2696'], + '👩🏿‍⚖ E4.0 woman judge: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f33e}'], '🧑‍🌾 E12.1 farmer'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f33e}'], + '🧑🏻‍🌾 E12.1 farmer: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f33e}'], + '🧑🏼‍🌾 E12.1 farmer: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f33e}'], + '🧑🏽‍🌾 E12.1 farmer: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f33e}'], + '🧑🏾‍🌾 E12.1 farmer: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f33e}'], + '🧑🏿‍🌾 E12.1 farmer: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f33e}'], '👨‍🌾 E4.0 man farmer'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f33e}'], + '👨🏻‍🌾 E4.0 man farmer: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f33e}'], + '👨🏼‍🌾 E4.0 man farmer: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f33e}'], + '👨🏽‍🌾 E4.0 man farmer: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f33e}'], + '👨🏾‍🌾 E4.0 man farmer: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f33e}'], + '👨🏿‍🌾 E4.0 man farmer: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f33e}'], '👩‍🌾 E4.0 woman farmer'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f33e}'], + '👩🏻‍🌾 E4.0 woman farmer: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f33e}'], + '👩🏼‍🌾 E4.0 woman farmer: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f33e}'], + '👩🏽‍🌾 E4.0 woman farmer: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f33e}'], + '👩🏾‍🌾 E4.0 woman farmer: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f33e}'], + '👩🏿‍🌾 E4.0 woman farmer: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f373}'], '🧑‍🍳 E12.1 cook'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f373}'], + '🧑🏻‍🍳 E12.1 cook: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f373}'], + '🧑🏼‍🍳 E12.1 cook: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f373}'], + '🧑🏽‍🍳 E12.1 cook: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f373}'], + '🧑🏾‍🍳 E12.1 cook: medium-dark skin tone' + ), + (['\u{1f9d1}\u{1f3ff}\u200d\u{1f373}'], '🧑🏿‍🍳 E12.1 cook: dark skin tone'), + (['\u{1f468}\u200d\u{1f373}'], '👨‍🍳 E4.0 man cook'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f373}'], + '👨🏻‍🍳 E4.0 man cook: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f373}'], + '👨🏼‍🍳 E4.0 man cook: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f373}'], + '👨🏽‍🍳 E4.0 man cook: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f373}'], + '👨🏾‍🍳 E4.0 man cook: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f373}'], + '👨🏿‍🍳 E4.0 man cook: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f373}'], '👩‍🍳 E4.0 woman cook'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f373}'], + '👩🏻‍🍳 E4.0 woman cook: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f373}'], + '👩🏼‍🍳 E4.0 woman cook: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f373}'], + '👩🏽‍🍳 E4.0 woman cook: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f373}'], + '👩🏾‍🍳 E4.0 woman cook: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f373}'], + '👩🏿‍🍳 E4.0 woman cook: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f527}'], '🧑‍🔧 E12.1 mechanic'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f527}'], + '🧑🏻‍🔧 E12.1 mechanic: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f527}'], + '🧑🏼‍🔧 E12.1 mechanic: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f527}'], + '🧑🏽‍🔧 E12.1 mechanic: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f527}'], + '🧑🏾‍🔧 E12.1 mechanic: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f527}'], + '🧑🏿‍🔧 E12.1 mechanic: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f527}'], '👨‍🔧 E4.0 man mechanic'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f527}'], + '👨🏻‍🔧 E4.0 man mechanic: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f527}'], + '👨🏼‍🔧 E4.0 man mechanic: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f527}'], + '👨🏽‍🔧 E4.0 man mechanic: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f527}'], + '👨🏾‍🔧 E4.0 man mechanic: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f527}'], + '👨🏿‍🔧 E4.0 man mechanic: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f527}'], '👩‍🔧 E4.0 woman mechanic'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f527}'], + '👩🏻‍🔧 E4.0 woman mechanic: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f527}'], + '👩🏼‍🔧 E4.0 woman mechanic: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f527}'], + '👩🏽‍🔧 E4.0 woman mechanic: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f527}'], + '👩🏾‍🔧 E4.0 woman mechanic: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f527}'], + '👩🏿‍🔧 E4.0 woman mechanic: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f3ed}'], '🧑‍🏭 E12.1 factory worker'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3ed}'], + '🧑🏻‍🏭 E12.1 factory worker: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3ed}'], + '🧑🏼‍🏭 E12.1 factory worker: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3ed}'], + '🧑🏽‍🏭 E12.1 factory worker: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3ed}'], + '🧑🏾‍🏭 E12.1 factory worker: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3ed}'], + '🧑🏿‍🏭 E12.1 factory worker: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f3ed}'], '👨‍🏭 E4.0 man factory worker'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f3ed}'], + '👨🏻‍🏭 E4.0 man factory worker: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f3ed}'], + '👨🏼‍🏭 E4.0 man factory worker: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f3ed}'], + '👨🏽‍🏭 E4.0 man factory worker: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f3ed}'], + '👨🏾‍🏭 E4.0 man factory worker: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f3ed}'], + '👨🏿‍🏭 E4.0 man factory worker: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f3ed}'], '👩‍🏭 E4.0 woman factory worker'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f3ed}'], + '👩🏻‍🏭 E4.0 woman factory worker: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f3ed}'], + '👩🏼‍🏭 E4.0 woman factory worker: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f3ed}'], + '👩🏽‍🏭 E4.0 woman factory worker: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f3ed}'], + '👩🏾‍🏭 E4.0 woman factory worker: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f3ed}'], + '👩🏿‍🏭 E4.0 woman factory worker: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f4bc}'], '🧑‍💼 E12.1 office worker'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f4bc}'], + '🧑🏻‍💼 E12.1 office worker: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f4bc}'], + '🧑🏼‍💼 E12.1 office worker: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f4bc}'], + '🧑🏽‍💼 E12.1 office worker: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f4bc}'], + '🧑🏾‍💼 E12.1 office worker: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f4bc}'], + '🧑🏿‍💼 E12.1 office worker: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f4bc}'], '👨‍💼 E4.0 man office worker'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f4bc}'], + '👨🏻‍💼 E4.0 man office worker: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f4bc}'], + '👨🏼‍💼 E4.0 man office worker: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f4bc}'], + '👨🏽‍💼 E4.0 man office worker: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f4bc}'], + '👨🏾‍💼 E4.0 man office worker: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f4bc}'], + '👨🏿‍💼 E4.0 man office worker: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f4bc}'], '👩‍💼 E4.0 woman office worker'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f4bc}'], + '👩🏻‍💼 E4.0 woman office worker: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f4bc}'], + '👩🏼‍💼 E4.0 woman office worker: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f4bc}'], + '👩🏽‍💼 E4.0 woman office worker: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f4bc}'], + '👩🏾‍💼 E4.0 woman office worker: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f4bc}'], + '👩🏿‍💼 E4.0 woman office worker: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f52c}'], '🧑‍🔬 E12.1 scientist'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f52c}'], + '🧑🏻‍🔬 E12.1 scientist: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f52c}'], + '🧑🏼‍🔬 E12.1 scientist: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f52c}'], + '🧑🏽‍🔬 E12.1 scientist: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f52c}'], + '🧑🏾‍🔬 E12.1 scientist: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f52c}'], + '🧑🏿‍🔬 E12.1 scientist: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f52c}'], '👨‍🔬 E4.0 man scientist'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f52c}'], + '👨🏻‍🔬 E4.0 man scientist: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f52c}'], + '👨🏼‍🔬 E4.0 man scientist: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f52c}'], + '👨🏽‍🔬 E4.0 man scientist: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f52c}'], + '👨🏾‍🔬 E4.0 man scientist: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f52c}'], + '👨🏿‍🔬 E4.0 man scientist: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f52c}'], '👩‍🔬 E4.0 woman scientist'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f52c}'], + '👩🏻‍🔬 E4.0 woman scientist: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f52c}'], + '👩🏼‍🔬 E4.0 woman scientist: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f52c}'], + '👩🏽‍🔬 E4.0 woman scientist: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f52c}'], + '👩🏾‍🔬 E4.0 woman scientist: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f52c}'], + '👩🏿‍🔬 E4.0 woman scientist: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f4bb}'], '🧑‍💻 E12.1 technologist'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f4bb}'], + '🧑🏻‍💻 E12.1 technologist: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f4bb}'], + '🧑🏼‍💻 E12.1 technologist: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f4bb}'], + '🧑🏽‍💻 E12.1 technologist: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f4bb}'], + '🧑🏾‍💻 E12.1 technologist: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f4bb}'], + '🧑🏿‍💻 E12.1 technologist: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f4bb}'], '👨‍💻 E4.0 man technologist'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f4bb}'], + '👨🏻‍💻 E4.0 man technologist: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f4bb}'], + '👨🏼‍💻 E4.0 man technologist: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f4bb}'], + '👨🏽‍💻 E4.0 man technologist: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f4bb}'], + '👨🏾‍💻 E4.0 man technologist: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f4bb}'], + '👨🏿‍💻 E4.0 man technologist: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f4bb}'], '👩‍💻 E4.0 woman technologist'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f4bb}'], + '👩🏻‍💻 E4.0 woman technologist: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f4bb}'], + '👩🏼‍💻 E4.0 woman technologist: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f4bb}'], + '👩🏽‍💻 E4.0 woman technologist: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f4bb}'], + '👩🏾‍💻 E4.0 woman technologist: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f4bb}'], + '👩🏿‍💻 E4.0 woman technologist: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f3a4}'], '🧑‍🎤 E12.1 singer'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3a4}'], + '🧑🏻‍🎤 E12.1 singer: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3a4}'], + '🧑🏼‍🎤 E12.1 singer: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3a4}'], + '🧑🏽‍🎤 E12.1 singer: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3a4}'], + '🧑🏾‍🎤 E12.1 singer: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3a4}'], + '🧑🏿‍🎤 E12.1 singer: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f3a4}'], '👨‍🎤 E4.0 man singer'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f3a4}'], + '👨🏻‍🎤 E4.0 man singer: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f3a4}'], + '👨🏼‍🎤 E4.0 man singer: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f3a4}'], + '👨🏽‍🎤 E4.0 man singer: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f3a4}'], + '👨🏾‍🎤 E4.0 man singer: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f3a4}'], + '👨🏿‍🎤 E4.0 man singer: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f3a4}'], '👩‍🎤 E4.0 woman singer'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f3a4}'], + '👩🏻‍🎤 E4.0 woman singer: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f3a4}'], + '👩🏼‍🎤 E4.0 woman singer: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f3a4}'], + '👩🏽‍🎤 E4.0 woman singer: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f3a4}'], + '👩🏾‍🎤 E4.0 woman singer: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f3a4}'], + '👩🏿‍🎤 E4.0 woman singer: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f3a8}'], '🧑‍🎨 E12.1 artist'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f3a8}'], + '🧑🏻‍🎨 E12.1 artist: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f3a8}'], + '🧑🏼‍🎨 E12.1 artist: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f3a8}'], + '🧑🏽‍🎨 E12.1 artist: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f3a8}'], + '🧑🏾‍🎨 E12.1 artist: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f3a8}'], + '🧑🏿‍🎨 E12.1 artist: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f3a8}'], '👨‍🎨 E4.0 man artist'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f3a8}'], + '👨🏻‍🎨 E4.0 man artist: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f3a8}'], + '👨🏼‍🎨 E4.0 man artist: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f3a8}'], + '👨🏽‍🎨 E4.0 man artist: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f3a8}'], + '👨🏾‍🎨 E4.0 man artist: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f3a8}'], + '👨🏿‍🎨 E4.0 man artist: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f3a8}'], '👩‍🎨 E4.0 woman artist'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f3a8}'], + '👩🏻‍🎨 E4.0 woman artist: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f3a8}'], + '👩🏼‍🎨 E4.0 woman artist: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f3a8}'], + '👩🏽‍🎨 E4.0 woman artist: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f3a8}'], + '👩🏾‍🎨 E4.0 woman artist: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f3a8}'], + '👩🏿‍🎨 E4.0 woman artist: dark skin tone' + ), + (['\u{1f9d1}\u200d\u2708\ufe0f'], '🧑‍✈️ E12.1 pilot'), + (['\u{1f9d1}\u200d\u2708'], '🧑‍✈ E12.1 pilot'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2708\ufe0f'], + '🧑🏻‍✈️ E12.1 pilot: light skin tone' + ), + (['\u{1f9d1}\u{1f3fb}\u200d\u2708'], '🧑🏻‍✈ E12.1 pilot: light skin tone'), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2708\ufe0f'], + '🧑🏼‍✈️ E12.1 pilot: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2708'], + '🧑🏼‍✈ E12.1 pilot: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2708\ufe0f'], + '🧑🏽‍✈️ E12.1 pilot: medium skin tone' + ), + (['\u{1f9d1}\u{1f3fd}\u200d\u2708'], '🧑🏽‍✈ E12.1 pilot: medium skin tone'), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2708\ufe0f'], + '🧑🏾‍✈️ E12.1 pilot: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2708'], + '🧑🏾‍✈ E12.1 pilot: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2708\ufe0f'], + '🧑🏿‍✈️ E12.1 pilot: dark skin tone' + ), + (['\u{1f9d1}\u{1f3ff}\u200d\u2708'], '🧑🏿‍✈ E12.1 pilot: dark skin tone'), + (['\u{1f468}\u200d\u2708\ufe0f'], '👨‍✈️ E4.0 man pilot'), + (['\u{1f468}\u200d\u2708'], '👨‍✈ E4.0 man pilot'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2708\ufe0f'], + '👨🏻‍✈️ E4.0 man pilot: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2708'], + '👨🏻‍✈ E4.0 man pilot: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2708\ufe0f'], + '👨🏼‍✈️ E4.0 man pilot: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2708'], + '👨🏼‍✈ E4.0 man pilot: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2708\ufe0f'], + '👨🏽‍✈️ E4.0 man pilot: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2708'], + '👨🏽‍✈ E4.0 man pilot: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2708\ufe0f'], + '👨🏾‍✈️ E4.0 man pilot: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2708'], + '👨🏾‍✈ E4.0 man pilot: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2708\ufe0f'], + '👨🏿‍✈️ E4.0 man pilot: dark skin tone' + ), + (['\u{1f468}\u{1f3ff}\u200d\u2708'], '👨🏿‍✈ E4.0 man pilot: dark skin tone'), + (['\u{1f469}\u200d\u2708\ufe0f'], '👩‍✈️ E4.0 woman pilot'), + (['\u{1f469}\u200d\u2708'], '👩‍✈ E4.0 woman pilot'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2708\ufe0f'], + '👩🏻‍✈️ E4.0 woman pilot: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2708'], + '👩🏻‍✈ E4.0 woman pilot: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2708\ufe0f'], + '👩🏼‍✈️ E4.0 woman pilot: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2708'], + '👩🏼‍✈ E4.0 woman pilot: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2708\ufe0f'], + '👩🏽‍✈️ E4.0 woman pilot: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2708'], + '👩🏽‍✈ E4.0 woman pilot: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2708\ufe0f'], + '👩🏾‍✈️ E4.0 woman pilot: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2708'], + '👩🏾‍✈ E4.0 woman pilot: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2708\ufe0f'], + '👩🏿‍✈️ E4.0 woman pilot: dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2708'], + '👩🏿‍✈ E4.0 woman pilot: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f680}'], '🧑‍🚀 E12.1 astronaut'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f680}'], + '🧑🏻‍🚀 E12.1 astronaut: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f680}'], + '🧑🏼‍🚀 E12.1 astronaut: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f680}'], + '🧑🏽‍🚀 E12.1 astronaut: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f680}'], + '🧑🏾‍🚀 E12.1 astronaut: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f680}'], + '🧑🏿‍🚀 E12.1 astronaut: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f680}'], '👨‍🚀 E4.0 man astronaut'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f680}'], + '👨🏻‍🚀 E4.0 man astronaut: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f680}'], + '👨🏼‍🚀 E4.0 man astronaut: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f680}'], + '👨🏽‍🚀 E4.0 man astronaut: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f680}'], + '👨🏾‍🚀 E4.0 man astronaut: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f680}'], + '👨🏿‍🚀 E4.0 man astronaut: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f680}'], '👩‍🚀 E4.0 woman astronaut'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f680}'], + '👩🏻‍🚀 E4.0 woman astronaut: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f680}'], + '👩🏼‍🚀 E4.0 woman astronaut: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f680}'], + '👩🏽‍🚀 E4.0 woman astronaut: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f680}'], + '👩🏾‍🚀 E4.0 woman astronaut: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f680}'], + '👩🏿‍🚀 E4.0 woman astronaut: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f692}'], '🧑‍🚒 E12.1 firefighter'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f692}'], + '🧑🏻‍🚒 E12.1 firefighter: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f692}'], + '🧑🏼‍🚒 E12.1 firefighter: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f692}'], + '🧑🏽‍🚒 E12.1 firefighter: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f692}'], + '🧑🏾‍🚒 E12.1 firefighter: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f692}'], + '🧑🏿‍🚒 E12.1 firefighter: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f692}'], '👨‍🚒 E4.0 man firefighter'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f692}'], + '👨🏻‍🚒 E4.0 man firefighter: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f692}'], + '👨🏼‍🚒 E4.0 man firefighter: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f692}'], + '👨🏽‍🚒 E4.0 man firefighter: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f692}'], + '👨🏾‍🚒 E4.0 man firefighter: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f692}'], + '👨🏿‍🚒 E4.0 man firefighter: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f692}'], '👩‍🚒 E4.0 woman firefighter'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f692}'], + '👩🏻‍🚒 E4.0 woman firefighter: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f692}'], + '👩🏼‍🚒 E4.0 woman firefighter: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f692}'], + '👩🏽‍🚒 E4.0 woman firefighter: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f692}'], + '👩🏾‍🚒 E4.0 woman firefighter: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f692}'], + '👩🏿‍🚒 E4.0 woman firefighter: dark skin tone' + ), + (['\u{1f46e}'], '👮 E0.6 police officer'), + (['\u{1f46e}\u{1f3fb}'], '👮🏻 E1.0 police officer: light skin tone'), + (['\u{1f46e}\u{1f3fc}'], '👮🏼 E1.0 police officer: medium-light skin tone'), + (['\u{1f46e}\u{1f3fd}'], '👮🏽 E1.0 police officer: medium skin tone'), + (['\u{1f46e}\u{1f3fe}'], '👮🏾 E1.0 police officer: medium-dark skin tone'), + (['\u{1f46e}\u{1f3ff}'], '👮🏿 E1.0 police officer: dark skin tone'), + (['\u{1f46e}\u200d\u2642\ufe0f'], '👮‍♂️ E4.0 man police officer'), + (['\u{1f46e}\u200d\u2642'], '👮‍♂ E4.0 man police officer'), + ( + ['\u{1f46e}\u{1f3fb}\u200d\u2642\ufe0f'], + '👮🏻‍♂️ E4.0 man police officer: light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fb}\u200d\u2642'], + '👮🏻‍♂ E4.0 man police officer: light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fc}\u200d\u2642\ufe0f'], + '👮🏼‍♂️ E4.0 man police officer: medium-light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fc}\u200d\u2642'], + '👮🏼‍♂ E4.0 man police officer: medium-light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fd}\u200d\u2642\ufe0f'], + '👮🏽‍♂️ E4.0 man police officer: medium skin tone' + ), + ( + ['\u{1f46e}\u{1f3fd}\u200d\u2642'], + '👮🏽‍♂ E4.0 man police officer: medium skin tone' + ), + ( + ['\u{1f46e}\u{1f3fe}\u200d\u2642\ufe0f'], + '👮🏾‍♂️ E4.0 man police officer: medium-dark skin tone' + ), + ( + ['\u{1f46e}\u{1f3fe}\u200d\u2642'], + '👮🏾‍♂ E4.0 man police officer: medium-dark skin tone' + ), + ( + ['\u{1f46e}\u{1f3ff}\u200d\u2642\ufe0f'], + '👮🏿‍♂️ E4.0 man police officer: dark skin tone' + ), + ( + ['\u{1f46e}\u{1f3ff}\u200d\u2642'], + '👮🏿‍♂ E4.0 man police officer: dark skin tone' + ), + (['\u{1f46e}\u200d\u2640\ufe0f'], '👮‍♀️ E4.0 woman police officer'), + (['\u{1f46e}\u200d\u2640'], '👮‍♀ E4.0 woman police officer'), + ( + ['\u{1f46e}\u{1f3fb}\u200d\u2640\ufe0f'], + '👮🏻‍♀️ E4.0 woman police officer: light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fb}\u200d\u2640'], + '👮🏻‍♀ E4.0 woman police officer: light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fc}\u200d\u2640\ufe0f'], + '👮🏼‍♀️ E4.0 woman police officer: medium-light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fc}\u200d\u2640'], + '👮🏼‍♀ E4.0 woman police officer: medium-light skin tone' + ), + ( + ['\u{1f46e}\u{1f3fd}\u200d\u2640\ufe0f'], + '👮🏽‍♀️ E4.0 woman police officer: medium skin tone' + ), + ( + ['\u{1f46e}\u{1f3fd}\u200d\u2640'], + '👮🏽‍♀ E4.0 woman police officer: medium skin tone' + ), + ( + ['\u{1f46e}\u{1f3fe}\u200d\u2640\ufe0f'], + '👮🏾‍♀️ E4.0 woman police officer: medium-dark skin tone' + ), + ( + ['\u{1f46e}\u{1f3fe}\u200d\u2640'], + '👮🏾‍♀ E4.0 woman police officer: medium-dark skin tone' + ), + ( + ['\u{1f46e}\u{1f3ff}\u200d\u2640\ufe0f'], + '👮🏿‍♀️ E4.0 woman police officer: dark skin tone' + ), + ( + ['\u{1f46e}\u{1f3ff}\u200d\u2640'], + '👮🏿‍♀ E4.0 woman police officer: dark skin tone' + ), + (['\u{1f575}\ufe0f'], '🕵️ E0.7 detective'), + (['\u{1f575}'], '🕵 E0.7 detective'), + (['\u{1f575}\u{1f3fb}'], '🕵🏻 E2.0 detective: light skin tone'), + (['\u{1f575}\u{1f3fc}'], '🕵🏼 E2.0 detective: medium-light skin tone'), + (['\u{1f575}\u{1f3fd}'], '🕵🏽 E2.0 detective: medium skin tone'), + (['\u{1f575}\u{1f3fe}'], '🕵🏾 E2.0 detective: medium-dark skin tone'), + (['\u{1f575}\u{1f3ff}'], '🕵🏿 E2.0 detective: dark skin tone'), + (['\u{1f575}\ufe0f\u200d\u2642\ufe0f'], '🕵️‍♂️ E4.0 man detective'), + (['\u{1f575}\u200d\u2642\ufe0f'], '🕵‍♂️ E4.0 man detective'), + (['\u{1f575}\ufe0f\u200d\u2642'], '🕵️‍♂ E4.0 man detective'), + (['\u{1f575}\u200d\u2642'], '🕵‍♂ E4.0 man detective'), + ( + ['\u{1f575}\u{1f3fb}\u200d\u2642\ufe0f'], + '🕵🏻‍♂️ E4.0 man detective: light skin tone' + ), + ( + ['\u{1f575}\u{1f3fb}\u200d\u2642'], + '🕵🏻‍♂ E4.0 man detective: light skin tone' + ), + ( + ['\u{1f575}\u{1f3fc}\u200d\u2642\ufe0f'], + '🕵🏼‍♂️ E4.0 man detective: medium-light skin tone' + ), + ( + ['\u{1f575}\u{1f3fc}\u200d\u2642'], + '🕵🏼‍♂ E4.0 man detective: medium-light skin tone' + ), + ( + ['\u{1f575}\u{1f3fd}\u200d\u2642\ufe0f'], + '🕵🏽‍♂️ E4.0 man detective: medium skin tone' + ), + ( + ['\u{1f575}\u{1f3fd}\u200d\u2642'], + '🕵🏽‍♂ E4.0 man detective: medium skin tone' + ), + ( + ['\u{1f575}\u{1f3fe}\u200d\u2642\ufe0f'], + '🕵🏾‍♂️ E4.0 man detective: medium-dark skin tone' + ), + ( + ['\u{1f575}\u{1f3fe}\u200d\u2642'], + '🕵🏾‍♂ E4.0 man detective: medium-dark skin tone' + ), + ( + ['\u{1f575}\u{1f3ff}\u200d\u2642\ufe0f'], + '🕵🏿‍♂️ E4.0 man detective: dark skin tone' + ), + ( + ['\u{1f575}\u{1f3ff}\u200d\u2642'], + '🕵🏿‍♂ E4.0 man detective: dark skin tone' + ), + (['\u{1f575}\ufe0f\u200d\u2640\ufe0f'], '🕵️‍♀️ E4.0 woman detective'), + (['\u{1f575}\u200d\u2640\ufe0f'], '🕵‍♀️ E4.0 woman detective'), + (['\u{1f575}\ufe0f\u200d\u2640'], '🕵️‍♀ E4.0 woman detective'), + (['\u{1f575}\u200d\u2640'], '🕵‍♀ E4.0 woman detective'), + ( + ['\u{1f575}\u{1f3fb}\u200d\u2640\ufe0f'], + '🕵🏻‍♀️ E4.0 woman detective: light skin tone' + ), + ( + ['\u{1f575}\u{1f3fb}\u200d\u2640'], + '🕵🏻‍♀ E4.0 woman detective: light skin tone' + ), + ( + ['\u{1f575}\u{1f3fc}\u200d\u2640\ufe0f'], + '🕵🏼‍♀️ E4.0 woman detective: medium-light skin tone' + ), + ( + ['\u{1f575}\u{1f3fc}\u200d\u2640'], + '🕵🏼‍♀ E4.0 woman detective: medium-light skin tone' + ), + ( + ['\u{1f575}\u{1f3fd}\u200d\u2640\ufe0f'], + '🕵🏽‍♀️ E4.0 woman detective: medium skin tone' + ), + ( + ['\u{1f575}\u{1f3fd}\u200d\u2640'], + '🕵🏽‍♀ E4.0 woman detective: medium skin tone' + ), + ( + ['\u{1f575}\u{1f3fe}\u200d\u2640\ufe0f'], + '🕵🏾‍♀️ E4.0 woman detective: medium-dark skin tone' + ), + ( + ['\u{1f575}\u{1f3fe}\u200d\u2640'], + '🕵🏾‍♀ E4.0 woman detective: medium-dark skin tone' + ), + ( + ['\u{1f575}\u{1f3ff}\u200d\u2640\ufe0f'], + '🕵🏿‍♀️ E4.0 woman detective: dark skin tone' + ), + ( + ['\u{1f575}\u{1f3ff}\u200d\u2640'], + '🕵🏿‍♀ E4.0 woman detective: dark skin tone' + ), + (['\u{1f482}'], '💂 E0.6 guard'), + (['\u{1f482}\u{1f3fb}'], '💂🏻 E1.0 guard: light skin tone'), + (['\u{1f482}\u{1f3fc}'], '💂🏼 E1.0 guard: medium-light skin tone'), + (['\u{1f482}\u{1f3fd}'], '💂🏽 E1.0 guard: medium skin tone'), + (['\u{1f482}\u{1f3fe}'], '💂🏾 E1.0 guard: medium-dark skin tone'), + (['\u{1f482}\u{1f3ff}'], '💂🏿 E1.0 guard: dark skin tone'), + (['\u{1f482}\u200d\u2642\ufe0f'], '💂‍♂️ E4.0 man guard'), + (['\u{1f482}\u200d\u2642'], '💂‍♂ E4.0 man guard'), + ( + ['\u{1f482}\u{1f3fb}\u200d\u2642\ufe0f'], + '💂🏻‍♂️ E4.0 man guard: light skin tone' + ), + ( + ['\u{1f482}\u{1f3fb}\u200d\u2642'], + '💂🏻‍♂ E4.0 man guard: light skin tone' + ), + ( + ['\u{1f482}\u{1f3fc}\u200d\u2642\ufe0f'], + '💂🏼‍♂️ E4.0 man guard: medium-light skin tone' + ), + ( + ['\u{1f482}\u{1f3fc}\u200d\u2642'], + '💂🏼‍♂ E4.0 man guard: medium-light skin tone' + ), + ( + ['\u{1f482}\u{1f3fd}\u200d\u2642\ufe0f'], + '💂🏽‍♂️ E4.0 man guard: medium skin tone' + ), + ( + ['\u{1f482}\u{1f3fd}\u200d\u2642'], + '💂🏽‍♂ E4.0 man guard: medium skin tone' + ), + ( + ['\u{1f482}\u{1f3fe}\u200d\u2642\ufe0f'], + '💂🏾‍♂️ E4.0 man guard: medium-dark skin tone' + ), + ( + ['\u{1f482}\u{1f3fe}\u200d\u2642'], + '💂🏾‍♂ E4.0 man guard: medium-dark skin tone' + ), + ( + ['\u{1f482}\u{1f3ff}\u200d\u2642\ufe0f'], + '💂🏿‍♂️ E4.0 man guard: dark skin tone' + ), + (['\u{1f482}\u{1f3ff}\u200d\u2642'], '💂🏿‍♂ E4.0 man guard: dark skin tone'), + (['\u{1f482}\u200d\u2640\ufe0f'], '💂‍♀️ E4.0 woman guard'), + (['\u{1f482}\u200d\u2640'], '💂‍♀ E4.0 woman guard'), + ( + ['\u{1f482}\u{1f3fb}\u200d\u2640\ufe0f'], + '💂🏻‍♀️ E4.0 woman guard: light skin tone' + ), + ( + ['\u{1f482}\u{1f3fb}\u200d\u2640'], + '💂🏻‍♀ E4.0 woman guard: light skin tone' + ), + ( + ['\u{1f482}\u{1f3fc}\u200d\u2640\ufe0f'], + '💂🏼‍♀️ E4.0 woman guard: medium-light skin tone' + ), + ( + ['\u{1f482}\u{1f3fc}\u200d\u2640'], + '💂🏼‍♀ E4.0 woman guard: medium-light skin tone' + ), + ( + ['\u{1f482}\u{1f3fd}\u200d\u2640\ufe0f'], + '💂🏽‍♀️ E4.0 woman guard: medium skin tone' + ), + ( + ['\u{1f482}\u{1f3fd}\u200d\u2640'], + '💂🏽‍♀ E4.0 woman guard: medium skin tone' + ), + ( + ['\u{1f482}\u{1f3fe}\u200d\u2640\ufe0f'], + '💂🏾‍♀️ E4.0 woman guard: medium-dark skin tone' + ), + ( + ['\u{1f482}\u{1f3fe}\u200d\u2640'], + '💂🏾‍♀ E4.0 woman guard: medium-dark skin tone' + ), + ( + ['\u{1f482}\u{1f3ff}\u200d\u2640\ufe0f'], + '💂🏿‍♀️ E4.0 woman guard: dark skin tone' + ), + ( + ['\u{1f482}\u{1f3ff}\u200d\u2640'], + '💂🏿‍♀ E4.0 woman guard: dark skin tone' + ), + (['\u{1f977}'], '🥷 E13.0 ninja'), + (['\u{1f977}\u{1f3fb}'], '🥷🏻 E13.0 ninja: light skin tone'), + (['\u{1f977}\u{1f3fc}'], '🥷🏼 E13.0 ninja: medium-light skin tone'), + (['\u{1f977}\u{1f3fd}'], '🥷🏽 E13.0 ninja: medium skin tone'), + (['\u{1f977}\u{1f3fe}'], '🥷🏾 E13.0 ninja: medium-dark skin tone'), + (['\u{1f977}\u{1f3ff}'], '🥷🏿 E13.0 ninja: dark skin tone'), + (['\u{1f477}'], '👷 E0.6 construction worker'), + (['\u{1f477}\u{1f3fb}'], '👷🏻 E1.0 construction worker: light skin tone'), + ( + ['\u{1f477}\u{1f3fc}'], + '👷🏼 E1.0 construction worker: medium-light skin tone' + ), + (['\u{1f477}\u{1f3fd}'], '👷🏽 E1.0 construction worker: medium skin tone'), + ( + ['\u{1f477}\u{1f3fe}'], + '👷🏾 E1.0 construction worker: medium-dark skin tone' + ), + (['\u{1f477}\u{1f3ff}'], '👷🏿 E1.0 construction worker: dark skin tone'), + (['\u{1f477}\u200d\u2642\ufe0f'], '👷‍♂️ E4.0 man construction worker'), + (['\u{1f477}\u200d\u2642'], '👷‍♂ E4.0 man construction worker'), + ( + ['\u{1f477}\u{1f3fb}\u200d\u2642\ufe0f'], + '👷🏻‍♂️ E4.0 man construction worker: light skin tone' + ), + ( + ['\u{1f477}\u{1f3fb}\u200d\u2642'], + '👷🏻‍♂ E4.0 man construction worker: light skin tone' + ), + ( + ['\u{1f477}\u{1f3fc}\u200d\u2642\ufe0f'], + '👷🏼‍♂️ E4.0 man construction worker: medium-light skin tone' + ), + ( + ['\u{1f477}\u{1f3fc}\u200d\u2642'], + '👷🏼‍♂ E4.0 man construction worker: medium-light skin tone' + ), + ( + ['\u{1f477}\u{1f3fd}\u200d\u2642\ufe0f'], + '👷🏽‍♂️ E4.0 man construction worker: medium skin tone' + ), + ( + ['\u{1f477}\u{1f3fd}\u200d\u2642'], + '👷🏽‍♂ E4.0 man construction worker: medium skin tone' + ), + ( + ['\u{1f477}\u{1f3fe}\u200d\u2642\ufe0f'], + '👷🏾‍♂️ E4.0 man construction worker: medium-dark skin tone' + ), + ( + ['\u{1f477}\u{1f3fe}\u200d\u2642'], + '👷🏾‍♂ E4.0 man construction worker: medium-dark skin tone' + ), + ( + ['\u{1f477}\u{1f3ff}\u200d\u2642\ufe0f'], + '👷🏿‍♂️ E4.0 man construction worker: dark skin tone' + ), + ( + ['\u{1f477}\u{1f3ff}\u200d\u2642'], + '👷🏿‍♂ E4.0 man construction worker: dark skin tone' + ), + (['\u{1f477}\u200d\u2640\ufe0f'], '👷‍♀️ E4.0 woman construction worker'), + (['\u{1f477}\u200d\u2640'], '👷‍♀ E4.0 woman construction worker'), + ( + ['\u{1f477}\u{1f3fb}\u200d\u2640\ufe0f'], + '👷🏻‍♀️ E4.0 woman construction worker: light skin tone' + ), + ( + ['\u{1f477}\u{1f3fb}\u200d\u2640'], + '👷🏻‍♀ E4.0 woman construction worker: light skin tone' + ), + ( + ['\u{1f477}\u{1f3fc}\u200d\u2640\ufe0f'], + '👷🏼‍♀️ E4.0 woman construction worker: medium-light skin tone' + ), + ( + ['\u{1f477}\u{1f3fc}\u200d\u2640'], + '👷🏼‍♀ E4.0 woman construction worker: medium-light skin tone' + ), + ( + ['\u{1f477}\u{1f3fd}\u200d\u2640\ufe0f'], + '👷🏽‍♀️ E4.0 woman construction worker: medium skin tone' + ), + ( + ['\u{1f477}\u{1f3fd}\u200d\u2640'], + '👷🏽‍♀ E4.0 woman construction worker: medium skin tone' + ), + ( + ['\u{1f477}\u{1f3fe}\u200d\u2640\ufe0f'], + '👷🏾‍♀️ E4.0 woman construction worker: medium-dark skin tone' + ), + ( + ['\u{1f477}\u{1f3fe}\u200d\u2640'], + '👷🏾‍♀ E4.0 woman construction worker: medium-dark skin tone' + ), + ( + ['\u{1f477}\u{1f3ff}\u200d\u2640\ufe0f'], + '👷🏿‍♀️ E4.0 woman construction worker: dark skin tone' + ), + ( + ['\u{1f477}\u{1f3ff}\u200d\u2640'], + '👷🏿‍♀ E4.0 woman construction worker: dark skin tone' + ), + (['\u{1fac5}'], '🫅 E14.0 person with crown'), + (['\u{1fac5}\u{1f3fb}'], '🫅🏻 E14.0 person with crown: light skin tone'), + ( + ['\u{1fac5}\u{1f3fc}'], + '🫅🏼 E14.0 person with crown: medium-light skin tone' + ), + (['\u{1fac5}\u{1f3fd}'], '🫅🏽 E14.0 person with crown: medium skin tone'), + ( + ['\u{1fac5}\u{1f3fe}'], + '🫅🏾 E14.0 person with crown: medium-dark skin tone' + ), + (['\u{1fac5}\u{1f3ff}'], '🫅🏿 E14.0 person with crown: dark skin tone'), + (['\u{1f934}'], '🤴 E3.0 prince'), + (['\u{1f934}\u{1f3fb}'], '🤴🏻 E3.0 prince: light skin tone'), + (['\u{1f934}\u{1f3fc}'], '🤴🏼 E3.0 prince: medium-light skin tone'), + (['\u{1f934}\u{1f3fd}'], '🤴🏽 E3.0 prince: medium skin tone'), + (['\u{1f934}\u{1f3fe}'], '🤴🏾 E3.0 prince: medium-dark skin tone'), + (['\u{1f934}\u{1f3ff}'], '🤴🏿 E3.0 prince: dark skin tone'), + (['\u{1f478}'], '👸 E0.6 princess'), + (['\u{1f478}\u{1f3fb}'], '👸🏻 E1.0 princess: light skin tone'), + (['\u{1f478}\u{1f3fc}'], '👸🏼 E1.0 princess: medium-light skin tone'), + (['\u{1f478}\u{1f3fd}'], '👸🏽 E1.0 princess: medium skin tone'), + (['\u{1f478}\u{1f3fe}'], '👸🏾 E1.0 princess: medium-dark skin tone'), + (['\u{1f478}\u{1f3ff}'], '👸🏿 E1.0 princess: dark skin tone'), + (['\u{1f473}'], '👳 E0.6 person wearing turban'), + (['\u{1f473}\u{1f3fb}'], '👳🏻 E1.0 person wearing turban: light skin tone'), + ( + ['\u{1f473}\u{1f3fc}'], + '👳🏼 E1.0 person wearing turban: medium-light skin tone' + ), + (['\u{1f473}\u{1f3fd}'], '👳🏽 E1.0 person wearing turban: medium skin tone'), + ( + ['\u{1f473}\u{1f3fe}'], + '👳🏾 E1.0 person wearing turban: medium-dark skin tone' + ), + (['\u{1f473}\u{1f3ff}'], '👳🏿 E1.0 person wearing turban: dark skin tone'), + (['\u{1f473}\u200d\u2642\ufe0f'], '👳‍♂️ E4.0 man wearing turban'), + (['\u{1f473}\u200d\u2642'], '👳‍♂ E4.0 man wearing turban'), + ( + ['\u{1f473}\u{1f3fb}\u200d\u2642\ufe0f'], + '👳🏻‍♂️ E4.0 man wearing turban: light skin tone' + ), + ( + ['\u{1f473}\u{1f3fb}\u200d\u2642'], + '👳🏻‍♂ E4.0 man wearing turban: light skin tone' + ), + ( + ['\u{1f473}\u{1f3fc}\u200d\u2642\ufe0f'], + '👳🏼‍♂️ E4.0 man wearing turban: medium-light skin tone' + ), + ( + ['\u{1f473}\u{1f3fc}\u200d\u2642'], + '👳🏼‍♂ E4.0 man wearing turban: medium-light skin tone' + ), + ( + ['\u{1f473}\u{1f3fd}\u200d\u2642\ufe0f'], + '👳🏽‍♂️ E4.0 man wearing turban: medium skin tone' + ), + ( + ['\u{1f473}\u{1f3fd}\u200d\u2642'], + '👳🏽‍♂ E4.0 man wearing turban: medium skin tone' + ), + ( + ['\u{1f473}\u{1f3fe}\u200d\u2642\ufe0f'], + '👳🏾‍♂️ E4.0 man wearing turban: medium-dark skin tone' + ), + ( + ['\u{1f473}\u{1f3fe}\u200d\u2642'], + '👳🏾‍♂ E4.0 man wearing turban: medium-dark skin tone' + ), + ( + ['\u{1f473}\u{1f3ff}\u200d\u2642\ufe0f'], + '👳🏿‍♂️ E4.0 man wearing turban: dark skin tone' + ), + ( + ['\u{1f473}\u{1f3ff}\u200d\u2642'], + '👳🏿‍♂ E4.0 man wearing turban: dark skin tone' + ), + (['\u{1f473}\u200d\u2640\ufe0f'], '👳‍♀️ E4.0 woman wearing turban'), + (['\u{1f473}\u200d\u2640'], '👳‍♀ E4.0 woman wearing turban'), + ( + ['\u{1f473}\u{1f3fb}\u200d\u2640\ufe0f'], + '👳🏻‍♀️ E4.0 woman wearing turban: light skin tone' + ), + ( + ['\u{1f473}\u{1f3fb}\u200d\u2640'], + '👳🏻‍♀ E4.0 woman wearing turban: light skin tone' + ), + ( + ['\u{1f473}\u{1f3fc}\u200d\u2640\ufe0f'], + '👳🏼‍♀️ E4.0 woman wearing turban: medium-light skin tone' + ), + ( + ['\u{1f473}\u{1f3fc}\u200d\u2640'], + '👳🏼‍♀ E4.0 woman wearing turban: medium-light skin tone' + ), + ( + ['\u{1f473}\u{1f3fd}\u200d\u2640\ufe0f'], + '👳🏽‍♀️ E4.0 woman wearing turban: medium skin tone' + ), + ( + ['\u{1f473}\u{1f3fd}\u200d\u2640'], + '👳🏽‍♀ E4.0 woman wearing turban: medium skin tone' + ), + ( + ['\u{1f473}\u{1f3fe}\u200d\u2640\ufe0f'], + '👳🏾‍♀️ E4.0 woman wearing turban: medium-dark skin tone' + ), + ( + ['\u{1f473}\u{1f3fe}\u200d\u2640'], + '👳🏾‍♀ E4.0 woman wearing turban: medium-dark skin tone' + ), + ( + ['\u{1f473}\u{1f3ff}\u200d\u2640\ufe0f'], + '👳🏿‍♀️ E4.0 woman wearing turban: dark skin tone' + ), + ( + ['\u{1f473}\u{1f3ff}\u200d\u2640'], + '👳🏿‍♀ E4.0 woman wearing turban: dark skin tone' + ), + (['\u{1f472}'], '👲 E0.6 person with skullcap'), + (['\u{1f472}\u{1f3fb}'], '👲🏻 E1.0 person with skullcap: light skin tone'), + ( + ['\u{1f472}\u{1f3fc}'], + '👲🏼 E1.0 person with skullcap: medium-light skin tone' + ), + (['\u{1f472}\u{1f3fd}'], '👲🏽 E1.0 person with skullcap: medium skin tone'), + ( + ['\u{1f472}\u{1f3fe}'], + '👲🏾 E1.0 person with skullcap: medium-dark skin tone' + ), + (['\u{1f472}\u{1f3ff}'], '👲🏿 E1.0 person with skullcap: dark skin tone'), + (['\u{1f9d5}'], '🧕 E5.0 woman with headscarf'), + (['\u{1f9d5}\u{1f3fb}'], '🧕🏻 E5.0 woman with headscarf: light skin tone'), + ( + ['\u{1f9d5}\u{1f3fc}'], + '🧕🏼 E5.0 woman with headscarf: medium-light skin tone' + ), + (['\u{1f9d5}\u{1f3fd}'], '🧕🏽 E5.0 woman with headscarf: medium skin tone'), + ( + ['\u{1f9d5}\u{1f3fe}'], + '🧕🏾 E5.0 woman with headscarf: medium-dark skin tone' + ), + (['\u{1f9d5}\u{1f3ff}'], '🧕🏿 E5.0 woman with headscarf: dark skin tone'), + (['\u{1f935}'], '🤵 E3.0 person in tuxedo'), + (['\u{1f935}\u{1f3fb}'], '🤵🏻 E3.0 person in tuxedo: light skin tone'), + ( + ['\u{1f935}\u{1f3fc}'], + '🤵🏼 E3.0 person in tuxedo: medium-light skin tone' + ), + (['\u{1f935}\u{1f3fd}'], '🤵🏽 E3.0 person in tuxedo: medium skin tone'), + (['\u{1f935}\u{1f3fe}'], '🤵🏾 E3.0 person in tuxedo: medium-dark skin tone'), + (['\u{1f935}\u{1f3ff}'], '🤵🏿 E3.0 person in tuxedo: dark skin tone'), + (['\u{1f935}\u200d\u2642\ufe0f'], '🤵‍♂️ E13.0 man in tuxedo'), + (['\u{1f935}\u200d\u2642'], '🤵‍♂ E13.0 man in tuxedo'), + ( + ['\u{1f935}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤵🏻‍♂️ E13.0 man in tuxedo: light skin tone' + ), + ( + ['\u{1f935}\u{1f3fb}\u200d\u2642'], + '🤵🏻‍♂ E13.0 man in tuxedo: light skin tone' + ), + ( + ['\u{1f935}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤵🏼‍♂️ E13.0 man in tuxedo: medium-light skin tone' + ), + ( + ['\u{1f935}\u{1f3fc}\u200d\u2642'], + '🤵🏼‍♂ E13.0 man in tuxedo: medium-light skin tone' + ), + ( + ['\u{1f935}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤵🏽‍♂️ E13.0 man in tuxedo: medium skin tone' + ), + ( + ['\u{1f935}\u{1f3fd}\u200d\u2642'], + '🤵🏽‍♂ E13.0 man in tuxedo: medium skin tone' + ), + ( + ['\u{1f935}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤵🏾‍♂️ E13.0 man in tuxedo: medium-dark skin tone' + ), + ( + ['\u{1f935}\u{1f3fe}\u200d\u2642'], + '🤵🏾‍♂ E13.0 man in tuxedo: medium-dark skin tone' + ), + ( + ['\u{1f935}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤵🏿‍♂️ E13.0 man in tuxedo: dark skin tone' + ), + ( + ['\u{1f935}\u{1f3ff}\u200d\u2642'], + '🤵🏿‍♂ E13.0 man in tuxedo: dark skin tone' + ), + (['\u{1f935}\u200d\u2640\ufe0f'], '🤵‍♀️ E13.0 woman in tuxedo'), + (['\u{1f935}\u200d\u2640'], '🤵‍♀ E13.0 woman in tuxedo'), + ( + ['\u{1f935}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤵🏻‍♀️ E13.0 woman in tuxedo: light skin tone' + ), + ( + ['\u{1f935}\u{1f3fb}\u200d\u2640'], + '🤵🏻‍♀ E13.0 woman in tuxedo: light skin tone' + ), + ( + ['\u{1f935}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤵🏼‍♀️ E13.0 woman in tuxedo: medium-light skin tone' + ), + ( + ['\u{1f935}\u{1f3fc}\u200d\u2640'], + '🤵🏼‍♀ E13.0 woman in tuxedo: medium-light skin tone' + ), + ( + ['\u{1f935}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤵🏽‍♀️ E13.0 woman in tuxedo: medium skin tone' + ), + ( + ['\u{1f935}\u{1f3fd}\u200d\u2640'], + '🤵🏽‍♀ E13.0 woman in tuxedo: medium skin tone' + ), + ( + ['\u{1f935}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤵🏾‍♀️ E13.0 woman in tuxedo: medium-dark skin tone' + ), + ( + ['\u{1f935}\u{1f3fe}\u200d\u2640'], + '🤵🏾‍♀ E13.0 woman in tuxedo: medium-dark skin tone' + ), + ( + ['\u{1f935}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤵🏿‍♀️ E13.0 woman in tuxedo: dark skin tone' + ), + ( + ['\u{1f935}\u{1f3ff}\u200d\u2640'], + '🤵🏿‍♀ E13.0 woman in tuxedo: dark skin tone' + ), + (['\u{1f470}'], '👰 E0.6 person with veil'), + (['\u{1f470}\u{1f3fb}'], '👰🏻 E1.0 person with veil: light skin tone'), + ( + ['\u{1f470}\u{1f3fc}'], + '👰🏼 E1.0 person with veil: medium-light skin tone' + ), + (['\u{1f470}\u{1f3fd}'], '👰🏽 E1.0 person with veil: medium skin tone'), + (['\u{1f470}\u{1f3fe}'], '👰🏾 E1.0 person with veil: medium-dark skin tone'), + (['\u{1f470}\u{1f3ff}'], '👰🏿 E1.0 person with veil: dark skin tone'), + (['\u{1f470}\u200d\u2642\ufe0f'], '👰‍♂️ E13.0 man with veil'), + (['\u{1f470}\u200d\u2642'], '👰‍♂ E13.0 man with veil'), + ( + ['\u{1f470}\u{1f3fb}\u200d\u2642\ufe0f'], + '👰🏻‍♂️ E13.0 man with veil: light skin tone' + ), + ( + ['\u{1f470}\u{1f3fb}\u200d\u2642'], + '👰🏻‍♂ E13.0 man with veil: light skin tone' + ), + ( + ['\u{1f470}\u{1f3fc}\u200d\u2642\ufe0f'], + '👰🏼‍♂️ E13.0 man with veil: medium-light skin tone' + ), + ( + ['\u{1f470}\u{1f3fc}\u200d\u2642'], + '👰🏼‍♂ E13.0 man with veil: medium-light skin tone' + ), + ( + ['\u{1f470}\u{1f3fd}\u200d\u2642\ufe0f'], + '👰🏽‍♂️ E13.0 man with veil: medium skin tone' + ), + ( + ['\u{1f470}\u{1f3fd}\u200d\u2642'], + '👰🏽‍♂ E13.0 man with veil: medium skin tone' + ), + ( + ['\u{1f470}\u{1f3fe}\u200d\u2642\ufe0f'], + '👰🏾‍♂️ E13.0 man with veil: medium-dark skin tone' + ), + ( + ['\u{1f470}\u{1f3fe}\u200d\u2642'], + '👰🏾‍♂ E13.0 man with veil: medium-dark skin tone' + ), + ( + ['\u{1f470}\u{1f3ff}\u200d\u2642\ufe0f'], + '👰🏿‍♂️ E13.0 man with veil: dark skin tone' + ), + ( + ['\u{1f470}\u{1f3ff}\u200d\u2642'], + '👰🏿‍♂ E13.0 man with veil: dark skin tone' + ), + (['\u{1f470}\u200d\u2640\ufe0f'], '👰‍♀️ E13.0 woman with veil'), + (['\u{1f470}\u200d\u2640'], '👰‍♀ E13.0 woman with veil'), + ( + ['\u{1f470}\u{1f3fb}\u200d\u2640\ufe0f'], + '👰🏻‍♀️ E13.0 woman with veil: light skin tone' + ), + ( + ['\u{1f470}\u{1f3fb}\u200d\u2640'], + '👰🏻‍♀ E13.0 woman with veil: light skin tone' + ), + ( + ['\u{1f470}\u{1f3fc}\u200d\u2640\ufe0f'], + '👰🏼‍♀️ E13.0 woman with veil: medium-light skin tone' + ), + ( + ['\u{1f470}\u{1f3fc}\u200d\u2640'], + '👰🏼‍♀ E13.0 woman with veil: medium-light skin tone' + ), + ( + ['\u{1f470}\u{1f3fd}\u200d\u2640\ufe0f'], + '👰🏽‍♀️ E13.0 woman with veil: medium skin tone' + ), + ( + ['\u{1f470}\u{1f3fd}\u200d\u2640'], + '👰🏽‍♀ E13.0 woman with veil: medium skin tone' + ), + ( + ['\u{1f470}\u{1f3fe}\u200d\u2640\ufe0f'], + '👰🏾‍♀️ E13.0 woman with veil: medium-dark skin tone' + ), + ( + ['\u{1f470}\u{1f3fe}\u200d\u2640'], + '👰🏾‍♀ E13.0 woman with veil: medium-dark skin tone' + ), + ( + ['\u{1f470}\u{1f3ff}\u200d\u2640\ufe0f'], + '👰🏿‍♀️ E13.0 woman with veil: dark skin tone' + ), + ( + ['\u{1f470}\u{1f3ff}\u200d\u2640'], + '👰🏿‍♀ E13.0 woman with veil: dark skin tone' + ), + (['\u{1f930}'], '🤰 E3.0 pregnant woman'), + (['\u{1f930}\u{1f3fb}'], '🤰🏻 E3.0 pregnant woman: light skin tone'), + (['\u{1f930}\u{1f3fc}'], '🤰🏼 E3.0 pregnant woman: medium-light skin tone'), + (['\u{1f930}\u{1f3fd}'], '🤰🏽 E3.0 pregnant woman: medium skin tone'), + (['\u{1f930}\u{1f3fe}'], '🤰🏾 E3.0 pregnant woman: medium-dark skin tone'), + (['\u{1f930}\u{1f3ff}'], '🤰🏿 E3.0 pregnant woman: dark skin tone'), + (['\u{1fac3}'], '🫃 E14.0 pregnant man'), + (['\u{1fac3}\u{1f3fb}'], '🫃🏻 E14.0 pregnant man: light skin tone'), + (['\u{1fac3}\u{1f3fc}'], '🫃🏼 E14.0 pregnant man: medium-light skin tone'), + (['\u{1fac3}\u{1f3fd}'], '🫃🏽 E14.0 pregnant man: medium skin tone'), + (['\u{1fac3}\u{1f3fe}'], '🫃🏾 E14.0 pregnant man: medium-dark skin tone'), + (['\u{1fac3}\u{1f3ff}'], '🫃🏿 E14.0 pregnant man: dark skin tone'), + (['\u{1fac4}'], '🫄 E14.0 pregnant person'), + (['\u{1fac4}\u{1f3fb}'], '🫄🏻 E14.0 pregnant person: light skin tone'), + ( + ['\u{1fac4}\u{1f3fc}'], + '🫄🏼 E14.0 pregnant person: medium-light skin tone' + ), + (['\u{1fac4}\u{1f3fd}'], '🫄🏽 E14.0 pregnant person: medium skin tone'), + (['\u{1fac4}\u{1f3fe}'], '🫄🏾 E14.0 pregnant person: medium-dark skin tone'), + (['\u{1fac4}\u{1f3ff}'], '🫄🏿 E14.0 pregnant person: dark skin tone'), + (['\u{1f931}'], '🤱 E5.0 breast-feeding'), + (['\u{1f931}\u{1f3fb}'], '🤱🏻 E5.0 breast-feeding: light skin tone'), + (['\u{1f931}\u{1f3fc}'], '🤱🏼 E5.0 breast-feeding: medium-light skin tone'), + (['\u{1f931}\u{1f3fd}'], '🤱🏽 E5.0 breast-feeding: medium skin tone'), + (['\u{1f931}\u{1f3fe}'], '🤱🏾 E5.0 breast-feeding: medium-dark skin tone'), + (['\u{1f931}\u{1f3ff}'], '🤱🏿 E5.0 breast-feeding: dark skin tone'), + (['\u{1f469}\u200d\u{1f37c}'], '👩‍🍼 E13.0 woman feeding baby'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f37c}'], + '👩🏻‍🍼 E13.0 woman feeding baby: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f37c}'], + '👩🏼‍🍼 E13.0 woman feeding baby: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f37c}'], + '👩🏽‍🍼 E13.0 woman feeding baby: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f37c}'], + '👩🏾‍🍼 E13.0 woman feeding baby: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f37c}'], + '👩🏿‍🍼 E13.0 woman feeding baby: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f37c}'], '👨‍🍼 E13.0 man feeding baby'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f37c}'], + '👨🏻‍🍼 E13.0 man feeding baby: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f37c}'], + '👨🏼‍🍼 E13.0 man feeding baby: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f37c}'], + '👨🏽‍🍼 E13.0 man feeding baby: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f37c}'], + '👨🏾‍🍼 E13.0 man feeding baby: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f37c}'], + '👨🏿‍🍼 E13.0 man feeding baby: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f37c}'], '🧑‍🍼 E13.0 person feeding baby'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f37c}'], + '🧑🏻‍🍼 E13.0 person feeding baby: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f37c}'], + '🧑🏼‍🍼 E13.0 person feeding baby: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f37c}'], + '🧑🏽‍🍼 E13.0 person feeding baby: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f37c}'], + '🧑🏾‍🍼 E13.0 person feeding baby: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f37c}'], + '🧑🏿‍🍼 E13.0 person feeding baby: dark skin tone' + ), + (['\u{1f47c}'], '👼 E0.6 baby angel'), + (['\u{1f47c}\u{1f3fb}'], '👼🏻 E1.0 baby angel: light skin tone'), + (['\u{1f47c}\u{1f3fc}'], '👼🏼 E1.0 baby angel: medium-light skin tone'), + (['\u{1f47c}\u{1f3fd}'], '👼🏽 E1.0 baby angel: medium skin tone'), + (['\u{1f47c}\u{1f3fe}'], '👼🏾 E1.0 baby angel: medium-dark skin tone'), + (['\u{1f47c}\u{1f3ff}'], '👼🏿 E1.0 baby angel: dark skin tone'), + (['\u{1f385}'], '🎅 E0.6 Santa Claus'), + (['\u{1f385}\u{1f3fb}'], '🎅🏻 E1.0 Santa Claus: light skin tone'), + (['\u{1f385}\u{1f3fc}'], '🎅🏼 E1.0 Santa Claus: medium-light skin tone'), + (['\u{1f385}\u{1f3fd}'], '🎅🏽 E1.0 Santa Claus: medium skin tone'), + (['\u{1f385}\u{1f3fe}'], '🎅🏾 E1.0 Santa Claus: medium-dark skin tone'), + (['\u{1f385}\u{1f3ff}'], '🎅🏿 E1.0 Santa Claus: dark skin tone'), + (['\u{1f936}'], '🤶 E3.0 Mrs. Claus'), + (['\u{1f936}\u{1f3fb}'], '🤶🏻 E3.0 Mrs. Claus: light skin tone'), + (['\u{1f936}\u{1f3fc}'], '🤶🏼 E3.0 Mrs. Claus: medium-light skin tone'), + (['\u{1f936}\u{1f3fd}'], '🤶🏽 E3.0 Mrs. Claus: medium skin tone'), + (['\u{1f936}\u{1f3fe}'], '🤶🏾 E3.0 Mrs. Claus: medium-dark skin tone'), + (['\u{1f936}\u{1f3ff}'], '🤶🏿 E3.0 Mrs. Claus: dark skin tone'), + (['\u{1f9d1}\u200d\u{1f384}'], '🧑‍🎄 E13.0 Mx Claus'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f384}'], + '🧑🏻‍🎄 E13.0 Mx Claus: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f384}'], + '🧑🏼‍🎄 E13.0 Mx Claus: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f384}'], + '🧑🏽‍🎄 E13.0 Mx Claus: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f384}'], + '🧑🏾‍🎄 E13.0 Mx Claus: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f384}'], + '🧑🏿‍🎄 E13.0 Mx Claus: dark skin tone' + ), + (['\u{1f9b8}'], '🦸 E11.0 superhero'), + (['\u{1f9b8}\u{1f3fb}'], '🦸🏻 E11.0 superhero: light skin tone'), + (['\u{1f9b8}\u{1f3fc}'], '🦸🏼 E11.0 superhero: medium-light skin tone'), + (['\u{1f9b8}\u{1f3fd}'], '🦸🏽 E11.0 superhero: medium skin tone'), + (['\u{1f9b8}\u{1f3fe}'], '🦸🏾 E11.0 superhero: medium-dark skin tone'), + (['\u{1f9b8}\u{1f3ff}'], '🦸🏿 E11.0 superhero: dark skin tone'), + (['\u{1f9b8}\u200d\u2642\ufe0f'], '🦸‍♂️ E11.0 man superhero'), + (['\u{1f9b8}\u200d\u2642'], '🦸‍♂ E11.0 man superhero'), + ( + ['\u{1f9b8}\u{1f3fb}\u200d\u2642\ufe0f'], + '🦸🏻‍♂️ E11.0 man superhero: light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fb}\u200d\u2642'], + '🦸🏻‍♂ E11.0 man superhero: light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fc}\u200d\u2642\ufe0f'], + '🦸🏼‍♂️ E11.0 man superhero: medium-light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fc}\u200d\u2642'], + '🦸🏼‍♂ E11.0 man superhero: medium-light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fd}\u200d\u2642\ufe0f'], + '🦸🏽‍♂️ E11.0 man superhero: medium skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fd}\u200d\u2642'], + '🦸🏽‍♂ E11.0 man superhero: medium skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fe}\u200d\u2642\ufe0f'], + '🦸🏾‍♂️ E11.0 man superhero: medium-dark skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fe}\u200d\u2642'], + '🦸🏾‍♂ E11.0 man superhero: medium-dark skin tone' + ), + ( + ['\u{1f9b8}\u{1f3ff}\u200d\u2642\ufe0f'], + '🦸🏿‍♂️ E11.0 man superhero: dark skin tone' + ), + ( + ['\u{1f9b8}\u{1f3ff}\u200d\u2642'], + '🦸🏿‍♂ E11.0 man superhero: dark skin tone' + ), + (['\u{1f9b8}\u200d\u2640\ufe0f'], '🦸‍♀️ E11.0 woman superhero'), + (['\u{1f9b8}\u200d\u2640'], '🦸‍♀ E11.0 woman superhero'), + ( + ['\u{1f9b8}\u{1f3fb}\u200d\u2640\ufe0f'], + '🦸🏻‍♀️ E11.0 woman superhero: light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fb}\u200d\u2640'], + '🦸🏻‍♀ E11.0 woman superhero: light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fc}\u200d\u2640\ufe0f'], + '🦸🏼‍♀️ E11.0 woman superhero: medium-light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fc}\u200d\u2640'], + '🦸🏼‍♀ E11.0 woman superhero: medium-light skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fd}\u200d\u2640\ufe0f'], + '🦸🏽‍♀️ E11.0 woman superhero: medium skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fd}\u200d\u2640'], + '🦸🏽‍♀ E11.0 woman superhero: medium skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fe}\u200d\u2640\ufe0f'], + '🦸🏾‍♀️ E11.0 woman superhero: medium-dark skin tone' + ), + ( + ['\u{1f9b8}\u{1f3fe}\u200d\u2640'], + '🦸🏾‍♀ E11.0 woman superhero: medium-dark skin tone' + ), + ( + ['\u{1f9b8}\u{1f3ff}\u200d\u2640\ufe0f'], + '🦸🏿‍♀️ E11.0 woman superhero: dark skin tone' + ), + ( + ['\u{1f9b8}\u{1f3ff}\u200d\u2640'], + '🦸🏿‍♀ E11.0 woman superhero: dark skin tone' + ), + (['\u{1f9b9}'], '🦹 E11.0 supervillain'), + (['\u{1f9b9}\u{1f3fb}'], '🦹🏻 E11.0 supervillain: light skin tone'), + (['\u{1f9b9}\u{1f3fc}'], '🦹🏼 E11.0 supervillain: medium-light skin tone'), + (['\u{1f9b9}\u{1f3fd}'], '🦹🏽 E11.0 supervillain: medium skin tone'), + (['\u{1f9b9}\u{1f3fe}'], '🦹🏾 E11.0 supervillain: medium-dark skin tone'), + (['\u{1f9b9}\u{1f3ff}'], '🦹🏿 E11.0 supervillain: dark skin tone'), + (['\u{1f9b9}\u200d\u2642\ufe0f'], '🦹‍♂️ E11.0 man supervillain'), + (['\u{1f9b9}\u200d\u2642'], '🦹‍♂ E11.0 man supervillain'), + ( + ['\u{1f9b9}\u{1f3fb}\u200d\u2642\ufe0f'], + '🦹🏻‍♂️ E11.0 man supervillain: light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fb}\u200d\u2642'], + '🦹🏻‍♂ E11.0 man supervillain: light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fc}\u200d\u2642\ufe0f'], + '🦹🏼‍♂️ E11.0 man supervillain: medium-light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fc}\u200d\u2642'], + '🦹🏼‍♂ E11.0 man supervillain: medium-light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fd}\u200d\u2642\ufe0f'], + '🦹🏽‍♂️ E11.0 man supervillain: medium skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fd}\u200d\u2642'], + '🦹🏽‍♂ E11.0 man supervillain: medium skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fe}\u200d\u2642\ufe0f'], + '🦹🏾‍♂️ E11.0 man supervillain: medium-dark skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fe}\u200d\u2642'], + '🦹🏾‍♂ E11.0 man supervillain: medium-dark skin tone' + ), + ( + ['\u{1f9b9}\u{1f3ff}\u200d\u2642\ufe0f'], + '🦹🏿‍♂️ E11.0 man supervillain: dark skin tone' + ), + ( + ['\u{1f9b9}\u{1f3ff}\u200d\u2642'], + '🦹🏿‍♂ E11.0 man supervillain: dark skin tone' + ), + (['\u{1f9b9}\u200d\u2640\ufe0f'], '🦹‍♀️ E11.0 woman supervillain'), + (['\u{1f9b9}\u200d\u2640'], '🦹‍♀ E11.0 woman supervillain'), + ( + ['\u{1f9b9}\u{1f3fb}\u200d\u2640\ufe0f'], + '🦹🏻‍♀️ E11.0 woman supervillain: light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fb}\u200d\u2640'], + '🦹🏻‍♀ E11.0 woman supervillain: light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fc}\u200d\u2640\ufe0f'], + '🦹🏼‍♀️ E11.0 woman supervillain: medium-light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fc}\u200d\u2640'], + '🦹🏼‍♀ E11.0 woman supervillain: medium-light skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fd}\u200d\u2640\ufe0f'], + '🦹🏽‍♀️ E11.0 woman supervillain: medium skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fd}\u200d\u2640'], + '🦹🏽‍♀ E11.0 woman supervillain: medium skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fe}\u200d\u2640\ufe0f'], + '🦹🏾‍♀️ E11.0 woman supervillain: medium-dark skin tone' + ), + ( + ['\u{1f9b9}\u{1f3fe}\u200d\u2640'], + '🦹🏾‍♀ E11.0 woman supervillain: medium-dark skin tone' + ), + ( + ['\u{1f9b9}\u{1f3ff}\u200d\u2640\ufe0f'], + '🦹🏿‍♀️ E11.0 woman supervillain: dark skin tone' + ), + ( + ['\u{1f9b9}\u{1f3ff}\u200d\u2640'], + '🦹🏿‍♀ E11.0 woman supervillain: dark skin tone' + ), + (['\u{1f9d9}'], '🧙 E5.0 mage'), + (['\u{1f9d9}\u{1f3fb}'], '🧙🏻 E5.0 mage: light skin tone'), + (['\u{1f9d9}\u{1f3fc}'], '🧙🏼 E5.0 mage: medium-light skin tone'), + (['\u{1f9d9}\u{1f3fd}'], '🧙🏽 E5.0 mage: medium skin tone'), + (['\u{1f9d9}\u{1f3fe}'], '🧙🏾 E5.0 mage: medium-dark skin tone'), + (['\u{1f9d9}\u{1f3ff}'], '🧙🏿 E5.0 mage: dark skin tone'), + (['\u{1f9d9}\u200d\u2642\ufe0f'], '🧙‍♂️ E5.0 man mage'), + (['\u{1f9d9}\u200d\u2642'], '🧙‍♂ E5.0 man mage'), + ( + ['\u{1f9d9}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧙🏻‍♂️ E5.0 man mage: light skin tone' + ), + (['\u{1f9d9}\u{1f3fb}\u200d\u2642'], '🧙🏻‍♂ E5.0 man mage: light skin tone'), + ( + ['\u{1f9d9}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧙🏼‍♂️ E5.0 man mage: medium-light skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fc}\u200d\u2642'], + '🧙🏼‍♂ E5.0 man mage: medium-light skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧙🏽‍♂️ E5.0 man mage: medium skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fd}\u200d\u2642'], + '🧙🏽‍♂ E5.0 man mage: medium skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧙🏾‍♂️ E5.0 man mage: medium-dark skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fe}\u200d\u2642'], + '🧙🏾‍♂ E5.0 man mage: medium-dark skin tone' + ), + ( + ['\u{1f9d9}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧙🏿‍♂️ E5.0 man mage: dark skin tone' + ), + (['\u{1f9d9}\u{1f3ff}\u200d\u2642'], '🧙🏿‍♂ E5.0 man mage: dark skin tone'), + (['\u{1f9d9}\u200d\u2640\ufe0f'], '🧙‍♀️ E5.0 woman mage'), + (['\u{1f9d9}\u200d\u2640'], '🧙‍♀ E5.0 woman mage'), + ( + ['\u{1f9d9}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧙🏻‍♀️ E5.0 woman mage: light skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fb}\u200d\u2640'], + '🧙🏻‍♀ E5.0 woman mage: light skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧙🏼‍♀️ E5.0 woman mage: medium-light skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fc}\u200d\u2640'], + '🧙🏼‍♀ E5.0 woman mage: medium-light skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧙🏽‍♀️ E5.0 woman mage: medium skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fd}\u200d\u2640'], + '🧙🏽‍♀ E5.0 woman mage: medium skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧙🏾‍♀️ E5.0 woman mage: medium-dark skin tone' + ), + ( + ['\u{1f9d9}\u{1f3fe}\u200d\u2640'], + '🧙🏾‍♀ E5.0 woman mage: medium-dark skin tone' + ), + ( + ['\u{1f9d9}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧙🏿‍♀️ E5.0 woman mage: dark skin tone' + ), + ( + ['\u{1f9d9}\u{1f3ff}\u200d\u2640'], + '🧙🏿‍♀ E5.0 woman mage: dark skin tone' + ), + (['\u{1f9da}'], '🧚 E5.0 fairy'), + (['\u{1f9da}\u{1f3fb}'], '🧚🏻 E5.0 fairy: light skin tone'), + (['\u{1f9da}\u{1f3fc}'], '🧚🏼 E5.0 fairy: medium-light skin tone'), + (['\u{1f9da}\u{1f3fd}'], '🧚🏽 E5.0 fairy: medium skin tone'), + (['\u{1f9da}\u{1f3fe}'], '🧚🏾 E5.0 fairy: medium-dark skin tone'), + (['\u{1f9da}\u{1f3ff}'], '🧚🏿 E5.0 fairy: dark skin tone'), + (['\u{1f9da}\u200d\u2642\ufe0f'], '🧚‍♂️ E5.0 man fairy'), + (['\u{1f9da}\u200d\u2642'], '🧚‍♂ E5.0 man fairy'), + ( + ['\u{1f9da}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧚🏻‍♂️ E5.0 man fairy: light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fb}\u200d\u2642'], + '🧚🏻‍♂ E5.0 man fairy: light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧚🏼‍♂️ E5.0 man fairy: medium-light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fc}\u200d\u2642'], + '🧚🏼‍♂ E5.0 man fairy: medium-light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧚🏽‍♂️ E5.0 man fairy: medium skin tone' + ), + ( + ['\u{1f9da}\u{1f3fd}\u200d\u2642'], + '🧚🏽‍♂ E5.0 man fairy: medium skin tone' + ), + ( + ['\u{1f9da}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧚🏾‍♂️ E5.0 man fairy: medium-dark skin tone' + ), + ( + ['\u{1f9da}\u{1f3fe}\u200d\u2642'], + '🧚🏾‍♂ E5.0 man fairy: medium-dark skin tone' + ), + ( + ['\u{1f9da}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧚🏿‍♂️ E5.0 man fairy: dark skin tone' + ), + (['\u{1f9da}\u{1f3ff}\u200d\u2642'], '🧚🏿‍♂ E5.0 man fairy: dark skin tone'), + (['\u{1f9da}\u200d\u2640\ufe0f'], '🧚‍♀️ E5.0 woman fairy'), + (['\u{1f9da}\u200d\u2640'], '🧚‍♀ E5.0 woman fairy'), + ( + ['\u{1f9da}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧚🏻‍♀️ E5.0 woman fairy: light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fb}\u200d\u2640'], + '🧚🏻‍♀ E5.0 woman fairy: light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧚🏼‍♀️ E5.0 woman fairy: medium-light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fc}\u200d\u2640'], + '🧚🏼‍♀ E5.0 woman fairy: medium-light skin tone' + ), + ( + ['\u{1f9da}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧚🏽‍♀️ E5.0 woman fairy: medium skin tone' + ), + ( + ['\u{1f9da}\u{1f3fd}\u200d\u2640'], + '🧚🏽‍♀ E5.0 woman fairy: medium skin tone' + ), + ( + ['\u{1f9da}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧚🏾‍♀️ E5.0 woman fairy: medium-dark skin tone' + ), + ( + ['\u{1f9da}\u{1f3fe}\u200d\u2640'], + '🧚🏾‍♀ E5.0 woman fairy: medium-dark skin tone' + ), + ( + ['\u{1f9da}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧚🏿‍♀️ E5.0 woman fairy: dark skin tone' + ), + ( + ['\u{1f9da}\u{1f3ff}\u200d\u2640'], + '🧚🏿‍♀ E5.0 woman fairy: dark skin tone' + ), + (['\u{1f9db}'], '🧛 E5.0 vampire'), + (['\u{1f9db}\u{1f3fb}'], '🧛🏻 E5.0 vampire: light skin tone'), + (['\u{1f9db}\u{1f3fc}'], '🧛🏼 E5.0 vampire: medium-light skin tone'), + (['\u{1f9db}\u{1f3fd}'], '🧛🏽 E5.0 vampire: medium skin tone'), + (['\u{1f9db}\u{1f3fe}'], '🧛🏾 E5.0 vampire: medium-dark skin tone'), + (['\u{1f9db}\u{1f3ff}'], '🧛🏿 E5.0 vampire: dark skin tone'), + (['\u{1f9db}\u200d\u2642\ufe0f'], '🧛‍♂️ E5.0 man vampire'), + (['\u{1f9db}\u200d\u2642'], '🧛‍♂ E5.0 man vampire'), + ( + ['\u{1f9db}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧛🏻‍♂️ E5.0 man vampire: light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fb}\u200d\u2642'], + '🧛🏻‍♂ E5.0 man vampire: light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧛🏼‍♂️ E5.0 man vampire: medium-light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fc}\u200d\u2642'], + '🧛🏼‍♂ E5.0 man vampire: medium-light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧛🏽‍♂️ E5.0 man vampire: medium skin tone' + ), + ( + ['\u{1f9db}\u{1f3fd}\u200d\u2642'], + '🧛🏽‍♂ E5.0 man vampire: medium skin tone' + ), + ( + ['\u{1f9db}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧛🏾‍♂️ E5.0 man vampire: medium-dark skin tone' + ), + ( + ['\u{1f9db}\u{1f3fe}\u200d\u2642'], + '🧛🏾‍♂ E5.0 man vampire: medium-dark skin tone' + ), + ( + ['\u{1f9db}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧛🏿‍♂️ E5.0 man vampire: dark skin tone' + ), + ( + ['\u{1f9db}\u{1f3ff}\u200d\u2642'], + '🧛🏿‍♂ E5.0 man vampire: dark skin tone' + ), + (['\u{1f9db}\u200d\u2640\ufe0f'], '🧛‍♀️ E5.0 woman vampire'), + (['\u{1f9db}\u200d\u2640'], '🧛‍♀ E5.0 woman vampire'), + ( + ['\u{1f9db}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧛🏻‍♀️ E5.0 woman vampire: light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fb}\u200d\u2640'], + '🧛🏻‍♀ E5.0 woman vampire: light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧛🏼‍♀️ E5.0 woman vampire: medium-light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fc}\u200d\u2640'], + '🧛🏼‍♀ E5.0 woman vampire: medium-light skin tone' + ), + ( + ['\u{1f9db}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧛🏽‍♀️ E5.0 woman vampire: medium skin tone' + ), + ( + ['\u{1f9db}\u{1f3fd}\u200d\u2640'], + '🧛🏽‍♀ E5.0 woman vampire: medium skin tone' + ), + ( + ['\u{1f9db}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧛🏾‍♀️ E5.0 woman vampire: medium-dark skin tone' + ), + ( + ['\u{1f9db}\u{1f3fe}\u200d\u2640'], + '🧛🏾‍♀ E5.0 woman vampire: medium-dark skin tone' + ), + ( + ['\u{1f9db}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧛🏿‍♀️ E5.0 woman vampire: dark skin tone' + ), + ( + ['\u{1f9db}\u{1f3ff}\u200d\u2640'], + '🧛🏿‍♀ E5.0 woman vampire: dark skin tone' + ), + (['\u{1f9dc}'], '🧜 E5.0 merperson'), + (['\u{1f9dc}\u{1f3fb}'], '🧜🏻 E5.0 merperson: light skin tone'), + (['\u{1f9dc}\u{1f3fc}'], '🧜🏼 E5.0 merperson: medium-light skin tone'), + (['\u{1f9dc}\u{1f3fd}'], '🧜🏽 E5.0 merperson: medium skin tone'), + (['\u{1f9dc}\u{1f3fe}'], '🧜🏾 E5.0 merperson: medium-dark skin tone'), + (['\u{1f9dc}\u{1f3ff}'], '🧜🏿 E5.0 merperson: dark skin tone'), + (['\u{1f9dc}\u200d\u2642\ufe0f'], '🧜‍♂️ E5.0 merman'), + (['\u{1f9dc}\u200d\u2642'], '🧜‍♂ E5.0 merman'), + ( + ['\u{1f9dc}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧜🏻‍♂️ E5.0 merman: light skin tone' + ), + (['\u{1f9dc}\u{1f3fb}\u200d\u2642'], '🧜🏻‍♂ E5.0 merman: light skin tone'), + ( + ['\u{1f9dc}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧜🏼‍♂️ E5.0 merman: medium-light skin tone' + ), + ( + ['\u{1f9dc}\u{1f3fc}\u200d\u2642'], + '🧜🏼‍♂ E5.0 merman: medium-light skin tone' + ), + ( + ['\u{1f9dc}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧜🏽‍♂️ E5.0 merman: medium skin tone' + ), + (['\u{1f9dc}\u{1f3fd}\u200d\u2642'], '🧜🏽‍♂ E5.0 merman: medium skin tone'), + ( + ['\u{1f9dc}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧜🏾‍♂️ E5.0 merman: medium-dark skin tone' + ), + ( + ['\u{1f9dc}\u{1f3fe}\u200d\u2642'], + '🧜🏾‍♂ E5.0 merman: medium-dark skin tone' + ), + ( + ['\u{1f9dc}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧜🏿‍♂️ E5.0 merman: dark skin tone' + ), + (['\u{1f9dc}\u{1f3ff}\u200d\u2642'], '🧜🏿‍♂ E5.0 merman: dark skin tone'), + (['\u{1f9dc}\u200d\u2640\ufe0f'], '🧜‍♀️ E5.0 mermaid'), + (['\u{1f9dc}\u200d\u2640'], '🧜‍♀ E5.0 mermaid'), + ( + ['\u{1f9dc}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧜🏻‍♀️ E5.0 mermaid: light skin tone' + ), + (['\u{1f9dc}\u{1f3fb}\u200d\u2640'], '🧜🏻‍♀ E5.0 mermaid: light skin tone'), + ( + ['\u{1f9dc}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧜🏼‍♀️ E5.0 mermaid: medium-light skin tone' + ), + ( + ['\u{1f9dc}\u{1f3fc}\u200d\u2640'], + '🧜🏼‍♀ E5.0 mermaid: medium-light skin tone' + ), + ( + ['\u{1f9dc}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧜🏽‍♀️ E5.0 mermaid: medium skin tone' + ), + (['\u{1f9dc}\u{1f3fd}\u200d\u2640'], '🧜🏽‍♀ E5.0 mermaid: medium skin tone'), + ( + ['\u{1f9dc}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧜🏾‍♀️ E5.0 mermaid: medium-dark skin tone' + ), + ( + ['\u{1f9dc}\u{1f3fe}\u200d\u2640'], + '🧜🏾‍♀ E5.0 mermaid: medium-dark skin tone' + ), + ( + ['\u{1f9dc}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧜🏿‍♀️ E5.0 mermaid: dark skin tone' + ), + (['\u{1f9dc}\u{1f3ff}\u200d\u2640'], '🧜🏿‍♀ E5.0 mermaid: dark skin tone'), + (['\u{1f9dd}'], '🧝 E5.0 elf'), + (['\u{1f9dd}\u{1f3fb}'], '🧝🏻 E5.0 elf: light skin tone'), + (['\u{1f9dd}\u{1f3fc}'], '🧝🏼 E5.0 elf: medium-light skin tone'), + (['\u{1f9dd}\u{1f3fd}'], '🧝🏽 E5.0 elf: medium skin tone'), + (['\u{1f9dd}\u{1f3fe}'], '🧝🏾 E5.0 elf: medium-dark skin tone'), + (['\u{1f9dd}\u{1f3ff}'], '🧝🏿 E5.0 elf: dark skin tone'), + (['\u{1f9dd}\u200d\u2642\ufe0f'], '🧝‍♂️ E5.0 man elf'), + (['\u{1f9dd}\u200d\u2642'], '🧝‍♂ E5.0 man elf'), + ( + ['\u{1f9dd}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧝🏻‍♂️ E5.0 man elf: light skin tone' + ), + (['\u{1f9dd}\u{1f3fb}\u200d\u2642'], '🧝🏻‍♂ E5.0 man elf: light skin tone'), + ( + ['\u{1f9dd}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧝🏼‍♂️ E5.0 man elf: medium-light skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fc}\u200d\u2642'], + '🧝🏼‍♂ E5.0 man elf: medium-light skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧝🏽‍♂️ E5.0 man elf: medium skin tone' + ), + (['\u{1f9dd}\u{1f3fd}\u200d\u2642'], '🧝🏽‍♂ E5.0 man elf: medium skin tone'), + ( + ['\u{1f9dd}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧝🏾‍♂️ E5.0 man elf: medium-dark skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fe}\u200d\u2642'], + '🧝🏾‍♂ E5.0 man elf: medium-dark skin tone' + ), + ( + ['\u{1f9dd}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧝🏿‍♂️ E5.0 man elf: dark skin tone' + ), + (['\u{1f9dd}\u{1f3ff}\u200d\u2642'], '🧝🏿‍♂ E5.0 man elf: dark skin tone'), + (['\u{1f9dd}\u200d\u2640\ufe0f'], '🧝‍♀️ E5.0 woman elf'), + (['\u{1f9dd}\u200d\u2640'], '🧝‍♀ E5.0 woman elf'), + ( + ['\u{1f9dd}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧝🏻‍♀️ E5.0 woman elf: light skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fb}\u200d\u2640'], + '🧝🏻‍♀ E5.0 woman elf: light skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧝🏼‍♀️ E5.0 woman elf: medium-light skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fc}\u200d\u2640'], + '🧝🏼‍♀ E5.0 woman elf: medium-light skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧝🏽‍♀️ E5.0 woman elf: medium skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fd}\u200d\u2640'], + '🧝🏽‍♀ E5.0 woman elf: medium skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧝🏾‍♀️ E5.0 woman elf: medium-dark skin tone' + ), + ( + ['\u{1f9dd}\u{1f3fe}\u200d\u2640'], + '🧝🏾‍♀ E5.0 woman elf: medium-dark skin tone' + ), + ( + ['\u{1f9dd}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧝🏿‍♀️ E5.0 woman elf: dark skin tone' + ), + (['\u{1f9dd}\u{1f3ff}\u200d\u2640'], '🧝🏿‍♀ E5.0 woman elf: dark skin tone'), + (['\u{1f9de}'], '🧞 E5.0 genie'), + (['\u{1f9de}\u200d\u2642\ufe0f'], '🧞‍♂️ E5.0 man genie'), + (['\u{1f9de}\u200d\u2642'], '🧞‍♂ E5.0 man genie'), + (['\u{1f9de}\u200d\u2640\ufe0f'], '🧞‍♀️ E5.0 woman genie'), + (['\u{1f9de}\u200d\u2640'], '🧞‍♀ E5.0 woman genie'), + (['\u{1f9df}'], '🧟 E5.0 zombie'), + (['\u{1f9df}\u200d\u2642\ufe0f'], '🧟‍♂️ E5.0 man zombie'), + (['\u{1f9df}\u200d\u2642'], '🧟‍♂ E5.0 man zombie'), + (['\u{1f9df}\u200d\u2640\ufe0f'], '🧟‍♀️ E5.0 woman zombie'), + (['\u{1f9df}\u200d\u2640'], '🧟‍♀ E5.0 woman zombie'), + (['\u{1f9cc}'], '🧌 E14.0 troll'), + (['\u{1f486}'], '💆 E0.6 person getting massage'), + (['\u{1f486}\u{1f3fb}'], '💆🏻 E1.0 person getting massage: light skin tone'), + ( + ['\u{1f486}\u{1f3fc}'], + '💆🏼 E1.0 person getting massage: medium-light skin tone' + ), + ( + ['\u{1f486}\u{1f3fd}'], + '💆🏽 E1.0 person getting massage: medium skin tone' + ), + ( + ['\u{1f486}\u{1f3fe}'], + '💆🏾 E1.0 person getting massage: medium-dark skin tone' + ), + (['\u{1f486}\u{1f3ff}'], '💆🏿 E1.0 person getting massage: dark skin tone'), + (['\u{1f486}\u200d\u2642\ufe0f'], '💆‍♂️ E4.0 man getting massage'), + (['\u{1f486}\u200d\u2642'], '💆‍♂ E4.0 man getting massage'), + ( + ['\u{1f486}\u{1f3fb}\u200d\u2642\ufe0f'], + '💆🏻‍♂️ E4.0 man getting massage: light skin tone' + ), + ( + ['\u{1f486}\u{1f3fb}\u200d\u2642'], + '💆🏻‍♂ E4.0 man getting massage: light skin tone' + ), + ( + ['\u{1f486}\u{1f3fc}\u200d\u2642\ufe0f'], + '💆🏼‍♂️ E4.0 man getting massage: medium-light skin tone' + ), + ( + ['\u{1f486}\u{1f3fc}\u200d\u2642'], + '💆🏼‍♂ E4.0 man getting massage: medium-light skin tone' + ), + ( + ['\u{1f486}\u{1f3fd}\u200d\u2642\ufe0f'], + '💆🏽‍♂️ E4.0 man getting massage: medium skin tone' + ), + ( + ['\u{1f486}\u{1f3fd}\u200d\u2642'], + '💆🏽‍♂ E4.0 man getting massage: medium skin tone' + ), + ( + ['\u{1f486}\u{1f3fe}\u200d\u2642\ufe0f'], + '💆🏾‍♂️ E4.0 man getting massage: medium-dark skin tone' + ), + ( + ['\u{1f486}\u{1f3fe}\u200d\u2642'], + '💆🏾‍♂ E4.0 man getting massage: medium-dark skin tone' + ), + ( + ['\u{1f486}\u{1f3ff}\u200d\u2642\ufe0f'], + '💆🏿‍♂️ E4.0 man getting massage: dark skin tone' + ), + ( + ['\u{1f486}\u{1f3ff}\u200d\u2642'], + '💆🏿‍♂ E4.0 man getting massage: dark skin tone' + ), + (['\u{1f486}\u200d\u2640\ufe0f'], '💆‍♀️ E4.0 woman getting massage'), + (['\u{1f486}\u200d\u2640'], '💆‍♀ E4.0 woman getting massage'), + ( + ['\u{1f486}\u{1f3fb}\u200d\u2640\ufe0f'], + '💆🏻‍♀️ E4.0 woman getting massage: light skin tone' + ), + ( + ['\u{1f486}\u{1f3fb}\u200d\u2640'], + '💆🏻‍♀ E4.0 woman getting massage: light skin tone' + ), + ( + ['\u{1f486}\u{1f3fc}\u200d\u2640\ufe0f'], + '💆🏼‍♀️ E4.0 woman getting massage: medium-light skin tone' + ), + ( + ['\u{1f486}\u{1f3fc}\u200d\u2640'], + '💆🏼‍♀ E4.0 woman getting massage: medium-light skin tone' + ), + ( + ['\u{1f486}\u{1f3fd}\u200d\u2640\ufe0f'], + '💆🏽‍♀️ E4.0 woman getting massage: medium skin tone' + ), + ( + ['\u{1f486}\u{1f3fd}\u200d\u2640'], + '💆🏽‍♀ E4.0 woman getting massage: medium skin tone' + ), + ( + ['\u{1f486}\u{1f3fe}\u200d\u2640\ufe0f'], + '💆🏾‍♀️ E4.0 woman getting massage: medium-dark skin tone' + ), + ( + ['\u{1f486}\u{1f3fe}\u200d\u2640'], + '💆🏾‍♀ E4.0 woman getting massage: medium-dark skin tone' + ), + ( + ['\u{1f486}\u{1f3ff}\u200d\u2640\ufe0f'], + '💆🏿‍♀️ E4.0 woman getting massage: dark skin tone' + ), + ( + ['\u{1f486}\u{1f3ff}\u200d\u2640'], + '💆🏿‍♀ E4.0 woman getting massage: dark skin tone' + ), + (['\u{1f487}'], '💇 E0.6 person getting haircut'), + (['\u{1f487}\u{1f3fb}'], '💇🏻 E1.0 person getting haircut: light skin tone'), + ( + ['\u{1f487}\u{1f3fc}'], + '💇🏼 E1.0 person getting haircut: medium-light skin tone' + ), + ( + ['\u{1f487}\u{1f3fd}'], + '💇🏽 E1.0 person getting haircut: medium skin tone' + ), + ( + ['\u{1f487}\u{1f3fe}'], + '💇🏾 E1.0 person getting haircut: medium-dark skin tone' + ), + (['\u{1f487}\u{1f3ff}'], '💇🏿 E1.0 person getting haircut: dark skin tone'), + (['\u{1f487}\u200d\u2642\ufe0f'], '💇‍♂️ E4.0 man getting haircut'), + (['\u{1f487}\u200d\u2642'], '💇‍♂ E4.0 man getting haircut'), + ( + ['\u{1f487}\u{1f3fb}\u200d\u2642\ufe0f'], + '💇🏻‍♂️ E4.0 man getting haircut: light skin tone' + ), + ( + ['\u{1f487}\u{1f3fb}\u200d\u2642'], + '💇🏻‍♂ E4.0 man getting haircut: light skin tone' + ), + ( + ['\u{1f487}\u{1f3fc}\u200d\u2642\ufe0f'], + '💇🏼‍♂️ E4.0 man getting haircut: medium-light skin tone' + ), + ( + ['\u{1f487}\u{1f3fc}\u200d\u2642'], + '💇🏼‍♂ E4.0 man getting haircut: medium-light skin tone' + ), + ( + ['\u{1f487}\u{1f3fd}\u200d\u2642\ufe0f'], + '💇🏽‍♂️ E4.0 man getting haircut: medium skin tone' + ), + ( + ['\u{1f487}\u{1f3fd}\u200d\u2642'], + '💇🏽‍♂ E4.0 man getting haircut: medium skin tone' + ), + ( + ['\u{1f487}\u{1f3fe}\u200d\u2642\ufe0f'], + '💇🏾‍♂️ E4.0 man getting haircut: medium-dark skin tone' + ), + ( + ['\u{1f487}\u{1f3fe}\u200d\u2642'], + '💇🏾‍♂ E4.0 man getting haircut: medium-dark skin tone' + ), + ( + ['\u{1f487}\u{1f3ff}\u200d\u2642\ufe0f'], + '💇🏿‍♂️ E4.0 man getting haircut: dark skin tone' + ), + ( + ['\u{1f487}\u{1f3ff}\u200d\u2642'], + '💇🏿‍♂ E4.0 man getting haircut: dark skin tone' + ), + (['\u{1f487}\u200d\u2640\ufe0f'], '💇‍♀️ E4.0 woman getting haircut'), + (['\u{1f487}\u200d\u2640'], '💇‍♀ E4.0 woman getting haircut'), + ( + ['\u{1f487}\u{1f3fb}\u200d\u2640\ufe0f'], + '💇🏻‍♀️ E4.0 woman getting haircut: light skin tone' + ), + ( + ['\u{1f487}\u{1f3fb}\u200d\u2640'], + '💇🏻‍♀ E4.0 woman getting haircut: light skin tone' + ), + ( + ['\u{1f487}\u{1f3fc}\u200d\u2640\ufe0f'], + '💇🏼‍♀️ E4.0 woman getting haircut: medium-light skin tone' + ), + ( + ['\u{1f487}\u{1f3fc}\u200d\u2640'], + '💇🏼‍♀ E4.0 woman getting haircut: medium-light skin tone' + ), + ( + ['\u{1f487}\u{1f3fd}\u200d\u2640\ufe0f'], + '💇🏽‍♀️ E4.0 woman getting haircut: medium skin tone' + ), + ( + ['\u{1f487}\u{1f3fd}\u200d\u2640'], + '💇🏽‍♀ E4.0 woman getting haircut: medium skin tone' + ), + ( + ['\u{1f487}\u{1f3fe}\u200d\u2640\ufe0f'], + '💇🏾‍♀️ E4.0 woman getting haircut: medium-dark skin tone' + ), + ( + ['\u{1f487}\u{1f3fe}\u200d\u2640'], + '💇🏾‍♀ E4.0 woman getting haircut: medium-dark skin tone' + ), + ( + ['\u{1f487}\u{1f3ff}\u200d\u2640\ufe0f'], + '💇🏿‍♀️ E4.0 woman getting haircut: dark skin tone' + ), + ( + ['\u{1f487}\u{1f3ff}\u200d\u2640'], + '💇🏿‍♀ E4.0 woman getting haircut: dark skin tone' + ), + (['\u{1f6b6}'], '🚶 E0.6 person walking'), + (['\u{1f6b6}\u{1f3fb}'], '🚶🏻 E1.0 person walking: light skin tone'), + (['\u{1f6b6}\u{1f3fc}'], '🚶🏼 E1.0 person walking: medium-light skin tone'), + (['\u{1f6b6}\u{1f3fd}'], '🚶🏽 E1.0 person walking: medium skin tone'), + (['\u{1f6b6}\u{1f3fe}'], '🚶🏾 E1.0 person walking: medium-dark skin tone'), + (['\u{1f6b6}\u{1f3ff}'], '🚶🏿 E1.0 person walking: dark skin tone'), + (['\u{1f6b6}\u200d\u2642\ufe0f'], '🚶‍♂️ E4.0 man walking'), + (['\u{1f6b6}\u200d\u2642'], '🚶‍♂ E4.0 man walking'), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2642\ufe0f'], + '🚶🏻‍♂️ E4.0 man walking: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2642'], + '🚶🏻‍♂ E4.0 man walking: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2642\ufe0f'], + '🚶🏼‍♂️ E4.0 man walking: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2642'], + '🚶🏼‍♂ E4.0 man walking: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2642\ufe0f'], + '🚶🏽‍♂️ E4.0 man walking: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2642'], + '🚶🏽‍♂ E4.0 man walking: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2642\ufe0f'], + '🚶🏾‍♂️ E4.0 man walking: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2642'], + '🚶🏾‍♂ E4.0 man walking: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2642\ufe0f'], + '🚶🏿‍♂️ E4.0 man walking: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2642'], + '🚶🏿‍♂ E4.0 man walking: dark skin tone' + ), + (['\u{1f6b6}\u200d\u2640\ufe0f'], '🚶‍♀️ E4.0 woman walking'), + (['\u{1f6b6}\u200d\u2640'], '🚶‍♀ E4.0 woman walking'), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2640\ufe0f'], + '🚶🏻‍♀️ E4.0 woman walking: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2640'], + '🚶🏻‍♀ E4.0 woman walking: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2640\ufe0f'], + '🚶🏼‍♀️ E4.0 woman walking: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2640'], + '🚶🏼‍♀ E4.0 woman walking: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2640\ufe0f'], + '🚶🏽‍♀️ E4.0 woman walking: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2640'], + '🚶🏽‍♀ E4.0 woman walking: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2640\ufe0f'], + '🚶🏾‍♀️ E4.0 woman walking: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2640'], + '🚶🏾‍♀ E4.0 woman walking: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2640\ufe0f'], + '🚶🏿‍♀️ E4.0 woman walking: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2640'], + '🚶🏿‍♀ E4.0 woman walking: dark skin tone' + ), + (['\u{1f6b6}\u200d\u27a1\ufe0f'], '🚶‍➡️ E15.1 person walking facing right'), + (['\u{1f6b6}\u200d\u27a1'], '🚶‍➡ E15.1 person walking facing right'), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u27a1\ufe0f'], + '🚶🏻‍➡️ E15.1 person walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u27a1'], + '🚶🏻‍➡ E15.1 person walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u27a1\ufe0f'], + '🚶🏼‍➡️ E15.1 person walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u27a1'], + '🚶🏼‍➡ E15.1 person walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u27a1\ufe0f'], + '🚶🏽‍➡️ E15.1 person walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u27a1'], + '🚶🏽‍➡ E15.1 person walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u27a1\ufe0f'], + '🚶🏾‍➡️ E15.1 person walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u27a1'], + '🚶🏾‍➡ E15.1 person walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u27a1\ufe0f'], + '🚶🏿‍➡️ E15.1 person walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u27a1'], + '🚶🏿‍➡ E15.1 person walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🚶‍♀️‍➡️ E15.1 woman walking facing right' + ), + ( + ['\u{1f6b6}\u200d\u2640\u200d\u27a1\ufe0f'], + '🚶‍♀‍➡️ E15.1 woman walking facing right' + ), + ( + ['\u{1f6b6}\u200d\u2640\ufe0f\u200d\u27a1'], + '🚶‍♀️‍➡ E15.1 woman walking facing right' + ), + ( + ['\u{1f6b6}\u200d\u2640\u200d\u27a1'], + '🚶‍♀‍➡ E15.1 woman walking facing right' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏻‍♀️‍➡️ E15.1 woman walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2640\u200d\u27a1\ufe0f'], + '🚶🏻‍♀‍➡️ E15.1 woman walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2640\ufe0f\u200d\u27a1'], + '🚶🏻‍♀️‍➡ E15.1 woman walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2640\u200d\u27a1'], + '🚶🏻‍♀‍➡ E15.1 woman walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏼‍♀️‍➡️ E15.1 woman walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2640\u200d\u27a1\ufe0f'], + '🚶🏼‍♀‍➡️ E15.1 woman walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2640\ufe0f\u200d\u27a1'], + '🚶🏼‍♀️‍➡ E15.1 woman walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2640\u200d\u27a1'], + '🚶🏼‍♀‍➡ E15.1 woman walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏽‍♀️‍➡️ E15.1 woman walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2640\u200d\u27a1\ufe0f'], + '🚶🏽‍♀‍➡️ E15.1 woman walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2640\ufe0f\u200d\u27a1'], + '🚶🏽‍♀️‍➡ E15.1 woman walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2640\u200d\u27a1'], + '🚶🏽‍♀‍➡ E15.1 woman walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏾‍♀️‍➡️ E15.1 woman walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2640\u200d\u27a1\ufe0f'], + '🚶🏾‍♀‍➡️ E15.1 woman walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2640\ufe0f\u200d\u27a1'], + '🚶🏾‍♀️‍➡ E15.1 woman walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2640\u200d\u27a1'], + '🚶🏾‍♀‍➡ E15.1 woman walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏿‍♀️‍➡️ E15.1 woman walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2640\u200d\u27a1\ufe0f'], + '🚶🏿‍♀‍➡️ E15.1 woman walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2640\ufe0f\u200d\u27a1'], + '🚶🏿‍♀️‍➡ E15.1 woman walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2640\u200d\u27a1'], + '🚶🏿‍♀‍➡ E15.1 woman walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🚶‍♂️‍➡️ E15.1 man walking facing right' + ), + ( + ['\u{1f6b6}\u200d\u2642\u200d\u27a1\ufe0f'], + '🚶‍♂‍➡️ E15.1 man walking facing right' + ), + ( + ['\u{1f6b6}\u200d\u2642\ufe0f\u200d\u27a1'], + '🚶‍♂️‍➡ E15.1 man walking facing right' + ), + ( + ['\u{1f6b6}\u200d\u2642\u200d\u27a1'], + '🚶‍♂‍➡ E15.1 man walking facing right' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏻‍♂️‍➡️ E15.1 man walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2642\u200d\u27a1\ufe0f'], + '🚶🏻‍♂‍➡️ E15.1 man walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2642\ufe0f\u200d\u27a1'], + '🚶🏻‍♂️‍➡ E15.1 man walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fb}\u200d\u2642\u200d\u27a1'], + '🚶🏻‍♂‍➡ E15.1 man walking facing right: light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏼‍♂️‍➡️ E15.1 man walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2642\u200d\u27a1\ufe0f'], + '🚶🏼‍♂‍➡️ E15.1 man walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2642\ufe0f\u200d\u27a1'], + '🚶🏼‍♂️‍➡ E15.1 man walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fc}\u200d\u2642\u200d\u27a1'], + '🚶🏼‍♂‍➡ E15.1 man walking facing right: medium-light skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏽‍♂️‍➡️ E15.1 man walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2642\u200d\u27a1\ufe0f'], + '🚶🏽‍♂‍➡️ E15.1 man walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2642\ufe0f\u200d\u27a1'], + '🚶🏽‍♂️‍➡ E15.1 man walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fd}\u200d\u2642\u200d\u27a1'], + '🚶🏽‍♂‍➡ E15.1 man walking facing right: medium skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏾‍♂️‍➡️ E15.1 man walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2642\u200d\u27a1\ufe0f'], + '🚶🏾‍♂‍➡️ E15.1 man walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2642\ufe0f\u200d\u27a1'], + '🚶🏾‍♂️‍➡ E15.1 man walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3fe}\u200d\u2642\u200d\u27a1'], + '🚶🏾‍♂‍➡ E15.1 man walking facing right: medium-dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🚶🏿‍♂️‍➡️ E15.1 man walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2642\u200d\u27a1\ufe0f'], + '🚶🏿‍♂‍➡️ E15.1 man walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2642\ufe0f\u200d\u27a1'], + '🚶🏿‍♂️‍➡ E15.1 man walking facing right: dark skin tone' + ), + ( + ['\u{1f6b6}\u{1f3ff}\u200d\u2642\u200d\u27a1'], + '🚶🏿‍♂‍➡ E15.1 man walking facing right: dark skin tone' + ), + (['\u{1f9cd}'], '🧍 E12.0 person standing'), + (['\u{1f9cd}\u{1f3fb}'], '🧍🏻 E12.0 person standing: light skin tone'), + ( + ['\u{1f9cd}\u{1f3fc}'], + '🧍🏼 E12.0 person standing: medium-light skin tone' + ), + (['\u{1f9cd}\u{1f3fd}'], '🧍🏽 E12.0 person standing: medium skin tone'), + (['\u{1f9cd}\u{1f3fe}'], '🧍🏾 E12.0 person standing: medium-dark skin tone'), + (['\u{1f9cd}\u{1f3ff}'], '🧍🏿 E12.0 person standing: dark skin tone'), + (['\u{1f9cd}\u200d\u2642\ufe0f'], '🧍‍♂️ E12.0 man standing'), + (['\u{1f9cd}\u200d\u2642'], '🧍‍♂ E12.0 man standing'), + ( + ['\u{1f9cd}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧍🏻‍♂️ E12.0 man standing: light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fb}\u200d\u2642'], + '🧍🏻‍♂ E12.0 man standing: light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧍🏼‍♂️ E12.0 man standing: medium-light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fc}\u200d\u2642'], + '🧍🏼‍♂ E12.0 man standing: medium-light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧍🏽‍♂️ E12.0 man standing: medium skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fd}\u200d\u2642'], + '🧍🏽‍♂ E12.0 man standing: medium skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧍🏾‍♂️ E12.0 man standing: medium-dark skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fe}\u200d\u2642'], + '🧍🏾‍♂ E12.0 man standing: medium-dark skin tone' + ), + ( + ['\u{1f9cd}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧍🏿‍♂️ E12.0 man standing: dark skin tone' + ), + ( + ['\u{1f9cd}\u{1f3ff}\u200d\u2642'], + '🧍🏿‍♂ E12.0 man standing: dark skin tone' + ), + (['\u{1f9cd}\u200d\u2640\ufe0f'], '🧍‍♀️ E12.0 woman standing'), + (['\u{1f9cd}\u200d\u2640'], '🧍‍♀ E12.0 woman standing'), + ( + ['\u{1f9cd}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧍🏻‍♀️ E12.0 woman standing: light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fb}\u200d\u2640'], + '🧍🏻‍♀ E12.0 woman standing: light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧍🏼‍♀️ E12.0 woman standing: medium-light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fc}\u200d\u2640'], + '🧍🏼‍♀ E12.0 woman standing: medium-light skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧍🏽‍♀️ E12.0 woman standing: medium skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fd}\u200d\u2640'], + '🧍🏽‍♀ E12.0 woman standing: medium skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧍🏾‍♀️ E12.0 woman standing: medium-dark skin tone' + ), + ( + ['\u{1f9cd}\u{1f3fe}\u200d\u2640'], + '🧍🏾‍♀ E12.0 woman standing: medium-dark skin tone' + ), + ( + ['\u{1f9cd}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧍🏿‍♀️ E12.0 woman standing: dark skin tone' + ), + ( + ['\u{1f9cd}\u{1f3ff}\u200d\u2640'], + '🧍🏿‍♀ E12.0 woman standing: dark skin tone' + ), + (['\u{1f9ce}'], '🧎 E12.0 person kneeling'), + (['\u{1f9ce}\u{1f3fb}'], '🧎🏻 E12.0 person kneeling: light skin tone'), + ( + ['\u{1f9ce}\u{1f3fc}'], + '🧎🏼 E12.0 person kneeling: medium-light skin tone' + ), + (['\u{1f9ce}\u{1f3fd}'], '🧎🏽 E12.0 person kneeling: medium skin tone'), + (['\u{1f9ce}\u{1f3fe}'], '🧎🏾 E12.0 person kneeling: medium-dark skin tone'), + (['\u{1f9ce}\u{1f3ff}'], '🧎🏿 E12.0 person kneeling: dark skin tone'), + (['\u{1f9ce}\u200d\u2642\ufe0f'], '🧎‍♂️ E12.0 man kneeling'), + (['\u{1f9ce}\u200d\u2642'], '🧎‍♂ E12.0 man kneeling'), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧎🏻‍♂️ E12.0 man kneeling: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2642'], + '🧎🏻‍♂ E12.0 man kneeling: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧎🏼‍♂️ E12.0 man kneeling: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2642'], + '🧎🏼‍♂ E12.0 man kneeling: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧎🏽‍♂️ E12.0 man kneeling: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2642'], + '🧎🏽‍♂ E12.0 man kneeling: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧎🏾‍♂️ E12.0 man kneeling: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2642'], + '🧎🏾‍♂ E12.0 man kneeling: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧎🏿‍♂️ E12.0 man kneeling: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2642'], + '🧎🏿‍♂ E12.0 man kneeling: dark skin tone' + ), + (['\u{1f9ce}\u200d\u2640\ufe0f'], '🧎‍♀️ E12.0 woman kneeling'), + (['\u{1f9ce}\u200d\u2640'], '🧎‍♀ E12.0 woman kneeling'), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧎🏻‍♀️ E12.0 woman kneeling: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2640'], + '🧎🏻‍♀ E12.0 woman kneeling: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧎🏼‍♀️ E12.0 woman kneeling: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2640'], + '🧎🏼‍♀ E12.0 woman kneeling: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧎🏽‍♀️ E12.0 woman kneeling: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2640'], + '🧎🏽‍♀ E12.0 woman kneeling: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧎🏾‍♀️ E12.0 woman kneeling: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2640'], + '🧎🏾‍♀ E12.0 woman kneeling: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧎🏿‍♀️ E12.0 woman kneeling: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2640'], + '🧎🏿‍♀ E12.0 woman kneeling: dark skin tone' + ), + (['\u{1f9ce}\u200d\u27a1\ufe0f'], '🧎‍➡️ E15.1 person kneeling facing right'), + (['\u{1f9ce}\u200d\u27a1'], '🧎‍➡ E15.1 person kneeling facing right'), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u27a1\ufe0f'], + '🧎🏻‍➡️ E15.1 person kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u27a1'], + '🧎🏻‍➡ E15.1 person kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u27a1\ufe0f'], + '🧎🏼‍➡️ E15.1 person kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u27a1'], + '🧎🏼‍➡ E15.1 person kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u27a1\ufe0f'], + '🧎🏽‍➡️ E15.1 person kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u27a1'], + '🧎🏽‍➡ E15.1 person kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u27a1\ufe0f'], + '🧎🏾‍➡️ E15.1 person kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u27a1'], + '🧎🏾‍➡ E15.1 person kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u27a1\ufe0f'], + '🧎🏿‍➡️ E15.1 person kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u27a1'], + '🧎🏿‍➡ E15.1 person kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🧎‍♀️‍➡️ E15.1 woman kneeling facing right' + ), + ( + ['\u{1f9ce}\u200d\u2640\u200d\u27a1\ufe0f'], + '🧎‍♀‍➡️ E15.1 woman kneeling facing right' + ), + ( + ['\u{1f9ce}\u200d\u2640\ufe0f\u200d\u27a1'], + '🧎‍♀️‍➡ E15.1 woman kneeling facing right' + ), + ( + ['\u{1f9ce}\u200d\u2640\u200d\u27a1'], + '🧎‍♀‍➡ E15.1 woman kneeling facing right' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏻‍♀️‍➡️ E15.1 woman kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2640\u200d\u27a1\ufe0f'], + '🧎🏻‍♀‍➡️ E15.1 woman kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2640\ufe0f\u200d\u27a1'], + '🧎🏻‍♀️‍➡ E15.1 woman kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2640\u200d\u27a1'], + '🧎🏻‍♀‍➡ E15.1 woman kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏼‍♀️‍➡️ E15.1 woman kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2640\u200d\u27a1\ufe0f'], + '🧎🏼‍♀‍➡️ E15.1 woman kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2640\ufe0f\u200d\u27a1'], + '🧎🏼‍♀️‍➡ E15.1 woman kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2640\u200d\u27a1'], + '🧎🏼‍♀‍➡ E15.1 woman kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏽‍♀️‍➡️ E15.1 woman kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2640\u200d\u27a1\ufe0f'], + '🧎🏽‍♀‍➡️ E15.1 woman kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2640\ufe0f\u200d\u27a1'], + '🧎🏽‍♀️‍➡ E15.1 woman kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2640\u200d\u27a1'], + '🧎🏽‍♀‍➡ E15.1 woman kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏾‍♀️‍➡️ E15.1 woman kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2640\u200d\u27a1\ufe0f'], + '🧎🏾‍♀‍➡️ E15.1 woman kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2640\ufe0f\u200d\u27a1'], + '🧎🏾‍♀️‍➡ E15.1 woman kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2640\u200d\u27a1'], + '🧎🏾‍♀‍➡ E15.1 woman kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏿‍♀️‍➡️ E15.1 woman kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2640\u200d\u27a1\ufe0f'], + '🧎🏿‍♀‍➡️ E15.1 woman kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2640\ufe0f\u200d\u27a1'], + '🧎🏿‍♀️‍➡ E15.1 woman kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2640\u200d\u27a1'], + '🧎🏿‍♀‍➡ E15.1 woman kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🧎‍♂️‍➡️ E15.1 man kneeling facing right' + ), + ( + ['\u{1f9ce}\u200d\u2642\u200d\u27a1\ufe0f'], + '🧎‍♂‍➡️ E15.1 man kneeling facing right' + ), + ( + ['\u{1f9ce}\u200d\u2642\ufe0f\u200d\u27a1'], + '🧎‍♂️‍➡ E15.1 man kneeling facing right' + ), + ( + ['\u{1f9ce}\u200d\u2642\u200d\u27a1'], + '🧎‍♂‍➡ E15.1 man kneeling facing right' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏻‍♂️‍➡️ E15.1 man kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2642\u200d\u27a1\ufe0f'], + '🧎🏻‍♂‍➡️ E15.1 man kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2642\ufe0f\u200d\u27a1'], + '🧎🏻‍♂️‍➡ E15.1 man kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fb}\u200d\u2642\u200d\u27a1'], + '🧎🏻‍♂‍➡ E15.1 man kneeling facing right: light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏼‍♂️‍➡️ E15.1 man kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2642\u200d\u27a1\ufe0f'], + '🧎🏼‍♂‍➡️ E15.1 man kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2642\ufe0f\u200d\u27a1'], + '🧎🏼‍♂️‍➡ E15.1 man kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fc}\u200d\u2642\u200d\u27a1'], + '🧎🏼‍♂‍➡ E15.1 man kneeling facing right: medium-light skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏽‍♂️‍➡️ E15.1 man kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2642\u200d\u27a1\ufe0f'], + '🧎🏽‍♂‍➡️ E15.1 man kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2642\ufe0f\u200d\u27a1'], + '🧎🏽‍♂️‍➡ E15.1 man kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fd}\u200d\u2642\u200d\u27a1'], + '🧎🏽‍♂‍➡ E15.1 man kneeling facing right: medium skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏾‍♂️‍➡️ E15.1 man kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2642\u200d\u27a1\ufe0f'], + '🧎🏾‍♂‍➡️ E15.1 man kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2642\ufe0f\u200d\u27a1'], + '🧎🏾‍♂️‍➡ E15.1 man kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3fe}\u200d\u2642\u200d\u27a1'], + '🧎🏾‍♂‍➡ E15.1 man kneeling facing right: medium-dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🧎🏿‍♂️‍➡️ E15.1 man kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2642\u200d\u27a1\ufe0f'], + '🧎🏿‍♂‍➡️ E15.1 man kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2642\ufe0f\u200d\u27a1'], + '🧎🏿‍♂️‍➡ E15.1 man kneeling facing right: dark skin tone' + ), + ( + ['\u{1f9ce}\u{1f3ff}\u200d\u2642\u200d\u27a1'], + '🧎🏿‍♂‍➡ E15.1 man kneeling facing right: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f9af}'], '🧑‍🦯 E12.1 person with white cane'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9af}'], + '🧑🏻‍🦯 E12.1 person with white cane: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9af}'], + '🧑🏼‍🦯 E12.1 person with white cane: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9af}'], + '🧑🏽‍🦯 E12.1 person with white cane: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9af}'], + '🧑🏾‍🦯 E12.1 person with white cane: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9af}'], + '🧑🏿‍🦯 E12.1 person with white cane: dark skin tone' + ), + ( + ['\u{1f9d1}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '🧑‍🦯‍➡️ E15.1 person with white cane facing right' + ), + ( + ['\u{1f9d1}\u200d\u{1f9af}\u200d\u27a1'], + '🧑‍🦯‍➡ E15.1 person with white cane facing right' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '🧑🏻‍🦯‍➡️ E15.1 person with white cane facing right: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9af}\u200d\u27a1'], + '🧑🏻‍🦯‍➡ E15.1 person with white cane facing right: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '🧑🏼‍🦯‍➡️ E15.1 person with white cane facing right: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9af}\u200d\u27a1'], + '🧑🏼‍🦯‍➡ E15.1 person with white cane facing right: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '🧑🏽‍🦯‍➡️ E15.1 person with white cane facing right: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9af}\u200d\u27a1'], + '🧑🏽‍🦯‍➡ E15.1 person with white cane facing right: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '🧑🏾‍🦯‍➡️ E15.1 person with white cane facing right: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9af}\u200d\u27a1'], + '🧑🏾‍🦯‍➡ E15.1 person with white cane facing right: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '🧑🏿‍🦯‍➡️ E15.1 person with white cane facing right: dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9af}\u200d\u27a1'], + '🧑🏿‍🦯‍➡ E15.1 person with white cane facing right: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f9af}'], '👨‍🦯 E12.0 man with white cane'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9af}'], + '👨🏻‍🦯 E12.0 man with white cane: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9af}'], + '👨🏼‍🦯 E12.0 man with white cane: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9af}'], + '👨🏽‍🦯 E12.0 man with white cane: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9af}'], + '👨🏾‍🦯 E12.0 man with white cane: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9af}'], + '👨🏿‍🦯 E12.0 man with white cane: dark skin tone' + ), + ( + ['\u{1f468}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👨‍🦯‍➡️ E15.1 man with white cane facing right' + ), + ( + ['\u{1f468}\u200d\u{1f9af}\u200d\u27a1'], + '👨‍🦯‍➡ E15.1 man with white cane facing right' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👨🏻‍🦯‍➡️ E15.1 man with white cane facing right: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9af}\u200d\u27a1'], + '👨🏻‍🦯‍➡ E15.1 man with white cane facing right: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👨🏼‍🦯‍➡️ E15.1 man with white cane facing right: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9af}\u200d\u27a1'], + '👨🏼‍🦯‍➡ E15.1 man with white cane facing right: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👨🏽‍🦯‍➡️ E15.1 man with white cane facing right: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9af}\u200d\u27a1'], + '👨🏽‍🦯‍➡ E15.1 man with white cane facing right: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👨🏾‍🦯‍➡️ E15.1 man with white cane facing right: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9af}\u200d\u27a1'], + '👨🏾‍🦯‍➡ E15.1 man with white cane facing right: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👨🏿‍🦯‍➡️ E15.1 man with white cane facing right: dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9af}\u200d\u27a1'], + '👨🏿‍🦯‍➡ E15.1 man with white cane facing right: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f9af}'], '👩‍🦯 E12.0 woman with white cane'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9af}'], + '👩🏻‍🦯 E12.0 woman with white cane: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9af}'], + '👩🏼‍🦯 E12.0 woman with white cane: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9af}'], + '👩🏽‍🦯 E12.0 woman with white cane: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9af}'], + '👩🏾‍🦯 E12.0 woman with white cane: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9af}'], + '👩🏿‍🦯 E12.0 woman with white cane: dark skin tone' + ), + ( + ['\u{1f469}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👩‍🦯‍➡️ E15.1 woman with white cane facing right' + ), + ( + ['\u{1f469}\u200d\u{1f9af}\u200d\u27a1'], + '👩‍🦯‍➡ E15.1 woman with white cane facing right' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👩🏻‍🦯‍➡️ E15.1 woman with white cane facing right: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9af}\u200d\u27a1'], + '👩🏻‍🦯‍➡ E15.1 woman with white cane facing right: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👩🏼‍🦯‍➡️ E15.1 woman with white cane facing right: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9af}\u200d\u27a1'], + '👩🏼‍🦯‍➡ E15.1 woman with white cane facing right: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👩🏽‍🦯‍➡️ E15.1 woman with white cane facing right: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9af}\u200d\u27a1'], + '👩🏽‍🦯‍➡ E15.1 woman with white cane facing right: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👩🏾‍🦯‍➡️ E15.1 woman with white cane facing right: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9af}\u200d\u27a1'], + '👩🏾‍🦯‍➡ E15.1 woman with white cane facing right: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9af}\u200d\u27a1\ufe0f'], + '👩🏿‍🦯‍➡️ E15.1 woman with white cane facing right: dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9af}\u200d\u27a1'], + '👩🏿‍🦯‍➡ E15.1 woman with white cane facing right: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f9bc}'], '🧑‍🦼 E12.1 person in motorized wheelchair'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bc}'], + '🧑🏻‍🦼 E12.1 person in motorized wheelchair: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bc}'], + '🧑🏼‍🦼 E12.1 person in motorized wheelchair: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bc}'], + '🧑🏽‍🦼 E12.1 person in motorized wheelchair: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bc}'], + '🧑🏾‍🦼 E12.1 person in motorized wheelchair: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bc}'], + '🧑🏿‍🦼 E12.1 person in motorized wheelchair: dark skin tone' + ), + ( + ['\u{1f9d1}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '🧑‍🦼‍➡️ E15.1 person in motorized wheelchair facing right' + ), + ( + ['\u{1f9d1}\u200d\u{1f9bc}\u200d\u27a1'], + '🧑‍🦼‍➡ E15.1 person in motorized wheelchair facing right' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '🧑🏻‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bc}\u200d\u27a1'], + '🧑🏻‍🦼‍➡ E15.1 person in motorized wheelchair facing right: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '🧑🏼‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bc}\u200d\u27a1'], + '🧑🏼‍🦼‍➡ E15.1 person in motorized wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '🧑🏽‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bc}\u200d\u27a1'], + '🧑🏽‍🦼‍➡ E15.1 person in motorized wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '🧑🏾‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bc}\u200d\u27a1'], + '🧑🏾‍🦼‍➡ E15.1 person in motorized wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '🧑🏿‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bc}\u200d\u27a1'], + '🧑🏿‍🦼‍➡ E15.1 person in motorized wheelchair facing right: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f9bc}'], '👨‍🦼 E12.0 man in motorized wheelchair'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9bc}'], + '👨🏻‍🦼 E12.0 man in motorized wheelchair: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9bc}'], + '👨🏼‍🦼 E12.0 man in motorized wheelchair: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9bc}'], + '👨🏽‍🦼 E12.0 man in motorized wheelchair: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9bc}'], + '👨🏾‍🦼 E12.0 man in motorized wheelchair: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9bc}'], + '👨🏿‍🦼 E12.0 man in motorized wheelchair: dark skin tone' + ), + ( + ['\u{1f468}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👨‍🦼‍➡️ E15.1 man in motorized wheelchair facing right' + ), + ( + ['\u{1f468}\u200d\u{1f9bc}\u200d\u27a1'], + '👨‍🦼‍➡ E15.1 man in motorized wheelchair facing right' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👨🏻‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9bc}\u200d\u27a1'], + '👨🏻‍🦼‍➡ E15.1 man in motorized wheelchair facing right: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👨🏼‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9bc}\u200d\u27a1'], + '👨🏼‍🦼‍➡ E15.1 man in motorized wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👨🏽‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9bc}\u200d\u27a1'], + '👨🏽‍🦼‍➡ E15.1 man in motorized wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👨🏾‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9bc}\u200d\u27a1'], + '👨🏾‍🦼‍➡ E15.1 man in motorized wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👨🏿‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9bc}\u200d\u27a1'], + '👨🏿‍🦼‍➡ E15.1 man in motorized wheelchair facing right: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f9bc}'], '👩‍🦼 E12.0 woman in motorized wheelchair'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9bc}'], + '👩🏻‍🦼 E12.0 woman in motorized wheelchair: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9bc}'], + '👩🏼‍🦼 E12.0 woman in motorized wheelchair: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9bc}'], + '👩🏽‍🦼 E12.0 woman in motorized wheelchair: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9bc}'], + '👩🏾‍🦼 E12.0 woman in motorized wheelchair: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9bc}'], + '👩🏿‍🦼 E12.0 woman in motorized wheelchair: dark skin tone' + ), + ( + ['\u{1f469}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👩‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right' + ), + ( + ['\u{1f469}\u200d\u{1f9bc}\u200d\u27a1'], + '👩‍🦼‍➡ E15.1 woman in motorized wheelchair facing right' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👩🏻‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9bc}\u200d\u27a1'], + '👩🏻‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👩🏼‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9bc}\u200d\u27a1'], + '👩🏼‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👩🏽‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9bc}\u200d\u27a1'], + '👩🏽‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👩🏾‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9bc}\u200d\u27a1'], + '👩🏾‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9bc}\u200d\u27a1\ufe0f'], + '👩🏿‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9bc}\u200d\u27a1'], + '👩🏿‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: dark skin tone' + ), + (['\u{1f9d1}\u200d\u{1f9bd}'], '🧑‍🦽 E12.1 person in manual wheelchair'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bd}'], + '🧑🏻‍🦽 E12.1 person in manual wheelchair: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bd}'], + '🧑🏼‍🦽 E12.1 person in manual wheelchair: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bd}'], + '🧑🏽‍🦽 E12.1 person in manual wheelchair: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bd}'], + '🧑🏾‍🦽 E12.1 person in manual wheelchair: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bd}'], + '🧑🏿‍🦽 E12.1 person in manual wheelchair: dark skin tone' + ), + ( + ['\u{1f9d1}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '🧑‍🦽‍➡️ E15.1 person in manual wheelchair facing right' + ), + ( + ['\u{1f9d1}\u200d\u{1f9bd}\u200d\u27a1'], + '🧑‍🦽‍➡ E15.1 person in manual wheelchair facing right' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '🧑🏻‍🦽‍➡️ E15.1 person in manual wheelchair facing right: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f9bd}\u200d\u27a1'], + '🧑🏻‍🦽‍➡ E15.1 person in manual wheelchair facing right: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '🧑🏼‍🦽‍➡️ E15.1 person in manual wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f9bd}\u200d\u27a1'], + '🧑🏼‍🦽‍➡ E15.1 person in manual wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '🧑🏽‍🦽‍➡️ E15.1 person in manual wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f9bd}\u200d\u27a1'], + '🧑🏽‍🦽‍➡ E15.1 person in manual wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '🧑🏾‍🦽‍➡️ E15.1 person in manual wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f9bd}\u200d\u27a1'], + '🧑🏾‍🦽‍➡ E15.1 person in manual wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '🧑🏿‍🦽‍➡️ E15.1 person in manual wheelchair facing right: dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f9bd}\u200d\u27a1'], + '🧑🏿‍🦽‍➡ E15.1 person in manual wheelchair facing right: dark skin tone' + ), + (['\u{1f468}\u200d\u{1f9bd}'], '👨‍🦽 E12.0 man in manual wheelchair'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9bd}'], + '👨🏻‍🦽 E12.0 man in manual wheelchair: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9bd}'], + '👨🏼‍🦽 E12.0 man in manual wheelchair: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9bd}'], + '👨🏽‍🦽 E12.0 man in manual wheelchair: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9bd}'], + '👨🏾‍🦽 E12.0 man in manual wheelchair: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9bd}'], + '👨🏿‍🦽 E12.0 man in manual wheelchair: dark skin tone' + ), + ( + ['\u{1f468}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👨‍🦽‍➡️ E15.1 man in manual wheelchair facing right' + ), + ( + ['\u{1f468}\u200d\u{1f9bd}\u200d\u27a1'], + '👨‍🦽‍➡ E15.1 man in manual wheelchair facing right' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👨🏻‍🦽‍➡️ E15.1 man in manual wheelchair facing right: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f9bd}\u200d\u27a1'], + '👨🏻‍🦽‍➡ E15.1 man in manual wheelchair facing right: light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👨🏼‍🦽‍➡️ E15.1 man in manual wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f9bd}\u200d\u27a1'], + '👨🏼‍🦽‍➡ E15.1 man in manual wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👨🏽‍🦽‍➡️ E15.1 man in manual wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f9bd}\u200d\u27a1'], + '👨🏽‍🦽‍➡ E15.1 man in manual wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👨🏾‍🦽‍➡️ E15.1 man in manual wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f9bd}\u200d\u27a1'], + '👨🏾‍🦽‍➡ E15.1 man in manual wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👨🏿‍🦽‍➡️ E15.1 man in manual wheelchair facing right: dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f9bd}\u200d\u27a1'], + '👨🏿‍🦽‍➡ E15.1 man in manual wheelchair facing right: dark skin tone' + ), + (['\u{1f469}\u200d\u{1f9bd}'], '👩‍🦽 E12.0 woman in manual wheelchair'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9bd}'], + '👩🏻‍🦽 E12.0 woman in manual wheelchair: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9bd}'], + '👩🏼‍🦽 E12.0 woman in manual wheelchair: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9bd}'], + '👩🏽‍🦽 E12.0 woman in manual wheelchair: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9bd}'], + '👩🏾‍🦽 E12.0 woman in manual wheelchair: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9bd}'], + '👩🏿‍🦽 E12.0 woman in manual wheelchair: dark skin tone' + ), + ( + ['\u{1f469}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👩‍🦽‍➡️ E15.1 woman in manual wheelchair facing right' + ), + ( + ['\u{1f469}\u200d\u{1f9bd}\u200d\u27a1'], + '👩‍🦽‍➡ E15.1 woman in manual wheelchair facing right' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👩🏻‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f9bd}\u200d\u27a1'], + '👩🏻‍🦽‍➡ E15.1 woman in manual wheelchair facing right: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👩🏼‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f9bd}\u200d\u27a1'], + '👩🏼‍🦽‍➡ E15.1 woman in manual wheelchair facing right: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👩🏽‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f9bd}\u200d\u27a1'], + '👩🏽‍🦽‍➡ E15.1 woman in manual wheelchair facing right: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👩🏾‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f9bd}\u200d\u27a1'], + '👩🏾‍🦽‍➡ E15.1 woman in manual wheelchair facing right: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9bd}\u200d\u27a1\ufe0f'], + '👩🏿‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f9bd}\u200d\u27a1'], + '👩🏿‍🦽‍➡ E15.1 woman in manual wheelchair facing right: dark skin tone' + ), + (['\u{1f3c3}'], '🏃 E0.6 person running'), + (['\u{1f3c3}\u{1f3fb}'], '🏃🏻 E1.0 person running: light skin tone'), + (['\u{1f3c3}\u{1f3fc}'], '🏃🏼 E1.0 person running: medium-light skin tone'), + (['\u{1f3c3}\u{1f3fd}'], '🏃🏽 E1.0 person running: medium skin tone'), + (['\u{1f3c3}\u{1f3fe}'], '🏃🏾 E1.0 person running: medium-dark skin tone'), + (['\u{1f3c3}\u{1f3ff}'], '🏃🏿 E1.0 person running: dark skin tone'), + (['\u{1f3c3}\u200d\u2642\ufe0f'], '🏃‍♂️ E4.0 man running'), + (['\u{1f3c3}\u200d\u2642'], '🏃‍♂ E4.0 man running'), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2642\ufe0f'], + '🏃🏻‍♂️ E4.0 man running: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2642'], + '🏃🏻‍♂ E4.0 man running: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2642\ufe0f'], + '🏃🏼‍♂️ E4.0 man running: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2642'], + '🏃🏼‍♂ E4.0 man running: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2642\ufe0f'], + '🏃🏽‍♂️ E4.0 man running: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2642'], + '🏃🏽‍♂ E4.0 man running: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2642\ufe0f'], + '🏃🏾‍♂️ E4.0 man running: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2642'], + '🏃🏾‍♂ E4.0 man running: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2642\ufe0f'], + '🏃🏿‍♂️ E4.0 man running: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2642'], + '🏃🏿‍♂ E4.0 man running: dark skin tone' + ), + (['\u{1f3c3}\u200d\u2640\ufe0f'], '🏃‍♀️ E4.0 woman running'), + (['\u{1f3c3}\u200d\u2640'], '🏃‍♀ E4.0 woman running'), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2640\ufe0f'], + '🏃🏻‍♀️ E4.0 woman running: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2640'], + '🏃🏻‍♀ E4.0 woman running: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2640\ufe0f'], + '🏃🏼‍♀️ E4.0 woman running: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2640'], + '🏃🏼‍♀ E4.0 woman running: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2640\ufe0f'], + '🏃🏽‍♀️ E4.0 woman running: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2640'], + '🏃🏽‍♀ E4.0 woman running: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2640\ufe0f'], + '🏃🏾‍♀️ E4.0 woman running: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2640'], + '🏃🏾‍♀ E4.0 woman running: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2640\ufe0f'], + '🏃🏿‍♀️ E4.0 woman running: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2640'], + '🏃🏿‍♀ E4.0 woman running: dark skin tone' + ), + (['\u{1f3c3}\u200d\u27a1\ufe0f'], '🏃‍➡️ E15.1 person running facing right'), + (['\u{1f3c3}\u200d\u27a1'], '🏃‍➡ E15.1 person running facing right'), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u27a1\ufe0f'], + '🏃🏻‍➡️ E15.1 person running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u27a1'], + '🏃🏻‍➡ E15.1 person running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u27a1\ufe0f'], + '🏃🏼‍➡️ E15.1 person running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u27a1'], + '🏃🏼‍➡ E15.1 person running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u27a1\ufe0f'], + '🏃🏽‍➡️ E15.1 person running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u27a1'], + '🏃🏽‍➡ E15.1 person running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u27a1\ufe0f'], + '🏃🏾‍➡️ E15.1 person running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u27a1'], + '🏃🏾‍➡ E15.1 person running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u27a1\ufe0f'], + '🏃🏿‍➡️ E15.1 person running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u27a1'], + '🏃🏿‍➡ E15.1 person running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🏃‍♀️‍➡️ E15.1 woman running facing right' + ), + ( + ['\u{1f3c3}\u200d\u2640\u200d\u27a1\ufe0f'], + '🏃‍♀‍➡️ E15.1 woman running facing right' + ), + ( + ['\u{1f3c3}\u200d\u2640\ufe0f\u200d\u27a1'], + '🏃‍♀️‍➡ E15.1 woman running facing right' + ), + ( + ['\u{1f3c3}\u200d\u2640\u200d\u27a1'], + '🏃‍♀‍➡ E15.1 woman running facing right' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏻‍♀️‍➡️ E15.1 woman running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2640\u200d\u27a1\ufe0f'], + '🏃🏻‍♀‍➡️ E15.1 woman running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2640\ufe0f\u200d\u27a1'], + '🏃🏻‍♀️‍➡ E15.1 woman running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2640\u200d\u27a1'], + '🏃🏻‍♀‍➡ E15.1 woman running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏼‍♀️‍➡️ E15.1 woman running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2640\u200d\u27a1\ufe0f'], + '🏃🏼‍♀‍➡️ E15.1 woman running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2640\ufe0f\u200d\u27a1'], + '🏃🏼‍♀️‍➡ E15.1 woman running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2640\u200d\u27a1'], + '🏃🏼‍♀‍➡ E15.1 woman running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏽‍♀️‍➡️ E15.1 woman running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2640\u200d\u27a1\ufe0f'], + '🏃🏽‍♀‍➡️ E15.1 woman running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2640\ufe0f\u200d\u27a1'], + '🏃🏽‍♀️‍➡ E15.1 woman running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2640\u200d\u27a1'], + '🏃🏽‍♀‍➡ E15.1 woman running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏾‍♀️‍➡️ E15.1 woman running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2640\u200d\u27a1\ufe0f'], + '🏃🏾‍♀‍➡️ E15.1 woman running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2640\ufe0f\u200d\u27a1'], + '🏃🏾‍♀️‍➡ E15.1 woman running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2640\u200d\u27a1'], + '🏃🏾‍♀‍➡ E15.1 woman running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2640\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏿‍♀️‍➡️ E15.1 woman running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2640\u200d\u27a1\ufe0f'], + '🏃🏿‍♀‍➡️ E15.1 woman running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2640\ufe0f\u200d\u27a1'], + '🏃🏿‍♀️‍➡ E15.1 woman running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2640\u200d\u27a1'], + '🏃🏿‍♀‍➡ E15.1 woman running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🏃‍♂️‍➡️ E15.1 man running facing right' + ), + ( + ['\u{1f3c3}\u200d\u2642\u200d\u27a1\ufe0f'], + '🏃‍♂‍➡️ E15.1 man running facing right' + ), + ( + ['\u{1f3c3}\u200d\u2642\ufe0f\u200d\u27a1'], + '🏃‍♂️‍➡ E15.1 man running facing right' + ), + ( + ['\u{1f3c3}\u200d\u2642\u200d\u27a1'], + '🏃‍♂‍➡ E15.1 man running facing right' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏻‍♂️‍➡️ E15.1 man running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2642\u200d\u27a1\ufe0f'], + '🏃🏻‍♂‍➡️ E15.1 man running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2642\ufe0f\u200d\u27a1'], + '🏃🏻‍♂️‍➡ E15.1 man running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fb}\u200d\u2642\u200d\u27a1'], + '🏃🏻‍♂‍➡ E15.1 man running facing right: light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏼‍♂️‍➡️ E15.1 man running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2642\u200d\u27a1\ufe0f'], + '🏃🏼‍♂‍➡️ E15.1 man running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2642\ufe0f\u200d\u27a1'], + '🏃🏼‍♂️‍➡ E15.1 man running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fc}\u200d\u2642\u200d\u27a1'], + '🏃🏼‍♂‍➡ E15.1 man running facing right: medium-light skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏽‍♂️‍➡️ E15.1 man running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2642\u200d\u27a1\ufe0f'], + '🏃🏽‍♂‍➡️ E15.1 man running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2642\ufe0f\u200d\u27a1'], + '🏃🏽‍♂️‍➡ E15.1 man running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fd}\u200d\u2642\u200d\u27a1'], + '🏃🏽‍♂‍➡ E15.1 man running facing right: medium skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏾‍♂️‍➡️ E15.1 man running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2642\u200d\u27a1\ufe0f'], + '🏃🏾‍♂‍➡️ E15.1 man running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2642\ufe0f\u200d\u27a1'], + '🏃🏾‍♂️‍➡ E15.1 man running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3fe}\u200d\u2642\u200d\u27a1'], + '🏃🏾‍♂‍➡ E15.1 man running facing right: medium-dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2642\ufe0f\u200d\u27a1\ufe0f'], + '🏃🏿‍♂️‍➡️ E15.1 man running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2642\u200d\u27a1\ufe0f'], + '🏃🏿‍♂‍➡️ E15.1 man running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2642\ufe0f\u200d\u27a1'], + '🏃🏿‍♂️‍➡ E15.1 man running facing right: dark skin tone' + ), + ( + ['\u{1f3c3}\u{1f3ff}\u200d\u2642\u200d\u27a1'], + '🏃🏿‍♂‍➡ E15.1 man running facing right: dark skin tone' + ), + (['\u{1f483}'], '💃 E0.6 woman dancing'), + (['\u{1f483}\u{1f3fb}'], '💃🏻 E1.0 woman dancing: light skin tone'), + (['\u{1f483}\u{1f3fc}'], '💃🏼 E1.0 woman dancing: medium-light skin tone'), + (['\u{1f483}\u{1f3fd}'], '💃🏽 E1.0 woman dancing: medium skin tone'), + (['\u{1f483}\u{1f3fe}'], '💃🏾 E1.0 woman dancing: medium-dark skin tone'), + (['\u{1f483}\u{1f3ff}'], '💃🏿 E1.0 woman dancing: dark skin tone'), + (['\u{1f57a}'], '🕺 E3.0 man dancing'), + (['\u{1f57a}\u{1f3fb}'], '🕺🏻 E3.0 man dancing: light skin tone'), + (['\u{1f57a}\u{1f3fc}'], '🕺🏼 E3.0 man dancing: medium-light skin tone'), + (['\u{1f57a}\u{1f3fd}'], '🕺🏽 E3.0 man dancing: medium skin tone'), + (['\u{1f57a}\u{1f3fe}'], '🕺🏾 E3.0 man dancing: medium-dark skin tone'), + (['\u{1f57a}\u{1f3ff}'], '🕺🏿 E3.0 man dancing: dark skin tone'), + (['\u{1f574}\ufe0f'], '🕴️ E0.7 person in suit levitating'), + (['\u{1f574}'], '🕴 E0.7 person in suit levitating'), + ( + ['\u{1f574}\u{1f3fb}'], + '🕴🏻 E4.0 person in suit levitating: light skin tone' + ), + ( + ['\u{1f574}\u{1f3fc}'], + '🕴🏼 E4.0 person in suit levitating: medium-light skin tone' + ), + ( + ['\u{1f574}\u{1f3fd}'], + '🕴🏽 E4.0 person in suit levitating: medium skin tone' + ), + ( + ['\u{1f574}\u{1f3fe}'], + '🕴🏾 E4.0 person in suit levitating: medium-dark skin tone' + ), + ( + ['\u{1f574}\u{1f3ff}'], + '🕴🏿 E4.0 person in suit levitating: dark skin tone' + ), + (['\u{1f46f}'], '👯 E0.6 people with bunny ears'), + (['\u{1f46f}\u200d\u2642\ufe0f'], '👯‍♂️ E4.0 men with bunny ears'), + (['\u{1f46f}\u200d\u2642'], '👯‍♂ E4.0 men with bunny ears'), + (['\u{1f46f}\u200d\u2640\ufe0f'], '👯‍♀️ E4.0 women with bunny ears'), + (['\u{1f46f}\u200d\u2640'], '👯‍♀ E4.0 women with bunny ears'), + (['\u{1f9d6}'], '🧖 E5.0 person in steamy room'), + (['\u{1f9d6}\u{1f3fb}'], '🧖🏻 E5.0 person in steamy room: light skin tone'), + ( + ['\u{1f9d6}\u{1f3fc}'], + '🧖🏼 E5.0 person in steamy room: medium-light skin tone' + ), + (['\u{1f9d6}\u{1f3fd}'], '🧖🏽 E5.0 person in steamy room: medium skin tone'), + ( + ['\u{1f9d6}\u{1f3fe}'], + '🧖🏾 E5.0 person in steamy room: medium-dark skin tone' + ), + (['\u{1f9d6}\u{1f3ff}'], '🧖🏿 E5.0 person in steamy room: dark skin tone'), + (['\u{1f9d6}\u200d\u2642\ufe0f'], '🧖‍♂️ E5.0 man in steamy room'), + (['\u{1f9d6}\u200d\u2642'], '🧖‍♂ E5.0 man in steamy room'), + ( + ['\u{1f9d6}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧖🏻‍♂️ E5.0 man in steamy room: light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fb}\u200d\u2642'], + '🧖🏻‍♂ E5.0 man in steamy room: light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧖🏼‍♂️ E5.0 man in steamy room: medium-light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fc}\u200d\u2642'], + '🧖🏼‍♂ E5.0 man in steamy room: medium-light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧖🏽‍♂️ E5.0 man in steamy room: medium skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fd}\u200d\u2642'], + '🧖🏽‍♂ E5.0 man in steamy room: medium skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧖🏾‍♂️ E5.0 man in steamy room: medium-dark skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fe}\u200d\u2642'], + '🧖🏾‍♂ E5.0 man in steamy room: medium-dark skin tone' + ), + ( + ['\u{1f9d6}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧖🏿‍♂️ E5.0 man in steamy room: dark skin tone' + ), + ( + ['\u{1f9d6}\u{1f3ff}\u200d\u2642'], + '🧖🏿‍♂ E5.0 man in steamy room: dark skin tone' + ), + (['\u{1f9d6}\u200d\u2640\ufe0f'], '🧖‍♀️ E5.0 woman in steamy room'), + (['\u{1f9d6}\u200d\u2640'], '🧖‍♀ E5.0 woman in steamy room'), + ( + ['\u{1f9d6}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧖🏻‍♀️ E5.0 woman in steamy room: light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fb}\u200d\u2640'], + '🧖🏻‍♀ E5.0 woman in steamy room: light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧖🏼‍♀️ E5.0 woman in steamy room: medium-light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fc}\u200d\u2640'], + '🧖🏼‍♀ E5.0 woman in steamy room: medium-light skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧖🏽‍♀️ E5.0 woman in steamy room: medium skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fd}\u200d\u2640'], + '🧖🏽‍♀ E5.0 woman in steamy room: medium skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧖🏾‍♀️ E5.0 woman in steamy room: medium-dark skin tone' + ), + ( + ['\u{1f9d6}\u{1f3fe}\u200d\u2640'], + '🧖🏾‍♀ E5.0 woman in steamy room: medium-dark skin tone' + ), + ( + ['\u{1f9d6}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧖🏿‍♀️ E5.0 woman in steamy room: dark skin tone' + ), + ( + ['\u{1f9d6}\u{1f3ff}\u200d\u2640'], + '🧖🏿‍♀ E5.0 woman in steamy room: dark skin tone' + ), + (['\u{1f9d7}'], '🧗 E5.0 person climbing'), + (['\u{1f9d7}\u{1f3fb}'], '🧗🏻 E5.0 person climbing: light skin tone'), + (['\u{1f9d7}\u{1f3fc}'], '🧗🏼 E5.0 person climbing: medium-light skin tone'), + (['\u{1f9d7}\u{1f3fd}'], '🧗🏽 E5.0 person climbing: medium skin tone'), + (['\u{1f9d7}\u{1f3fe}'], '🧗🏾 E5.0 person climbing: medium-dark skin tone'), + (['\u{1f9d7}\u{1f3ff}'], '🧗🏿 E5.0 person climbing: dark skin tone'), + (['\u{1f9d7}\u200d\u2642\ufe0f'], '🧗‍♂️ E5.0 man climbing'), + (['\u{1f9d7}\u200d\u2642'], '🧗‍♂ E5.0 man climbing'), + ( + ['\u{1f9d7}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧗🏻‍♂️ E5.0 man climbing: light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fb}\u200d\u2642'], + '🧗🏻‍♂ E5.0 man climbing: light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧗🏼‍♂️ E5.0 man climbing: medium-light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fc}\u200d\u2642'], + '🧗🏼‍♂ E5.0 man climbing: medium-light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧗🏽‍♂️ E5.0 man climbing: medium skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fd}\u200d\u2642'], + '🧗🏽‍♂ E5.0 man climbing: medium skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧗🏾‍♂️ E5.0 man climbing: medium-dark skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fe}\u200d\u2642'], + '🧗🏾‍♂ E5.0 man climbing: medium-dark skin tone' + ), + ( + ['\u{1f9d7}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧗🏿‍♂️ E5.0 man climbing: dark skin tone' + ), + ( + ['\u{1f9d7}\u{1f3ff}\u200d\u2642'], + '🧗🏿‍♂ E5.0 man climbing: dark skin tone' + ), + (['\u{1f9d7}\u200d\u2640\ufe0f'], '🧗‍♀️ E5.0 woman climbing'), + (['\u{1f9d7}\u200d\u2640'], '🧗‍♀ E5.0 woman climbing'), + ( + ['\u{1f9d7}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧗🏻‍♀️ E5.0 woman climbing: light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fb}\u200d\u2640'], + '🧗🏻‍♀ E5.0 woman climbing: light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧗🏼‍♀️ E5.0 woman climbing: medium-light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fc}\u200d\u2640'], + '🧗🏼‍♀ E5.0 woman climbing: medium-light skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧗🏽‍♀️ E5.0 woman climbing: medium skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fd}\u200d\u2640'], + '🧗🏽‍♀ E5.0 woman climbing: medium skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧗🏾‍♀️ E5.0 woman climbing: medium-dark skin tone' + ), + ( + ['\u{1f9d7}\u{1f3fe}\u200d\u2640'], + '🧗🏾‍♀ E5.0 woman climbing: medium-dark skin tone' + ), + ( + ['\u{1f9d7}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧗🏿‍♀️ E5.0 woman climbing: dark skin tone' + ), + ( + ['\u{1f9d7}\u{1f3ff}\u200d\u2640'], + '🧗🏿‍♀ E5.0 woman climbing: dark skin tone' + ), + (['\u{1f93a}'], '🤺 E3.0 person fencing'), + (['\u{1f3c7}'], '🏇 E1.0 horse racing'), + (['\u{1f3c7}\u{1f3fb}'], '🏇🏻 E1.0 horse racing: light skin tone'), + (['\u{1f3c7}\u{1f3fc}'], '🏇🏼 E1.0 horse racing: medium-light skin tone'), + (['\u{1f3c7}\u{1f3fd}'], '🏇🏽 E1.0 horse racing: medium skin tone'), + (['\u{1f3c7}\u{1f3fe}'], '🏇🏾 E1.0 horse racing: medium-dark skin tone'), + (['\u{1f3c7}\u{1f3ff}'], '🏇🏿 E1.0 horse racing: dark skin tone'), + (['\u26f7\ufe0f'], '⛷️ E0.7 skier'), + (['\u26f7'], '⛷ E0.7 skier'), + (['\u{1f3c2}'], '🏂 E0.6 snowboarder'), + (['\u{1f3c2}\u{1f3fb}'], '🏂🏻 E1.0 snowboarder: light skin tone'), + (['\u{1f3c2}\u{1f3fc}'], '🏂🏼 E1.0 snowboarder: medium-light skin tone'), + (['\u{1f3c2}\u{1f3fd}'], '🏂🏽 E1.0 snowboarder: medium skin tone'), + (['\u{1f3c2}\u{1f3fe}'], '🏂🏾 E1.0 snowboarder: medium-dark skin tone'), + (['\u{1f3c2}\u{1f3ff}'], '🏂🏿 E1.0 snowboarder: dark skin tone'), + (['\u{1f3cc}\ufe0f'], '🏌️ E0.7 person golfing'), + (['\u{1f3cc}'], '🏌 E0.7 person golfing'), + (['\u{1f3cc}\u{1f3fb}'], '🏌🏻 E4.0 person golfing: light skin tone'), + (['\u{1f3cc}\u{1f3fc}'], '🏌🏼 E4.0 person golfing: medium-light skin tone'), + (['\u{1f3cc}\u{1f3fd}'], '🏌🏽 E4.0 person golfing: medium skin tone'), + (['\u{1f3cc}\u{1f3fe}'], '🏌🏾 E4.0 person golfing: medium-dark skin tone'), + (['\u{1f3cc}\u{1f3ff}'], '🏌🏿 E4.0 person golfing: dark skin tone'), + (['\u{1f3cc}\ufe0f\u200d\u2642\ufe0f'], '🏌️‍♂️ E4.0 man golfing'), + (['\u{1f3cc}\u200d\u2642\ufe0f'], '🏌‍♂️ E4.0 man golfing'), + (['\u{1f3cc}\ufe0f\u200d\u2642'], '🏌️‍♂ E4.0 man golfing'), + (['\u{1f3cc}\u200d\u2642'], '🏌‍♂ E4.0 man golfing'), + ( + ['\u{1f3cc}\u{1f3fb}\u200d\u2642\ufe0f'], + '🏌🏻‍♂️ E4.0 man golfing: light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fb}\u200d\u2642'], + '🏌🏻‍♂ E4.0 man golfing: light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fc}\u200d\u2642\ufe0f'], + '🏌🏼‍♂️ E4.0 man golfing: medium-light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fc}\u200d\u2642'], + '🏌🏼‍♂ E4.0 man golfing: medium-light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fd}\u200d\u2642\ufe0f'], + '🏌🏽‍♂️ E4.0 man golfing: medium skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fd}\u200d\u2642'], + '🏌🏽‍♂ E4.0 man golfing: medium skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fe}\u200d\u2642\ufe0f'], + '🏌🏾‍♂️ E4.0 man golfing: medium-dark skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fe}\u200d\u2642'], + '🏌🏾‍♂ E4.0 man golfing: medium-dark skin tone' + ), + ( + ['\u{1f3cc}\u{1f3ff}\u200d\u2642\ufe0f'], + '🏌🏿‍♂️ E4.0 man golfing: dark skin tone' + ), + ( + ['\u{1f3cc}\u{1f3ff}\u200d\u2642'], + '🏌🏿‍♂ E4.0 man golfing: dark skin tone' + ), + (['\u{1f3cc}\ufe0f\u200d\u2640\ufe0f'], '🏌️‍♀️ E4.0 woman golfing'), + (['\u{1f3cc}\u200d\u2640\ufe0f'], '🏌‍♀️ E4.0 woman golfing'), + (['\u{1f3cc}\ufe0f\u200d\u2640'], '🏌️‍♀ E4.0 woman golfing'), + (['\u{1f3cc}\u200d\u2640'], '🏌‍♀ E4.0 woman golfing'), + ( + ['\u{1f3cc}\u{1f3fb}\u200d\u2640\ufe0f'], + '🏌🏻‍♀️ E4.0 woman golfing: light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fb}\u200d\u2640'], + '🏌🏻‍♀ E4.0 woman golfing: light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fc}\u200d\u2640\ufe0f'], + '🏌🏼‍♀️ E4.0 woman golfing: medium-light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fc}\u200d\u2640'], + '🏌🏼‍♀ E4.0 woman golfing: medium-light skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fd}\u200d\u2640\ufe0f'], + '🏌🏽‍♀️ E4.0 woman golfing: medium skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fd}\u200d\u2640'], + '🏌🏽‍♀ E4.0 woman golfing: medium skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fe}\u200d\u2640\ufe0f'], + '🏌🏾‍♀️ E4.0 woman golfing: medium-dark skin tone' + ), + ( + ['\u{1f3cc}\u{1f3fe}\u200d\u2640'], + '🏌🏾‍♀ E4.0 woman golfing: medium-dark skin tone' + ), + ( + ['\u{1f3cc}\u{1f3ff}\u200d\u2640\ufe0f'], + '🏌🏿‍♀️ E4.0 woman golfing: dark skin tone' + ), + ( + ['\u{1f3cc}\u{1f3ff}\u200d\u2640'], + '🏌🏿‍♀ E4.0 woman golfing: dark skin tone' + ), + (['\u{1f3c4}'], '🏄 E0.6 person surfing'), + (['\u{1f3c4}\u{1f3fb}'], '🏄🏻 E1.0 person surfing: light skin tone'), + (['\u{1f3c4}\u{1f3fc}'], '🏄🏼 E1.0 person surfing: medium-light skin tone'), + (['\u{1f3c4}\u{1f3fd}'], '🏄🏽 E1.0 person surfing: medium skin tone'), + (['\u{1f3c4}\u{1f3fe}'], '🏄🏾 E1.0 person surfing: medium-dark skin tone'), + (['\u{1f3c4}\u{1f3ff}'], '🏄🏿 E1.0 person surfing: dark skin tone'), + (['\u{1f3c4}\u200d\u2642\ufe0f'], '🏄‍♂️ E4.0 man surfing'), + (['\u{1f3c4}\u200d\u2642'], '🏄‍♂ E4.0 man surfing'), + ( + ['\u{1f3c4}\u{1f3fb}\u200d\u2642\ufe0f'], + '🏄🏻‍♂️ E4.0 man surfing: light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fb}\u200d\u2642'], + '🏄🏻‍♂ E4.0 man surfing: light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fc}\u200d\u2642\ufe0f'], + '🏄🏼‍♂️ E4.0 man surfing: medium-light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fc}\u200d\u2642'], + '🏄🏼‍♂ E4.0 man surfing: medium-light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fd}\u200d\u2642\ufe0f'], + '🏄🏽‍♂️ E4.0 man surfing: medium skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fd}\u200d\u2642'], + '🏄🏽‍♂ E4.0 man surfing: medium skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fe}\u200d\u2642\ufe0f'], + '🏄🏾‍♂️ E4.0 man surfing: medium-dark skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fe}\u200d\u2642'], + '🏄🏾‍♂ E4.0 man surfing: medium-dark skin tone' + ), + ( + ['\u{1f3c4}\u{1f3ff}\u200d\u2642\ufe0f'], + '🏄🏿‍♂️ E4.0 man surfing: dark skin tone' + ), + ( + ['\u{1f3c4}\u{1f3ff}\u200d\u2642'], + '🏄🏿‍♂ E4.0 man surfing: dark skin tone' + ), + (['\u{1f3c4}\u200d\u2640\ufe0f'], '🏄‍♀️ E4.0 woman surfing'), + (['\u{1f3c4}\u200d\u2640'], '🏄‍♀ E4.0 woman surfing'), + ( + ['\u{1f3c4}\u{1f3fb}\u200d\u2640\ufe0f'], + '🏄🏻‍♀️ E4.0 woman surfing: light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fb}\u200d\u2640'], + '🏄🏻‍♀ E4.0 woman surfing: light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fc}\u200d\u2640\ufe0f'], + '🏄🏼‍♀️ E4.0 woman surfing: medium-light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fc}\u200d\u2640'], + '🏄🏼‍♀ E4.0 woman surfing: medium-light skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fd}\u200d\u2640\ufe0f'], + '🏄🏽‍♀️ E4.0 woman surfing: medium skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fd}\u200d\u2640'], + '🏄🏽‍♀ E4.0 woman surfing: medium skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fe}\u200d\u2640\ufe0f'], + '🏄🏾‍♀️ E4.0 woman surfing: medium-dark skin tone' + ), + ( + ['\u{1f3c4}\u{1f3fe}\u200d\u2640'], + '🏄🏾‍♀ E4.0 woman surfing: medium-dark skin tone' + ), + ( + ['\u{1f3c4}\u{1f3ff}\u200d\u2640\ufe0f'], + '🏄🏿‍♀️ E4.0 woman surfing: dark skin tone' + ), + ( + ['\u{1f3c4}\u{1f3ff}\u200d\u2640'], + '🏄🏿‍♀ E4.0 woman surfing: dark skin tone' + ), + (['\u{1f6a3}'], '🚣 E1.0 person rowing boat'), + (['\u{1f6a3}\u{1f3fb}'], '🚣🏻 E1.0 person rowing boat: light skin tone'), + ( + ['\u{1f6a3}\u{1f3fc}'], + '🚣🏼 E1.0 person rowing boat: medium-light skin tone' + ), + (['\u{1f6a3}\u{1f3fd}'], '🚣🏽 E1.0 person rowing boat: medium skin tone'), + ( + ['\u{1f6a3}\u{1f3fe}'], + '🚣🏾 E1.0 person rowing boat: medium-dark skin tone' + ), + (['\u{1f6a3}\u{1f3ff}'], '🚣🏿 E1.0 person rowing boat: dark skin tone'), + (['\u{1f6a3}\u200d\u2642\ufe0f'], '🚣‍♂️ E4.0 man rowing boat'), + (['\u{1f6a3}\u200d\u2642'], '🚣‍♂ E4.0 man rowing boat'), + ( + ['\u{1f6a3}\u{1f3fb}\u200d\u2642\ufe0f'], + '🚣🏻‍♂️ E4.0 man rowing boat: light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fb}\u200d\u2642'], + '🚣🏻‍♂ E4.0 man rowing boat: light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fc}\u200d\u2642\ufe0f'], + '🚣🏼‍♂️ E4.0 man rowing boat: medium-light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fc}\u200d\u2642'], + '🚣🏼‍♂ E4.0 man rowing boat: medium-light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fd}\u200d\u2642\ufe0f'], + '🚣🏽‍♂️ E4.0 man rowing boat: medium skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fd}\u200d\u2642'], + '🚣🏽‍♂ E4.0 man rowing boat: medium skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fe}\u200d\u2642\ufe0f'], + '🚣🏾‍♂️ E4.0 man rowing boat: medium-dark skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fe}\u200d\u2642'], + '🚣🏾‍♂ E4.0 man rowing boat: medium-dark skin tone' + ), + ( + ['\u{1f6a3}\u{1f3ff}\u200d\u2642\ufe0f'], + '🚣🏿‍♂️ E4.0 man rowing boat: dark skin tone' + ), + ( + ['\u{1f6a3}\u{1f3ff}\u200d\u2642'], + '🚣🏿‍♂ E4.0 man rowing boat: dark skin tone' + ), + (['\u{1f6a3}\u200d\u2640\ufe0f'], '🚣‍♀️ E4.0 woman rowing boat'), + (['\u{1f6a3}\u200d\u2640'], '🚣‍♀ E4.0 woman rowing boat'), + ( + ['\u{1f6a3}\u{1f3fb}\u200d\u2640\ufe0f'], + '🚣🏻‍♀️ E4.0 woman rowing boat: light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fb}\u200d\u2640'], + '🚣🏻‍♀ E4.0 woman rowing boat: light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fc}\u200d\u2640\ufe0f'], + '🚣🏼‍♀️ E4.0 woman rowing boat: medium-light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fc}\u200d\u2640'], + '🚣🏼‍♀ E4.0 woman rowing boat: medium-light skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fd}\u200d\u2640\ufe0f'], + '🚣🏽‍♀️ E4.0 woman rowing boat: medium skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fd}\u200d\u2640'], + '🚣🏽‍♀ E4.0 woman rowing boat: medium skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fe}\u200d\u2640\ufe0f'], + '🚣🏾‍♀️ E4.0 woman rowing boat: medium-dark skin tone' + ), + ( + ['\u{1f6a3}\u{1f3fe}\u200d\u2640'], + '🚣🏾‍♀ E4.0 woman rowing boat: medium-dark skin tone' + ), + ( + ['\u{1f6a3}\u{1f3ff}\u200d\u2640\ufe0f'], + '🚣🏿‍♀️ E4.0 woman rowing boat: dark skin tone' + ), + ( + ['\u{1f6a3}\u{1f3ff}\u200d\u2640'], + '🚣🏿‍♀ E4.0 woman rowing boat: dark skin tone' + ), + (['\u{1f3ca}'], '🏊 E0.6 person swimming'), + (['\u{1f3ca}\u{1f3fb}'], '🏊🏻 E1.0 person swimming: light skin tone'), + (['\u{1f3ca}\u{1f3fc}'], '🏊🏼 E1.0 person swimming: medium-light skin tone'), + (['\u{1f3ca}\u{1f3fd}'], '🏊🏽 E1.0 person swimming: medium skin tone'), + (['\u{1f3ca}\u{1f3fe}'], '🏊🏾 E1.0 person swimming: medium-dark skin tone'), + (['\u{1f3ca}\u{1f3ff}'], '🏊🏿 E1.0 person swimming: dark skin tone'), + (['\u{1f3ca}\u200d\u2642\ufe0f'], '🏊‍♂️ E4.0 man swimming'), + (['\u{1f3ca}\u200d\u2642'], '🏊‍♂ E4.0 man swimming'), + ( + ['\u{1f3ca}\u{1f3fb}\u200d\u2642\ufe0f'], + '🏊🏻‍♂️ E4.0 man swimming: light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fb}\u200d\u2642'], + '🏊🏻‍♂ E4.0 man swimming: light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fc}\u200d\u2642\ufe0f'], + '🏊🏼‍♂️ E4.0 man swimming: medium-light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fc}\u200d\u2642'], + '🏊🏼‍♂ E4.0 man swimming: medium-light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fd}\u200d\u2642\ufe0f'], + '🏊🏽‍♂️ E4.0 man swimming: medium skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fd}\u200d\u2642'], + '🏊🏽‍♂ E4.0 man swimming: medium skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fe}\u200d\u2642\ufe0f'], + '🏊🏾‍♂️ E4.0 man swimming: medium-dark skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fe}\u200d\u2642'], + '🏊🏾‍♂ E4.0 man swimming: medium-dark skin tone' + ), + ( + ['\u{1f3ca}\u{1f3ff}\u200d\u2642\ufe0f'], + '🏊🏿‍♂️ E4.0 man swimming: dark skin tone' + ), + ( + ['\u{1f3ca}\u{1f3ff}\u200d\u2642'], + '🏊🏿‍♂ E4.0 man swimming: dark skin tone' + ), + (['\u{1f3ca}\u200d\u2640\ufe0f'], '🏊‍♀️ E4.0 woman swimming'), + (['\u{1f3ca}\u200d\u2640'], '🏊‍♀ E4.0 woman swimming'), + ( + ['\u{1f3ca}\u{1f3fb}\u200d\u2640\ufe0f'], + '🏊🏻‍♀️ E4.0 woman swimming: light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fb}\u200d\u2640'], + '🏊🏻‍♀ E4.0 woman swimming: light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fc}\u200d\u2640\ufe0f'], + '🏊🏼‍♀️ E4.0 woman swimming: medium-light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fc}\u200d\u2640'], + '🏊🏼‍♀ E4.0 woman swimming: medium-light skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fd}\u200d\u2640\ufe0f'], + '🏊🏽‍♀️ E4.0 woman swimming: medium skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fd}\u200d\u2640'], + '🏊🏽‍♀ E4.0 woman swimming: medium skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fe}\u200d\u2640\ufe0f'], + '🏊🏾‍♀️ E4.0 woman swimming: medium-dark skin tone' + ), + ( + ['\u{1f3ca}\u{1f3fe}\u200d\u2640'], + '🏊🏾‍♀ E4.0 woman swimming: medium-dark skin tone' + ), + ( + ['\u{1f3ca}\u{1f3ff}\u200d\u2640\ufe0f'], + '🏊🏿‍♀️ E4.0 woman swimming: dark skin tone' + ), + ( + ['\u{1f3ca}\u{1f3ff}\u200d\u2640'], + '🏊🏿‍♀ E4.0 woman swimming: dark skin tone' + ), + (['\u26f9\ufe0f'], '⛹️ E0.7 person bouncing ball'), + (['\u26f9'], '⛹ E0.7 person bouncing ball'), + (['\u26f9\u{1f3fb}'], '⛹🏻 E2.0 person bouncing ball: light skin tone'), + ( + ['\u26f9\u{1f3fc}'], + '⛹🏼 E2.0 person bouncing ball: medium-light skin tone' + ), + (['\u26f9\u{1f3fd}'], '⛹🏽 E2.0 person bouncing ball: medium skin tone'), + (['\u26f9\u{1f3fe}'], '⛹🏾 E2.0 person bouncing ball: medium-dark skin tone'), + (['\u26f9\u{1f3ff}'], '⛹🏿 E2.0 person bouncing ball: dark skin tone'), + (['\u26f9\ufe0f\u200d\u2642\ufe0f'], '⛹️‍♂️ E4.0 man bouncing ball'), + (['\u26f9\u200d\u2642\ufe0f'], '⛹‍♂️ E4.0 man bouncing ball'), + (['\u26f9\ufe0f\u200d\u2642'], '⛹️‍♂ E4.0 man bouncing ball'), + (['\u26f9\u200d\u2642'], '⛹‍♂ E4.0 man bouncing ball'), + ( + ['\u26f9\u{1f3fb}\u200d\u2642\ufe0f'], + '⛹🏻‍♂️ E4.0 man bouncing ball: light skin tone' + ), + ( + ['\u26f9\u{1f3fb}\u200d\u2642'], + '⛹🏻‍♂ E4.0 man bouncing ball: light skin tone' + ), + ( + ['\u26f9\u{1f3fc}\u200d\u2642\ufe0f'], + '⛹🏼‍♂️ E4.0 man bouncing ball: medium-light skin tone' + ), + ( + ['\u26f9\u{1f3fc}\u200d\u2642'], + '⛹🏼‍♂ E4.0 man bouncing ball: medium-light skin tone' + ), + ( + ['\u26f9\u{1f3fd}\u200d\u2642\ufe0f'], + '⛹🏽‍♂️ E4.0 man bouncing ball: medium skin tone' + ), + ( + ['\u26f9\u{1f3fd}\u200d\u2642'], + '⛹🏽‍♂ E4.0 man bouncing ball: medium skin tone' + ), + ( + ['\u26f9\u{1f3fe}\u200d\u2642\ufe0f'], + '⛹🏾‍♂️ E4.0 man bouncing ball: medium-dark skin tone' + ), + ( + ['\u26f9\u{1f3fe}\u200d\u2642'], + '⛹🏾‍♂ E4.0 man bouncing ball: medium-dark skin tone' + ), + ( + ['\u26f9\u{1f3ff}\u200d\u2642\ufe0f'], + '⛹🏿‍♂️ E4.0 man bouncing ball: dark skin tone' + ), + ( + ['\u26f9\u{1f3ff}\u200d\u2642'], + '⛹🏿‍♂ E4.0 man bouncing ball: dark skin tone' + ), + (['\u26f9\ufe0f\u200d\u2640\ufe0f'], '⛹️‍♀️ E4.0 woman bouncing ball'), + (['\u26f9\u200d\u2640\ufe0f'], '⛹‍♀️ E4.0 woman bouncing ball'), + (['\u26f9\ufe0f\u200d\u2640'], '⛹️‍♀ E4.0 woman bouncing ball'), + (['\u26f9\u200d\u2640'], '⛹‍♀ E4.0 woman bouncing ball'), + ( + ['\u26f9\u{1f3fb}\u200d\u2640\ufe0f'], + '⛹🏻‍♀️ E4.0 woman bouncing ball: light skin tone' + ), + ( + ['\u26f9\u{1f3fb}\u200d\u2640'], + '⛹🏻‍♀ E4.0 woman bouncing ball: light skin tone' + ), + ( + ['\u26f9\u{1f3fc}\u200d\u2640\ufe0f'], + '⛹🏼‍♀️ E4.0 woman bouncing ball: medium-light skin tone' + ), + ( + ['\u26f9\u{1f3fc}\u200d\u2640'], + '⛹🏼‍♀ E4.0 woman bouncing ball: medium-light skin tone' + ), + ( + ['\u26f9\u{1f3fd}\u200d\u2640\ufe0f'], + '⛹🏽‍♀️ E4.0 woman bouncing ball: medium skin tone' + ), + ( + ['\u26f9\u{1f3fd}\u200d\u2640'], + '⛹🏽‍♀ E4.0 woman bouncing ball: medium skin tone' + ), + ( + ['\u26f9\u{1f3fe}\u200d\u2640\ufe0f'], + '⛹🏾‍♀️ E4.0 woman bouncing ball: medium-dark skin tone' + ), + ( + ['\u26f9\u{1f3fe}\u200d\u2640'], + '⛹🏾‍♀ E4.0 woman bouncing ball: medium-dark skin tone' + ), + ( + ['\u26f9\u{1f3ff}\u200d\u2640\ufe0f'], + '⛹🏿‍♀️ E4.0 woman bouncing ball: dark skin tone' + ), + ( + ['\u26f9\u{1f3ff}\u200d\u2640'], + '⛹🏿‍♀ E4.0 woman bouncing ball: dark skin tone' + ), + (['\u{1f3cb}\ufe0f'], '🏋️ E0.7 person lifting weights'), + (['\u{1f3cb}'], '🏋 E0.7 person lifting weights'), + (['\u{1f3cb}\u{1f3fb}'], '🏋🏻 E2.0 person lifting weights: light skin tone'), + ( + ['\u{1f3cb}\u{1f3fc}'], + '🏋🏼 E2.0 person lifting weights: medium-light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fd}'], + '🏋🏽 E2.0 person lifting weights: medium skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fe}'], + '🏋🏾 E2.0 person lifting weights: medium-dark skin tone' + ), + (['\u{1f3cb}\u{1f3ff}'], '🏋🏿 E2.0 person lifting weights: dark skin tone'), + (['\u{1f3cb}\ufe0f\u200d\u2642\ufe0f'], '🏋️‍♂️ E4.0 man lifting weights'), + (['\u{1f3cb}\u200d\u2642\ufe0f'], '🏋‍♂️ E4.0 man lifting weights'), + (['\u{1f3cb}\ufe0f\u200d\u2642'], '🏋️‍♂ E4.0 man lifting weights'), + (['\u{1f3cb}\u200d\u2642'], '🏋‍♂ E4.0 man lifting weights'), + ( + ['\u{1f3cb}\u{1f3fb}\u200d\u2642\ufe0f'], + '🏋🏻‍♂️ E4.0 man lifting weights: light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fb}\u200d\u2642'], + '🏋🏻‍♂ E4.0 man lifting weights: light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fc}\u200d\u2642\ufe0f'], + '🏋🏼‍♂️ E4.0 man lifting weights: medium-light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fc}\u200d\u2642'], + '🏋🏼‍♂ E4.0 man lifting weights: medium-light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fd}\u200d\u2642\ufe0f'], + '🏋🏽‍♂️ E4.0 man lifting weights: medium skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fd}\u200d\u2642'], + '🏋🏽‍♂ E4.0 man lifting weights: medium skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fe}\u200d\u2642\ufe0f'], + '🏋🏾‍♂️ E4.0 man lifting weights: medium-dark skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fe}\u200d\u2642'], + '🏋🏾‍♂ E4.0 man lifting weights: medium-dark skin tone' + ), + ( + ['\u{1f3cb}\u{1f3ff}\u200d\u2642\ufe0f'], + '🏋🏿‍♂️ E4.0 man lifting weights: dark skin tone' + ), + ( + ['\u{1f3cb}\u{1f3ff}\u200d\u2642'], + '🏋🏿‍♂ E4.0 man lifting weights: dark skin tone' + ), + (['\u{1f3cb}\ufe0f\u200d\u2640\ufe0f'], '🏋️‍♀️ E4.0 woman lifting weights'), + (['\u{1f3cb}\u200d\u2640\ufe0f'], '🏋‍♀️ E4.0 woman lifting weights'), + (['\u{1f3cb}\ufe0f\u200d\u2640'], '🏋️‍♀ E4.0 woman lifting weights'), + (['\u{1f3cb}\u200d\u2640'], '🏋‍♀ E4.0 woman lifting weights'), + ( + ['\u{1f3cb}\u{1f3fb}\u200d\u2640\ufe0f'], + '🏋🏻‍♀️ E4.0 woman lifting weights: light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fb}\u200d\u2640'], + '🏋🏻‍♀ E4.0 woman lifting weights: light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fc}\u200d\u2640\ufe0f'], + '🏋🏼‍♀️ E4.0 woman lifting weights: medium-light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fc}\u200d\u2640'], + '🏋🏼‍♀ E4.0 woman lifting weights: medium-light skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fd}\u200d\u2640\ufe0f'], + '🏋🏽‍♀️ E4.0 woman lifting weights: medium skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fd}\u200d\u2640'], + '🏋🏽‍♀ E4.0 woman lifting weights: medium skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fe}\u200d\u2640\ufe0f'], + '🏋🏾‍♀️ E4.0 woman lifting weights: medium-dark skin tone' + ), + ( + ['\u{1f3cb}\u{1f3fe}\u200d\u2640'], + '🏋🏾‍♀ E4.0 woman lifting weights: medium-dark skin tone' + ), + ( + ['\u{1f3cb}\u{1f3ff}\u200d\u2640\ufe0f'], + '🏋🏿‍♀️ E4.0 woman lifting weights: dark skin tone' + ), + ( + ['\u{1f3cb}\u{1f3ff}\u200d\u2640'], + '🏋🏿‍♀ E4.0 woman lifting weights: dark skin tone' + ), + (['\u{1f6b4}'], '🚴 E1.0 person biking'), + (['\u{1f6b4}\u{1f3fb}'], '🚴🏻 E1.0 person biking: light skin tone'), + (['\u{1f6b4}\u{1f3fc}'], '🚴🏼 E1.0 person biking: medium-light skin tone'), + (['\u{1f6b4}\u{1f3fd}'], '🚴🏽 E1.0 person biking: medium skin tone'), + (['\u{1f6b4}\u{1f3fe}'], '🚴🏾 E1.0 person biking: medium-dark skin tone'), + (['\u{1f6b4}\u{1f3ff}'], '🚴🏿 E1.0 person biking: dark skin tone'), + (['\u{1f6b4}\u200d\u2642\ufe0f'], '🚴‍♂️ E4.0 man biking'), + (['\u{1f6b4}\u200d\u2642'], '🚴‍♂ E4.0 man biking'), + ( + ['\u{1f6b4}\u{1f3fb}\u200d\u2642\ufe0f'], + '🚴🏻‍♂️ E4.0 man biking: light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fb}\u200d\u2642'], + '🚴🏻‍♂ E4.0 man biking: light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fc}\u200d\u2642\ufe0f'], + '🚴🏼‍♂️ E4.0 man biking: medium-light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fc}\u200d\u2642'], + '🚴🏼‍♂ E4.0 man biking: medium-light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fd}\u200d\u2642\ufe0f'], + '🚴🏽‍♂️ E4.0 man biking: medium skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fd}\u200d\u2642'], + '🚴🏽‍♂ E4.0 man biking: medium skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fe}\u200d\u2642\ufe0f'], + '🚴🏾‍♂️ E4.0 man biking: medium-dark skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fe}\u200d\u2642'], + '🚴🏾‍♂ E4.0 man biking: medium-dark skin tone' + ), + ( + ['\u{1f6b4}\u{1f3ff}\u200d\u2642\ufe0f'], + '🚴🏿‍♂️ E4.0 man biking: dark skin tone' + ), + ( + ['\u{1f6b4}\u{1f3ff}\u200d\u2642'], + '🚴🏿‍♂ E4.0 man biking: dark skin tone' + ), + (['\u{1f6b4}\u200d\u2640\ufe0f'], '🚴‍♀️ E4.0 woman biking'), + (['\u{1f6b4}\u200d\u2640'], '🚴‍♀ E4.0 woman biking'), + ( + ['\u{1f6b4}\u{1f3fb}\u200d\u2640\ufe0f'], + '🚴🏻‍♀️ E4.0 woman biking: light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fb}\u200d\u2640'], + '🚴🏻‍♀ E4.0 woman biking: light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fc}\u200d\u2640\ufe0f'], + '🚴🏼‍♀️ E4.0 woman biking: medium-light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fc}\u200d\u2640'], + '🚴🏼‍♀ E4.0 woman biking: medium-light skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fd}\u200d\u2640\ufe0f'], + '🚴🏽‍♀️ E4.0 woman biking: medium skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fd}\u200d\u2640'], + '🚴🏽‍♀ E4.0 woman biking: medium skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fe}\u200d\u2640\ufe0f'], + '🚴🏾‍♀️ E4.0 woman biking: medium-dark skin tone' + ), + ( + ['\u{1f6b4}\u{1f3fe}\u200d\u2640'], + '🚴🏾‍♀ E4.0 woman biking: medium-dark skin tone' + ), + ( + ['\u{1f6b4}\u{1f3ff}\u200d\u2640\ufe0f'], + '🚴🏿‍♀️ E4.0 woman biking: dark skin tone' + ), + ( + ['\u{1f6b4}\u{1f3ff}\u200d\u2640'], + '🚴🏿‍♀ E4.0 woman biking: dark skin tone' + ), + (['\u{1f6b5}'], '🚵 E1.0 person mountain biking'), + (['\u{1f6b5}\u{1f3fb}'], '🚵🏻 E1.0 person mountain biking: light skin tone'), + ( + ['\u{1f6b5}\u{1f3fc}'], + '🚵🏼 E1.0 person mountain biking: medium-light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fd}'], + '🚵🏽 E1.0 person mountain biking: medium skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fe}'], + '🚵🏾 E1.0 person mountain biking: medium-dark skin tone' + ), + (['\u{1f6b5}\u{1f3ff}'], '🚵🏿 E1.0 person mountain biking: dark skin tone'), + (['\u{1f6b5}\u200d\u2642\ufe0f'], '🚵‍♂️ E4.0 man mountain biking'), + (['\u{1f6b5}\u200d\u2642'], '🚵‍♂ E4.0 man mountain biking'), + ( + ['\u{1f6b5}\u{1f3fb}\u200d\u2642\ufe0f'], + '🚵🏻‍♂️ E4.0 man mountain biking: light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fb}\u200d\u2642'], + '🚵🏻‍♂ E4.0 man mountain biking: light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fc}\u200d\u2642\ufe0f'], + '🚵🏼‍♂️ E4.0 man mountain biking: medium-light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fc}\u200d\u2642'], + '🚵🏼‍♂ E4.0 man mountain biking: medium-light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fd}\u200d\u2642\ufe0f'], + '🚵🏽‍♂️ E4.0 man mountain biking: medium skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fd}\u200d\u2642'], + '🚵🏽‍♂ E4.0 man mountain biking: medium skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fe}\u200d\u2642\ufe0f'], + '🚵🏾‍♂️ E4.0 man mountain biking: medium-dark skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fe}\u200d\u2642'], + '🚵🏾‍♂ E4.0 man mountain biking: medium-dark skin tone' + ), + ( + ['\u{1f6b5}\u{1f3ff}\u200d\u2642\ufe0f'], + '🚵🏿‍♂️ E4.0 man mountain biking: dark skin tone' + ), + ( + ['\u{1f6b5}\u{1f3ff}\u200d\u2642'], + '🚵🏿‍♂ E4.0 man mountain biking: dark skin tone' + ), + (['\u{1f6b5}\u200d\u2640\ufe0f'], '🚵‍♀️ E4.0 woman mountain biking'), + (['\u{1f6b5}\u200d\u2640'], '🚵‍♀ E4.0 woman mountain biking'), + ( + ['\u{1f6b5}\u{1f3fb}\u200d\u2640\ufe0f'], + '🚵🏻‍♀️ E4.0 woman mountain biking: light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fb}\u200d\u2640'], + '🚵🏻‍♀ E4.0 woman mountain biking: light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fc}\u200d\u2640\ufe0f'], + '🚵🏼‍♀️ E4.0 woman mountain biking: medium-light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fc}\u200d\u2640'], + '🚵🏼‍♀ E4.0 woman mountain biking: medium-light skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fd}\u200d\u2640\ufe0f'], + '🚵🏽‍♀️ E4.0 woman mountain biking: medium skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fd}\u200d\u2640'], + '🚵🏽‍♀ E4.0 woman mountain biking: medium skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fe}\u200d\u2640\ufe0f'], + '🚵🏾‍♀️ E4.0 woman mountain biking: medium-dark skin tone' + ), + ( + ['\u{1f6b5}\u{1f3fe}\u200d\u2640'], + '🚵🏾‍♀ E4.0 woman mountain biking: medium-dark skin tone' + ), + ( + ['\u{1f6b5}\u{1f3ff}\u200d\u2640\ufe0f'], + '🚵🏿‍♀️ E4.0 woman mountain biking: dark skin tone' + ), + ( + ['\u{1f6b5}\u{1f3ff}\u200d\u2640'], + '🚵🏿‍♀ E4.0 woman mountain biking: dark skin tone' + ), + (['\u{1f938}'], '🤸 E3.0 person cartwheeling'), + (['\u{1f938}\u{1f3fb}'], '🤸🏻 E3.0 person cartwheeling: light skin tone'), + ( + ['\u{1f938}\u{1f3fc}'], + '🤸🏼 E3.0 person cartwheeling: medium-light skin tone' + ), + (['\u{1f938}\u{1f3fd}'], '🤸🏽 E3.0 person cartwheeling: medium skin tone'), + ( + ['\u{1f938}\u{1f3fe}'], + '🤸🏾 E3.0 person cartwheeling: medium-dark skin tone' + ), + (['\u{1f938}\u{1f3ff}'], '🤸🏿 E3.0 person cartwheeling: dark skin tone'), + (['\u{1f938}\u200d\u2642\ufe0f'], '🤸‍♂️ E4.0 man cartwheeling'), + (['\u{1f938}\u200d\u2642'], '🤸‍♂ E4.0 man cartwheeling'), + ( + ['\u{1f938}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤸🏻‍♂️ E4.0 man cartwheeling: light skin tone' + ), + ( + ['\u{1f938}\u{1f3fb}\u200d\u2642'], + '🤸🏻‍♂ E4.0 man cartwheeling: light skin tone' + ), + ( + ['\u{1f938}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤸🏼‍♂️ E4.0 man cartwheeling: medium-light skin tone' + ), + ( + ['\u{1f938}\u{1f3fc}\u200d\u2642'], + '🤸🏼‍♂ E4.0 man cartwheeling: medium-light skin tone' + ), + ( + ['\u{1f938}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤸🏽‍♂️ E4.0 man cartwheeling: medium skin tone' + ), + ( + ['\u{1f938}\u{1f3fd}\u200d\u2642'], + '🤸🏽‍♂ E4.0 man cartwheeling: medium skin tone' + ), + ( + ['\u{1f938}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤸🏾‍♂️ E4.0 man cartwheeling: medium-dark skin tone' + ), + ( + ['\u{1f938}\u{1f3fe}\u200d\u2642'], + '🤸🏾‍♂ E4.0 man cartwheeling: medium-dark skin tone' + ), + ( + ['\u{1f938}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤸🏿‍♂️ E4.0 man cartwheeling: dark skin tone' + ), + ( + ['\u{1f938}\u{1f3ff}\u200d\u2642'], + '🤸🏿‍♂ E4.0 man cartwheeling: dark skin tone' + ), + (['\u{1f938}\u200d\u2640\ufe0f'], '🤸‍♀️ E4.0 woman cartwheeling'), + (['\u{1f938}\u200d\u2640'], '🤸‍♀ E4.0 woman cartwheeling'), + ( + ['\u{1f938}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤸🏻‍♀️ E4.0 woman cartwheeling: light skin tone' + ), + ( + ['\u{1f938}\u{1f3fb}\u200d\u2640'], + '🤸🏻‍♀ E4.0 woman cartwheeling: light skin tone' + ), + ( + ['\u{1f938}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤸🏼‍♀️ E4.0 woman cartwheeling: medium-light skin tone' + ), + ( + ['\u{1f938}\u{1f3fc}\u200d\u2640'], + '🤸🏼‍♀ E4.0 woman cartwheeling: medium-light skin tone' + ), + ( + ['\u{1f938}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤸🏽‍♀️ E4.0 woman cartwheeling: medium skin tone' + ), + ( + ['\u{1f938}\u{1f3fd}\u200d\u2640'], + '🤸🏽‍♀ E4.0 woman cartwheeling: medium skin tone' + ), + ( + ['\u{1f938}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤸🏾‍♀️ E4.0 woman cartwheeling: medium-dark skin tone' + ), + ( + ['\u{1f938}\u{1f3fe}\u200d\u2640'], + '🤸🏾‍♀ E4.0 woman cartwheeling: medium-dark skin tone' + ), + ( + ['\u{1f938}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤸🏿‍♀️ E4.0 woman cartwheeling: dark skin tone' + ), + ( + ['\u{1f938}\u{1f3ff}\u200d\u2640'], + '🤸🏿‍♀ E4.0 woman cartwheeling: dark skin tone' + ), + (['\u{1f93c}'], '🤼 E3.0 people wrestling'), + (['\u{1f93c}\u200d\u2642\ufe0f'], '🤼‍♂️ E4.0 men wrestling'), + (['\u{1f93c}\u200d\u2642'], '🤼‍♂ E4.0 men wrestling'), + (['\u{1f93c}\u200d\u2640\ufe0f'], '🤼‍♀️ E4.0 women wrestling'), + (['\u{1f93c}\u200d\u2640'], '🤼‍♀ E4.0 women wrestling'), + (['\u{1f93d}'], '🤽 E3.0 person playing water polo'), + ( + ['\u{1f93d}\u{1f3fb}'], + '🤽🏻 E3.0 person playing water polo: light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fc}'], + '🤽🏼 E3.0 person playing water polo: medium-light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fd}'], + '🤽🏽 E3.0 person playing water polo: medium skin tone' + ), + ( + ['\u{1f93d}\u{1f3fe}'], + '🤽🏾 E3.0 person playing water polo: medium-dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3ff}'], + '🤽🏿 E3.0 person playing water polo: dark skin tone' + ), + (['\u{1f93d}\u200d\u2642\ufe0f'], '🤽‍♂️ E4.0 man playing water polo'), + (['\u{1f93d}\u200d\u2642'], '🤽‍♂ E4.0 man playing water polo'), + ( + ['\u{1f93d}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤽🏻‍♂️ E4.0 man playing water polo: light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fb}\u200d\u2642'], + '🤽🏻‍♂ E4.0 man playing water polo: light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤽🏼‍♂️ E4.0 man playing water polo: medium-light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fc}\u200d\u2642'], + '🤽🏼‍♂ E4.0 man playing water polo: medium-light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤽🏽‍♂️ E4.0 man playing water polo: medium skin tone' + ), + ( + ['\u{1f93d}\u{1f3fd}\u200d\u2642'], + '🤽🏽‍♂ E4.0 man playing water polo: medium skin tone' + ), + ( + ['\u{1f93d}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤽🏾‍♂️ E4.0 man playing water polo: medium-dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3fe}\u200d\u2642'], + '🤽🏾‍♂ E4.0 man playing water polo: medium-dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤽🏿‍♂️ E4.0 man playing water polo: dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3ff}\u200d\u2642'], + '🤽🏿‍♂ E4.0 man playing water polo: dark skin tone' + ), + (['\u{1f93d}\u200d\u2640\ufe0f'], '🤽‍♀️ E4.0 woman playing water polo'), + (['\u{1f93d}\u200d\u2640'], '🤽‍♀ E4.0 woman playing water polo'), + ( + ['\u{1f93d}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤽🏻‍♀️ E4.0 woman playing water polo: light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fb}\u200d\u2640'], + '🤽🏻‍♀ E4.0 woman playing water polo: light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤽🏼‍♀️ E4.0 woman playing water polo: medium-light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fc}\u200d\u2640'], + '🤽🏼‍♀ E4.0 woman playing water polo: medium-light skin tone' + ), + ( + ['\u{1f93d}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤽🏽‍♀️ E4.0 woman playing water polo: medium skin tone' + ), + ( + ['\u{1f93d}\u{1f3fd}\u200d\u2640'], + '🤽🏽‍♀ E4.0 woman playing water polo: medium skin tone' + ), + ( + ['\u{1f93d}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤽🏾‍♀️ E4.0 woman playing water polo: medium-dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3fe}\u200d\u2640'], + '🤽🏾‍♀ E4.0 woman playing water polo: medium-dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤽🏿‍♀️ E4.0 woman playing water polo: dark skin tone' + ), + ( + ['\u{1f93d}\u{1f3ff}\u200d\u2640'], + '🤽🏿‍♀ E4.0 woman playing water polo: dark skin tone' + ), + (['\u{1f93e}'], '🤾 E3.0 person playing handball'), + ( + ['\u{1f93e}\u{1f3fb}'], + '🤾🏻 E3.0 person playing handball: light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fc}'], + '🤾🏼 E3.0 person playing handball: medium-light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fd}'], + '🤾🏽 E3.0 person playing handball: medium skin tone' + ), + ( + ['\u{1f93e}\u{1f3fe}'], + '🤾🏾 E3.0 person playing handball: medium-dark skin tone' + ), + (['\u{1f93e}\u{1f3ff}'], '🤾🏿 E3.0 person playing handball: dark skin tone'), + (['\u{1f93e}\u200d\u2642\ufe0f'], '🤾‍♂️ E4.0 man playing handball'), + (['\u{1f93e}\u200d\u2642'], '🤾‍♂ E4.0 man playing handball'), + ( + ['\u{1f93e}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤾🏻‍♂️ E4.0 man playing handball: light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fb}\u200d\u2642'], + '🤾🏻‍♂ E4.0 man playing handball: light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤾🏼‍♂️ E4.0 man playing handball: medium-light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fc}\u200d\u2642'], + '🤾🏼‍♂ E4.0 man playing handball: medium-light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤾🏽‍♂️ E4.0 man playing handball: medium skin tone' + ), + ( + ['\u{1f93e}\u{1f3fd}\u200d\u2642'], + '🤾🏽‍♂ E4.0 man playing handball: medium skin tone' + ), + ( + ['\u{1f93e}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤾🏾‍♂️ E4.0 man playing handball: medium-dark skin tone' + ), + ( + ['\u{1f93e}\u{1f3fe}\u200d\u2642'], + '🤾🏾‍♂ E4.0 man playing handball: medium-dark skin tone' + ), + ( + ['\u{1f93e}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤾🏿‍♂️ E4.0 man playing handball: dark skin tone' + ), + ( + ['\u{1f93e}\u{1f3ff}\u200d\u2642'], + '🤾🏿‍♂ E4.0 man playing handball: dark skin tone' + ), + (['\u{1f93e}\u200d\u2640\ufe0f'], '🤾‍♀️ E4.0 woman playing handball'), + (['\u{1f93e}\u200d\u2640'], '🤾‍♀ E4.0 woman playing handball'), + ( + ['\u{1f93e}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤾🏻‍♀️ E4.0 woman playing handball: light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fb}\u200d\u2640'], + '🤾🏻‍♀ E4.0 woman playing handball: light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤾🏼‍♀️ E4.0 woman playing handball: medium-light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fc}\u200d\u2640'], + '🤾🏼‍♀ E4.0 woman playing handball: medium-light skin tone' + ), + ( + ['\u{1f93e}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤾🏽‍♀️ E4.0 woman playing handball: medium skin tone' + ), + ( + ['\u{1f93e}\u{1f3fd}\u200d\u2640'], + '🤾🏽‍♀ E4.0 woman playing handball: medium skin tone' + ), + ( + ['\u{1f93e}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤾🏾‍♀️ E4.0 woman playing handball: medium-dark skin tone' + ), + ( + ['\u{1f93e}\u{1f3fe}\u200d\u2640'], + '🤾🏾‍♀ E4.0 woman playing handball: medium-dark skin tone' + ), + ( + ['\u{1f93e}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤾🏿‍♀️ E4.0 woman playing handball: dark skin tone' + ), + ( + ['\u{1f93e}\u{1f3ff}\u200d\u2640'], + '🤾🏿‍♀ E4.0 woman playing handball: dark skin tone' + ), + (['\u{1f939}'], '🤹 E3.0 person juggling'), + (['\u{1f939}\u{1f3fb}'], '🤹🏻 E3.0 person juggling: light skin tone'), + (['\u{1f939}\u{1f3fc}'], '🤹🏼 E3.0 person juggling: medium-light skin tone'), + (['\u{1f939}\u{1f3fd}'], '🤹🏽 E3.0 person juggling: medium skin tone'), + (['\u{1f939}\u{1f3fe}'], '🤹🏾 E3.0 person juggling: medium-dark skin tone'), + (['\u{1f939}\u{1f3ff}'], '🤹🏿 E3.0 person juggling: dark skin tone'), + (['\u{1f939}\u200d\u2642\ufe0f'], '🤹‍♂️ E4.0 man juggling'), + (['\u{1f939}\u200d\u2642'], '🤹‍♂ E4.0 man juggling'), + ( + ['\u{1f939}\u{1f3fb}\u200d\u2642\ufe0f'], + '🤹🏻‍♂️ E4.0 man juggling: light skin tone' + ), + ( + ['\u{1f939}\u{1f3fb}\u200d\u2642'], + '🤹🏻‍♂ E4.0 man juggling: light skin tone' + ), + ( + ['\u{1f939}\u{1f3fc}\u200d\u2642\ufe0f'], + '🤹🏼‍♂️ E4.0 man juggling: medium-light skin tone' + ), + ( + ['\u{1f939}\u{1f3fc}\u200d\u2642'], + '🤹🏼‍♂ E4.0 man juggling: medium-light skin tone' + ), + ( + ['\u{1f939}\u{1f3fd}\u200d\u2642\ufe0f'], + '🤹🏽‍♂️ E4.0 man juggling: medium skin tone' + ), + ( + ['\u{1f939}\u{1f3fd}\u200d\u2642'], + '🤹🏽‍♂ E4.0 man juggling: medium skin tone' + ), + ( + ['\u{1f939}\u{1f3fe}\u200d\u2642\ufe0f'], + '🤹🏾‍♂️ E4.0 man juggling: medium-dark skin tone' + ), + ( + ['\u{1f939}\u{1f3fe}\u200d\u2642'], + '🤹🏾‍♂ E4.0 man juggling: medium-dark skin tone' + ), + ( + ['\u{1f939}\u{1f3ff}\u200d\u2642\ufe0f'], + '🤹🏿‍♂️ E4.0 man juggling: dark skin tone' + ), + ( + ['\u{1f939}\u{1f3ff}\u200d\u2642'], + '🤹🏿‍♂ E4.0 man juggling: dark skin tone' + ), + (['\u{1f939}\u200d\u2640\ufe0f'], '🤹‍♀️ E4.0 woman juggling'), + (['\u{1f939}\u200d\u2640'], '🤹‍♀ E4.0 woman juggling'), + ( + ['\u{1f939}\u{1f3fb}\u200d\u2640\ufe0f'], + '🤹🏻‍♀️ E4.0 woman juggling: light skin tone' + ), + ( + ['\u{1f939}\u{1f3fb}\u200d\u2640'], + '🤹🏻‍♀ E4.0 woman juggling: light skin tone' + ), + ( + ['\u{1f939}\u{1f3fc}\u200d\u2640\ufe0f'], + '🤹🏼‍♀️ E4.0 woman juggling: medium-light skin tone' + ), + ( + ['\u{1f939}\u{1f3fc}\u200d\u2640'], + '🤹🏼‍♀ E4.0 woman juggling: medium-light skin tone' + ), + ( + ['\u{1f939}\u{1f3fd}\u200d\u2640\ufe0f'], + '🤹🏽‍♀️ E4.0 woman juggling: medium skin tone' + ), + ( + ['\u{1f939}\u{1f3fd}\u200d\u2640'], + '🤹🏽‍♀ E4.0 woman juggling: medium skin tone' + ), + ( + ['\u{1f939}\u{1f3fe}\u200d\u2640\ufe0f'], + '🤹🏾‍♀️ E4.0 woman juggling: medium-dark skin tone' + ), + ( + ['\u{1f939}\u{1f3fe}\u200d\u2640'], + '🤹🏾‍♀ E4.0 woman juggling: medium-dark skin tone' + ), + ( + ['\u{1f939}\u{1f3ff}\u200d\u2640\ufe0f'], + '🤹🏿‍♀️ E4.0 woman juggling: dark skin tone' + ), + ( + ['\u{1f939}\u{1f3ff}\u200d\u2640'], + '🤹🏿‍♀ E4.0 woman juggling: dark skin tone' + ), + (['\u{1f9d8}'], '🧘 E5.0 person in lotus position'), + ( + ['\u{1f9d8}\u{1f3fb}'], + '🧘🏻 E5.0 person in lotus position: light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fc}'], + '🧘🏼 E5.0 person in lotus position: medium-light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fd}'], + '🧘🏽 E5.0 person in lotus position: medium skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fe}'], + '🧘🏾 E5.0 person in lotus position: medium-dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3ff}'], + '🧘🏿 E5.0 person in lotus position: dark skin tone' + ), + (['\u{1f9d8}\u200d\u2642\ufe0f'], '🧘‍♂️ E5.0 man in lotus position'), + (['\u{1f9d8}\u200d\u2642'], '🧘‍♂ E5.0 man in lotus position'), + ( + ['\u{1f9d8}\u{1f3fb}\u200d\u2642\ufe0f'], + '🧘🏻‍♂️ E5.0 man in lotus position: light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fb}\u200d\u2642'], + '🧘🏻‍♂ E5.0 man in lotus position: light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fc}\u200d\u2642\ufe0f'], + '🧘🏼‍♂️ E5.0 man in lotus position: medium-light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fc}\u200d\u2642'], + '🧘🏼‍♂ E5.0 man in lotus position: medium-light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fd}\u200d\u2642\ufe0f'], + '🧘🏽‍♂️ E5.0 man in lotus position: medium skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fd}\u200d\u2642'], + '🧘🏽‍♂ E5.0 man in lotus position: medium skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fe}\u200d\u2642\ufe0f'], + '🧘🏾‍♂️ E5.0 man in lotus position: medium-dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fe}\u200d\u2642'], + '🧘🏾‍♂ E5.0 man in lotus position: medium-dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3ff}\u200d\u2642\ufe0f'], + '🧘🏿‍♂️ E5.0 man in lotus position: dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3ff}\u200d\u2642'], + '🧘🏿‍♂ E5.0 man in lotus position: dark skin tone' + ), + (['\u{1f9d8}\u200d\u2640\ufe0f'], '🧘‍♀️ E5.0 woman in lotus position'), + (['\u{1f9d8}\u200d\u2640'], '🧘‍♀ E5.0 woman in lotus position'), + ( + ['\u{1f9d8}\u{1f3fb}\u200d\u2640\ufe0f'], + '🧘🏻‍♀️ E5.0 woman in lotus position: light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fb}\u200d\u2640'], + '🧘🏻‍♀ E5.0 woman in lotus position: light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fc}\u200d\u2640\ufe0f'], + '🧘🏼‍♀️ E5.0 woman in lotus position: medium-light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fc}\u200d\u2640'], + '🧘🏼‍♀ E5.0 woman in lotus position: medium-light skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fd}\u200d\u2640\ufe0f'], + '🧘🏽‍♀️ E5.0 woman in lotus position: medium skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fd}\u200d\u2640'], + '🧘🏽‍♀ E5.0 woman in lotus position: medium skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fe}\u200d\u2640\ufe0f'], + '🧘🏾‍♀️ E5.0 woman in lotus position: medium-dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3fe}\u200d\u2640'], + '🧘🏾‍♀ E5.0 woman in lotus position: medium-dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3ff}\u200d\u2640\ufe0f'], + '🧘🏿‍♀️ E5.0 woman in lotus position: dark skin tone' + ), + ( + ['\u{1f9d8}\u{1f3ff}\u200d\u2640'], + '🧘🏿‍♀ E5.0 woman in lotus position: dark skin tone' + ), + (['\u{1f6c0}'], '🛀 E0.6 person taking bath'), + (['\u{1f6c0}\u{1f3fb}'], '🛀🏻 E1.0 person taking bath: light skin tone'), + ( + ['\u{1f6c0}\u{1f3fc}'], + '🛀🏼 E1.0 person taking bath: medium-light skin tone' + ), + (['\u{1f6c0}\u{1f3fd}'], '🛀🏽 E1.0 person taking bath: medium skin tone'), + ( + ['\u{1f6c0}\u{1f3fe}'], + '🛀🏾 E1.0 person taking bath: medium-dark skin tone' + ), + (['\u{1f6c0}\u{1f3ff}'], '🛀🏿 E1.0 person taking bath: dark skin tone'), + (['\u{1f6cc}'], '🛌 E1.0 person in bed'), + (['\u{1f6cc}\u{1f3fb}'], '🛌🏻 E4.0 person in bed: light skin tone'), + (['\u{1f6cc}\u{1f3fc}'], '🛌🏼 E4.0 person in bed: medium-light skin tone'), + (['\u{1f6cc}\u{1f3fd}'], '🛌🏽 E4.0 person in bed: medium skin tone'), + (['\u{1f6cc}\u{1f3fe}'], '🛌🏾 E4.0 person in bed: medium-dark skin tone'), + (['\u{1f6cc}\u{1f3ff}'], '🛌🏿 E4.0 person in bed: dark skin tone'), + ( + ['\u{1f9d1}\u200d\u{1f91d}\u200d\u{1f9d1}'], + '🧑‍🤝‍🧑 E12.0 people holding hands' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏻‍🤝‍🧑🏻 E12.0 people holding hands: light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏻‍🤝‍🧑🏼 E12.1 people holding hands: light skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏻‍🤝‍🧑🏽 E12.1 people holding hands: light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏻‍🤝‍🧑🏾 E12.1 people holding hands: light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏻‍🤝‍🧑🏿 E12.1 people holding hands: light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏼‍🤝‍🧑🏻 E12.0 people holding hands: medium-light skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏼‍🤝‍🧑🏼 E12.0 people holding hands: medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏼‍🤝‍🧑🏽 E12.1 people holding hands: medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏼‍🤝‍🧑🏾 E12.1 people holding hands: medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏼‍🤝‍🧑🏿 E12.1 people holding hands: medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏽‍🤝‍🧑🏻 E12.0 people holding hands: medium skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏽‍🤝‍🧑🏼 E12.0 people holding hands: medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏽‍🤝‍🧑🏽 E12.0 people holding hands: medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏽‍🤝‍🧑🏾 E12.1 people holding hands: medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏽‍🤝‍🧑🏿 E12.1 people holding hands: medium skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏾‍🤝‍🧑🏻 E12.0 people holding hands: medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏾‍🤝‍🧑🏼 E12.0 people holding hands: medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏾‍🤝‍🧑🏽 E12.0 people holding hands: medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏾‍🤝‍🧑🏾 E12.0 people holding hands: medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏾‍🤝‍🧑🏿 E12.1 people holding hands: medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏿‍🤝‍🧑🏻 E12.0 people holding hands: dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏿‍🤝‍🧑🏼 E12.0 people holding hands: dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏿‍🤝‍🧑🏽 E12.0 people holding hands: dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏿‍🤝‍🧑🏾 E12.0 people holding hands: dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏿‍🤝‍🧑🏿 E12.0 people holding hands: dark skin tone' + ), + (['\u{1f46d}'], '👭 E1.0 women holding hands'), + (['\u{1f46d}\u{1f3fb}'], '👭🏻 E12.0 women holding hands: light skin tone'), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], + '👩🏻‍🤝‍👩🏼 E12.1 women holding hands: light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], + '👩🏻‍🤝‍👩🏽 E12.1 women holding hands: light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], + '👩🏻‍🤝‍👩🏾 E12.1 women holding hands: light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], + '👩🏻‍🤝‍👩🏿 E12.1 women holding hands: light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], + '👩🏼‍🤝‍👩🏻 E12.0 women holding hands: medium-light skin tone, light skin tone' + ), + ( + ['\u{1f46d}\u{1f3fc}'], + '👭🏼 E12.0 women holding hands: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], + '👩🏼‍🤝‍👩🏽 E12.1 women holding hands: medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], + '👩🏼‍🤝‍👩🏾 E12.1 women holding hands: medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], + '👩🏼‍🤝‍👩🏿 E12.1 women holding hands: medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], + '👩🏽‍🤝‍👩🏻 E12.0 women holding hands: medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], + '👩🏽‍🤝‍👩🏼 E12.0 women holding hands: medium skin tone, medium-light skin tone' + ), + (['\u{1f46d}\u{1f3fd}'], '👭🏽 E12.0 women holding hands: medium skin tone'), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], + '👩🏽‍🤝‍👩🏾 E12.1 women holding hands: medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], + '👩🏽‍🤝‍👩🏿 E12.1 women holding hands: medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], + '👩🏾‍🤝‍👩🏻 E12.0 women holding hands: medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], + '👩🏾‍🤝‍👩🏼 E12.0 women holding hands: medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], + '👩🏾‍🤝‍👩🏽 E12.0 women holding hands: medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f46d}\u{1f3fe}'], + '👭🏾 E12.0 women holding hands: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3ff}'], + '👩🏾‍🤝‍👩🏿 E12.1 women holding hands: medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fb}'], + '👩🏿‍🤝‍👩🏻 E12.0 women holding hands: dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fc}'], + '👩🏿‍🤝‍👩🏼 E12.0 women holding hands: dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fd}'], + '👩🏿‍🤝‍👩🏽 E12.0 women holding hands: dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f469}\u{1f3fe}'], + '👩🏿‍🤝‍👩🏾 E12.0 women holding hands: dark skin tone, medium-dark skin tone' + ), + (['\u{1f46d}\u{1f3ff}'], '👭🏿 E12.0 women holding hands: dark skin tone'), + (['\u{1f46b}'], '👫 E0.6 woman and man holding hands'), + ( + ['\u{1f46b}\u{1f3fb}'], + '👫🏻 E12.0 woman and man holding hands: light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👩🏻‍🤝‍👨🏼 E12.0 woman and man holding hands: light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👩🏻‍🤝‍👨🏽 E12.0 woman and man holding hands: light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👩🏻‍🤝‍👨🏾 E12.0 woman and man holding hands: light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👩🏻‍🤝‍👨🏿 E12.0 woman and man holding hands: light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👩🏼‍🤝‍👨🏻 E12.0 woman and man holding hands: medium-light skin tone, light skin tone' + ), + ( + ['\u{1f46b}\u{1f3fc}'], + '👫🏼 E12.0 woman and man holding hands: medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👩🏼‍🤝‍👨🏽 E12.0 woman and man holding hands: medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👩🏼‍🤝‍👨🏾 E12.0 woman and man holding hands: medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👩🏼‍🤝‍👨🏿 E12.0 woman and man holding hands: medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👩🏽‍🤝‍👨🏻 E12.0 woman and man holding hands: medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👩🏽‍🤝‍👨🏼 E12.0 woman and man holding hands: medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f46b}\u{1f3fd}'], + '👫🏽 E12.0 woman and man holding hands: medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👩🏽‍🤝‍👨🏾 E12.0 woman and man holding hands: medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👩🏽‍🤝‍👨🏿 E12.0 woman and man holding hands: medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👩🏾‍🤝‍👨🏻 E12.0 woman and man holding hands: medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👩🏾‍🤝‍👨🏼 E12.0 woman and man holding hands: medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👩🏾‍🤝‍👨🏽 E12.0 woman and man holding hands: medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f46b}\u{1f3fe}'], + '👫🏾 E12.0 woman and man holding hands: medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👩🏾‍🤝‍👨🏿 E12.0 woman and man holding hands: medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👩🏿‍🤝‍👨🏻 E12.0 woman and man holding hands: dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👩🏿‍🤝‍👨🏼 E12.0 woman and man holding hands: dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👩🏿‍🤝‍👨🏽 E12.0 woman and man holding hands: dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👩🏿‍🤝‍👨🏾 E12.0 woman and man holding hands: dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f46b}\u{1f3ff}'], + '👫🏿 E12.0 woman and man holding hands: dark skin tone' + ), + (['\u{1f46c}'], '👬 E1.0 men holding hands'), + (['\u{1f46c}\u{1f3fb}'], '👬🏻 E12.0 men holding hands: light skin tone'), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👨🏻‍🤝‍👨🏼 E12.1 men holding hands: light skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👨🏻‍🤝‍👨🏽 E12.1 men holding hands: light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👨🏻‍🤝‍👨🏾 E12.1 men holding hands: light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👨🏻‍🤝‍👨🏿 E12.1 men holding hands: light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👨🏼‍🤝‍👨🏻 E12.0 men holding hands: medium-light skin tone, light skin tone' + ), + ( + ['\u{1f46c}\u{1f3fc}'], + '👬🏼 E12.0 men holding hands: medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👨🏼‍🤝‍👨🏽 E12.1 men holding hands: medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👨🏼‍🤝‍👨🏾 E12.1 men holding hands: medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👨🏼‍🤝‍👨🏿 E12.1 men holding hands: medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👨🏽‍🤝‍👨🏻 E12.0 men holding hands: medium skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👨🏽‍🤝‍👨🏼 E12.0 men holding hands: medium skin tone, medium-light skin tone' + ), + (['\u{1f46c}\u{1f3fd}'], '👬🏽 E12.0 men holding hands: medium skin tone'), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👨🏽‍🤝‍👨🏾 E12.1 men holding hands: medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👨🏽‍🤝‍👨🏿 E12.1 men holding hands: medium skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👨🏾‍🤝‍👨🏻 E12.0 men holding hands: medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👨🏾‍🤝‍👨🏼 E12.0 men holding hands: medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👨🏾‍🤝‍👨🏽 E12.0 men holding hands: medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f46c}\u{1f3fe}'], + '👬🏾 E12.0 men holding hands: medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3ff}'], + '👨🏾‍🤝‍👨🏿 E12.1 men holding hands: medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fb}'], + '👨🏿‍🤝‍👨🏻 E12.0 men holding hands: dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fc}'], + '👨🏿‍🤝‍👨🏼 E12.0 men holding hands: dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fd}'], + '👨🏿‍🤝‍👨🏽 E12.0 men holding hands: dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u{1f91d}\u200d\u{1f468}\u{1f3fe}'], + '👨🏿‍🤝‍👨🏾 E12.0 men holding hands: dark skin tone, medium-dark skin tone' + ), + (['\u{1f46c}\u{1f3ff}'], '👬🏿 E12.0 men holding hands: dark skin tone'), + (['\u{1f48f}'], '💏 E0.6 kiss'), + (['\u{1f48f}\u{1f3fb}'], '💏🏻 E13.1 kiss: light skin tone'), + (['\u{1f48f}\u{1f3fc}'], '💏🏼 E13.1 kiss: medium-light skin tone'), + (['\u{1f48f}\u{1f3fd}'], '💏🏽 E13.1 kiss: medium skin tone'), + (['\u{1f48f}\u{1f3fe}'], '💏🏾 E13.1 kiss: medium-dark skin tone'), + (['\u{1f48f}\u{1f3ff}'], '💏🏿 E13.1 kiss: dark skin tone'), + ( + [ + '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' + ], + '🧑🏻‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏻‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, light skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' + ], + '🧑🏻‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏻‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, light skin tone, medium skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' + ], + '🧑🏻‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏻‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' + ], + '🧑🏻‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏻‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, light skin tone, dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' + ], + '🧑🏼‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏼‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, medium-light skin tone, light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' + ], + '🧑🏼‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏼‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, medium-light skin tone, medium skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' + ], + '🧑🏼‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏼‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, medium-light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' + ], + '🧑🏼‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏼‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, medium-light skin tone, dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' + ], + '🧑🏽‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, medium skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏽‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, medium skin tone, light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' + ], + '🧑🏽‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏽‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, medium skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' + ], + '🧑🏽‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏽‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, medium skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' + ], + '🧑🏽‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, medium skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏽‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, medium skin tone, dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' + ], + '🧑🏾‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏾‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, medium-dark skin tone, light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' + ], + '🧑🏾‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏾‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, medium-dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' + ], + '🧑🏾‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏾‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, medium-dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}' + ], + '🧑🏾‍❤️‍💋‍🧑🏿 E13.1 kiss: person, person, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏾‍❤‍💋‍🧑🏿 E13.1 kiss: person, person, medium-dark skin tone, dark skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}' + ], + '🧑🏿‍❤️‍💋‍🧑🏻 E13.1 kiss: person, person, dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏿‍❤‍💋‍🧑🏻 E13.1 kiss: person, person, dark skin tone, light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}' + ], + '🧑🏿‍❤️‍💋‍🧑🏼 E13.1 kiss: person, person, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏿‍❤‍💋‍🧑🏼 E13.1 kiss: person, person, dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}' + ], + '🧑🏿‍❤️‍💋‍🧑🏽 E13.1 kiss: person, person, dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏿‍❤‍💋‍🧑🏽 E13.1 kiss: person, person, dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}' + ], + '🧑🏿‍❤️‍💋‍🧑🏾 E13.1 kiss: person, person, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏿‍❤‍💋‍🧑🏾 E13.1 kiss: person, person, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}'], + '👩‍❤️‍💋‍👨 E2.0 kiss: woman, man' + ), + ( + ['\u{1f469}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}'], + '👩‍❤‍💋‍👨 E2.0 kiss: woman, man' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👩🏻‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👩🏻‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👩🏻‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👩🏻‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, light skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👩🏻‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👩🏻‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, light skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👩🏻‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👩🏻‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👩🏻‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👩🏻‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, light skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👩🏼‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👩🏼‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, medium-light skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👩🏼‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👩🏼‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👩🏼‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👩🏼‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, medium-light skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👩🏼‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👩🏼‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, medium-light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👩🏼‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👩🏼‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, medium-light skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👩🏽‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👩🏽‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, medium skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👩🏽‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👩🏽‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, medium skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👩🏽‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👩🏽‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👩🏽‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👩🏽‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, medium skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👩🏽‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👩🏽‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, medium skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👩🏾‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👩🏾‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, medium-dark skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👩🏾‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👩🏾‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, medium-dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👩🏾‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👩🏾‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, medium-dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👩🏾‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👩🏾‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👩🏾‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👩🏾‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, medium-dark skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👩🏿‍❤️‍💋‍👨🏻 E13.1 kiss: woman, man, dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👩🏿‍❤‍💋‍👨🏻 E13.1 kiss: woman, man, dark skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👩🏿‍❤️‍💋‍👨🏼 E13.1 kiss: woman, man, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👩🏿‍❤‍💋‍👨🏼 E13.1 kiss: woman, man, dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👩🏿‍❤️‍💋‍👨🏽 E13.1 kiss: woman, man, dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👩🏿‍❤‍💋‍👨🏽 E13.1 kiss: woman, man, dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👩🏿‍❤️‍💋‍👨🏾 E13.1 kiss: woman, man, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👩🏿‍❤‍💋‍👨🏾 E13.1 kiss: woman, man, dark skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👩🏿‍❤️‍💋‍👨🏿 E13.1 kiss: woman, man, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👩🏿‍❤‍💋‍👨🏿 E13.1 kiss: woman, man, dark skin tone' + ), + ( + ['\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}'], + '👨‍❤️‍💋‍👨 E2.0 kiss: man, man' + ), + ( + ['\u{1f468}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}'], + '👨‍❤‍💋‍👨 E2.0 kiss: man, man' + ), + ( + [ + '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👨🏻‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👨🏻‍❤‍💋‍👨🏻 E13.1 kiss: man, man, light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👨🏻‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👨🏻‍❤‍💋‍👨🏼 E13.1 kiss: man, man, light skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👨🏻‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👨🏻‍❤‍💋‍👨🏽 E13.1 kiss: man, man, light skin tone, medium skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👨🏻‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👨🏻‍❤‍💋‍👨🏾 E13.1 kiss: man, man, light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👨🏻‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👨🏻‍❤‍💋‍👨🏿 E13.1 kiss: man, man, light skin tone, dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👨🏼‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👨🏼‍❤‍💋‍👨🏻 E13.1 kiss: man, man, medium-light skin tone, light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👨🏼‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👨🏼‍❤‍💋‍👨🏼 E13.1 kiss: man, man, medium-light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👨🏼‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👨🏼‍❤‍💋‍👨🏽 E13.1 kiss: man, man, medium-light skin tone, medium skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👨🏼‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👨🏼‍❤‍💋‍👨🏾 E13.1 kiss: man, man, medium-light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👨🏼‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👨🏼‍❤‍💋‍👨🏿 E13.1 kiss: man, man, medium-light skin tone, dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👨🏽‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, medium skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👨🏽‍❤‍💋‍👨🏻 E13.1 kiss: man, man, medium skin tone, light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👨🏽‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👨🏽‍❤‍💋‍👨🏼 E13.1 kiss: man, man, medium skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👨🏽‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👨🏽‍❤‍💋‍👨🏽 E13.1 kiss: man, man, medium skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👨🏽‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👨🏽‍❤‍💋‍👨🏾 E13.1 kiss: man, man, medium skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👨🏽‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, medium skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👨🏽‍❤‍💋‍👨🏿 E13.1 kiss: man, man, medium skin tone, dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👨🏾‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👨🏾‍❤‍💋‍👨🏻 E13.1 kiss: man, man, medium-dark skin tone, light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👨🏾‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👨🏾‍❤‍💋‍👨🏼 E13.1 kiss: man, man, medium-dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👨🏾‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👨🏾‍❤‍💋‍👨🏽 E13.1 kiss: man, man, medium-dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👨🏾‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👨🏾‍❤‍💋‍👨🏾 E13.1 kiss: man, man, medium-dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👨🏾‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👨🏾‍❤‍💋‍👨🏿 E13.1 kiss: man, man, medium-dark skin tone, dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}' + ], + '👨🏿‍❤️‍💋‍👨🏻 E13.1 kiss: man, man, dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fb}'], + '👨🏿‍❤‍💋‍👨🏻 E13.1 kiss: man, man, dark skin tone, light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}' + ], + '👨🏿‍❤️‍💋‍👨🏼 E13.1 kiss: man, man, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fc}'], + '👨🏿‍❤‍💋‍👨🏼 E13.1 kiss: man, man, dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}' + ], + '👨🏿‍❤️‍💋‍👨🏽 E13.1 kiss: man, man, dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fd}'], + '👨🏿‍❤‍💋‍👨🏽 E13.1 kiss: man, man, dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}' + ], + '👨🏿‍❤️‍💋‍👨🏾 E13.1 kiss: man, man, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3fe}'], + '👨🏿‍❤‍💋‍👨🏾 E13.1 kiss: man, man, dark skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}' + ], + '👨🏿‍❤️‍💋‍👨🏿 E13.1 kiss: man, man, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f468}\u{1f3ff}'], + '👨🏿‍❤‍💋‍👨🏿 E13.1 kiss: man, man, dark skin tone' + ), + ( + ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}'], + '👩‍❤️‍💋‍👩 E2.0 kiss: woman, woman' + ), + ( + ['\u{1f469}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}'], + '👩‍❤‍💋‍👩 E2.0 kiss: woman, woman' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' + ], + '👩🏻‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], + '👩🏻‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' + ], + '👩🏻‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], + '👩🏻‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, light skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' + ], + '👩🏻‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], + '👩🏻‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, light skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' + ], + '👩🏻‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], + '👩🏻‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' + ], + '👩🏻‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], + '👩🏻‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, light skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' + ], + '👩🏼‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], + '👩🏼‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-light skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' + ], + '👩🏼‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], + '👩🏼‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' + ], + '👩🏼‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], + '👩🏼‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-light skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' + ], + '👩🏼‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], + '👩🏼‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-light skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' + ], + '👩🏼‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], + '👩🏼‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-light skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' + ], + '👩🏽‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], + '👩🏽‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, medium skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' + ], + '👩🏽‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], + '👩🏽‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, medium skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' + ], + '👩🏽‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], + '👩🏽‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' + ], + '👩🏽‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], + '👩🏽‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, medium skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' + ], + '👩🏽‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], + '👩🏽‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, medium skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' + ], + '👩🏾‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], + '👩🏾‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, medium-dark skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' + ], + '👩🏾‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], + '👩🏾‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, medium-dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' + ], + '👩🏾‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], + '👩🏾‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, medium-dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' + ], + '👩🏾‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], + '👩🏾‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' + ], + '👩🏾‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], + '👩🏾‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, medium-dark skin tone, dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}' + ], + '👩🏿‍❤️‍💋‍👩🏻 E13.1 kiss: woman, woman, dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fb}'], + '👩🏿‍❤‍💋‍👩🏻 E13.1 kiss: woman, woman, dark skin tone, light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}' + ], + '👩🏿‍❤️‍💋‍👩🏼 E13.1 kiss: woman, woman, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fc}'], + '👩🏿‍❤‍💋‍👩🏼 E13.1 kiss: woman, woman, dark skin tone, medium-light skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}' + ], + '👩🏿‍❤️‍💋‍👩🏽 E13.1 kiss: woman, woman, dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fd}'], + '👩🏿‍❤‍💋‍👩🏽 E13.1 kiss: woman, woman, dark skin tone, medium skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}' + ], + '👩🏿‍❤️‍💋‍👩🏾 E13.1 kiss: woman, woman, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3fe}'], + '👩🏿‍❤‍💋‍👩🏾 E13.1 kiss: woman, woman, dark skin tone, medium-dark skin tone' + ), + ( + [ + '\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}' + ], + '👩🏿‍❤️‍💋‍👩🏿 E13.1 kiss: woman, woman, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f48b}\u200d\u{1f469}\u{1f3ff}'], + '👩🏿‍❤‍💋‍👩🏿 E13.1 kiss: woman, woman, dark skin tone' + ), + (['\u{1f491}'], '💑 E0.6 couple with heart'), + (['\u{1f491}\u{1f3fb}'], '💑🏻 E13.1 couple with heart: light skin tone'), + ( + ['\u{1f491}\u{1f3fc}'], + '💑🏼 E13.1 couple with heart: medium-light skin tone' + ), + (['\u{1f491}\u{1f3fd}'], '💑🏽 E13.1 couple with heart: medium skin tone'), + ( + ['\u{1f491}\u{1f3fe}'], + '💑🏾 E13.1 couple with heart: medium-dark skin tone' + ), + (['\u{1f491}\u{1f3ff}'], '💑🏿 E13.1 couple with heart: dark skin tone'), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏻‍❤️‍🧑🏼 E13.1 couple with heart: person, person, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏻‍❤‍🧑🏼 E13.1 couple with heart: person, person, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏻‍❤️‍🧑🏽 E13.1 couple with heart: person, person, light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏻‍❤‍🧑🏽 E13.1 couple with heart: person, person, light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏻‍❤️‍🧑🏾 E13.1 couple with heart: person, person, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏻‍❤‍🧑🏾 E13.1 couple with heart: person, person, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏻‍❤️‍🧑🏿 E13.1 couple with heart: person, person, light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fb}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏻‍❤‍🧑🏿 E13.1 couple with heart: person, person, light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏼‍❤️‍🧑🏻 E13.1 couple with heart: person, person, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏼‍❤‍🧑🏻 E13.1 couple with heart: person, person, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏼‍❤️‍🧑🏽 E13.1 couple with heart: person, person, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏼‍❤‍🧑🏽 E13.1 couple with heart: person, person, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏼‍❤️‍🧑🏾 E13.1 couple with heart: person, person, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏼‍❤‍🧑🏾 E13.1 couple with heart: person, person, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏼‍❤️‍🧑🏿 E13.1 couple with heart: person, person, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fc}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏼‍❤‍🧑🏿 E13.1 couple with heart: person, person, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏽‍❤️‍🧑🏻 E13.1 couple with heart: person, person, medium skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏽‍❤‍🧑🏻 E13.1 couple with heart: person, person, medium skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏽‍❤️‍🧑🏼 E13.1 couple with heart: person, person, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏽‍❤‍🧑🏼 E13.1 couple with heart: person, person, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏽‍❤️‍🧑🏾 E13.1 couple with heart: person, person, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏽‍❤‍🧑🏾 E13.1 couple with heart: person, person, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏽‍❤️‍🧑🏿 E13.1 couple with heart: person, person, medium skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fd}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏽‍❤‍🧑🏿 E13.1 couple with heart: person, person, medium skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏾‍❤️‍🧑🏻 E13.1 couple with heart: person, person, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏾‍❤‍🧑🏻 E13.1 couple with heart: person, person, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏾‍❤️‍🧑🏼 E13.1 couple with heart: person, person, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏾‍❤‍🧑🏼 E13.1 couple with heart: person, person, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏾‍❤️‍🧑🏽 E13.1 couple with heart: person, person, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏾‍❤‍🧑🏽 E13.1 couple with heart: person, person, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏾‍❤️‍🧑🏿 E13.1 couple with heart: person, person, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3fe}\u200d\u2764\u200d\u{1f9d1}\u{1f3ff}'], + '🧑🏾‍❤‍🧑🏿 E13.1 couple with heart: person, person, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏿‍❤️‍🧑🏻 E13.1 couple with heart: person, person, dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fb}'], + '🧑🏿‍❤‍🧑🏻 E13.1 couple with heart: person, person, dark skin tone, light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏿‍❤️‍🧑🏼 E13.1 couple with heart: person, person, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fc}'], + '🧑🏿‍❤‍🧑🏼 E13.1 couple with heart: person, person, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏿‍❤️‍🧑🏽 E13.1 couple with heart: person, person, dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fd}'], + '🧑🏿‍❤‍🧑🏽 E13.1 couple with heart: person, person, dark skin tone, medium skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏿‍❤️‍🧑🏾 E13.1 couple with heart: person, person, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f9d1}\u{1f3ff}\u200d\u2764\u200d\u{1f9d1}\u{1f3fe}'], + '🧑🏿‍❤‍🧑🏾 E13.1 couple with heart: person, person, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f468}'], + '👩‍❤️‍👨 E2.0 couple with heart: woman, man' + ), + ( + ['\u{1f469}\u200d\u2764\u200d\u{1f468}'], + '👩‍❤‍👨 E2.0 couple with heart: woman, man' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👩🏻‍❤️‍👨🏻 E13.1 couple with heart: woman, man, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👩🏻‍❤‍👨🏻 E13.1 couple with heart: woman, man, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👩🏻‍❤️‍👨🏼 E13.1 couple with heart: woman, man, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👩🏻‍❤‍👨🏼 E13.1 couple with heart: woman, man, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👩🏻‍❤️‍👨🏽 E13.1 couple with heart: woman, man, light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👩🏻‍❤‍👨🏽 E13.1 couple with heart: woman, man, light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👩🏻‍❤️‍👨🏾 E13.1 couple with heart: woman, man, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👩🏻‍❤‍👨🏾 E13.1 couple with heart: woman, man, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👩🏻‍❤️‍👨🏿 E13.1 couple with heart: woman, man, light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👩🏻‍❤‍👨🏿 E13.1 couple with heart: woman, man, light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👩🏼‍❤️‍👨🏻 E13.1 couple with heart: woman, man, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👩🏼‍❤‍👨🏻 E13.1 couple with heart: woman, man, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👩🏼‍❤️‍👨🏼 E13.1 couple with heart: woman, man, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👩🏼‍❤‍👨🏼 E13.1 couple with heart: woman, man, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👩🏼‍❤️‍👨🏽 E13.1 couple with heart: woman, man, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👩🏼‍❤‍👨🏽 E13.1 couple with heart: woman, man, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👩🏼‍❤️‍👨🏾 E13.1 couple with heart: woman, man, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👩🏼‍❤‍👨🏾 E13.1 couple with heart: woman, man, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👩🏼‍❤️‍👨🏿 E13.1 couple with heart: woman, man, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👩🏼‍❤‍👨🏿 E13.1 couple with heart: woman, man, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👩🏽‍❤️‍👨🏻 E13.1 couple with heart: woman, man, medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👩🏽‍❤‍👨🏻 E13.1 couple with heart: woman, man, medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👩🏽‍❤️‍👨🏼 E13.1 couple with heart: woman, man, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👩🏽‍❤‍👨🏼 E13.1 couple with heart: woman, man, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👩🏽‍❤️‍👨🏽 E13.1 couple with heart: woman, man, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👩🏽‍❤‍👨🏽 E13.1 couple with heart: woman, man, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👩🏽‍❤️‍👨🏾 E13.1 couple with heart: woman, man, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👩🏽‍❤‍👨🏾 E13.1 couple with heart: woman, man, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👩🏽‍❤️‍👨🏿 E13.1 couple with heart: woman, man, medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👩🏽‍❤‍👨🏿 E13.1 couple with heart: woman, man, medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👩🏾‍❤️‍👨🏻 E13.1 couple with heart: woman, man, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👩🏾‍❤‍👨🏻 E13.1 couple with heart: woman, man, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👩🏾‍❤️‍👨🏼 E13.1 couple with heart: woman, man, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👩🏾‍❤‍👨🏼 E13.1 couple with heart: woman, man, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👩🏾‍❤️‍👨🏽 E13.1 couple with heart: woman, man, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👩🏾‍❤‍👨🏽 E13.1 couple with heart: woman, man, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👩🏾‍❤️‍👨🏾 E13.1 couple with heart: woman, man, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👩🏾‍❤‍👨🏾 E13.1 couple with heart: woman, man, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👩🏾‍❤️‍👨🏿 E13.1 couple with heart: woman, man, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👩🏾‍❤‍👨🏿 E13.1 couple with heart: woman, man, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👩🏿‍❤️‍👨🏻 E13.1 couple with heart: woman, man, dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👩🏿‍❤‍👨🏻 E13.1 couple with heart: woman, man, dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👩🏿‍❤️‍👨🏼 E13.1 couple with heart: woman, man, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👩🏿‍❤‍👨🏼 E13.1 couple with heart: woman, man, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👩🏿‍❤️‍👨🏽 E13.1 couple with heart: woman, man, dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👩🏿‍❤‍👨🏽 E13.1 couple with heart: woman, man, dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👩🏿‍❤️‍👨🏾 E13.1 couple with heart: woman, man, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👩🏿‍❤‍👨🏾 E13.1 couple with heart: woman, man, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👩🏿‍❤️‍👨🏿 E13.1 couple with heart: woman, man, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👩🏿‍❤‍👨🏿 E13.1 couple with heart: woman, man, dark skin tone' + ), + ( + ['\u{1f468}\u200d\u2764\ufe0f\u200d\u{1f468}'], + '👨‍❤️‍👨 E2.0 couple with heart: man, man' + ), + ( + ['\u{1f468}\u200d\u2764\u200d\u{1f468}'], + '👨‍❤‍👨 E2.0 couple with heart: man, man' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👨🏻‍❤️‍👨🏻 E13.1 couple with heart: man, man, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👨🏻‍❤‍👨🏻 E13.1 couple with heart: man, man, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👨🏻‍❤️‍👨🏼 E13.1 couple with heart: man, man, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👨🏻‍❤‍👨🏼 E13.1 couple with heart: man, man, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👨🏻‍❤️‍👨🏽 E13.1 couple with heart: man, man, light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👨🏻‍❤‍👨🏽 E13.1 couple with heart: man, man, light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👨🏻‍❤️‍👨🏾 E13.1 couple with heart: man, man, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👨🏻‍❤‍👨🏾 E13.1 couple with heart: man, man, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👨🏻‍❤️‍👨🏿 E13.1 couple with heart: man, man, light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fb}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👨🏻‍❤‍👨🏿 E13.1 couple with heart: man, man, light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👨🏼‍❤️‍👨🏻 E13.1 couple with heart: man, man, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👨🏼‍❤‍👨🏻 E13.1 couple with heart: man, man, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👨🏼‍❤️‍👨🏼 E13.1 couple with heart: man, man, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👨🏼‍❤‍👨🏼 E13.1 couple with heart: man, man, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👨🏼‍❤️‍👨🏽 E13.1 couple with heart: man, man, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👨🏼‍❤‍👨🏽 E13.1 couple with heart: man, man, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👨🏼‍❤️‍👨🏾 E13.1 couple with heart: man, man, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👨🏼‍❤‍👨🏾 E13.1 couple with heart: man, man, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👨🏼‍❤️‍👨🏿 E13.1 couple with heart: man, man, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fc}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👨🏼‍❤‍👨🏿 E13.1 couple with heart: man, man, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👨🏽‍❤️‍👨🏻 E13.1 couple with heart: man, man, medium skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👨🏽‍❤‍👨🏻 E13.1 couple with heart: man, man, medium skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👨🏽‍❤️‍👨🏼 E13.1 couple with heart: man, man, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👨🏽‍❤‍👨🏼 E13.1 couple with heart: man, man, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👨🏽‍❤️‍👨🏽 E13.1 couple with heart: man, man, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👨🏽‍❤‍👨🏽 E13.1 couple with heart: man, man, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👨🏽‍❤️‍👨🏾 E13.1 couple with heart: man, man, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👨🏽‍❤‍👨🏾 E13.1 couple with heart: man, man, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👨🏽‍❤️‍👨🏿 E13.1 couple with heart: man, man, medium skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fd}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👨🏽‍❤‍👨🏿 E13.1 couple with heart: man, man, medium skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👨🏾‍❤️‍👨🏻 E13.1 couple with heart: man, man, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👨🏾‍❤‍👨🏻 E13.1 couple with heart: man, man, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👨🏾‍❤️‍👨🏼 E13.1 couple with heart: man, man, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👨🏾‍❤‍👨🏼 E13.1 couple with heart: man, man, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👨🏾‍❤️‍👨🏽 E13.1 couple with heart: man, man, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👨🏾‍❤‍👨🏽 E13.1 couple with heart: man, man, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👨🏾‍❤️‍👨🏾 E13.1 couple with heart: man, man, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👨🏾‍❤‍👨🏾 E13.1 couple with heart: man, man, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👨🏾‍❤️‍👨🏿 E13.1 couple with heart: man, man, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3fe}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👨🏾‍❤‍👨🏿 E13.1 couple with heart: man, man, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fb}'], + '👨🏿‍❤️‍👨🏻 E13.1 couple with heart: man, man, dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fb}'], + '👨🏿‍❤‍👨🏻 E13.1 couple with heart: man, man, dark skin tone, light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fc}'], + '👨🏿‍❤️‍👨🏼 E13.1 couple with heart: man, man, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fc}'], + '👨🏿‍❤‍👨🏼 E13.1 couple with heart: man, man, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fd}'], + '👨🏿‍❤️‍👨🏽 E13.1 couple with heart: man, man, dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fd}'], + '👨🏿‍❤‍👨🏽 E13.1 couple with heart: man, man, dark skin tone, medium skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3fe}'], + '👨🏿‍❤️‍👨🏾 E13.1 couple with heart: man, man, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3fe}'], + '👨🏿‍❤‍👨🏾 E13.1 couple with heart: man, man, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f468}\u{1f3ff}'], + '👨🏿‍❤️‍👨🏿 E13.1 couple with heart: man, man, dark skin tone' + ), + ( + ['\u{1f468}\u{1f3ff}\u200d\u2764\u200d\u{1f468}\u{1f3ff}'], + '👨🏿‍❤‍👨🏿 E13.1 couple with heart: man, man, dark skin tone' + ), + ( + ['\u{1f469}\u200d\u2764\ufe0f\u200d\u{1f469}'], + '👩‍❤️‍👩 E2.0 couple with heart: woman, woman' + ), + ( + ['\u{1f469}\u200d\u2764\u200d\u{1f469}'], + '👩‍❤‍👩 E2.0 couple with heart: woman, woman' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], + '👩🏻‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], + '👩🏻‍❤‍👩🏻 E13.1 couple with heart: woman, woman, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], + '👩🏻‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], + '👩🏻‍❤‍👩🏼 E13.1 couple with heart: woman, woman, light skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], + '👩🏻‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], + '👩🏻‍❤‍👩🏽 E13.1 couple with heart: woman, woman, light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], + '👩🏻‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], + '👩🏻‍❤‍👩🏾 E13.1 couple with heart: woman, woman, light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], + '👩🏻‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fb}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], + '👩🏻‍❤‍👩🏿 E13.1 couple with heart: woman, woman, light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], + '👩🏼‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], + '👩🏼‍❤‍👩🏻 E13.1 couple with heart: woman, woman, medium-light skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], + '👩🏼‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], + '👩🏼‍❤‍👩🏼 E13.1 couple with heart: woman, woman, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], + '👩🏼‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], + '👩🏼‍❤‍👩🏽 E13.1 couple with heart: woman, woman, medium-light skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], + '👩🏼‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], + '👩🏼‍❤‍👩🏾 E13.1 couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], + '👩🏼‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fc}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], + '👩🏼‍❤‍👩🏿 E13.1 couple with heart: woman, woman, medium-light skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], + '👩🏽‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], + '👩🏽‍❤‍👩🏻 E13.1 couple with heart: woman, woman, medium skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], + '👩🏽‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], + '👩🏽‍❤‍👩🏼 E13.1 couple with heart: woman, woman, medium skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], + '👩🏽‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], + '👩🏽‍❤‍👩🏽 E13.1 couple with heart: woman, woman, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], + '👩🏽‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], + '👩🏽‍❤‍👩🏾 E13.1 couple with heart: woman, woman, medium skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], + '👩🏽‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fd}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], + '👩🏽‍❤‍👩🏿 E13.1 couple with heart: woman, woman, medium skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], + '👩🏾‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], + '👩🏾‍❤‍👩🏻 E13.1 couple with heart: woman, woman, medium-dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], + '👩🏾‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], + '👩🏾‍❤‍👩🏼 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], + '👩🏾‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], + '👩🏾‍❤‍👩🏽 E13.1 couple with heart: woman, woman, medium-dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], + '👩🏾‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], + '👩🏾‍❤‍👩🏾 E13.1 couple with heart: woman, woman, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], + '👩🏾‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3fe}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], + '👩🏾‍❤‍👩🏿 E13.1 couple with heart: woman, woman, medium-dark skin tone, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fb}'], + '👩🏿‍❤️‍👩🏻 E13.1 couple with heart: woman, woman, dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fb}'], + '👩🏿‍❤‍👩🏻 E13.1 couple with heart: woman, woman, dark skin tone, light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fc}'], + '👩🏿‍❤️‍👩🏼 E13.1 couple with heart: woman, woman, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fc}'], + '👩🏿‍❤‍👩🏼 E13.1 couple with heart: woman, woman, dark skin tone, medium-light skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fd}'], + '👩🏿‍❤️‍👩🏽 E13.1 couple with heart: woman, woman, dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fd}'], + '👩🏿‍❤‍👩🏽 E13.1 couple with heart: woman, woman, dark skin tone, medium skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3fe}'], + '👩🏿‍❤️‍👩🏾 E13.1 couple with heart: woman, woman, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3fe}'], + '👩🏿‍❤‍👩🏾 E13.1 couple with heart: woman, woman, dark skin tone, medium-dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\ufe0f\u200d\u{1f469}\u{1f3ff}'], + '👩🏿‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, dark skin tone' + ), + ( + ['\u{1f469}\u{1f3ff}\u200d\u2764\u200d\u{1f469}\u{1f3ff}'], + '👩🏿‍❤‍👩🏿 E13.1 couple with heart: woman, woman, dark skin tone' + ), + ( + ['\u{1f468}\u200d\u{1f469}\u200d\u{1f466}'], + '👨‍👩‍👦 E2.0 family: man, woman, boy' + ), + ( + ['\u{1f468}\u200d\u{1f469}\u200d\u{1f467}'], + '👨‍👩‍👧 E2.0 family: man, woman, girl' + ), + ( + ['\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}'], + '👨‍👩‍👧‍👦 E2.0 family: man, woman, girl, boy' + ), + ( + ['\u{1f468}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}'], + '👨‍👩‍👦‍👦 E2.0 family: man, woman, boy, boy' + ), + ( + ['\u{1f468}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}'], + '👨‍👩‍👧‍👧 E2.0 family: man, woman, girl, girl' + ), + ( + ['\u{1f468}\u200d\u{1f468}\u200d\u{1f466}'], + '👨‍👨‍👦 E2.0 family: man, man, boy' + ), + ( + ['\u{1f468}\u200d\u{1f468}\u200d\u{1f467}'], + '👨‍👨‍👧 E2.0 family: man, man, girl' + ), + ( + ['\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f466}'], + '👨‍👨‍👧‍👦 E2.0 family: man, man, girl, boy' + ), + ( + ['\u{1f468}\u200d\u{1f468}\u200d\u{1f466}\u200d\u{1f466}'], + '👨‍👨‍👦‍👦 E2.0 family: man, man, boy, boy' + ), + ( + ['\u{1f468}\u200d\u{1f468}\u200d\u{1f467}\u200d\u{1f467}'], + '👨‍👨‍👧‍👧 E2.0 family: man, man, girl, girl' + ), + ( + ['\u{1f469}\u200d\u{1f469}\u200d\u{1f466}'], + '👩‍👩‍👦 E2.0 family: woman, woman, boy' + ), + ( + ['\u{1f469}\u200d\u{1f469}\u200d\u{1f467}'], + '👩‍👩‍👧 E2.0 family: woman, woman, girl' + ), + ( + ['\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f466}'], + '👩‍👩‍👧‍👦 E2.0 family: woman, woman, girl, boy' + ), + ( + ['\u{1f469}\u200d\u{1f469}\u200d\u{1f466}\u200d\u{1f466}'], + '👩‍👩‍👦‍👦 E2.0 family: woman, woman, boy, boy' + ), + ( + ['\u{1f469}\u200d\u{1f469}\u200d\u{1f467}\u200d\u{1f467}'], + '👩‍👩‍👧‍👧 E2.0 family: woman, woman, girl, girl' + ), + (['\u{1f468}\u200d\u{1f466}'], '👨‍👦 E4.0 family: man, boy'), + ( + ['\u{1f468}\u200d\u{1f466}\u200d\u{1f466}'], + '👨‍👦‍👦 E4.0 family: man, boy, boy' + ), + (['\u{1f468}\u200d\u{1f467}'], '👨‍👧 E4.0 family: man, girl'), + ( + ['\u{1f468}\u200d\u{1f467}\u200d\u{1f466}'], + '👨‍👧‍👦 E4.0 family: man, girl, boy' + ), + ( + ['\u{1f468}\u200d\u{1f467}\u200d\u{1f467}'], + '👨‍👧‍👧 E4.0 family: man, girl, girl' + ), + (['\u{1f469}\u200d\u{1f466}'], '👩‍👦 E4.0 family: woman, boy'), + ( + ['\u{1f469}\u200d\u{1f466}\u200d\u{1f466}'], + '👩‍👦‍👦 E4.0 family: woman, boy, boy' + ), + (['\u{1f469}\u200d\u{1f467}'], '👩‍👧 E4.0 family: woman, girl'), + ( + ['\u{1f469}\u200d\u{1f467}\u200d\u{1f466}'], + '👩‍👧‍👦 E4.0 family: woman, girl, boy' + ), + ( + ['\u{1f469}\u200d\u{1f467}\u200d\u{1f467}'], + '👩‍👧‍👧 E4.0 family: woman, girl, girl' + ), + (['\u{1f5e3}\ufe0f'], '🗣️ E0.7 speaking head'), + (['\u{1f5e3}'], '🗣 E0.7 speaking head'), + (['\u{1f464}'], '👤 E0.6 bust in silhouette'), + (['\u{1f465}'], '👥 E1.0 busts in silhouette'), + (['\u{1fac2}'], '🫂 E13.0 people hugging'), + (['\u{1f46a}'], '👪 E0.6 family'), + ( + ['\u{1f9d1}\u200d\u{1f9d1}\u200d\u{1f9d2}'], + '🧑‍🧑‍🧒 E15.1 family: adult, adult, child' + ), + ( + ['\u{1f9d1}\u200d\u{1f9d1}\u200d\u{1f9d2}\u200d\u{1f9d2}'], + '🧑‍🧑‍🧒‍🧒 E15.1 family: adult, adult, child, child' + ), + (['\u{1f9d1}\u200d\u{1f9d2}'], '🧑‍🧒 E15.1 family: adult, child'), + ( + ['\u{1f9d1}\u200d\u{1f9d2}\u200d\u{1f9d2}'], + '🧑‍🧒‍🧒 E15.1 family: adult, child, child' + ), + (['\u{1f463}'], '👣 E0.6 footprints'), + (['\u{1fac6}'], '🫆 E16.0 fingerprint'), + (['\u{1f3fb}'], '🏻 E1.0 light skin tone'), + (['\u{1f3fc}'], '🏼 E1.0 medium-light skin tone'), + (['\u{1f3fd}'], '🏽 E1.0 medium skin tone'), + (['\u{1f3fe}'], '🏾 E1.0 medium-dark skin tone'), + (['\u{1f3ff}'], '🏿 E1.0 dark skin tone'), + (['\u{1f9b0}'], '🦰 E11.0 red hair'), + (['\u{1f9b1}'], '🦱 E11.0 curly hair'), + (['\u{1f9b3}'], '🦳 E11.0 white hair'), + (['\u{1f9b2}'], '🦲 E11.0 bald'), + (['\u{1f435}'], '🐵 E0.6 monkey face'), + (['\u{1f412}'], '🐒 E0.6 monkey'), + (['\u{1f98d}'], '🦍 E3.0 gorilla'), + (['\u{1f9a7}'], '🦧 E12.0 orangutan'), + (['\u{1f436}'], '🐶 E0.6 dog face'), + (['\u{1f415}'], '🐕 E0.7 dog'), + (['\u{1f9ae}'], '🦮 E12.0 guide dog'), + (['\u{1f415}\u200d\u{1f9ba}'], '🐕‍🦺 E12.0 service dog'), + (['\u{1f429}'], '🐩 E0.6 poodle'), + (['\u{1f43a}'], '🐺 E0.6 wolf'), + (['\u{1f98a}'], '🦊 E3.0 fox'), + (['\u{1f99d}'], '🦝 E11.0 raccoon'), + (['\u{1f431}'], '🐱 E0.6 cat face'), + (['\u{1f408}'], '🐈 E0.7 cat'), + (['\u{1f408}\u200d\u2b1b'], '🐈‍⬛ E13.0 black cat'), + (['\u{1f981}'], '🦁 E1.0 lion'), + (['\u{1f42f}'], '🐯 E0.6 tiger face'), + (['\u{1f405}'], '🐅 E1.0 tiger'), + (['\u{1f406}'], '🐆 E1.0 leopard'), + (['\u{1f434}'], '🐴 E0.6 horse face'), + (['\u{1face}'], '🫎 E15.0 moose'), + (['\u{1facf}'], '🫏 E15.0 donkey'), + (['\u{1f40e}'], '🐎 E0.6 horse'), + (['\u{1f984}'], '🦄 E1.0 unicorn'), + (['\u{1f993}'], '🦓 E5.0 zebra'), + (['\u{1f98c}'], '🦌 E3.0 deer'), + (['\u{1f9ac}'], '🦬 E13.0 bison'), + (['\u{1f42e}'], '🐮 E0.6 cow face'), + (['\u{1f402}'], '🐂 E1.0 ox'), + (['\u{1f403}'], '🐃 E1.0 water buffalo'), + (['\u{1f404}'], '🐄 E1.0 cow'), + (['\u{1f437}'], '🐷 E0.6 pig face'), + (['\u{1f416}'], '🐖 E1.0 pig'), + (['\u{1f417}'], '🐗 E0.6 boar'), + (['\u{1f43d}'], '🐽 E0.6 pig nose'), + (['\u{1f40f}'], '🐏 E1.0 ram'), + (['\u{1f411}'], '🐑 E0.6 ewe'), + (['\u{1f410}'], '🐐 E1.0 goat'), + (['\u{1f42a}'], '🐪 E1.0 camel'), + (['\u{1f42b}'], '🐫 E0.6 two-hump camel'), + (['\u{1f999}'], '🦙 E11.0 llama'), + (['\u{1f992}'], '🦒 E5.0 giraffe'), + (['\u{1f418}'], '🐘 E0.6 elephant'), + (['\u{1f9a3}'], '🦣 E13.0 mammoth'), + (['\u{1f98f}'], '🦏 E3.0 rhinoceros'), + (['\u{1f99b}'], '🦛 E11.0 hippopotamus'), + (['\u{1f42d}'], '🐭 E0.6 mouse face'), + (['\u{1f401}'], '🐁 E1.0 mouse'), + (['\u{1f400}'], '🐀 E1.0 rat'), + (['\u{1f439}'], '🐹 E0.6 hamster'), + (['\u{1f430}'], '🐰 E0.6 rabbit face'), + (['\u{1f407}'], '🐇 E1.0 rabbit'), + (['\u{1f43f}\ufe0f'], '🐿️ E0.7 chipmunk'), + (['\u{1f43f}'], '🐿 E0.7 chipmunk'), + (['\u{1f9ab}'], '🦫 E13.0 beaver'), + (['\u{1f994}'], '🦔 E5.0 hedgehog'), + (['\u{1f987}'], '🦇 E3.0 bat'), + (['\u{1f43b}'], '🐻 E0.6 bear'), + (['\u{1f43b}\u200d\u2744\ufe0f'], '🐻‍❄️ E13.0 polar bear'), + (['\u{1f43b}\u200d\u2744'], '🐻‍❄ E13.0 polar bear'), + (['\u{1f428}'], '🐨 E0.6 koala'), + (['\u{1f43c}'], '🐼 E0.6 panda'), + (['\u{1f9a5}'], '🦥 E12.0 sloth'), + (['\u{1f9a6}'], '🦦 E12.0 otter'), + (['\u{1f9a8}'], '🦨 E12.0 skunk'), + (['\u{1f998}'], '🦘 E11.0 kangaroo'), + (['\u{1f9a1}'], '🦡 E11.0 badger'), + (['\u{1f43e}'], '🐾 E0.6 paw prints'), + (['\u{1f983}'], '🦃 E1.0 turkey'), + (['\u{1f414}'], '🐔 E0.6 chicken'), + (['\u{1f413}'], '🐓 E1.0 rooster'), + (['\u{1f423}'], '🐣 E0.6 hatching chick'), + (['\u{1f424}'], '🐤 E0.6 baby chick'), + (['\u{1f425}'], '🐥 E0.6 front-facing baby chick'), + (['\u{1f426}'], '🐦 E0.6 bird'), + (['\u{1f427}'], '🐧 E0.6 penguin'), + (['\u{1f54a}\ufe0f'], '🕊️ E0.7 dove'), + (['\u{1f54a}'], '🕊 E0.7 dove'), + (['\u{1f985}'], '🦅 E3.0 eagle'), + (['\u{1f986}'], '🦆 E3.0 duck'), + (['\u{1f9a2}'], '🦢 E11.0 swan'), + (['\u{1f989}'], '🦉 E3.0 owl'), + (['\u{1f9a4}'], '🦤 E13.0 dodo'), + (['\u{1fab6}'], '🪶 E13.0 feather'), + (['\u{1f9a9}'], '🦩 E12.0 flamingo'), + (['\u{1f99a}'], '🦚 E11.0 peacock'), + (['\u{1f99c}'], '🦜 E11.0 parrot'), + (['\u{1fabd}'], '🪽 E15.0 wing'), + (['\u{1f426}\u200d\u2b1b'], '🐦‍⬛ E15.0 black bird'), + (['\u{1fabf}'], '🪿 E15.0 goose'), + (['\u{1f426}\u200d\u{1f525}'], '🐦‍🔥 E15.1 phoenix'), + (['\u{1f438}'], '🐸 E0.6 frog'), + (['\u{1f40a}'], '🐊 E1.0 crocodile'), + (['\u{1f422}'], '🐢 E0.6 turtle'), + (['\u{1f98e}'], '🦎 E3.0 lizard'), + (['\u{1f40d}'], '🐍 E0.6 snake'), + (['\u{1f432}'], '🐲 E0.6 dragon face'), + (['\u{1f409}'], '🐉 E1.0 dragon'), + (['\u{1f995}'], '🦕 E5.0 sauropod'), + (['\u{1f996}'], '🦖 E5.0 T-Rex'), + (['\u{1f433}'], '🐳 E0.6 spouting whale'), + (['\u{1f40b}'], '🐋 E1.0 whale'), + (['\u{1f42c}'], '🐬 E0.6 dolphin'), + (['\u{1f9ad}'], '🦭 E13.0 seal'), + (['\u{1f41f}'], '🐟 E0.6 fish'), + (['\u{1f420}'], '🐠 E0.6 tropical fish'), + (['\u{1f421}'], '🐡 E0.6 blowfish'), + (['\u{1f988}'], '🦈 E3.0 shark'), + (['\u{1f419}'], '🐙 E0.6 octopus'), + (['\u{1f41a}'], '🐚 E0.6 spiral shell'), + (['\u{1fab8}'], '🪸 E14.0 coral'), + (['\u{1fabc}'], '🪼 E15.0 jellyfish'), + (['\u{1f980}'], '🦀 E1.0 crab'), + (['\u{1f99e}'], '🦞 E11.0 lobster'), + (['\u{1f990}'], '🦐 E3.0 shrimp'), + (['\u{1f991}'], '🦑 E3.0 squid'), + (['\u{1f9aa}'], '🦪 E12.0 oyster'), + (['\u{1f40c}'], '🐌 E0.6 snail'), + (['\u{1f98b}'], '🦋 E3.0 butterfly'), + (['\u{1f41b}'], '🐛 E0.6 bug'), + (['\u{1f41c}'], '🐜 E0.6 ant'), + (['\u{1f41d}'], '🐝 E0.6 honeybee'), + (['\u{1fab2}'], '🪲 E13.0 beetle'), + (['\u{1f41e}'], '🐞 E0.6 lady beetle'), + (['\u{1f997}'], '🦗 E5.0 cricket'), + (['\u{1fab3}'], '🪳 E13.0 cockroach'), + (['\u{1f577}\ufe0f'], '🕷️ E0.7 spider'), + (['\u{1f577}'], '🕷 E0.7 spider'), + (['\u{1f578}\ufe0f'], '🕸️ E0.7 spider web'), + (['\u{1f578}'], '🕸 E0.7 spider web'), + (['\u{1f982}'], '🦂 E1.0 scorpion'), + (['\u{1f99f}'], '🦟 E11.0 mosquito'), + (['\u{1fab0}'], '🪰 E13.0 fly'), + (['\u{1fab1}'], '🪱 E13.0 worm'), + (['\u{1f9a0}'], '🦠 E11.0 microbe'), + (['\u{1f490}'], '💐 E0.6 bouquet'), + (['\u{1f338}'], '🌸 E0.6 cherry blossom'), + (['\u{1f4ae}'], '💮 E0.6 white flower'), + (['\u{1fab7}'], '🪷 E14.0 lotus'), + (['\u{1f3f5}\ufe0f'], '🏵️ E0.7 rosette'), + (['\u{1f3f5}'], '🏵 E0.7 rosette'), + (['\u{1f339}'], '🌹 E0.6 rose'), + (['\u{1f940}'], '🥀 E3.0 wilted flower'), + (['\u{1f33a}'], '🌺 E0.6 hibiscus'), + (['\u{1f33b}'], '🌻 E0.6 sunflower'), + (['\u{1f33c}'], '🌼 E0.6 blossom'), + (['\u{1f337}'], '🌷 E0.6 tulip'), + (['\u{1fabb}'], '🪻 E15.0 hyacinth'), + (['\u{1f331}'], '🌱 E0.6 seedling'), + (['\u{1fab4}'], '🪴 E13.0 potted plant'), + (['\u{1f332}'], '🌲 E1.0 evergreen tree'), + (['\u{1f333}'], '🌳 E1.0 deciduous tree'), + (['\u{1f334}'], '🌴 E0.6 palm tree'), + (['\u{1f335}'], '🌵 E0.6 cactus'), + (['\u{1f33e}'], '🌾 E0.6 sheaf of rice'), + (['\u{1f33f}'], '🌿 E0.6 herb'), + (['\u2618\ufe0f'], '☘️ E1.0 shamrock'), + (['\u2618'], '☘ E1.0 shamrock'), + (['\u{1f340}'], '🍀 E0.6 four leaf clover'), + (['\u{1f341}'], '🍁 E0.6 maple leaf'), + (['\u{1f342}'], '🍂 E0.6 fallen leaf'), + (['\u{1f343}'], '🍃 E0.6 leaf fluttering in wind'), + (['\u{1fab9}'], '🪹 E14.0 empty nest'), + (['\u{1faba}'], '🪺 E14.0 nest with eggs'), + (['\u{1f344}'], '🍄 E0.6 mushroom'), + (['\u{1fabe}'], '🪾 E16.0 leafless tree'), + (['\u{1f347}'], '🍇 E0.6 grapes'), + (['\u{1f348}'], '🍈 E0.6 melon'), + (['\u{1f349}'], '🍉 E0.6 watermelon'), + (['\u{1f34a}'], '🍊 E0.6 tangerine'), + (['\u{1f34b}'], '🍋 E1.0 lemon'), + (['\u{1f34b}\u200d\u{1f7e9}'], '🍋‍🟩 E15.1 lime'), + (['\u{1f34c}'], '🍌 E0.6 banana'), + (['\u{1f34d}'], '🍍 E0.6 pineapple'), + (['\u{1f96d}'], '🥭 E11.0 mango'), + (['\u{1f34e}'], '🍎 E0.6 red apple'), + (['\u{1f34f}'], '🍏 E0.6 green apple'), + (['\u{1f350}'], '🍐 E1.0 pear'), + (['\u{1f351}'], '🍑 E0.6 peach'), + (['\u{1f352}'], '🍒 E0.6 cherries'), + (['\u{1f353}'], '🍓 E0.6 strawberry'), + (['\u{1fad0}'], '🫐 E13.0 blueberries'), + (['\u{1f95d}'], '🥝 E3.0 kiwi fruit'), + (['\u{1f345}'], '🍅 E0.6 tomato'), + (['\u{1fad2}'], '🫒 E13.0 olive'), + (['\u{1f965}'], '🥥 E5.0 coconut'), + (['\u{1f951}'], '🥑 E3.0 avocado'), + (['\u{1f346}'], '🍆 E0.6 eggplant'), + (['\u{1f954}'], '🥔 E3.0 potato'), + (['\u{1f955}'], '🥕 E3.0 carrot'), + (['\u{1f33d}'], '🌽 E0.6 ear of corn'), + (['\u{1f336}\ufe0f'], '🌶️ E0.7 hot pepper'), + (['\u{1f336}'], '🌶 E0.7 hot pepper'), + (['\u{1fad1}'], '🫑 E13.0 bell pepper'), + (['\u{1f952}'], '🥒 E3.0 cucumber'), + (['\u{1f96c}'], '🥬 E11.0 leafy green'), + (['\u{1f966}'], '🥦 E5.0 broccoli'), + (['\u{1f9c4}'], '🧄 E12.0 garlic'), + (['\u{1f9c5}'], '🧅 E12.0 onion'), + (['\u{1f95c}'], '🥜 E3.0 peanuts'), + (['\u{1fad8}'], '🫘 E14.0 beans'), + (['\u{1f330}'], '🌰 E0.6 chestnut'), + (['\u{1fada}'], '🫚 E15.0 ginger root'), + (['\u{1fadb}'], '🫛 E15.0 pea pod'), + (['\u{1f344}\u200d\u{1f7eb}'], '🍄‍🟫 E15.1 brown mushroom'), + (['\u{1fadc}'], '🫜 E16.0 root vegetable'), + (['\u{1f35e}'], '🍞 E0.6 bread'), + (['\u{1f950}'], '🥐 E3.0 croissant'), + (['\u{1f956}'], '🥖 E3.0 baguette bread'), + (['\u{1fad3}'], '🫓 E13.0 flatbread'), + (['\u{1f968}'], '🥨 E5.0 pretzel'), + (['\u{1f96f}'], '🥯 E11.0 bagel'), + (['\u{1f95e}'], '🥞 E3.0 pancakes'), + (['\u{1f9c7}'], '🧇 E12.0 waffle'), + (['\u{1f9c0}'], '🧀 E1.0 cheese wedge'), + (['\u{1f356}'], '🍖 E0.6 meat on bone'), + (['\u{1f357}'], '🍗 E0.6 poultry leg'), + (['\u{1f969}'], '🥩 E5.0 cut of meat'), + (['\u{1f953}'], '🥓 E3.0 bacon'), + (['\u{1f354}'], '🍔 E0.6 hamburger'), + (['\u{1f35f}'], '🍟 E0.6 french fries'), + (['\u{1f355}'], '🍕 E0.6 pizza'), + (['\u{1f32d}'], '🌭 E1.0 hot dog'), + (['\u{1f96a}'], '🥪 E5.0 sandwich'), + (['\u{1f32e}'], '🌮 E1.0 taco'), + (['\u{1f32f}'], '🌯 E1.0 burrito'), + (['\u{1fad4}'], '🫔 E13.0 tamale'), + (['\u{1f959}'], '🥙 E3.0 stuffed flatbread'), + (['\u{1f9c6}'], '🧆 E12.0 falafel'), + (['\u{1f95a}'], '🥚 E3.0 egg'), + (['\u{1f373}'], '🍳 E0.6 cooking'), + (['\u{1f958}'], '🥘 E3.0 shallow pan of food'), + (['\u{1f372}'], '🍲 E0.6 pot of food'), + (['\u{1fad5}'], '🫕 E13.0 fondue'), + (['\u{1f963}'], '🥣 E5.0 bowl with spoon'), + (['\u{1f957}'], '🥗 E3.0 green salad'), + (['\u{1f37f}'], '🍿 E1.0 popcorn'), + (['\u{1f9c8}'], '🧈 E12.0 butter'), + (['\u{1f9c2}'], '🧂 E11.0 salt'), + (['\u{1f96b}'], '🥫 E5.0 canned food'), + (['\u{1f371}'], '🍱 E0.6 bento box'), + (['\u{1f358}'], '🍘 E0.6 rice cracker'), + (['\u{1f359}'], '🍙 E0.6 rice ball'), + (['\u{1f35a}'], '🍚 E0.6 cooked rice'), + (['\u{1f35b}'], '🍛 E0.6 curry rice'), + (['\u{1f35c}'], '🍜 E0.6 steaming bowl'), + (['\u{1f35d}'], '🍝 E0.6 spaghetti'), + (['\u{1f360}'], '🍠 E0.6 roasted sweet potato'), + (['\u{1f362}'], '🍢 E0.6 oden'), + (['\u{1f363}'], '🍣 E0.6 sushi'), + (['\u{1f364}'], '🍤 E0.6 fried shrimp'), + (['\u{1f365}'], '🍥 E0.6 fish cake with swirl'), + (['\u{1f96e}'], '🥮 E11.0 moon cake'), + (['\u{1f361}'], '🍡 E0.6 dango'), + (['\u{1f95f}'], '🥟 E5.0 dumpling'), + (['\u{1f960}'], '🥠 E5.0 fortune cookie'), + (['\u{1f961}'], '🥡 E5.0 takeout box'), + (['\u{1f366}'], '🍦 E0.6 soft ice cream'), + (['\u{1f367}'], '🍧 E0.6 shaved ice'), + (['\u{1f368}'], '🍨 E0.6 ice cream'), + (['\u{1f369}'], '🍩 E0.6 doughnut'), + (['\u{1f36a}'], '🍪 E0.6 cookie'), + (['\u{1f382}'], '🎂 E0.6 birthday cake'), + (['\u{1f370}'], '🍰 E0.6 shortcake'), + (['\u{1f9c1}'], '🧁 E11.0 cupcake'), + (['\u{1f967}'], '🥧 E5.0 pie'), + (['\u{1f36b}'], '🍫 E0.6 chocolate bar'), + (['\u{1f36c}'], '🍬 E0.6 candy'), + (['\u{1f36d}'], '🍭 E0.6 lollipop'), + (['\u{1f36e}'], '🍮 E0.6 custard'), + (['\u{1f36f}'], '🍯 E0.6 honey pot'), + (['\u{1f37c}'], '🍼 E1.0 baby bottle'), + (['\u{1f95b}'], '🥛 E3.0 glass of milk'), + (['\u2615'], '☕ E0.6 hot beverage'), + (['\u{1fad6}'], '🫖 E13.0 teapot'), + (['\u{1f375}'], '🍵 E0.6 teacup without handle'), + (['\u{1f376}'], '🍶 E0.6 sake'), + (['\u{1f37e}'], '🍾 E1.0 bottle with popping cork'), + (['\u{1f377}'], '🍷 E0.6 wine glass'), + (['\u{1f378}'], '🍸 E0.6 cocktail glass'), + (['\u{1f379}'], '🍹 E0.6 tropical drink'), + (['\u{1f37a}'], '🍺 E0.6 beer mug'), + (['\u{1f37b}'], '🍻 E0.6 clinking beer mugs'), + (['\u{1f942}'], '🥂 E3.0 clinking glasses'), + (['\u{1f943}'], '🥃 E3.0 tumbler glass'), + (['\u{1fad7}'], '🫗 E14.0 pouring liquid'), + (['\u{1f964}'], '🥤 E5.0 cup with straw'), + (['\u{1f9cb}'], '🧋 E13.0 bubble tea'), + (['\u{1f9c3}'], '🧃 E12.0 beverage box'), + (['\u{1f9c9}'], '🧉 E12.0 mate'), + (['\u{1f9ca}'], '🧊 E12.0 ice'), + (['\u{1f962}'], '🥢 E5.0 chopsticks'), + (['\u{1f37d}\ufe0f'], '🍽️ E0.7 fork and knife with plate'), + (['\u{1f37d}'], '🍽 E0.7 fork and knife with plate'), + (['\u{1f374}'], '🍴 E0.6 fork and knife'), + (['\u{1f944}'], '🥄 E3.0 spoon'), + (['\u{1f52a}'], '🔪 E0.6 kitchen knife'), + (['\u{1fad9}'], '🫙 E14.0 jar'), + (['\u{1f3fa}'], '🏺 E1.0 amphora'), + (['\u{1f30d}'], '🌍 E0.7 globe showing Europe-Africa'), + (['\u{1f30e}'], '🌎 E0.7 globe showing Americas'), + (['\u{1f30f}'], '🌏 E0.6 globe showing Asia-Australia'), + (['\u{1f310}'], '🌐 E1.0 globe with meridians'), + (['\u{1f5fa}\ufe0f'], '🗺️ E0.7 world map'), + (['\u{1f5fa}'], '🗺 E0.7 world map'), + (['\u{1f5fe}'], '🗾 E0.6 map of Japan'), + (['\u{1f9ed}'], '🧭 E11.0 compass'), + (['\u{1f3d4}\ufe0f'], '🏔️ E0.7 snow-capped mountain'), + (['\u{1f3d4}'], '🏔 E0.7 snow-capped mountain'), + (['\u26f0\ufe0f'], '⛰️ E0.7 mountain'), + (['\u26f0'], '⛰ E0.7 mountain'), + (['\u{1f30b}'], '🌋 E0.6 volcano'), + (['\u{1f5fb}'], '🗻 E0.6 mount fuji'), + (['\u{1f3d5}\ufe0f'], '🏕️ E0.7 camping'), + (['\u{1f3d5}'], '🏕 E0.7 camping'), + (['\u{1f3d6}\ufe0f'], '🏖️ E0.7 beach with umbrella'), + (['\u{1f3d6}'], '🏖 E0.7 beach with umbrella'), + (['\u{1f3dc}\ufe0f'], '🏜️ E0.7 desert'), + (['\u{1f3dc}'], '🏜 E0.7 desert'), + (['\u{1f3dd}\ufe0f'], '🏝️ E0.7 desert island'), + (['\u{1f3dd}'], '🏝 E0.7 desert island'), + (['\u{1f3de}\ufe0f'], '🏞️ E0.7 national park'), + (['\u{1f3de}'], '🏞 E0.7 national park'), + (['\u{1f3df}\ufe0f'], '🏟️ E0.7 stadium'), + (['\u{1f3df}'], '🏟 E0.7 stadium'), + (['\u{1f3db}\ufe0f'], '🏛️ E0.7 classical building'), + (['\u{1f3db}'], '🏛 E0.7 classical building'), + (['\u{1f3d7}\ufe0f'], '🏗️ E0.7 building construction'), + (['\u{1f3d7}'], '🏗 E0.7 building construction'), + (['\u{1f9f1}'], '🧱 E11.0 brick'), + (['\u{1faa8}'], '🪨 E13.0 rock'), + (['\u{1fab5}'], '🪵 E13.0 wood'), + (['\u{1f6d6}'], '🛖 E13.0 hut'), + (['\u{1f3d8}\ufe0f'], '🏘️ E0.7 houses'), + (['\u{1f3d8}'], '🏘 E0.7 houses'), + (['\u{1f3da}\ufe0f'], '🏚️ E0.7 derelict house'), + (['\u{1f3da}'], '🏚 E0.7 derelict house'), + (['\u{1f3e0}'], '🏠 E0.6 house'), + (['\u{1f3e1}'], '🏡 E0.6 house with garden'), + (['\u{1f3e2}'], '🏢 E0.6 office building'), + (['\u{1f3e3}'], '🏣 E0.6 Japanese post office'), + (['\u{1f3e4}'], '🏤 E1.0 post office'), + (['\u{1f3e5}'], '🏥 E0.6 hospital'), + (['\u{1f3e6}'], '🏦 E0.6 bank'), + (['\u{1f3e8}'], '🏨 E0.6 hotel'), + (['\u{1f3e9}'], '🏩 E0.6 love hotel'), + (['\u{1f3ea}'], '🏪 E0.6 convenience store'), + (['\u{1f3eb}'], '🏫 E0.6 school'), + (['\u{1f3ec}'], '🏬 E0.6 department store'), + (['\u{1f3ed}'], '🏭 E0.6 factory'), + (['\u{1f3ef}'], '🏯 E0.6 Japanese castle'), + (['\u{1f3f0}'], '🏰 E0.6 castle'), + (['\u{1f492}'], '💒 E0.6 wedding'), + (['\u{1f5fc}'], '🗼 E0.6 Tokyo tower'), + (['\u{1f5fd}'], '🗽 E0.6 Statue of Liberty'), + (['\u26ea'], '⛪ E0.6 church'), + (['\u{1f54c}'], '🕌 E1.0 mosque'), + (['\u{1f6d5}'], '🛕 E12.0 hindu temple'), + (['\u{1f54d}'], '🕍 E1.0 synagogue'), + (['\u26e9\ufe0f'], '⛩️ E0.7 shinto shrine'), + (['\u26e9'], '⛩ E0.7 shinto shrine'), + (['\u{1f54b}'], '🕋 E1.0 kaaba'), + (['\u26f2'], '⛲ E0.6 fountain'), + (['\u26fa'], '⛺ E0.6 tent'), + (['\u{1f301}'], '🌁 E0.6 foggy'), + (['\u{1f303}'], '🌃 E0.6 night with stars'), + (['\u{1f3d9}\ufe0f'], '🏙️ E0.7 cityscape'), + (['\u{1f3d9}'], '🏙 E0.7 cityscape'), + (['\u{1f304}'], '🌄 E0.6 sunrise over mountains'), + (['\u{1f305}'], '🌅 E0.6 sunrise'), + (['\u{1f306}'], '🌆 E0.6 cityscape at dusk'), + (['\u{1f307}'], '🌇 E0.6 sunset'), + (['\u{1f309}'], '🌉 E0.6 bridge at night'), + (['\u2668\ufe0f'], '♨️ E0.6 hot springs'), + (['\u2668'], '♨ E0.6 hot springs'), + (['\u{1f3a0}'], '🎠 E0.6 carousel horse'), + (['\u{1f6dd}'], '🛝 E14.0 playground slide'), + (['\u{1f3a1}'], '🎡 E0.6 ferris wheel'), + (['\u{1f3a2}'], '🎢 E0.6 roller coaster'), + (['\u{1f488}'], '💈 E0.6 barber pole'), + (['\u{1f3aa}'], '🎪 E0.6 circus tent'), + (['\u{1f682}'], '🚂 E1.0 locomotive'), + (['\u{1f683}'], '🚃 E0.6 railway car'), + (['\u{1f684}'], '🚄 E0.6 high-speed train'), + (['\u{1f685}'], '🚅 E0.6 bullet train'), + (['\u{1f686}'], '🚆 E1.0 train'), + (['\u{1f687}'], '🚇 E0.6 metro'), + (['\u{1f688}'], '🚈 E1.0 light rail'), + (['\u{1f689}'], '🚉 E0.6 station'), + (['\u{1f68a}'], '🚊 E1.0 tram'), + (['\u{1f69d}'], '🚝 E1.0 monorail'), + (['\u{1f69e}'], '🚞 E1.0 mountain railway'), + (['\u{1f68b}'], '🚋 E1.0 tram car'), + (['\u{1f68c}'], '🚌 E0.6 bus'), + (['\u{1f68d}'], '🚍 E0.7 oncoming bus'), + (['\u{1f68e}'], '🚎 E1.0 trolleybus'), + (['\u{1f690}'], '🚐 E1.0 minibus'), + (['\u{1f691}'], '🚑 E0.6 ambulance'), + (['\u{1f692}'], '🚒 E0.6 fire engine'), + (['\u{1f693}'], '🚓 E0.6 police car'), + (['\u{1f694}'], '🚔 E0.7 oncoming police car'), + (['\u{1f695}'], '🚕 E0.6 taxi'), + (['\u{1f696}'], '🚖 E1.0 oncoming taxi'), + (['\u{1f697}'], '🚗 E0.6 automobile'), + (['\u{1f698}'], '🚘 E0.7 oncoming automobile'), + (['\u{1f699}'], '🚙 E0.6 sport utility vehicle'), + (['\u{1f6fb}'], '🛻 E13.0 pickup truck'), + (['\u{1f69a}'], '🚚 E0.6 delivery truck'), + (['\u{1f69b}'], '🚛 E1.0 articulated lorry'), + (['\u{1f69c}'], '🚜 E1.0 tractor'), + (['\u{1f3ce}\ufe0f'], '🏎️ E0.7 racing car'), + (['\u{1f3ce}'], '🏎 E0.7 racing car'), + (['\u{1f3cd}\ufe0f'], '🏍️ E0.7 motorcycle'), + (['\u{1f3cd}'], '🏍 E0.7 motorcycle'), + (['\u{1f6f5}'], '🛵 E3.0 motor scooter'), + (['\u{1f9bd}'], '🦽 E12.0 manual wheelchair'), + (['\u{1f9bc}'], '🦼 E12.0 motorized wheelchair'), + (['\u{1f6fa}'], '🛺 E12.0 auto rickshaw'), + (['\u{1f6b2}'], '🚲 E0.6 bicycle'), + (['\u{1f6f4}'], '🛴 E3.0 kick scooter'), + (['\u{1f6f9}'], '🛹 E11.0 skateboard'), + (['\u{1f6fc}'], '🛼 E13.0 roller skate'), + (['\u{1f68f}'], '🚏 E0.6 bus stop'), + (['\u{1f6e3}\ufe0f'], '🛣️ E0.7 motorway'), + (['\u{1f6e3}'], '🛣 E0.7 motorway'), + (['\u{1f6e4}\ufe0f'], '🛤️ E0.7 railway track'), + (['\u{1f6e4}'], '🛤 E0.7 railway track'), + (['\u{1f6e2}\ufe0f'], '🛢️ E0.7 oil drum'), + (['\u{1f6e2}'], '🛢 E0.7 oil drum'), + (['\u26fd'], '⛽ E0.6 fuel pump'), + (['\u{1f6de}'], '🛞 E14.0 wheel'), + (['\u{1f6a8}'], '🚨 E0.6 police car light'), + (['\u{1f6a5}'], '🚥 E0.6 horizontal traffic light'), + (['\u{1f6a6}'], '🚦 E1.0 vertical traffic light'), + (['\u{1f6d1}'], '🛑 E3.0 stop sign'), + (['\u{1f6a7}'], '🚧 E0.6 construction'), + (['\u2693'], '⚓ E0.6 anchor'), + (['\u{1f6df}'], '🛟 E14.0 ring buoy'), + (['\u26f5'], '⛵ E0.6 sailboat'), + (['\u{1f6f6}'], '🛶 E3.0 canoe'), + (['\u{1f6a4}'], '🚤 E0.6 speedboat'), + (['\u{1f6f3}\ufe0f'], '🛳️ E0.7 passenger ship'), + (['\u{1f6f3}'], '🛳 E0.7 passenger ship'), + (['\u26f4\ufe0f'], '⛴️ E0.7 ferry'), + (['\u26f4'], '⛴ E0.7 ferry'), + (['\u{1f6e5}\ufe0f'], '🛥️ E0.7 motor boat'), + (['\u{1f6e5}'], '🛥 E0.7 motor boat'), + (['\u{1f6a2}'], '🚢 E0.6 ship'), + (['\u2708\ufe0f'], '✈️ E0.6 airplane'), + (['\u2708'], '✈ E0.6 airplane'), + (['\u{1f6e9}\ufe0f'], '🛩️ E0.7 small airplane'), + (['\u{1f6e9}'], '🛩 E0.7 small airplane'), + (['\u{1f6eb}'], '🛫 E1.0 airplane departure'), + (['\u{1f6ec}'], '🛬 E1.0 airplane arrival'), + (['\u{1fa82}'], '🪂 E12.0 parachute'), + (['\u{1f4ba}'], '💺 E0.6 seat'), + (['\u{1f681}'], '🚁 E1.0 helicopter'), + (['\u{1f69f}'], '🚟 E1.0 suspension railway'), + (['\u{1f6a0}'], '🚠 E1.0 mountain cableway'), + (['\u{1f6a1}'], '🚡 E1.0 aerial tramway'), + (['\u{1f6f0}\ufe0f'], '🛰️ E0.7 satellite'), + (['\u{1f6f0}'], '🛰 E0.7 satellite'), + (['\u{1f680}'], '🚀 E0.6 rocket'), + (['\u{1f6f8}'], '🛸 E5.0 flying saucer'), + (['\u{1f6ce}\ufe0f'], '🛎️ E0.7 bellhop bell'), + (['\u{1f6ce}'], '🛎 E0.7 bellhop bell'), + (['\u{1f9f3}'], '🧳 E11.0 luggage'), + (['\u231b'], '⌛ E0.6 hourglass done'), + (['\u23f3'], '⏳ E0.6 hourglass not done'), + (['\u231a'], '⌚ E0.6 watch'), + (['\u23f0'], '⏰ E0.6 alarm clock'), + (['\u23f1\ufe0f'], '⏱️ E1.0 stopwatch'), + (['\u23f1'], '⏱ E1.0 stopwatch'), + (['\u23f2\ufe0f'], '⏲️ E1.0 timer clock'), + (['\u23f2'], '⏲ E1.0 timer clock'), + (['\u{1f570}\ufe0f'], '🕰️ E0.7 mantelpiece clock'), + (['\u{1f570}'], '🕰 E0.7 mantelpiece clock'), + (['\u{1f55b}'], '🕛 E0.6 twelve o’clock'), + (['\u{1f567}'], '🕧 E0.7 twelve-thirty'), + (['\u{1f550}'], '🕐 E0.6 one o’clock'), + (['\u{1f55c}'], '🕜 E0.7 one-thirty'), + (['\u{1f551}'], '🕑 E0.6 two o’clock'), + (['\u{1f55d}'], '🕝 E0.7 two-thirty'), + (['\u{1f552}'], '🕒 E0.6 three o’clock'), + (['\u{1f55e}'], '🕞 E0.7 three-thirty'), + (['\u{1f553}'], '🕓 E0.6 four o’clock'), + (['\u{1f55f}'], '🕟 E0.7 four-thirty'), + (['\u{1f554}'], '🕔 E0.6 five o’clock'), + (['\u{1f560}'], '🕠 E0.7 five-thirty'), + (['\u{1f555}'], '🕕 E0.6 six o’clock'), + (['\u{1f561}'], '🕡 E0.7 six-thirty'), + (['\u{1f556}'], '🕖 E0.6 seven o’clock'), + (['\u{1f562}'], '🕢 E0.7 seven-thirty'), + (['\u{1f557}'], '🕗 E0.6 eight o’clock'), + (['\u{1f563}'], '🕣 E0.7 eight-thirty'), + (['\u{1f558}'], '🕘 E0.6 nine o’clock'), + (['\u{1f564}'], '🕤 E0.7 nine-thirty'), + (['\u{1f559}'], '🕙 E0.6 ten o’clock'), + (['\u{1f565}'], '🕥 E0.7 ten-thirty'), + (['\u{1f55a}'], '🕚 E0.6 eleven o’clock'), + (['\u{1f566}'], '🕦 E0.7 eleven-thirty'), + (['\u{1f311}'], '🌑 E0.6 new moon'), + (['\u{1f312}'], '🌒 E1.0 waxing crescent moon'), + (['\u{1f313}'], '🌓 E0.6 first quarter moon'), + (['\u{1f314}'], '🌔 E0.6 waxing gibbous moon'), + (['\u{1f315}'], '🌕 E0.6 full moon'), + (['\u{1f316}'], '🌖 E1.0 waning gibbous moon'), + (['\u{1f317}'], '🌗 E1.0 last quarter moon'), + (['\u{1f318}'], '🌘 E1.0 waning crescent moon'), + (['\u{1f319}'], '🌙 E0.6 crescent moon'), + (['\u{1f31a}'], '🌚 E1.0 new moon face'), + (['\u{1f31b}'], '🌛 E0.6 first quarter moon face'), + (['\u{1f31c}'], '🌜 E0.7 last quarter moon face'), + (['\u{1f321}\ufe0f'], '🌡️ E0.7 thermometer'), + (['\u{1f321}'], '🌡 E0.7 thermometer'), + (['\u2600\ufe0f'], '☀️ E0.6 sun'), + (['\u2600'], '☀ E0.6 sun'), + (['\u{1f31d}'], '🌝 E1.0 full moon face'), + (['\u{1f31e}'], '🌞 E1.0 sun with face'), + (['\u{1fa90}'], '🪐 E12.0 ringed planet'), + (['\u2b50'], '⭐ E0.6 star'), + (['\u{1f31f}'], '🌟 E0.6 glowing star'), + (['\u{1f320}'], '🌠 E0.6 shooting star'), + (['\u{1f30c}'], '🌌 E0.6 milky way'), + (['\u2601\ufe0f'], '☁️ E0.6 cloud'), + (['\u2601'], '☁ E0.6 cloud'), + (['\u26c5'], '⛅ E0.6 sun behind cloud'), + (['\u26c8\ufe0f'], '⛈️ E0.7 cloud with lightning and rain'), + (['\u26c8'], '⛈ E0.7 cloud with lightning and rain'), + (['\u{1f324}\ufe0f'], '🌤️ E0.7 sun behind small cloud'), + (['\u{1f324}'], '🌤 E0.7 sun behind small cloud'), + (['\u{1f325}\ufe0f'], '🌥️ E0.7 sun behind large cloud'), + (['\u{1f325}'], '🌥 E0.7 sun behind large cloud'), + (['\u{1f326}\ufe0f'], '🌦️ E0.7 sun behind rain cloud'), + (['\u{1f326}'], '🌦 E0.7 sun behind rain cloud'), + (['\u{1f327}\ufe0f'], '🌧️ E0.7 cloud with rain'), + (['\u{1f327}'], '🌧 E0.7 cloud with rain'), + (['\u{1f328}\ufe0f'], '🌨️ E0.7 cloud with snow'), + (['\u{1f328}'], '🌨 E0.7 cloud with snow'), + (['\u{1f329}\ufe0f'], '🌩️ E0.7 cloud with lightning'), + (['\u{1f329}'], '🌩 E0.7 cloud with lightning'), + (['\u{1f32a}\ufe0f'], '🌪️ E0.7 tornado'), + (['\u{1f32a}'], '🌪 E0.7 tornado'), + (['\u{1f32b}\ufe0f'], '🌫️ E0.7 fog'), + (['\u{1f32b}'], '🌫 E0.7 fog'), + (['\u{1f32c}\ufe0f'], '🌬️ E0.7 wind face'), + (['\u{1f32c}'], '🌬 E0.7 wind face'), + (['\u{1f300}'], '🌀 E0.6 cyclone'), + (['\u{1f308}'], '🌈 E0.6 rainbow'), + (['\u{1f302}'], '🌂 E0.6 closed umbrella'), + (['\u2602\ufe0f'], '☂️ E0.7 umbrella'), + (['\u2602'], '☂ E0.7 umbrella'), + (['\u2614'], '☔ E0.6 umbrella with rain drops'), + (['\u26f1\ufe0f'], '⛱️ E0.7 umbrella on ground'), + (['\u26f1'], '⛱ E0.7 umbrella on ground'), + (['\u26a1'], '⚡ E0.6 high voltage'), + (['\u2744\ufe0f'], '❄️ E0.6 snowflake'), + (['\u2744'], '❄ E0.6 snowflake'), + (['\u2603\ufe0f'], '☃️ E0.7 snowman'), + (['\u2603'], '☃ E0.7 snowman'), + (['\u26c4'], '⛄ E0.6 snowman without snow'), + (['\u2604\ufe0f'], '☄️ E1.0 comet'), + (['\u2604'], '☄ E1.0 comet'), + (['\u{1f525}'], '🔥 E0.6 fire'), + (['\u{1f4a7}'], '💧 E0.6 droplet'), + (['\u{1f30a}'], '🌊 E0.6 water wave'), + (['\u{1f383}'], '🎃 E0.6 jack-o-lantern'), + (['\u{1f384}'], '🎄 E0.6 Christmas tree'), + (['\u{1f386}'], '🎆 E0.6 fireworks'), + (['\u{1f387}'], '🎇 E0.6 sparkler'), + (['\u{1f9e8}'], '🧨 E11.0 firecracker'), + (['\u2728'], '✨ E0.6 sparkles'), + (['\u{1f388}'], '🎈 E0.6 balloon'), + (['\u{1f389}'], '🎉 E0.6 party popper'), + (['\u{1f38a}'], '🎊 E0.6 confetti ball'), + (['\u{1f38b}'], '🎋 E0.6 tanabata tree'), + (['\u{1f38d}'], '🎍 E0.6 pine decoration'), + (['\u{1f38e}'], '🎎 E0.6 Japanese dolls'), + (['\u{1f38f}'], '🎏 E0.6 carp streamer'), + (['\u{1f390}'], '🎐 E0.6 wind chime'), + (['\u{1f391}'], '🎑 E0.6 moon viewing ceremony'), + (['\u{1f9e7}'], '🧧 E11.0 red envelope'), + (['\u{1f380}'], '🎀 E0.6 ribbon'), + (['\u{1f381}'], '🎁 E0.6 wrapped gift'), + (['\u{1f397}\ufe0f'], '🎗️ E0.7 reminder ribbon'), + (['\u{1f397}'], '🎗 E0.7 reminder ribbon'), + (['\u{1f39f}\ufe0f'], '🎟️ E0.7 admission tickets'), + (['\u{1f39f}'], '🎟 E0.7 admission tickets'), + (['\u{1f3ab}'], '🎫 E0.6 ticket'), + (['\u{1f396}\ufe0f'], '🎖️ E0.7 military medal'), + (['\u{1f396}'], '🎖 E0.7 military medal'), + (['\u{1f3c6}'], '🏆 E0.6 trophy'), + (['\u{1f3c5}'], '🏅 E1.0 sports medal'), + (['\u{1f947}'], '🥇 E3.0 1st place medal'), + (['\u{1f948}'], '🥈 E3.0 2nd place medal'), + (['\u{1f949}'], '🥉 E3.0 3rd place medal'), + (['\u26bd'], '⚽ E0.6 soccer ball'), + (['\u26be'], '⚾ E0.6 baseball'), + (['\u{1f94e}'], '🥎 E11.0 softball'), + (['\u{1f3c0}'], '🏀 E0.6 basketball'), + (['\u{1f3d0}'], '🏐 E1.0 volleyball'), + (['\u{1f3c8}'], '🏈 E0.6 american football'), + (['\u{1f3c9}'], '🏉 E1.0 rugby football'), + (['\u{1f3be}'], '🎾 E0.6 tennis'), + (['\u{1f94f}'], '🥏 E11.0 flying disc'), + (['\u{1f3b3}'], '🎳 E0.6 bowling'), + (['\u{1f3cf}'], '🏏 E1.0 cricket game'), + (['\u{1f3d1}'], '🏑 E1.0 field hockey'), + (['\u{1f3d2}'], '🏒 E1.0 ice hockey'), + (['\u{1f94d}'], '🥍 E11.0 lacrosse'), + (['\u{1f3d3}'], '🏓 E1.0 ping pong'), + (['\u{1f3f8}'], '🏸 E1.0 badminton'), + (['\u{1f94a}'], '🥊 E3.0 boxing glove'), + (['\u{1f94b}'], '🥋 E3.0 martial arts uniform'), + (['\u{1f945}'], '🥅 E3.0 goal net'), + (['\u26f3'], '⛳ E0.6 flag in hole'), + (['\u26f8\ufe0f'], '⛸️ E0.7 ice skate'), + (['\u26f8'], '⛸ E0.7 ice skate'), + (['\u{1f3a3}'], '🎣 E0.6 fishing pole'), + (['\u{1f93f}'], '🤿 E12.0 diving mask'), + (['\u{1f3bd}'], '🎽 E0.6 running shirt'), + (['\u{1f3bf}'], '🎿 E0.6 skis'), + (['\u{1f6f7}'], '🛷 E5.0 sled'), + (['\u{1f94c}'], '🥌 E5.0 curling stone'), + (['\u{1f3af}'], '🎯 E0.6 bullseye'), + (['\u{1fa80}'], '🪀 E12.0 yo-yo'), + (['\u{1fa81}'], '🪁 E12.0 kite'), + (['\u{1f52b}'], '🔫 E0.6 water pistol'), + (['\u{1f3b1}'], '🎱 E0.6 pool 8 ball'), + (['\u{1f52e}'], '🔮 E0.6 crystal ball'), + (['\u{1fa84}'], '🪄 E13.0 magic wand'), + (['\u{1f3ae}'], '🎮 E0.6 video game'), + (['\u{1f579}\ufe0f'], '🕹️ E0.7 joystick'), + (['\u{1f579}'], '🕹 E0.7 joystick'), + (['\u{1f3b0}'], '🎰 E0.6 slot machine'), + (['\u{1f3b2}'], '🎲 E0.6 game die'), + (['\u{1f9e9}'], '🧩 E11.0 puzzle piece'), + (['\u{1f9f8}'], '🧸 E11.0 teddy bear'), + (['\u{1fa85}'], '🪅 E13.0 piñata'), + (['\u{1faa9}'], '🪩 E14.0 mirror ball'), + (['\u{1fa86}'], '🪆 E13.0 nesting dolls'), + (['\u2660\ufe0f'], '♠️ E0.6 spade suit'), + (['\u2660'], '♠ E0.6 spade suit'), + (['\u2665\ufe0f'], '♥️ E0.6 heart suit'), + (['\u2665'], '♥ E0.6 heart suit'), + (['\u2666\ufe0f'], '♦️ E0.6 diamond suit'), + (['\u2666'], '♦ E0.6 diamond suit'), + (['\u2663\ufe0f'], '♣️ E0.6 club suit'), + (['\u2663'], '♣ E0.6 club suit'), + (['\u265f\ufe0f'], '♟️ E11.0 chess pawn'), + (['\u265f'], '♟ E11.0 chess pawn'), + (['\u{1f0cf}'], '🃏 E0.6 joker'), + (['\u{1f004}'], '🀄 E0.6 mahjong red dragon'), + (['\u{1f3b4}'], '🎴 E0.6 flower playing cards'), + (['\u{1f3ad}'], '🎭 E0.6 performing arts'), + (['\u{1f5bc}\ufe0f'], '🖼️ E0.7 framed picture'), + (['\u{1f5bc}'], '🖼 E0.7 framed picture'), + (['\u{1f3a8}'], '🎨 E0.6 artist palette'), + (['\u{1f9f5}'], '🧵 E11.0 thread'), + (['\u{1faa1}'], '🪡 E13.0 sewing needle'), + (['\u{1f9f6}'], '🧶 E11.0 yarn'), + (['\u{1faa2}'], '🪢 E13.0 knot'), + (['\u{1f453}'], '👓 E0.6 glasses'), + (['\u{1f576}\ufe0f'], '🕶️ E0.7 sunglasses'), + (['\u{1f576}'], '🕶 E0.7 sunglasses'), + (['\u{1f97d}'], '🥽 E11.0 goggles'), + (['\u{1f97c}'], '🥼 E11.0 lab coat'), + (['\u{1f9ba}'], '🦺 E12.0 safety vest'), + (['\u{1f454}'], '👔 E0.6 necktie'), + (['\u{1f455}'], '👕 E0.6 t-shirt'), + (['\u{1f456}'], '👖 E0.6 jeans'), + (['\u{1f9e3}'], '🧣 E5.0 scarf'), + (['\u{1f9e4}'], '🧤 E5.0 gloves'), + (['\u{1f9e5}'], '🧥 E5.0 coat'), + (['\u{1f9e6}'], '🧦 E5.0 socks'), + (['\u{1f457}'], '👗 E0.6 dress'), + (['\u{1f458}'], '👘 E0.6 kimono'), + (['\u{1f97b}'], '🥻 E12.0 sari'), + (['\u{1fa71}'], '🩱 E12.0 one-piece swimsuit'), + (['\u{1fa72}'], '🩲 E12.0 briefs'), + (['\u{1fa73}'], '🩳 E12.0 shorts'), + (['\u{1f459}'], '👙 E0.6 bikini'), + (['\u{1f45a}'], '👚 E0.6 woman’s clothes'), + (['\u{1faad}'], '🪭 E15.0 folding hand fan'), + (['\u{1f45b}'], '👛 E0.6 purse'), + (['\u{1f45c}'], '👜 E0.6 handbag'), + (['\u{1f45d}'], '👝 E0.6 clutch bag'), + (['\u{1f6cd}\ufe0f'], '🛍️ E0.7 shopping bags'), + (['\u{1f6cd}'], '🛍 E0.7 shopping bags'), + (['\u{1f392}'], '🎒 E0.6 backpack'), + (['\u{1fa74}'], '🩴 E13.0 thong sandal'), + (['\u{1f45e}'], '👞 E0.6 man’s shoe'), + (['\u{1f45f}'], '👟 E0.6 running shoe'), + (['\u{1f97e}'], '🥾 E11.0 hiking boot'), + (['\u{1f97f}'], '🥿 E11.0 flat shoe'), + (['\u{1f460}'], '👠 E0.6 high-heeled shoe'), + (['\u{1f461}'], '👡 E0.6 woman’s sandal'), + (['\u{1fa70}'], '🩰 E12.0 ballet shoes'), + (['\u{1f462}'], '👢 E0.6 woman’s boot'), + (['\u{1faae}'], '🪮 E15.0 hair pick'), + (['\u{1f451}'], '👑 E0.6 crown'), + (['\u{1f452}'], '👒 E0.6 woman’s hat'), + (['\u{1f3a9}'], '🎩 E0.6 top hat'), + (['\u{1f393}'], '🎓 E0.6 graduation cap'), + (['\u{1f9e2}'], '🧢 E5.0 billed cap'), + (['\u{1fa96}'], '🪖 E13.0 military helmet'), + (['\u26d1\ufe0f'], '⛑️ E0.7 rescue worker’s helmet'), + (['\u26d1'], '⛑ E0.7 rescue worker’s helmet'), + (['\u{1f4ff}'], '📿 E1.0 prayer beads'), + (['\u{1f484}'], '💄 E0.6 lipstick'), + (['\u{1f48d}'], '💍 E0.6 ring'), + (['\u{1f48e}'], '💎 E0.6 gem stone'), + (['\u{1f507}'], '🔇 E1.0 muted speaker'), + (['\u{1f508}'], '🔈 E0.7 speaker low volume'), + (['\u{1f509}'], '🔉 E1.0 speaker medium volume'), + (['\u{1f50a}'], '🔊 E0.6 speaker high volume'), + (['\u{1f4e2}'], '📢 E0.6 loudspeaker'), + (['\u{1f4e3}'], '📣 E0.6 megaphone'), + (['\u{1f4ef}'], '📯 E1.0 postal horn'), + (['\u{1f514}'], '🔔 E0.6 bell'), + (['\u{1f515}'], '🔕 E1.0 bell with slash'), + (['\u{1f3bc}'], '🎼 E0.6 musical score'), + (['\u{1f3b5}'], '🎵 E0.6 musical note'), + (['\u{1f3b6}'], '🎶 E0.6 musical notes'), + (['\u{1f399}\ufe0f'], '🎙️ E0.7 studio microphone'), + (['\u{1f399}'], '🎙 E0.7 studio microphone'), + (['\u{1f39a}\ufe0f'], '🎚️ E0.7 level slider'), + (['\u{1f39a}'], '🎚 E0.7 level slider'), + (['\u{1f39b}\ufe0f'], '🎛️ E0.7 control knobs'), + (['\u{1f39b}'], '🎛 E0.7 control knobs'), + (['\u{1f3a4}'], '🎤 E0.6 microphone'), + (['\u{1f3a7}'], '🎧 E0.6 headphone'), + (['\u{1f4fb}'], '📻 E0.6 radio'), + (['\u{1f3b7}'], '🎷 E0.6 saxophone'), + (['\u{1fa97}'], '🪗 E13.0 accordion'), + (['\u{1f3b8}'], '🎸 E0.6 guitar'), + (['\u{1f3b9}'], '🎹 E0.6 musical keyboard'), + (['\u{1f3ba}'], '🎺 E0.6 trumpet'), + (['\u{1f3bb}'], '🎻 E0.6 violin'), + (['\u{1fa95}'], '🪕 E12.0 banjo'), + (['\u{1f941}'], '🥁 E3.0 drum'), + (['\u{1fa98}'], '🪘 E13.0 long drum'), + (['\u{1fa87}'], '🪇 E15.0 maracas'), + (['\u{1fa88}'], '🪈 E15.0 flute'), + (['\u{1fa89}'], '🪉 E16.0 harp'), + (['\u{1f4f1}'], '📱 E0.6 mobile phone'), + (['\u{1f4f2}'], '📲 E0.6 mobile phone with arrow'), + (['\u260e\ufe0f'], '☎️ E0.6 telephone'), + (['\u260e'], '☎ E0.6 telephone'), + (['\u{1f4de}'], '📞 E0.6 telephone receiver'), + (['\u{1f4df}'], '📟 E0.6 pager'), + (['\u{1f4e0}'], '📠 E0.6 fax machine'), + (['\u{1f50b}'], '🔋 E0.6 battery'), + (['\u{1faab}'], '🪫 E14.0 low battery'), + (['\u{1f50c}'], '🔌 E0.6 electric plug'), + (['\u{1f4bb}'], '💻 E0.6 laptop'), + (['\u{1f5a5}\ufe0f'], '🖥️ E0.7 desktop computer'), + (['\u{1f5a5}'], '🖥 E0.7 desktop computer'), + (['\u{1f5a8}\ufe0f'], '🖨️ E0.7 printer'), + (['\u{1f5a8}'], '🖨 E0.7 printer'), + (['\u2328\ufe0f'], '⌨️ E1.0 keyboard'), + (['\u2328'], '⌨ E1.0 keyboard'), + (['\u{1f5b1}\ufe0f'], '🖱️ E0.7 computer mouse'), + (['\u{1f5b1}'], '🖱 E0.7 computer mouse'), + (['\u{1f5b2}\ufe0f'], '🖲️ E0.7 trackball'), + (['\u{1f5b2}'], '🖲 E0.7 trackball'), + (['\u{1f4bd}'], '💽 E0.6 computer disk'), + (['\u{1f4be}'], '💾 E0.6 floppy disk'), + (['\u{1f4bf}'], '💿 E0.6 optical disk'), + (['\u{1f4c0}'], '📀 E0.6 dvd'), + (['\u{1f9ee}'], '🧮 E11.0 abacus'), + (['\u{1f3a5}'], '🎥 E0.6 movie camera'), + (['\u{1f39e}\ufe0f'], '🎞️ E0.7 film frames'), + (['\u{1f39e}'], '🎞 E0.7 film frames'), + (['\u{1f4fd}\ufe0f'], '📽️ E0.7 film projector'), + (['\u{1f4fd}'], '📽 E0.7 film projector'), + (['\u{1f3ac}'], '🎬 E0.6 clapper board'), + (['\u{1f4fa}'], '📺 E0.6 television'), + (['\u{1f4f7}'], '📷 E0.6 camera'), + (['\u{1f4f8}'], '📸 E1.0 camera with flash'), + (['\u{1f4f9}'], '📹 E0.6 video camera'), + (['\u{1f4fc}'], '📼 E0.6 videocassette'), + (['\u{1f50d}'], '🔍 E0.6 magnifying glass tilted left'), + (['\u{1f50e}'], '🔎 E0.6 magnifying glass tilted right'), + (['\u{1f56f}\ufe0f'], '🕯️ E0.7 candle'), + (['\u{1f56f}'], '🕯 E0.7 candle'), + (['\u{1f4a1}'], '💡 E0.6 light bulb'), + (['\u{1f526}'], '🔦 E0.6 flashlight'), + (['\u{1f3ee}'], '🏮 E0.6 red paper lantern'), + (['\u{1fa94}'], '🪔 E12.0 diya lamp'), + (['\u{1f4d4}'], '📔 E0.6 notebook with decorative cover'), + (['\u{1f4d5}'], '📕 E0.6 closed book'), + (['\u{1f4d6}'], '📖 E0.6 open book'), + (['\u{1f4d7}'], '📗 E0.6 green book'), + (['\u{1f4d8}'], '📘 E0.6 blue book'), + (['\u{1f4d9}'], '📙 E0.6 orange book'), + (['\u{1f4da}'], '📚 E0.6 books'), + (['\u{1f4d3}'], '📓 E0.6 notebook'), + (['\u{1f4d2}'], '📒 E0.6 ledger'), + (['\u{1f4c3}'], '📃 E0.6 page with curl'), + (['\u{1f4dc}'], '📜 E0.6 scroll'), + (['\u{1f4c4}'], '📄 E0.6 page facing up'), + (['\u{1f4f0}'], '📰 E0.6 newspaper'), + (['\u{1f5de}\ufe0f'], '🗞️ E0.7 rolled-up newspaper'), + (['\u{1f5de}'], '🗞 E0.7 rolled-up newspaper'), + (['\u{1f4d1}'], '📑 E0.6 bookmark tabs'), + (['\u{1f516}'], '🔖 E0.6 bookmark'), + (['\u{1f3f7}\ufe0f'], '🏷️ E0.7 label'), + (['\u{1f3f7}'], '🏷 E0.7 label'), + (['\u{1f4b0}'], '💰 E0.6 money bag'), + (['\u{1fa99}'], '🪙 E13.0 coin'), + (['\u{1f4b4}'], '💴 E0.6 yen banknote'), + (['\u{1f4b5}'], '💵 E0.6 dollar banknote'), + (['\u{1f4b6}'], '💶 E1.0 euro banknote'), + (['\u{1f4b7}'], '💷 E1.0 pound banknote'), + (['\u{1f4b8}'], '💸 E0.6 money with wings'), + (['\u{1f4b3}'], '💳 E0.6 credit card'), + (['\u{1f9fe}'], '🧾 E11.0 receipt'), + (['\u{1f4b9}'], '💹 E0.6 chart increasing with yen'), + (['\u2709\ufe0f'], '✉️ E0.6 envelope'), + (['\u2709'], '✉ E0.6 envelope'), + (['\u{1f4e7}'], '📧 E0.6 e-mail'), + (['\u{1f4e8}'], '📨 E0.6 incoming envelope'), + (['\u{1f4e9}'], '📩 E0.6 envelope with arrow'), + (['\u{1f4e4}'], '📤 E0.6 outbox tray'), + (['\u{1f4e5}'], '📥 E0.6 inbox tray'), + (['\u{1f4e6}'], '📦 E0.6 package'), + (['\u{1f4eb}'], '📫 E0.6 closed mailbox with raised flag'), + (['\u{1f4ea}'], '📪 E0.6 closed mailbox with lowered flag'), + (['\u{1f4ec}'], '📬 E0.7 open mailbox with raised flag'), + (['\u{1f4ed}'], '📭 E0.7 open mailbox with lowered flag'), + (['\u{1f4ee}'], '📮 E0.6 postbox'), + (['\u{1f5f3}\ufe0f'], '🗳️ E0.7 ballot box with ballot'), + (['\u{1f5f3}'], '🗳 E0.7 ballot box with ballot'), + (['\u270f\ufe0f'], '✏️ E0.6 pencil'), + (['\u270f'], '✏ E0.6 pencil'), + (['\u2712\ufe0f'], '✒️ E0.6 black nib'), + (['\u2712'], '✒ E0.6 black nib'), + (['\u{1f58b}\ufe0f'], '🖋️ E0.7 fountain pen'), + (['\u{1f58b}'], '🖋 E0.7 fountain pen'), + (['\u{1f58a}\ufe0f'], '🖊️ E0.7 pen'), + (['\u{1f58a}'], '🖊 E0.7 pen'), + (['\u{1f58c}\ufe0f'], '🖌️ E0.7 paintbrush'), + (['\u{1f58c}'], '🖌 E0.7 paintbrush'), + (['\u{1f58d}\ufe0f'], '🖍️ E0.7 crayon'), + (['\u{1f58d}'], '🖍 E0.7 crayon'), + (['\u{1f4dd}'], '📝 E0.6 memo'), + (['\u{1f4bc}'], '💼 E0.6 briefcase'), + (['\u{1f4c1}'], '📁 E0.6 file folder'), + (['\u{1f4c2}'], '📂 E0.6 open file folder'), + (['\u{1f5c2}\ufe0f'], '🗂️ E0.7 card index dividers'), + (['\u{1f5c2}'], '🗂 E0.7 card index dividers'), + (['\u{1f4c5}'], '📅 E0.6 calendar'), + (['\u{1f4c6}'], '📆 E0.6 tear-off calendar'), + (['\u{1f5d2}\ufe0f'], '🗒️ E0.7 spiral notepad'), + (['\u{1f5d2}'], '🗒 E0.7 spiral notepad'), + (['\u{1f5d3}\ufe0f'], '🗓️ E0.7 spiral calendar'), + (['\u{1f5d3}'], '🗓 E0.7 spiral calendar'), + (['\u{1f4c7}'], '📇 E0.6 card index'), + (['\u{1f4c8}'], '📈 E0.6 chart increasing'), + (['\u{1f4c9}'], '📉 E0.6 chart decreasing'), + (['\u{1f4ca}'], '📊 E0.6 bar chart'), + (['\u{1f4cb}'], '📋 E0.6 clipboard'), + (['\u{1f4cc}'], '📌 E0.6 pushpin'), + (['\u{1f4cd}'], '📍 E0.6 round pushpin'), + (['\u{1f4ce}'], '📎 E0.6 paperclip'), + (['\u{1f587}\ufe0f'], '🖇️ E0.7 linked paperclips'), + (['\u{1f587}'], '🖇 E0.7 linked paperclips'), + (['\u{1f4cf}'], '📏 E0.6 straight ruler'), + (['\u{1f4d0}'], '📐 E0.6 triangular ruler'), + (['\u2702\ufe0f'], '✂️ E0.6 scissors'), + (['\u2702'], '✂ E0.6 scissors'), + (['\u{1f5c3}\ufe0f'], '🗃️ E0.7 card file box'), + (['\u{1f5c3}'], '🗃 E0.7 card file box'), + (['\u{1f5c4}\ufe0f'], '🗄️ E0.7 file cabinet'), + (['\u{1f5c4}'], '🗄 E0.7 file cabinet'), + (['\u{1f5d1}\ufe0f'], '🗑️ E0.7 wastebasket'), + (['\u{1f5d1}'], '🗑 E0.7 wastebasket'), + (['\u{1f512}'], '🔒 E0.6 locked'), + (['\u{1f513}'], '🔓 E0.6 unlocked'), + (['\u{1f50f}'], '🔏 E0.6 locked with pen'), + (['\u{1f510}'], '🔐 E0.6 locked with key'), + (['\u{1f511}'], '🔑 E0.6 key'), + (['\u{1f5dd}\ufe0f'], '🗝️ E0.7 old key'), + (['\u{1f5dd}'], '🗝 E0.7 old key'), + (['\u{1f528}'], '🔨 E0.6 hammer'), + (['\u{1fa93}'], '🪓 E12.0 axe'), + (['\u26cf\ufe0f'], '⛏️ E0.7 pick'), + (['\u26cf'], '⛏ E0.7 pick'), + (['\u2692\ufe0f'], '⚒️ E1.0 hammer and pick'), + (['\u2692'], '⚒ E1.0 hammer and pick'), + (['\u{1f6e0}\ufe0f'], '🛠️ E0.7 hammer and wrench'), + (['\u{1f6e0}'], '🛠 E0.7 hammer and wrench'), + (['\u{1f5e1}\ufe0f'], '🗡️ E0.7 dagger'), + (['\u{1f5e1}'], '🗡 E0.7 dagger'), + (['\u2694\ufe0f'], '⚔️ E1.0 crossed swords'), + (['\u2694'], '⚔ E1.0 crossed swords'), + (['\u{1f4a3}'], '💣 E0.6 bomb'), + (['\u{1fa83}'], '🪃 E13.0 boomerang'), + (['\u{1f3f9}'], '🏹 E1.0 bow and arrow'), + (['\u{1f6e1}\ufe0f'], '🛡️ E0.7 shield'), + (['\u{1f6e1}'], '🛡 E0.7 shield'), + (['\u{1fa9a}'], '🪚 E13.0 carpentry saw'), + (['\u{1f527}'], '🔧 E0.6 wrench'), + (['\u{1fa9b}'], '🪛 E13.0 screwdriver'), + (['\u{1f529}'], '🔩 E0.6 nut and bolt'), + (['\u2699\ufe0f'], '⚙️ E1.0 gear'), + (['\u2699'], '⚙ E1.0 gear'), + (['\u{1f5dc}\ufe0f'], '🗜️ E0.7 clamp'), + (['\u{1f5dc}'], '🗜 E0.7 clamp'), + (['\u2696\ufe0f'], '⚖️ E1.0 balance scale'), + (['\u2696'], '⚖ E1.0 balance scale'), + (['\u{1f9af}'], '🦯 E12.0 white cane'), + (['\u{1f517}'], '🔗 E0.6 link'), + (['\u26d3\ufe0f\u200d\u{1f4a5}'], '⛓️‍💥 E15.1 broken chain'), + (['\u26d3\u200d\u{1f4a5}'], '⛓‍💥 E15.1 broken chain'), + (['\u26d3\ufe0f'], '⛓️ E0.7 chains'), + (['\u26d3'], '⛓ E0.7 chains'), + (['\u{1fa9d}'], '🪝 E13.0 hook'), + (['\u{1f9f0}'], '🧰 E11.0 toolbox'), + (['\u{1f9f2}'], '🧲 E11.0 magnet'), + (['\u{1fa9c}'], '🪜 E13.0 ladder'), + (['\u{1fa8f}'], '🪏 E16.0 shovel'), + (['\u2697\ufe0f'], '⚗️ E1.0 alembic'), + (['\u2697'], '⚗ E1.0 alembic'), + (['\u{1f9ea}'], '🧪 E11.0 test tube'), + (['\u{1f9eb}'], '🧫 E11.0 petri dish'), + (['\u{1f9ec}'], '🧬 E11.0 dna'), + (['\u{1f52c}'], '🔬 E1.0 microscope'), + (['\u{1f52d}'], '🔭 E1.0 telescope'), + (['\u{1f4e1}'], '📡 E0.6 satellite antenna'), + (['\u{1f489}'], '💉 E0.6 syringe'), + (['\u{1fa78}'], '🩸 E12.0 drop of blood'), + (['\u{1f48a}'], '💊 E0.6 pill'), + (['\u{1fa79}'], '🩹 E12.0 adhesive bandage'), + (['\u{1fa7c}'], '🩼 E14.0 crutch'), + (['\u{1fa7a}'], '🩺 E12.0 stethoscope'), + (['\u{1fa7b}'], '🩻 E14.0 x-ray'), + (['\u{1f6aa}'], '🚪 E0.6 door'), + (['\u{1f6d7}'], '🛗 E13.0 elevator'), + (['\u{1fa9e}'], '🪞 E13.0 mirror'), + (['\u{1fa9f}'], '🪟 E13.0 window'), + (['\u{1f6cf}\ufe0f'], '🛏️ E0.7 bed'), + (['\u{1f6cf}'], '🛏 E0.7 bed'), + (['\u{1f6cb}\ufe0f'], '🛋️ E0.7 couch and lamp'), + (['\u{1f6cb}'], '🛋 E0.7 couch and lamp'), + (['\u{1fa91}'], '🪑 E12.0 chair'), + (['\u{1f6bd}'], '🚽 E0.6 toilet'), + (['\u{1faa0}'], '🪠 E13.0 plunger'), + (['\u{1f6bf}'], '🚿 E1.0 shower'), + (['\u{1f6c1}'], '🛁 E1.0 bathtub'), + (['\u{1faa4}'], '🪤 E13.0 mouse trap'), + (['\u{1fa92}'], '🪒 E12.0 razor'), + (['\u{1f9f4}'], '🧴 E11.0 lotion bottle'), + (['\u{1f9f7}'], '🧷 E11.0 safety pin'), + (['\u{1f9f9}'], '🧹 E11.0 broom'), + (['\u{1f9fa}'], '🧺 E11.0 basket'), + (['\u{1f9fb}'], '🧻 E11.0 roll of paper'), + (['\u{1faa3}'], '🪣 E13.0 bucket'), + (['\u{1f9fc}'], '🧼 E11.0 soap'), + (['\u{1fae7}'], '🫧 E14.0 bubbles'), + (['\u{1faa5}'], '🪥 E13.0 toothbrush'), + (['\u{1f9fd}'], '🧽 E11.0 sponge'), + (['\u{1f9ef}'], '🧯 E11.0 fire extinguisher'), + (['\u{1f6d2}'], '🛒 E3.0 shopping cart'), + (['\u{1f6ac}'], '🚬 E0.6 cigarette'), + (['\u26b0\ufe0f'], '⚰️ E1.0 coffin'), + (['\u26b0'], '⚰ E1.0 coffin'), + (['\u{1faa6}'], '🪦 E13.0 headstone'), + (['\u26b1\ufe0f'], '⚱️ E1.0 funeral urn'), + (['\u26b1'], '⚱ E1.0 funeral urn'), + (['\u{1f9ff}'], '🧿 E11.0 nazar amulet'), + (['\u{1faac}'], '🪬 E14.0 hamsa'), + (['\u{1f5ff}'], '🗿 E0.6 moai'), + (['\u{1faa7}'], '🪧 E13.0 placard'), + (['\u{1faaa}'], '🪪 E14.0 identification card'), + (['\u{1f3e7}'], '🏧 E0.6 ATM sign'), + (['\u{1f6ae}'], '🚮 E1.0 litter in bin sign'), + (['\u{1f6b0}'], '🚰 E1.0 potable water'), + (['\u267f'], '♿ E0.6 wheelchair symbol'), + (['\u{1f6b9}'], '🚹 E0.6 men’s room'), + (['\u{1f6ba}'], '🚺 E0.6 women’s room'), + (['\u{1f6bb}'], '🚻 E0.6 restroom'), + (['\u{1f6bc}'], '🚼 E0.6 baby symbol'), + (['\u{1f6be}'], '🚾 E0.6 water closet'), + (['\u{1f6c2}'], '🛂 E1.0 passport control'), + (['\u{1f6c3}'], '🛃 E1.0 customs'), + (['\u{1f6c4}'], '🛄 E1.0 baggage claim'), + (['\u{1f6c5}'], '🛅 E1.0 left luggage'), + (['\u26a0\ufe0f'], '⚠️ E0.6 warning'), + (['\u26a0'], '⚠ E0.6 warning'), + (['\u{1f6b8}'], '🚸 E1.0 children crossing'), + (['\u26d4'], '⛔ E0.6 no entry'), + (['\u{1f6ab}'], '🚫 E0.6 prohibited'), + (['\u{1f6b3}'], '🚳 E1.0 no bicycles'), + (['\u{1f6ad}'], '🚭 E0.6 no smoking'), + (['\u{1f6af}'], '🚯 E1.0 no littering'), + (['\u{1f6b1}'], '🚱 E1.0 non-potable water'), + (['\u{1f6b7}'], '🚷 E1.0 no pedestrians'), + (['\u{1f4f5}'], '📵 E1.0 no mobile phones'), + (['\u{1f51e}'], '🔞 E0.6 no one under eighteen'), + (['\u2622\ufe0f'], '☢️ E1.0 radioactive'), + (['\u2622'], '☢ E1.0 radioactive'), + (['\u2623\ufe0f'], '☣️ E1.0 biohazard'), + (['\u2623'], '☣ E1.0 biohazard'), + (['\u2b06\ufe0f'], '⬆️ E0.6 up arrow'), + (['\u2b06'], '⬆ E0.6 up arrow'), + (['\u2197\ufe0f'], '↗️ E0.6 up-right arrow'), + (['\u2197'], '↗ E0.6 up-right arrow'), + (['\u27a1\ufe0f'], '➡️ E0.6 right arrow'), + (['\u27a1'], '➡ E0.6 right arrow'), + (['\u2198\ufe0f'], '↘️ E0.6 down-right arrow'), + (['\u2198'], '↘ E0.6 down-right arrow'), + (['\u2b07\ufe0f'], '⬇️ E0.6 down arrow'), + (['\u2b07'], '⬇ E0.6 down arrow'), + (['\u2199\ufe0f'], '↙️ E0.6 down-left arrow'), + (['\u2199'], '↙ E0.6 down-left arrow'), + (['\u2b05\ufe0f'], '⬅️ E0.6 left arrow'), + (['\u2b05'], '⬅ E0.6 left arrow'), + (['\u2196\ufe0f'], '↖️ E0.6 up-left arrow'), + (['\u2196'], '↖ E0.6 up-left arrow'), + (['\u2195\ufe0f'], '↕️ E0.6 up-down arrow'), + (['\u2195'], '↕ E0.6 up-down arrow'), + (['\u2194\ufe0f'], '↔️ E0.6 left-right arrow'), + (['\u2194'], '↔ E0.6 left-right arrow'), + (['\u21a9\ufe0f'], '↩️ E0.6 right arrow curving left'), + (['\u21a9'], '↩ E0.6 right arrow curving left'), + (['\u21aa\ufe0f'], '↪️ E0.6 left arrow curving right'), + (['\u21aa'], '↪ E0.6 left arrow curving right'), + (['\u2934\ufe0f'], '⤴️ E0.6 right arrow curving up'), + (['\u2934'], '⤴ E0.6 right arrow curving up'), + (['\u2935\ufe0f'], '⤵️ E0.6 right arrow curving down'), + (['\u2935'], '⤵ E0.6 right arrow curving down'), + (['\u{1f503}'], '🔃 E0.6 clockwise vertical arrows'), + (['\u{1f504}'], '🔄 E1.0 counterclockwise arrows button'), + (['\u{1f519}'], '🔙 E0.6 BACK arrow'), + (['\u{1f51a}'], '🔚 E0.6 END arrow'), + (['\u{1f51b}'], '🔛 E0.6 ON! arrow'), + (['\u{1f51c}'], '🔜 E0.6 SOON arrow'), + (['\u{1f51d}'], '🔝 E0.6 TOP arrow'), + (['\u{1f6d0}'], '🛐 E1.0 place of worship'), + (['\u269b\ufe0f'], '⚛️ E1.0 atom symbol'), + (['\u269b'], '⚛ E1.0 atom symbol'), + (['\u{1f549}\ufe0f'], '🕉️ E0.7 om'), + (['\u{1f549}'], '🕉 E0.7 om'), + (['\u2721\ufe0f'], '✡️ E0.7 star of David'), + (['\u2721'], '✡ E0.7 star of David'), + (['\u2638\ufe0f'], '☸️ E0.7 wheel of dharma'), + (['\u2638'], '☸ E0.7 wheel of dharma'), + (['\u262f\ufe0f'], '☯️ E0.7 yin yang'), + (['\u262f'], '☯ E0.7 yin yang'), + (['\u271d\ufe0f'], '✝️ E0.7 latin cross'), + (['\u271d'], '✝ E0.7 latin cross'), + (['\u2626\ufe0f'], '☦️ E1.0 orthodox cross'), + (['\u2626'], '☦ E1.0 orthodox cross'), + (['\u262a\ufe0f'], '☪️ E0.7 star and crescent'), + (['\u262a'], '☪ E0.7 star and crescent'), + (['\u262e\ufe0f'], '☮️ E1.0 peace symbol'), + (['\u262e'], '☮ E1.0 peace symbol'), + (['\u{1f54e}'], '🕎 E1.0 menorah'), + (['\u{1f52f}'], '🔯 E0.6 dotted six-pointed star'), + (['\u{1faaf}'], '🪯 E15.0 khanda'), + (['\u2648'], '♈ E0.6 Aries'), + (['\u2649'], '♉ E0.6 Taurus'), + (['\u264a'], '♊ E0.6 Gemini'), + (['\u264b'], '♋ E0.6 Cancer'), + (['\u264c'], '♌ E0.6 Leo'), + (['\u264d'], '♍ E0.6 Virgo'), + (['\u264e'], '♎ E0.6 Libra'), + (['\u264f'], '♏ E0.6 Scorpio'), + (['\u2650'], '♐ E0.6 Sagittarius'), + (['\u2651'], '♑ E0.6 Capricorn'), + (['\u2652'], '♒ E0.6 Aquarius'), + (['\u2653'], '♓ E0.6 Pisces'), + (['\u26ce'], '⛎ E0.6 Ophiuchus'), + (['\u{1f500}'], '🔀 E1.0 shuffle tracks button'), + (['\u{1f501}'], '🔁 E1.0 repeat button'), + (['\u{1f502}'], '🔂 E1.0 repeat single button'), + (['\u25b6\ufe0f'], '▶️ E0.6 play button'), + (['\u25b6'], '▶ E0.6 play button'), + (['\u23e9'], '⏩ E0.6 fast-forward button'), + (['\u23ed\ufe0f'], '⏭️ E0.7 next track button'), + (['\u23ed'], '⏭ E0.7 next track button'), + (['\u23ef\ufe0f'], '⏯️ E1.0 play or pause button'), + (['\u23ef'], '⏯ E1.0 play or pause button'), + (['\u25c0\ufe0f'], '◀️ E0.6 reverse button'), + (['\u25c0'], '◀ E0.6 reverse button'), + (['\u23ea'], '⏪ E0.6 fast reverse button'), + (['\u23ee\ufe0f'], '⏮️ E0.7 last track button'), + (['\u23ee'], '⏮ E0.7 last track button'), + (['\u{1f53c}'], '🔼 E0.6 upwards button'), + (['\u23eb'], '⏫ E0.6 fast up button'), + (['\u{1f53d}'], '🔽 E0.6 downwards button'), + (['\u23ec'], '⏬ E0.6 fast down button'), + (['\u23f8\ufe0f'], '⏸️ E0.7 pause button'), + (['\u23f8'], '⏸ E0.7 pause button'), + (['\u23f9\ufe0f'], '⏹️ E0.7 stop button'), + (['\u23f9'], '⏹ E0.7 stop button'), + (['\u23fa\ufe0f'], '⏺️ E0.7 record button'), + (['\u23fa'], '⏺ E0.7 record button'), + (['\u23cf\ufe0f'], '⏏️ E1.0 eject button'), + (['\u23cf'], '⏏ E1.0 eject button'), + (['\u{1f3a6}'], '🎦 E0.6 cinema'), + (['\u{1f505}'], '🔅 E1.0 dim button'), + (['\u{1f506}'], '🔆 E1.0 bright button'), + (['\u{1f4f6}'], '📶 E0.6 antenna bars'), + (['\u{1f6dc}'], '🛜 E15.0 wireless'), + (['\u{1f4f3}'], '📳 E0.6 vibration mode'), + (['\u{1f4f4}'], '📴 E0.6 mobile phone off'), + (['\u2640\ufe0f'], '♀️ E4.0 female sign'), + (['\u2640'], '♀ E4.0 female sign'), + (['\u2642\ufe0f'], '♂️ E4.0 male sign'), + (['\u2642'], '♂ E4.0 male sign'), + (['\u26a7\ufe0f'], '⚧️ E13.0 transgender symbol'), + (['\u26a7'], '⚧ E13.0 transgender symbol'), + (['\u2716\ufe0f'], '✖️ E0.6 multiply'), + (['\u2716'], '✖ E0.6 multiply'), + (['\u2795'], '➕ E0.6 plus'), + (['\u2796'], '➖ E0.6 minus'), + (['\u2797'], '➗ E0.6 divide'), + (['\u{1f7f0}'], '🟰 E14.0 heavy equals sign'), + (['\u267e\ufe0f'], '♾️ E11.0 infinity'), + (['\u267e'], '♾ E11.0 infinity'), + (['\u203c\ufe0f'], '‼️ E0.6 double exclamation mark'), + (['\u203c'], '‼ E0.6 double exclamation mark'), + (['\u2049\ufe0f'], '⁉️ E0.6 exclamation question mark'), + (['\u2049'], '⁉ E0.6 exclamation question mark'), + (['\u2753'], '❓ E0.6 red question mark'), + (['\u2754'], '❔ E0.6 white question mark'), + (['\u2755'], '❕ E0.6 white exclamation mark'), + (['\u2757'], '❗ E0.6 red exclamation mark'), + (['\u3030\ufe0f'], '〰️ E0.6 wavy dash'), + (['\u3030'], '〰 E0.6 wavy dash'), + (['\u{1f4b1}'], '💱 E0.6 currency exchange'), + (['\u{1f4b2}'], '💲 E0.6 heavy dollar sign'), + (['\u2695\ufe0f'], '⚕️ E4.0 medical symbol'), + (['\u2695'], '⚕ E4.0 medical symbol'), + (['\u267b\ufe0f'], '♻️ E0.6 recycling symbol'), + (['\u267b'], '♻ E0.6 recycling symbol'), + (['\u269c\ufe0f'], '⚜️ E1.0 fleur-de-lis'), + (['\u269c'], '⚜ E1.0 fleur-de-lis'), + (['\u{1f531}'], '🔱 E0.6 trident emblem'), + (['\u{1f4db}'], '📛 E0.6 name badge'), + (['\u{1f530}'], '🔰 E0.6 Japanese symbol for beginner'), + (['\u2b55'], '⭕ E0.6 hollow red circle'), + (['\u2705'], '✅ E0.6 check mark button'), + (['\u2611\ufe0f'], '☑️ E0.6 check box with check'), + (['\u2611'], '☑ E0.6 check box with check'), + (['\u2714\ufe0f'], '✔️ E0.6 check mark'), + (['\u2714'], '✔ E0.6 check mark'), + (['\u274c'], '❌ E0.6 cross mark'), + (['\u274e'], '❎ E0.6 cross mark button'), + (['\u27b0'], '➰ E0.6 curly loop'), + (['\u27bf'], '➿ E1.0 double curly loop'), + (['\u303d\ufe0f'], '〽️ E0.6 part alternation mark'), + (['\u303d'], '〽 E0.6 part alternation mark'), + (['\u2733\ufe0f'], '✳️ E0.6 eight-spoked asterisk'), + (['\u2733'], '✳ E0.6 eight-spoked asterisk'), + (['\u2734\ufe0f'], '✴️ E0.6 eight-pointed star'), + (['\u2734'], '✴ E0.6 eight-pointed star'), + (['\u2747\ufe0f'], '❇️ E0.6 sparkle'), + (['\u2747'], '❇ E0.6 sparkle'), + (['©\ufe0f'], '©️ E0.6 copyright'), + (['©'], '© E0.6 copyright'), + (['®\ufe0f'], '®️ E0.6 registered'), + (['®'], '® E0.6 registered'), + (['\u2122\ufe0f'], '™️ E0.6 trade mark'), + (['\u2122'], '™ E0.6 trade mark'), + (['\u{1fadf}'], '🫟 E16.0 splatter'), + (['#\ufe0f\u20e3'], '#️⃣ E0.6 keycap: #'), + (['#\u20e3'], '#⃣ E0.6 keycap: #'), + (['*\ufe0f\u20e3'], '*️⃣ E2.0 keycap: *'), + (['*\u20e3'], '*⃣ E2.0 keycap: *'), + (['0\ufe0f\u20e3'], '0️⃣ E0.6 keycap: 0'), + (['0\u20e3'], '0⃣ E0.6 keycap: 0'), + (['1\ufe0f\u20e3'], '1️⃣ E0.6 keycap: 1'), + (['1\u20e3'], '1⃣ E0.6 keycap: 1'), + (['2\ufe0f\u20e3'], '2️⃣ E0.6 keycap: 2'), + (['2\u20e3'], '2⃣ E0.6 keycap: 2'), + (['3\ufe0f\u20e3'], '3️⃣ E0.6 keycap: 3'), + (['3\u20e3'], '3⃣ E0.6 keycap: 3'), + (['4\ufe0f\u20e3'], '4️⃣ E0.6 keycap: 4'), + (['4\u20e3'], '4⃣ E0.6 keycap: 4'), + (['5\ufe0f\u20e3'], '5️⃣ E0.6 keycap: 5'), + (['5\u20e3'], '5⃣ E0.6 keycap: 5'), + (['6\ufe0f\u20e3'], '6️⃣ E0.6 keycap: 6'), + (['6\u20e3'], '6⃣ E0.6 keycap: 6'), + (['7\ufe0f\u20e3'], '7️⃣ E0.6 keycap: 7'), + (['7\u20e3'], '7⃣ E0.6 keycap: 7'), + (['8\ufe0f\u20e3'], '8️⃣ E0.6 keycap: 8'), + (['8\u20e3'], '8⃣ E0.6 keycap: 8'), + (['9\ufe0f\u20e3'], '9️⃣ E0.6 keycap: 9'), + (['9\u20e3'], '9⃣ E0.6 keycap: 9'), + (['\u{1f51f}'], '🔟 E0.6 keycap: 10'), + (['\u{1f520}'], '🔠 E0.6 input latin uppercase'), + (['\u{1f521}'], '🔡 E0.6 input latin lowercase'), + (['\u{1f522}'], '🔢 E0.6 input numbers'), + (['\u{1f523}'], '🔣 E0.6 input symbols'), + (['\u{1f524}'], '🔤 E0.6 input latin letters'), + (['\u{1f170}\ufe0f'], '🅰️ E0.6 A button (blood type)'), + (['\u{1f170}'], '🅰 E0.6 A button (blood type)'), + (['\u{1f18e}'], '🆎 E0.6 AB button (blood type)'), + (['\u{1f171}\ufe0f'], '🅱️ E0.6 B button (blood type)'), + (['\u{1f171}'], '🅱 E0.6 B button (blood type)'), + (['\u{1f191}'], '🆑 E0.6 CL button'), + (['\u{1f192}'], '🆒 E0.6 COOL button'), + (['\u{1f193}'], '🆓 E0.6 FREE button'), + (['\u2139\ufe0f'], 'ℹ️ E0.6 information'), + (['\u2139'], 'ℹ E0.6 information'), + (['\u{1f194}'], '🆔 E0.6 ID button'), + (['\u24c2\ufe0f'], 'Ⓜ️ E0.6 circled M'), + (['\u24c2'], 'Ⓜ E0.6 circled M'), + (['\u{1f195}'], '🆕 E0.6 NEW button'), + (['\u{1f196}'], '🆖 E0.6 NG button'), + (['\u{1f17e}\ufe0f'], '🅾️ E0.6 O button (blood type)'), + (['\u{1f17e}'], '🅾 E0.6 O button (blood type)'), + (['\u{1f197}'], '🆗 E0.6 OK button'), + (['\u{1f17f}\ufe0f'], '🅿️ E0.6 P button'), + (['\u{1f17f}'], '🅿 E0.6 P button'), + (['\u{1f198}'], '🆘 E0.6 SOS button'), + (['\u{1f199}'], '🆙 E0.6 UP! button'), + (['\u{1f19a}'], '🆚 E0.6 VS button'), + (['\u{1f201}'], '🈁 E0.6 Japanese “here” button'), + (['\u{1f202}\ufe0f'], '🈂️ E0.6 Japanese “service charge” button'), + (['\u{1f202}'], '🈂 E0.6 Japanese “service charge” button'), + (['\u{1f237}\ufe0f'], '🈷️ E0.6 Japanese “monthly amount” button'), + (['\u{1f237}'], '🈷 E0.6 Japanese “monthly amount” button'), + (['\u{1f236}'], '🈶 E0.6 Japanese “not free of charge” button'), + (['\u{1f22f}'], '🈯 E0.6 Japanese “reserved” button'), + (['\u{1f250}'], '🉐 E0.6 Japanese “bargain” button'), + (['\u{1f239}'], '🈹 E0.6 Japanese “discount” button'), + (['\u{1f21a}'], '🈚 E0.6 Japanese “free of charge” button'), + (['\u{1f232}'], '🈲 E0.6 Japanese “prohibited” button'), + (['\u{1f251}'], '🉑 E0.6 Japanese “acceptable” button'), + (['\u{1f238}'], '🈸 E0.6 Japanese “application” button'), + (['\u{1f234}'], '🈴 E0.6 Japanese “passing grade” button'), + (['\u{1f233}'], '🈳 E0.6 Japanese “vacancy” button'), + (['\u3297\ufe0f'], '㊗️ E0.6 Japanese “congratulations” button'), + (['\u3297'], '㊗ E0.6 Japanese “congratulations” button'), + (['\u3299\ufe0f'], '㊙️ E0.6 Japanese “secret” button'), + (['\u3299'], '㊙ E0.6 Japanese “secret” button'), + (['\u{1f23a}'], '🈺 E0.6 Japanese “open for business” button'), + (['\u{1f235}'], '🈵 E0.6 Japanese “no vacancy” button'), + (['\u{1f534}'], '🔴 E0.6 red circle'), + (['\u{1f7e0}'], '🟠 E12.0 orange circle'), + (['\u{1f7e1}'], '🟡 E12.0 yellow circle'), + (['\u{1f7e2}'], '🟢 E12.0 green circle'), + (['\u{1f535}'], '🔵 E0.6 blue circle'), + (['\u{1f7e3}'], '🟣 E12.0 purple circle'), + (['\u{1f7e4}'], '🟤 E12.0 brown circle'), + (['\u26ab'], '⚫ E0.6 black circle'), + (['\u26aa'], '⚪ E0.6 white circle'), + (['\u{1f7e5}'], '🟥 E12.0 red square'), + (['\u{1f7e7}'], '🟧 E12.0 orange square'), + (['\u{1f7e8}'], '🟨 E12.0 yellow square'), + (['\u{1f7e9}'], '🟩 E12.0 green square'), + (['\u{1f7e6}'], '🟦 E12.0 blue square'), + (['\u{1f7ea}'], '🟪 E12.0 purple square'), + (['\u{1f7eb}'], '🟫 E12.0 brown square'), + (['\u2b1b'], '⬛ E0.6 black large square'), + (['\u2b1c'], '⬜ E0.6 white large square'), + (['\u25fc\ufe0f'], '◼️ E0.6 black medium square'), + (['\u25fc'], '◼ E0.6 black medium square'), + (['\u25fb\ufe0f'], '◻️ E0.6 white medium square'), + (['\u25fb'], '◻ E0.6 white medium square'), + (['\u25fe'], '◾ E0.6 black medium-small square'), + (['\u25fd'], '◽ E0.6 white medium-small square'), + (['\u25aa\ufe0f'], '▪️ E0.6 black small square'), + (['\u25aa'], '▪ E0.6 black small square'), + (['\u25ab\ufe0f'], '▫️ E0.6 white small square'), + (['\u25ab'], '▫ E0.6 white small square'), + (['\u{1f536}'], '🔶 E0.6 large orange diamond'), + (['\u{1f537}'], '🔷 E0.6 large blue diamond'), + (['\u{1f538}'], '🔸 E0.6 small orange diamond'), + (['\u{1f539}'], '🔹 E0.6 small blue diamond'), + (['\u{1f53a}'], '🔺 E0.6 red triangle pointed up'), + (['\u{1f53b}'], '🔻 E0.6 red triangle pointed down'), + (['\u{1f4a0}'], '💠 E0.6 diamond with a dot'), + (['\u{1f518}'], '🔘 E0.6 radio button'), + (['\u{1f533}'], '🔳 E0.6 white square button'), + (['\u{1f532}'], '🔲 E0.6 black square button'), + (['\u{1f3c1}'], '🏁 E0.6 chequered flag'), + (['\u{1f6a9}'], '🚩 E0.6 triangular flag'), + (['\u{1f38c}'], '🎌 E0.6 crossed flags'), + (['\u{1f3f4}'], '🏴 E1.0 black flag'), + (['\u{1f3f3}\ufe0f'], '🏳️ E0.7 white flag'), + (['\u{1f3f3}'], '🏳 E0.7 white flag'), + (['\u{1f3f3}\ufe0f\u200d\u{1f308}'], '🏳️‍🌈 E4.0 rainbow flag'), + (['\u{1f3f3}\u200d\u{1f308}'], '🏳‍🌈 E4.0 rainbow flag'), + (['\u{1f3f3}\ufe0f\u200d\u26a7\ufe0f'], '🏳️‍⚧️ E13.0 transgender flag'), + (['\u{1f3f3}\u200d\u26a7\ufe0f'], '🏳‍⚧️ E13.0 transgender flag'), + (['\u{1f3f3}\ufe0f\u200d\u26a7'], '🏳️‍⚧ E13.0 transgender flag'), + (['\u{1f3f3}\u200d\u26a7'], '🏳‍⚧ E13.0 transgender flag'), + (['\u{1f3f4}\u200d\u2620\ufe0f'], '🏴‍☠️ E11.0 pirate flag'), + (['\u{1f3f4}\u200d\u2620'], '🏴‍☠ E11.0 pirate flag'), + (['\u{1f1e6}\u{1f1e8}'], '🇦🇨 E2.0 flag: Ascension Island'), + (['\u{1f1e6}\u{1f1e9}'], '🇦🇩 E2.0 flag: Andorra'), + (['\u{1f1e6}\u{1f1ea}'], '🇦🇪 E2.0 flag: United Arab Emirates'), + (['\u{1f1e6}\u{1f1eb}'], '🇦🇫 E2.0 flag: Afghanistan'), + (['\u{1f1e6}\u{1f1ec}'], '🇦🇬 E2.0 flag: Antigua & Barbuda'), + (['\u{1f1e6}\u{1f1ee}'], '🇦🇮 E2.0 flag: Anguilla'), + (['\u{1f1e6}\u{1f1f1}'], '🇦🇱 E2.0 flag: Albania'), + (['\u{1f1e6}\u{1f1f2}'], '🇦🇲 E2.0 flag: Armenia'), + (['\u{1f1e6}\u{1f1f4}'], '🇦🇴 E2.0 flag: Angola'), + (['\u{1f1e6}\u{1f1f6}'], '🇦🇶 E2.0 flag: Antarctica'), + (['\u{1f1e6}\u{1f1f7}'], '🇦🇷 E2.0 flag: Argentina'), + (['\u{1f1e6}\u{1f1f8}'], '🇦🇸 E2.0 flag: American Samoa'), + (['\u{1f1e6}\u{1f1f9}'], '🇦🇹 E2.0 flag: Austria'), + (['\u{1f1e6}\u{1f1fa}'], '🇦🇺 E2.0 flag: Australia'), + (['\u{1f1e6}\u{1f1fc}'], '🇦🇼 E2.0 flag: Aruba'), + (['\u{1f1e6}\u{1f1fd}'], '🇦🇽 E2.0 flag: Åland Islands'), + (['\u{1f1e6}\u{1f1ff}'], '🇦🇿 E2.0 flag: Azerbaijan'), + (['\u{1f1e7}\u{1f1e6}'], '🇧🇦 E2.0 flag: Bosnia & Herzegovina'), + (['\u{1f1e7}\u{1f1e7}'], '🇧🇧 E2.0 flag: Barbados'), + (['\u{1f1e7}\u{1f1e9}'], '🇧🇩 E2.0 flag: Bangladesh'), + (['\u{1f1e7}\u{1f1ea}'], '🇧🇪 E2.0 flag: Belgium'), + (['\u{1f1e7}\u{1f1eb}'], '🇧🇫 E2.0 flag: Burkina Faso'), + (['\u{1f1e7}\u{1f1ec}'], '🇧🇬 E2.0 flag: Bulgaria'), + (['\u{1f1e7}\u{1f1ed}'], '🇧🇭 E2.0 flag: Bahrain'), + (['\u{1f1e7}\u{1f1ee}'], '🇧🇮 E2.0 flag: Burundi'), + (['\u{1f1e7}\u{1f1ef}'], '🇧🇯 E2.0 flag: Benin'), + (['\u{1f1e7}\u{1f1f1}'], '🇧🇱 E2.0 flag: St. Barthélemy'), + (['\u{1f1e7}\u{1f1f2}'], '🇧🇲 E2.0 flag: Bermuda'), + (['\u{1f1e7}\u{1f1f3}'], '🇧🇳 E2.0 flag: Brunei'), + (['\u{1f1e7}\u{1f1f4}'], '🇧🇴 E2.0 flag: Bolivia'), + (['\u{1f1e7}\u{1f1f6}'], '🇧🇶 E2.0 flag: Caribbean Netherlands'), + (['\u{1f1e7}\u{1f1f7}'], '🇧🇷 E2.0 flag: Brazil'), + (['\u{1f1e7}\u{1f1f8}'], '🇧🇸 E2.0 flag: Bahamas'), + (['\u{1f1e7}\u{1f1f9}'], '🇧🇹 E2.0 flag: Bhutan'), + (['\u{1f1e7}\u{1f1fb}'], '🇧🇻 E2.0 flag: Bouvet Island'), + (['\u{1f1e7}\u{1f1fc}'], '🇧🇼 E2.0 flag: Botswana'), + (['\u{1f1e7}\u{1f1fe}'], '🇧🇾 E2.0 flag: Belarus'), + (['\u{1f1e7}\u{1f1ff}'], '🇧🇿 E2.0 flag: Belize'), + (['\u{1f1e8}\u{1f1e6}'], '🇨🇦 E2.0 flag: Canada'), + (['\u{1f1e8}\u{1f1e8}'], '🇨🇨 E2.0 flag: Cocos (Keeling) Islands'), + (['\u{1f1e8}\u{1f1e9}'], '🇨🇩 E2.0 flag: Congo - Kinshasa'), + (['\u{1f1e8}\u{1f1eb}'], '🇨🇫 E2.0 flag: Central African Republic'), + (['\u{1f1e8}\u{1f1ec}'], '🇨🇬 E2.0 flag: Congo - Brazzaville'), + (['\u{1f1e8}\u{1f1ed}'], '🇨🇭 E2.0 flag: Switzerland'), + (['\u{1f1e8}\u{1f1ee}'], '🇨🇮 E2.0 flag: Côte d’Ivoire'), + (['\u{1f1e8}\u{1f1f0}'], '🇨🇰 E2.0 flag: Cook Islands'), + (['\u{1f1e8}\u{1f1f1}'], '🇨🇱 E2.0 flag: Chile'), + (['\u{1f1e8}\u{1f1f2}'], '🇨🇲 E2.0 flag: Cameroon'), + (['\u{1f1e8}\u{1f1f3}'], '🇨🇳 E0.6 flag: China'), + (['\u{1f1e8}\u{1f1f4}'], '🇨🇴 E2.0 flag: Colombia'), + (['\u{1f1e8}\u{1f1f5}'], '🇨🇵 E2.0 flag: Clipperton Island'), + (['\u{1f1e8}\u{1f1f6}'], '🇨🇶 E16.0 flag: Sark'), + (['\u{1f1e8}\u{1f1f7}'], '🇨🇷 E2.0 flag: Costa Rica'), + (['\u{1f1e8}\u{1f1fa}'], '🇨🇺 E2.0 flag: Cuba'), + (['\u{1f1e8}\u{1f1fb}'], '🇨🇻 E2.0 flag: Cape Verde'), + (['\u{1f1e8}\u{1f1fc}'], '🇨🇼 E2.0 flag: Curaçao'), + (['\u{1f1e8}\u{1f1fd}'], '🇨🇽 E2.0 flag: Christmas Island'), + (['\u{1f1e8}\u{1f1fe}'], '🇨🇾 E2.0 flag: Cyprus'), + (['\u{1f1e8}\u{1f1ff}'], '🇨🇿 E2.0 flag: Czechia'), + (['\u{1f1e9}\u{1f1ea}'], '🇩🇪 E0.6 flag: Germany'), + (['\u{1f1e9}\u{1f1ec}'], '🇩🇬 E2.0 flag: Diego Garcia'), + (['\u{1f1e9}\u{1f1ef}'], '🇩🇯 E2.0 flag: Djibouti'), + (['\u{1f1e9}\u{1f1f0}'], '🇩🇰 E2.0 flag: Denmark'), + (['\u{1f1e9}\u{1f1f2}'], '🇩🇲 E2.0 flag: Dominica'), + (['\u{1f1e9}\u{1f1f4}'], '🇩🇴 E2.0 flag: Dominican Republic'), + (['\u{1f1e9}\u{1f1ff}'], '🇩🇿 E2.0 flag: Algeria'), + (['\u{1f1ea}\u{1f1e6}'], '🇪🇦 E2.0 flag: Ceuta & Melilla'), + (['\u{1f1ea}\u{1f1e8}'], '🇪🇨 E2.0 flag: Ecuador'), + (['\u{1f1ea}\u{1f1ea}'], '🇪🇪 E2.0 flag: Estonia'), + (['\u{1f1ea}\u{1f1ec}'], '🇪🇬 E2.0 flag: Egypt'), + (['\u{1f1ea}\u{1f1ed}'], '🇪🇭 E2.0 flag: Western Sahara'), + (['\u{1f1ea}\u{1f1f7}'], '🇪🇷 E2.0 flag: Eritrea'), + (['\u{1f1ea}\u{1f1f8}'], '🇪🇸 E0.6 flag: Spain'), + (['\u{1f1ea}\u{1f1f9}'], '🇪🇹 E2.0 flag: Ethiopia'), + (['\u{1f1ea}\u{1f1fa}'], '🇪🇺 E2.0 flag: European Union'), + (['\u{1f1eb}\u{1f1ee}'], '🇫🇮 E2.0 flag: Finland'), + (['\u{1f1eb}\u{1f1ef}'], '🇫🇯 E2.0 flag: Fiji'), + (['\u{1f1eb}\u{1f1f0}'], '🇫🇰 E2.0 flag: Falkland Islands'), + (['\u{1f1eb}\u{1f1f2}'], '🇫🇲 E2.0 flag: Micronesia'), + (['\u{1f1eb}\u{1f1f4}'], '🇫🇴 E2.0 flag: Faroe Islands'), + (['\u{1f1eb}\u{1f1f7}'], '🇫🇷 E0.6 flag: France'), + (['\u{1f1ec}\u{1f1e6}'], '🇬🇦 E2.0 flag: Gabon'), + (['\u{1f1ec}\u{1f1e7}'], '🇬🇧 E0.6 flag: United Kingdom'), + (['\u{1f1ec}\u{1f1e9}'], '🇬🇩 E2.0 flag: Grenada'), + (['\u{1f1ec}\u{1f1ea}'], '🇬🇪 E2.0 flag: Georgia'), + (['\u{1f1ec}\u{1f1eb}'], '🇬🇫 E2.0 flag: French Guiana'), + (['\u{1f1ec}\u{1f1ec}'], '🇬🇬 E2.0 flag: Guernsey'), + (['\u{1f1ec}\u{1f1ed}'], '🇬🇭 E2.0 flag: Ghana'), + (['\u{1f1ec}\u{1f1ee}'], '🇬🇮 E2.0 flag: Gibraltar'), + (['\u{1f1ec}\u{1f1f1}'], '🇬🇱 E2.0 flag: Greenland'), + (['\u{1f1ec}\u{1f1f2}'], '🇬🇲 E2.0 flag: Gambia'), + (['\u{1f1ec}\u{1f1f3}'], '🇬🇳 E2.0 flag: Guinea'), + (['\u{1f1ec}\u{1f1f5}'], '🇬🇵 E2.0 flag: Guadeloupe'), + (['\u{1f1ec}\u{1f1f6}'], '🇬🇶 E2.0 flag: Equatorial Guinea'), + (['\u{1f1ec}\u{1f1f7}'], '🇬🇷 E2.0 flag: Greece'), + ( + ['\u{1f1ec}\u{1f1f8}'], + '🇬🇸 E2.0 flag: South Georgia & South Sandwich Islands' + ), + (['\u{1f1ec}\u{1f1f9}'], '🇬🇹 E2.0 flag: Guatemala'), + (['\u{1f1ec}\u{1f1fa}'], '🇬🇺 E2.0 flag: Guam'), + (['\u{1f1ec}\u{1f1fc}'], '🇬🇼 E2.0 flag: Guinea-Bissau'), + (['\u{1f1ec}\u{1f1fe}'], '🇬🇾 E2.0 flag: Guyana'), + (['\u{1f1ed}\u{1f1f0}'], '🇭🇰 E2.0 flag: Hong Kong SAR China'), + (['\u{1f1ed}\u{1f1f2}'], '🇭🇲 E2.0 flag: Heard & McDonald Islands'), + (['\u{1f1ed}\u{1f1f3}'], '🇭🇳 E2.0 flag: Honduras'), + (['\u{1f1ed}\u{1f1f7}'], '🇭🇷 E2.0 flag: Croatia'), + (['\u{1f1ed}\u{1f1f9}'], '🇭🇹 E2.0 flag: Haiti'), + (['\u{1f1ed}\u{1f1fa}'], '🇭🇺 E2.0 flag: Hungary'), + (['\u{1f1ee}\u{1f1e8}'], '🇮🇨 E2.0 flag: Canary Islands'), + (['\u{1f1ee}\u{1f1e9}'], '🇮🇩 E2.0 flag: Indonesia'), + (['\u{1f1ee}\u{1f1ea}'], '🇮🇪 E2.0 flag: Ireland'), + (['\u{1f1ee}\u{1f1f1}'], '🇮🇱 E2.0 flag: Israel'), + (['\u{1f1ee}\u{1f1f2}'], '🇮🇲 E2.0 flag: Isle of Man'), + (['\u{1f1ee}\u{1f1f3}'], '🇮🇳 E2.0 flag: India'), + (['\u{1f1ee}\u{1f1f4}'], '🇮🇴 E2.0 flag: British Indian Ocean Territory'), + (['\u{1f1ee}\u{1f1f6}'], '🇮🇶 E2.0 flag: Iraq'), + (['\u{1f1ee}\u{1f1f7}'], '🇮🇷 E2.0 flag: Iran'), + (['\u{1f1ee}\u{1f1f8}'], '🇮🇸 E2.0 flag: Iceland'), + (['\u{1f1ee}\u{1f1f9}'], '🇮🇹 E0.6 flag: Italy'), + (['\u{1f1ef}\u{1f1ea}'], '🇯🇪 E2.0 flag: Jersey'), + (['\u{1f1ef}\u{1f1f2}'], '🇯🇲 E2.0 flag: Jamaica'), + (['\u{1f1ef}\u{1f1f4}'], '🇯🇴 E2.0 flag: Jordan'), + (['\u{1f1ef}\u{1f1f5}'], '🇯🇵 E0.6 flag: Japan'), + (['\u{1f1f0}\u{1f1ea}'], '🇰🇪 E2.0 flag: Kenya'), + (['\u{1f1f0}\u{1f1ec}'], '🇰🇬 E2.0 flag: Kyrgyzstan'), + (['\u{1f1f0}\u{1f1ed}'], '🇰🇭 E2.0 flag: Cambodia'), + (['\u{1f1f0}\u{1f1ee}'], '🇰🇮 E2.0 flag: Kiribati'), + (['\u{1f1f0}\u{1f1f2}'], '🇰🇲 E2.0 flag: Comoros'), + (['\u{1f1f0}\u{1f1f3}'], '🇰🇳 E2.0 flag: St. Kitts & Nevis'), + (['\u{1f1f0}\u{1f1f5}'], '🇰🇵 E2.0 flag: North Korea'), + (['\u{1f1f0}\u{1f1f7}'], '🇰🇷 E0.6 flag: South Korea'), + (['\u{1f1f0}\u{1f1fc}'], '🇰🇼 E2.0 flag: Kuwait'), + (['\u{1f1f0}\u{1f1fe}'], '🇰🇾 E2.0 flag: Cayman Islands'), + (['\u{1f1f0}\u{1f1ff}'], '🇰🇿 E2.0 flag: Kazakhstan'), + (['\u{1f1f1}\u{1f1e6}'], '🇱🇦 E2.0 flag: Laos'), + (['\u{1f1f1}\u{1f1e7}'], '🇱🇧 E2.0 flag: Lebanon'), + (['\u{1f1f1}\u{1f1e8}'], '🇱🇨 E2.0 flag: St. Lucia'), + (['\u{1f1f1}\u{1f1ee}'], '🇱🇮 E2.0 flag: Liechtenstein'), + (['\u{1f1f1}\u{1f1f0}'], '🇱🇰 E2.0 flag: Sri Lanka'), + (['\u{1f1f1}\u{1f1f7}'], '🇱🇷 E2.0 flag: Liberia'), + (['\u{1f1f1}\u{1f1f8}'], '🇱🇸 E2.0 flag: Lesotho'), + (['\u{1f1f1}\u{1f1f9}'], '🇱🇹 E2.0 flag: Lithuania'), + (['\u{1f1f1}\u{1f1fa}'], '🇱🇺 E2.0 flag: Luxembourg'), + (['\u{1f1f1}\u{1f1fb}'], '🇱🇻 E2.0 flag: Latvia'), + (['\u{1f1f1}\u{1f1fe}'], '🇱🇾 E2.0 flag: Libya'), + (['\u{1f1f2}\u{1f1e6}'], '🇲🇦 E2.0 flag: Morocco'), + (['\u{1f1f2}\u{1f1e8}'], '🇲🇨 E2.0 flag: Monaco'), + (['\u{1f1f2}\u{1f1e9}'], '🇲🇩 E2.0 flag: Moldova'), + (['\u{1f1f2}\u{1f1ea}'], '🇲🇪 E2.0 flag: Montenegro'), + (['\u{1f1f2}\u{1f1eb}'], '🇲🇫 E2.0 flag: St. Martin'), + (['\u{1f1f2}\u{1f1ec}'], '🇲🇬 E2.0 flag: Madagascar'), + (['\u{1f1f2}\u{1f1ed}'], '🇲🇭 E2.0 flag: Marshall Islands'), + (['\u{1f1f2}\u{1f1f0}'], '🇲🇰 E2.0 flag: North Macedonia'), + (['\u{1f1f2}\u{1f1f1}'], '🇲🇱 E2.0 flag: Mali'), + (['\u{1f1f2}\u{1f1f2}'], '🇲🇲 E2.0 flag: Myanmar (Burma)'), + (['\u{1f1f2}\u{1f1f3}'], '🇲🇳 E2.0 flag: Mongolia'), + (['\u{1f1f2}\u{1f1f4}'], '🇲🇴 E2.0 flag: Macao SAR China'), + (['\u{1f1f2}\u{1f1f5}'], '🇲🇵 E2.0 flag: Northern Mariana Islands'), + (['\u{1f1f2}\u{1f1f6}'], '🇲🇶 E2.0 flag: Martinique'), + (['\u{1f1f2}\u{1f1f7}'], '🇲🇷 E2.0 flag: Mauritania'), + (['\u{1f1f2}\u{1f1f8}'], '🇲🇸 E2.0 flag: Montserrat'), + (['\u{1f1f2}\u{1f1f9}'], '🇲🇹 E2.0 flag: Malta'), + (['\u{1f1f2}\u{1f1fa}'], '🇲🇺 E2.0 flag: Mauritius'), + (['\u{1f1f2}\u{1f1fb}'], '🇲🇻 E2.0 flag: Maldives'), + (['\u{1f1f2}\u{1f1fc}'], '🇲🇼 E2.0 flag: Malawi'), + (['\u{1f1f2}\u{1f1fd}'], '🇲🇽 E2.0 flag: Mexico'), + (['\u{1f1f2}\u{1f1fe}'], '🇲🇾 E2.0 flag: Malaysia'), + (['\u{1f1f2}\u{1f1ff}'], '🇲🇿 E2.0 flag: Mozambique'), + (['\u{1f1f3}\u{1f1e6}'], '🇳🇦 E2.0 flag: Namibia'), + (['\u{1f1f3}\u{1f1e8}'], '🇳🇨 E2.0 flag: New Caledonia'), + (['\u{1f1f3}\u{1f1ea}'], '🇳🇪 E2.0 flag: Niger'), + (['\u{1f1f3}\u{1f1eb}'], '🇳🇫 E2.0 flag: Norfolk Island'), + (['\u{1f1f3}\u{1f1ec}'], '🇳🇬 E2.0 flag: Nigeria'), + (['\u{1f1f3}\u{1f1ee}'], '🇳🇮 E2.0 flag: Nicaragua'), + (['\u{1f1f3}\u{1f1f1}'], '🇳🇱 E2.0 flag: Netherlands'), + (['\u{1f1f3}\u{1f1f4}'], '🇳🇴 E2.0 flag: Norway'), + (['\u{1f1f3}\u{1f1f5}'], '🇳🇵 E2.0 flag: Nepal'), + (['\u{1f1f3}\u{1f1f7}'], '🇳🇷 E2.0 flag: Nauru'), + (['\u{1f1f3}\u{1f1fa}'], '🇳🇺 E2.0 flag: Niue'), + (['\u{1f1f3}\u{1f1ff}'], '🇳🇿 E2.0 flag: New Zealand'), + (['\u{1f1f4}\u{1f1f2}'], '🇴🇲 E2.0 flag: Oman'), + (['\u{1f1f5}\u{1f1e6}'], '🇵🇦 E2.0 flag: Panama'), + (['\u{1f1f5}\u{1f1ea}'], '🇵🇪 E2.0 flag: Peru'), + (['\u{1f1f5}\u{1f1eb}'], '🇵🇫 E2.0 flag: French Polynesia'), + (['\u{1f1f5}\u{1f1ec}'], '🇵🇬 E2.0 flag: Papua New Guinea'), + (['\u{1f1f5}\u{1f1ed}'], '🇵🇭 E2.0 flag: Philippines'), + (['\u{1f1f5}\u{1f1f0}'], '🇵🇰 E2.0 flag: Pakistan'), + (['\u{1f1f5}\u{1f1f1}'], '🇵🇱 E2.0 flag: Poland'), + (['\u{1f1f5}\u{1f1f2}'], '🇵🇲 E2.0 flag: St. Pierre & Miquelon'), + (['\u{1f1f5}\u{1f1f3}'], '🇵🇳 E2.0 flag: Pitcairn Islands'), + (['\u{1f1f5}\u{1f1f7}'], '🇵🇷 E2.0 flag: Puerto Rico'), + (['\u{1f1f5}\u{1f1f8}'], '🇵🇸 E2.0 flag: Palestinian Territories'), + (['\u{1f1f5}\u{1f1f9}'], '🇵🇹 E2.0 flag: Portugal'), + (['\u{1f1f5}\u{1f1fc}'], '🇵🇼 E2.0 flag: Palau'), + (['\u{1f1f5}\u{1f1fe}'], '🇵🇾 E2.0 flag: Paraguay'), + (['\u{1f1f6}\u{1f1e6}'], '🇶🇦 E2.0 flag: Qatar'), + (['\u{1f1f7}\u{1f1ea}'], '🇷🇪 E2.0 flag: Réunion'), + (['\u{1f1f7}\u{1f1f4}'], '🇷🇴 E2.0 flag: Romania'), + (['\u{1f1f7}\u{1f1f8}'], '🇷🇸 E2.0 flag: Serbia'), + (['\u{1f1f7}\u{1f1fa}'], '🇷🇺 E0.6 flag: Russia'), + (['\u{1f1f7}\u{1f1fc}'], '🇷🇼 E2.0 flag: Rwanda'), + (['\u{1f1f8}\u{1f1e6}'], '🇸🇦 E2.0 flag: Saudi Arabia'), + (['\u{1f1f8}\u{1f1e7}'], '🇸🇧 E2.0 flag: Solomon Islands'), + (['\u{1f1f8}\u{1f1e8}'], '🇸🇨 E2.0 flag: Seychelles'), + (['\u{1f1f8}\u{1f1e9}'], '🇸🇩 E2.0 flag: Sudan'), + (['\u{1f1f8}\u{1f1ea}'], '🇸🇪 E2.0 flag: Sweden'), + (['\u{1f1f8}\u{1f1ec}'], '🇸🇬 E2.0 flag: Singapore'), + (['\u{1f1f8}\u{1f1ed}'], '🇸🇭 E2.0 flag: St. Helena'), + (['\u{1f1f8}\u{1f1ee}'], '🇸🇮 E2.0 flag: Slovenia'), + (['\u{1f1f8}\u{1f1ef}'], '🇸🇯 E2.0 flag: Svalbard & Jan Mayen'), + (['\u{1f1f8}\u{1f1f0}'], '🇸🇰 E2.0 flag: Slovakia'), + (['\u{1f1f8}\u{1f1f1}'], '🇸🇱 E2.0 flag: Sierra Leone'), + (['\u{1f1f8}\u{1f1f2}'], '🇸🇲 E2.0 flag: San Marino'), + (['\u{1f1f8}\u{1f1f3}'], '🇸🇳 E2.0 flag: Senegal'), + (['\u{1f1f8}\u{1f1f4}'], '🇸🇴 E2.0 flag: Somalia'), + (['\u{1f1f8}\u{1f1f7}'], '🇸🇷 E2.0 flag: Suriname'), + (['\u{1f1f8}\u{1f1f8}'], '🇸🇸 E2.0 flag: South Sudan'), + (['\u{1f1f8}\u{1f1f9}'], '🇸🇹 E2.0 flag: São Tomé & Príncipe'), + (['\u{1f1f8}\u{1f1fb}'], '🇸🇻 E2.0 flag: El Salvador'), + (['\u{1f1f8}\u{1f1fd}'], '🇸🇽 E2.0 flag: Sint Maarten'), + (['\u{1f1f8}\u{1f1fe}'], '🇸🇾 E2.0 flag: Syria'), + (['\u{1f1f8}\u{1f1ff}'], '🇸🇿 E2.0 flag: Eswatini'), + (['\u{1f1f9}\u{1f1e6}'], '🇹🇦 E2.0 flag: Tristan da Cunha'), + (['\u{1f1f9}\u{1f1e8}'], '🇹🇨 E2.0 flag: Turks & Caicos Islands'), + (['\u{1f1f9}\u{1f1e9}'], '🇹🇩 E2.0 flag: Chad'), + (['\u{1f1f9}\u{1f1eb}'], '🇹🇫 E2.0 flag: French Southern Territories'), + (['\u{1f1f9}\u{1f1ec}'], '🇹🇬 E2.0 flag: Togo'), + (['\u{1f1f9}\u{1f1ed}'], '🇹🇭 E2.0 flag: Thailand'), + (['\u{1f1f9}\u{1f1ef}'], '🇹🇯 E2.0 flag: Tajikistan'), + (['\u{1f1f9}\u{1f1f0}'], '🇹🇰 E2.0 flag: Tokelau'), + (['\u{1f1f9}\u{1f1f1}'], '🇹🇱 E2.0 flag: Timor-Leste'), + (['\u{1f1f9}\u{1f1f2}'], '🇹🇲 E2.0 flag: Turkmenistan'), + (['\u{1f1f9}\u{1f1f3}'], '🇹🇳 E2.0 flag: Tunisia'), + (['\u{1f1f9}\u{1f1f4}'], '🇹🇴 E2.0 flag: Tonga'), + (['\u{1f1f9}\u{1f1f7}'], '🇹🇷 E2.0 flag: Türkiye'), + (['\u{1f1f9}\u{1f1f9}'], '🇹🇹 E2.0 flag: Trinidad & Tobago'), + (['\u{1f1f9}\u{1f1fb}'], '🇹🇻 E2.0 flag: Tuvalu'), + (['\u{1f1f9}\u{1f1fc}'], '🇹🇼 E2.0 flag: Taiwan'), + (['\u{1f1f9}\u{1f1ff}'], '🇹🇿 E2.0 flag: Tanzania'), + (['\u{1f1fa}\u{1f1e6}'], '🇺🇦 E2.0 flag: Ukraine'), + (['\u{1f1fa}\u{1f1ec}'], '🇺🇬 E2.0 flag: Uganda'), + (['\u{1f1fa}\u{1f1f2}'], '🇺🇲 E2.0 flag: U.S. Outlying Islands'), + (['\u{1f1fa}\u{1f1f3}'], '🇺🇳 E4.0 flag: United Nations'), + (['\u{1f1fa}\u{1f1f8}'], '🇺🇸 E0.6 flag: United States'), + (['\u{1f1fa}\u{1f1fe}'], '🇺🇾 E2.0 flag: Uruguay'), + (['\u{1f1fa}\u{1f1ff}'], '🇺🇿 E2.0 flag: Uzbekistan'), + (['\u{1f1fb}\u{1f1e6}'], '🇻🇦 E2.0 flag: Vatican City'), + (['\u{1f1fb}\u{1f1e8}'], '🇻🇨 E2.0 flag: St. Vincent & Grenadines'), + (['\u{1f1fb}\u{1f1ea}'], '🇻🇪 E2.0 flag: Venezuela'), + (['\u{1f1fb}\u{1f1ec}'], '🇻🇬 E2.0 flag: British Virgin Islands'), + (['\u{1f1fb}\u{1f1ee}'], '🇻🇮 E2.0 flag: U.S. Virgin Islands'), + (['\u{1f1fb}\u{1f1f3}'], '🇻🇳 E2.0 flag: Vietnam'), + (['\u{1f1fb}\u{1f1fa}'], '🇻🇺 E2.0 flag: Vanuatu'), + (['\u{1f1fc}\u{1f1eb}'], '🇼🇫 E2.0 flag: Wallis & Futuna'), + (['\u{1f1fc}\u{1f1f8}'], '🇼🇸 E2.0 flag: Samoa'), + (['\u{1f1fd}\u{1f1f0}'], '🇽🇰 E2.0 flag: Kosovo'), + (['\u{1f1fe}\u{1f1ea}'], '🇾🇪 E2.0 flag: Yemen'), + (['\u{1f1fe}\u{1f1f9}'], '🇾🇹 E2.0 flag: Mayotte'), + (['\u{1f1ff}\u{1f1e6}'], '🇿🇦 E2.0 flag: South Africa'), + (['\u{1f1ff}\u{1f1f2}'], '🇿🇲 E2.0 flag: Zambia'), + (['\u{1f1ff}\u{1f1fc}'], '🇿🇼 E2.0 flag: Zimbabwe'), + ( + ['\u{1f3f4}\u{e0067}\u{e0062}\u{e0065}\u{e006e}\u{e0067}\u{e007f}'], + '🏴󠁧󠁢󠁥󠁮󠁧󠁿 E5.0 flag: England' + ), + ( + ['\u{1f3f4}\u{e0067}\u{e0062}\u{e0073}\u{e0063}\u{e0074}\u{e007f}'], + '🏴󠁧󠁢󠁳󠁣󠁴󠁿 E5.0 flag: Scotland' + ), + ( + ['\u{1f3f4}\u{e0067}\u{e0062}\u{e0077}\u{e006c}\u{e0073}\u{e007f}'], + '🏴󠁧󠁢󠁷󠁬󠁳󠁿 E5.0 flag: Wales' + ), ]; diff --git a/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakProperty.txt b/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakProperty.txt index a12b5eef..a863397d 100644 --- a/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakProperty.txt +++ b/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakProperty.txt @@ -1,8 +1,8 @@ -# GraphemeBreakProperty-15.0.0.txt -# Date: 2022-04-27, 17:07:38 GMT -# © 2022 Unicode®, Inc. +# GraphemeBreakProperty-16.0.0.txt +# Date: 2024-05-31, 18:09:38 GMT +# © 2024 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. -# For terms of use, see https://www.unicode.org/terms_of_use.html +# For terms of use and license, see https://www.unicode.org/terms_of_use.html # # Unicode Character Database # For documentation, see https://www.unicode.org/reports/tr44/ @@ -27,6 +27,7 @@ 110BD ; Prepend # Cf KAITHI NUMBER SIGN 110CD ; Prepend # Cf KAITHI NUMBER SIGN ABOVE 111C2..111C3 ; Prepend # Lo [2] SHARADA SIGN JIHVAMULIYA..SHARADA SIGN UPADHMANIYA +113D1 ; Prepend # Lo TULU-TIGALARI REPHA 1193F ; Prepend # Lo DIVES AKURU PREFIXED NASAL SIGN 11941 ; Prepend # Lo DIVES AKURU INITIAL RA 11A3A ; Prepend # Lo ZANABAZAR SQUARE CLUSTER-INITIAL LETTER RA @@ -34,7 +35,7 @@ 11D46 ; Prepend # Lo MASARAM GONDI REPHA 11F02 ; Prepend # Lo KAWI SIGN REPHA -# Total code points: 27 +# Total code points: 28 # ================================================ @@ -106,7 +107,7 @@ E01F0..E0FFF ; Control # Cn [3600] .. 0825..0827 ; Extend # Mn [3] SAMARITAN VOWEL SIGN SHORT A..SAMARITAN VOWEL SIGN U 0829..082D ; Extend # Mn [5] SAMARITAN VOWEL SIGN LONG I..SAMARITAN MARK NEQUDAA 0859..085B ; Extend # Mn [3] MANDAIC AFFRICATION MARK..MANDAIC GEMINATION MARK -0898..089F ; Extend # Mn [8] ARABIC SMALL HIGH WORD AL-JUZ..ARABIC HALF MADDA OVER MADDA +0897..089F ; Extend # Mn [9] ARABIC PEPET..ARABIC HALF MADDA OVER MADDA 08CA..08E1 ; Extend # Mn [24] ARABIC SMALL HIGH FARSI YEH..ARABIC SMALL HIGH SIGN SAFHA 08E3..0902 ; Extend # Mn [32] ARABIC TURNED DAMMA BELOW..DEVANAGARI SIGN ANUSVARA 093A ; Extend # Mn DEVANAGARI VOWEL SIGN OE @@ -163,8 +164,11 @@ E01F0..E0FFF ; Control # Cn [3600] .. 0C81 ; Extend # Mn KANNADA SIGN CANDRABINDU 0CBC ; Extend # Mn KANNADA SIGN NUKTA 0CBF ; Extend # Mn KANNADA VOWEL SIGN I +0CC0 ; Extend # Mc KANNADA VOWEL SIGN II 0CC2 ; Extend # Mc KANNADA VOWEL SIGN UU 0CC6 ; Extend # Mn KANNADA VOWEL SIGN E +0CC7..0CC8 ; Extend # Mc [2] KANNADA VOWEL SIGN EE..KANNADA VOWEL SIGN AI +0CCA..0CCB ; Extend # Mc [2] KANNADA VOWEL SIGN O..KANNADA VOWEL SIGN OO 0CCC..0CCD ; Extend # Mn [2] KANNADA VOWEL SIGN AU..KANNADA SIGN VIRAMA 0CD5..0CD6 ; Extend # Mc [2] KANNADA LENGTH MARK..KANNADA AI LENGTH MARK 0CE2..0CE3 ; Extend # Mn [2] KANNADA VOWEL SIGN VOCALIC L..KANNADA VOWEL SIGN VOCALIC LL @@ -210,7 +214,9 @@ E01F0..E0FFF ; Control # Cn [3600] .. 109D ; Extend # Mn MYANMAR VOWEL SIGN AITON AI 135D..135F ; Extend # Mn [3] ETHIOPIC COMBINING GEMINATION AND VOWEL LENGTH MARK..ETHIOPIC COMBINING GEMINATION MARK 1712..1714 ; Extend # Mn [3] TAGALOG VOWEL SIGN I..TAGALOG SIGN VIRAMA +1715 ; Extend # Mc TAGALOG SIGN PAMUDPOD 1732..1733 ; Extend # Mn [2] HANUNOO VOWEL SIGN I..HANUNOO VOWEL SIGN U +1734 ; Extend # Mc HANUNOO SIGN PAMUDPOD 1752..1753 ; Extend # Mn [2] BUHID VOWEL SIGN I..BUHID VOWEL SIGN U 1772..1773 ; Extend # Mn [2] TAGBANWA VOWEL SIGN I..TAGBANWA VOWEL SIGN U 17B4..17B5 ; Extend # Mn [2] KHMER VOWEL INHERENT AQ..KHMER VOWEL INHERENT AA @@ -242,17 +248,22 @@ E01F0..E0FFF ; Control # Cn [3600] .. 1B34 ; Extend # Mn BALINESE SIGN REREKAN 1B35 ; Extend # Mc BALINESE VOWEL SIGN TEDUNG 1B36..1B3A ; Extend # Mn [5] BALINESE VOWEL SIGN ULU..BALINESE VOWEL SIGN RA REPA +1B3B ; Extend # Mc BALINESE VOWEL SIGN RA REPA TEDUNG 1B3C ; Extend # Mn BALINESE VOWEL SIGN LA LENGA +1B3D ; Extend # Mc BALINESE VOWEL SIGN LA LENGA TEDUNG 1B42 ; Extend # Mn BALINESE VOWEL SIGN PEPET +1B43..1B44 ; Extend # Mc [2] BALINESE VOWEL SIGN PEPET TEDUNG..BALINESE ADEG ADEG 1B6B..1B73 ; Extend # Mn [9] BALINESE MUSICAL SYMBOL COMBINING TEGEH..BALINESE MUSICAL SYMBOL COMBINING GONG 1B80..1B81 ; Extend # Mn [2] SUNDANESE SIGN PANYECEK..SUNDANESE SIGN PANGLAYAR 1BA2..1BA5 ; Extend # Mn [4] SUNDANESE CONSONANT SIGN PANYAKRA..SUNDANESE VOWEL SIGN PANYUKU 1BA8..1BA9 ; Extend # Mn [2] SUNDANESE VOWEL SIGN PAMEPET..SUNDANESE VOWEL SIGN PANEULEUNG +1BAA ; Extend # Mc SUNDANESE SIGN PAMAAEH 1BAB..1BAD ; Extend # Mn [3] SUNDANESE SIGN VIRAMA..SUNDANESE CONSONANT SIGN PASANGAN WA 1BE6 ; Extend # Mn BATAK SIGN TOMPI 1BE8..1BE9 ; Extend # Mn [2] BATAK VOWEL SIGN PAKPAK E..BATAK VOWEL SIGN EE 1BED ; Extend # Mn BATAK VOWEL SIGN KARO O 1BEF..1BF1 ; Extend # Mn [3] BATAK VOWEL SIGN U FOR SIMALUNGUN SA..BATAK CONSONANT SIGN H +1BF2..1BF3 ; Extend # Mc [2] BATAK PANGOLAT..BATAK PANONGONAN 1C2C..1C33 ; Extend # Mn [8] LEPCHA VOWEL SIGN E..LEPCHA CONSONANT SIGN T 1C36..1C37 ; Extend # Mn [2] LEPCHA SIGN RAN..LEPCHA SIGN NUKTA 1CD0..1CD2 ; Extend # Mn [3] VEDIC TONE KARSHANA..VEDIC TONE PRENKHA @@ -289,10 +300,12 @@ A8E0..A8F1 ; Extend # Mn [18] COMBINING DEVANAGARI DIGIT ZERO..COMBINING DEV A8FF ; Extend # Mn DEVANAGARI VOWEL SIGN AY A926..A92D ; Extend # Mn [8] KAYAH LI VOWEL UE..KAYAH LI TONE CALYA PLOPHU A947..A951 ; Extend # Mn [11] REJANG VOWEL SIGN I..REJANG CONSONANT SIGN R +A953 ; Extend # Mc REJANG VIRAMA A980..A982 ; Extend # Mn [3] JAVANESE SIGN PANYANGGA..JAVANESE SIGN LAYAR A9B3 ; Extend # Mn JAVANESE SIGN CECAK TELU A9B6..A9B9 ; Extend # Mn [4] JAVANESE VOWEL SIGN WULU..JAVANESE VOWEL SIGN SUKU MENDUT A9BC..A9BD ; Extend # Mn [2] JAVANESE VOWEL SIGN PEPET..JAVANESE CONSONANT SIGN KERET +A9C0 ; Extend # Mc JAVANESE PANGKON A9E5 ; Extend # Mn MYANMAR SIGN SHAN SAW AA29..AA2E ; Extend # Mn [6] CHAM VOWEL SIGN AA..CHAM VOWEL SIGN OE AA31..AA32 ; Extend # Mn [2] CHAM VOWEL SIGN AU..CHAM VOWEL SIGN UE @@ -324,8 +337,9 @@ FF9E..FF9F ; Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDT 10A3F ; Extend # Mn KHAROSHTHI VIRAMA 10AE5..10AE6 ; Extend # Mn [2] MANICHAEAN ABBREVIATION MARK ABOVE..MANICHAEAN ABBREVIATION MARK BELOW 10D24..10D27 ; Extend # Mn [4] HANIFI ROHINGYA SIGN HARBAHAY..HANIFI ROHINGYA SIGN TASSI +10D69..10D6D ; Extend # Mn [5] GARAY VOWEL SIGN E..GARAY CONSONANT NASALIZATION MARK 10EAB..10EAC ; Extend # Mn [2] YEZIDI COMBINING HAMZA MARK..YEZIDI COMBINING MADDA MARK -10EFD..10EFF ; Extend # Mn [3] ARABIC SMALL LOW WORD SAKTA..ARABIC SMALL LOW WORD MADDA +10EFC..10EFF ; Extend # Mn [4] ARABIC COMBINING ALEF OVERLAY..ARABIC SMALL LOW WORD MADDA 10F46..10F50 ; Extend # Mn [11] SOGDIAN COMBINING DOT BELOW..SOGDIAN COMBINING STROKE BELOW 10F82..10F85 ; Extend # Mn [4] OLD UYGHUR COMBINING DOT ABOVE..OLD UYGHUR COMBINING TWO DOTS BELOW 11001 ; Extend # Mn BRAHMI SIGN ANUSVARA @@ -342,10 +356,12 @@ FF9E..FF9F ; Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDT 11173 ; Extend # Mn MAHAJANI SIGN NUKTA 11180..11181 ; Extend # Mn [2] SHARADA SIGN CANDRABINDU..SHARADA SIGN ANUSVARA 111B6..111BE ; Extend # Mn [9] SHARADA VOWEL SIGN U..SHARADA VOWEL SIGN O +111C0 ; Extend # Mc SHARADA SIGN VIRAMA 111C9..111CC ; Extend # Mn [4] SHARADA SANDHI MARK..SHARADA EXTRA SHORT VOWEL MARK 111CF ; Extend # Mn SHARADA SIGN INVERTED CANDRABINDU 1122F..11231 ; Extend # Mn [3] KHOJKI VOWEL SIGN U..KHOJKI VOWEL SIGN AI 11234 ; Extend # Mn KHOJKI SIGN ANUSVARA +11235 ; Extend # Mc KHOJKI SIGN VIRAMA 11236..11237 ; Extend # Mn [2] KHOJKI SIGN NUKTA..KHOJKI SIGN SHADDA 1123E ; Extend # Mn KHOJKI SIGN SUKUN 11241 ; Extend # Mn KHOJKI VOWEL SIGN VOCALIC R @@ -355,9 +371,20 @@ FF9E..FF9F ; Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDT 1133B..1133C ; Extend # Mn [2] COMBINING BINDU BELOW..GRANTHA SIGN NUKTA 1133E ; Extend # Mc GRANTHA VOWEL SIGN AA 11340 ; Extend # Mn GRANTHA VOWEL SIGN II +1134D ; Extend # Mc GRANTHA SIGN VIRAMA 11357 ; Extend # Mc GRANTHA AU LENGTH MARK 11366..1136C ; Extend # Mn [7] COMBINING GRANTHA DIGIT ZERO..COMBINING GRANTHA DIGIT SIX 11370..11374 ; Extend # Mn [5] COMBINING GRANTHA LETTER A..COMBINING GRANTHA LETTER PA +113B8 ; Extend # Mc TULU-TIGALARI VOWEL SIGN AA +113BB..113C0 ; Extend # Mn [6] TULU-TIGALARI VOWEL SIGN U..TULU-TIGALARI VOWEL SIGN VOCALIC LL +113C2 ; Extend # Mc TULU-TIGALARI VOWEL SIGN EE +113C5 ; Extend # Mc TULU-TIGALARI VOWEL SIGN AI +113C7..113C9 ; Extend # Mc [3] TULU-TIGALARI VOWEL SIGN OO..TULU-TIGALARI AU LENGTH MARK +113CE ; Extend # Mn TULU-TIGALARI SIGN VIRAMA +113CF ; Extend # Mc TULU-TIGALARI SIGN LOOPED VIRAMA +113D0 ; Extend # Mn TULU-TIGALARI CONJOINER +113D2 ; Extend # Mn TULU-TIGALARI GEMINATION MARK +113E1..113E2 ; Extend # Mn [2] TULU-TIGALARI VEDIC TONE SVARITA..TULU-TIGALARI VEDIC TONE ANUDATTA 11438..1143F ; Extend # Mn [8] NEWA VOWEL SIGN U..NEWA VOWEL SIGN AI 11442..11444 ; Extend # Mn [3] NEWA SIGN VIRAMA..NEWA SIGN ANUSVARA 11446 ; Extend # Mn NEWA SIGN NUKTA @@ -379,14 +406,17 @@ FF9E..FF9F ; Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDT 116AB ; Extend # Mn TAKRI SIGN ANUSVARA 116AD ; Extend # Mn TAKRI VOWEL SIGN AA 116B0..116B5 ; Extend # Mn [6] TAKRI VOWEL SIGN U..TAKRI VOWEL SIGN AU +116B6 ; Extend # Mc TAKRI SIGN VIRAMA 116B7 ; Extend # Mn TAKRI SIGN NUKTA -1171D..1171F ; Extend # Mn [3] AHOM CONSONANT SIGN MEDIAL LA..AHOM CONSONANT SIGN MEDIAL LIGATING RA +1171D ; Extend # Mn AHOM CONSONANT SIGN MEDIAL LA +1171F ; Extend # Mn AHOM CONSONANT SIGN MEDIAL LIGATING RA 11722..11725 ; Extend # Mn [4] AHOM VOWEL SIGN I..AHOM VOWEL SIGN UU 11727..1172B ; Extend # Mn [5] AHOM VOWEL SIGN AW..AHOM SIGN KILLER 1182F..11837 ; Extend # Mn [9] DOGRA VOWEL SIGN U..DOGRA SIGN ANUSVARA 11839..1183A ; Extend # Mn [2] DOGRA SIGN VIRAMA..DOGRA SIGN NUKTA 11930 ; Extend # Mc DIVES AKURU VOWEL SIGN AA 1193B..1193C ; Extend # Mn [2] DIVES AKURU SIGN ANUSVARA..DIVES AKURU SIGN CANDRABINDU +1193D ; Extend # Mc DIVES AKURU SIGN HALANTA 1193E ; Extend # Mn DIVES AKURU VIRAMA 11943 ; Extend # Mn DIVES AKURU SIGN NUKTA 119D4..119D7 ; Extend # Mn [4] NANDINAGARI VOWEL SIGN U..NANDINAGARI VOWEL SIGN VOCALIC RR @@ -419,20 +449,25 @@ FF9E..FF9F ; Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDT 11F00..11F01 ; Extend # Mn [2] KAWI SIGN CANDRABINDU..KAWI SIGN ANUSVARA 11F36..11F3A ; Extend # Mn [5] KAWI VOWEL SIGN I..KAWI VOWEL SIGN VOCALIC R 11F40 ; Extend # Mn KAWI VOWEL SIGN EU +11F41 ; Extend # Mc KAWI SIGN KILLER 11F42 ; Extend # Mn KAWI CONJOINER +11F5A ; Extend # Mn KAWI SIGN NUKTA 13440 ; Extend # Mn EGYPTIAN HIEROGLYPH MIRROR HORIZONTALLY 13447..13455 ; Extend # Mn [15] EGYPTIAN HIEROGLYPH MODIFIER DAMAGED AT TOP START..EGYPTIAN HIEROGLYPH MODIFIER DAMAGED +1611E..16129 ; Extend # Mn [12] GURUNG KHEMA VOWEL SIGN AA..GURUNG KHEMA VOWEL LENGTH MARK +1612D..1612F ; Extend # Mn [3] GURUNG KHEMA SIGN ANUSVARA..GURUNG KHEMA SIGN THOLHOMA 16AF0..16AF4 ; Extend # Mn [5] BASSA VAH COMBINING HIGH TONE..BASSA VAH COMBINING HIGH-LOW TONE 16B30..16B36 ; Extend # Mn [7] PAHAWH HMONG MARK CIM TUB..PAHAWH HMONG MARK CIM TAUM 16F4F ; Extend # Mn MIAO SIGN CONSONANT MODIFIER BAR 16F8F..16F92 ; Extend # Mn [4] MIAO TONE RIGHT..MIAO TONE BELOW 16FE4 ; Extend # Mn KHITAN SMALL SCRIPT FILLER +16FF0..16FF1 ; Extend # Mc [2] VIETNAMESE ALTERNATE READING MARK CA..VIETNAMESE ALTERNATE READING MARK NHAY 1BC9D..1BC9E ; Extend # Mn [2] DUPLOYAN THICK LETTER SELECTOR..DUPLOYAN DOUBLE MARK 1CF00..1CF2D ; Extend # Mn [46] ZNAMENNY COMBINING MARK GORAZDO NIZKO S KRYZHEM ON LEFT..ZNAMENNY COMBINING MARK KRYZH ON LEFT 1CF30..1CF46 ; Extend # Mn [23] ZNAMENNY COMBINING TONAL RANGE MARK MRACHNO..ZNAMENNY PRIZNAK MODIFIER ROG -1D165 ; Extend # Mc MUSICAL SYMBOL COMBINING STEM +1D165..1D166 ; Extend # Mc [2] MUSICAL SYMBOL COMBINING STEM..MUSICAL SYMBOL COMBINING SPRECHGESANG STEM 1D167..1D169 ; Extend # Mn [3] MUSICAL SYMBOL COMBINING TREMOLO-1..MUSICAL SYMBOL COMBINING TREMOLO-3 -1D16E..1D172 ; Extend # Mc [5] MUSICAL SYMBOL COMBINING FLAG-1..MUSICAL SYMBOL COMBINING FLAG-5 +1D16D..1D172 ; Extend # Mc [6] MUSICAL SYMBOL COMBINING AUGMENTATION DOT..MUSICAL SYMBOL COMBINING FLAG-5 1D17B..1D182 ; Extend # Mn [8] MUSICAL SYMBOL COMBINING ACCENT..MUSICAL SYMBOL COMBINING LOURE 1D185..1D18B ; Extend # Mn [7] MUSICAL SYMBOL COMBINING DOIT..MUSICAL SYMBOL COMBINING TRIPLE TONGUE 1D1AA..1D1AD ; Extend # Mn [4] MUSICAL SYMBOL COMBINING DOWN BOW..MUSICAL SYMBOL COMBINING SNAP PIZZICATO @@ -453,13 +488,14 @@ FF9E..FF9F ; Extend # Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDT 1E2AE ; Extend # Mn TOTO SIGN RISING TONE 1E2EC..1E2EF ; Extend # Mn [4] WANCHO TONE TUP..WANCHO TONE KOINI 1E4EC..1E4EF ; Extend # Mn [4] NAG MUNDARI SIGN MUHOR..NAG MUNDARI SIGN SUTUH +1E5EE..1E5EF ; Extend # Mn [2] OL ONAL SIGN MU..OL ONAL SIGN IKIR 1E8D0..1E8D6 ; Extend # Mn [7] MENDE KIKAKUI COMBINING NUMBER TEENS..MENDE KIKAKUI COMBINING NUMBER MILLIONS 1E944..1E94A ; Extend # Mn [7] ADLAM ALIF LENGTHENER..ADLAM NUKTA 1F3FB..1F3FF ; Extend # Sk [5] EMOJI MODIFIER FITZPATRICK TYPE-1-2..EMOJI MODIFIER FITZPATRICK TYPE-6 E0020..E007F ; Extend # Cf [96] TAG SPACE..CANCEL TAG E0100..E01EF ; Extend # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-256 -# Total code points: 2130 +# Total code points: 2198 # ================================================ @@ -496,10 +532,8 @@ E0100..E01EF ; Extend # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-256 0C41..0C44 ; SpacingMark # Mc [4] TELUGU VOWEL SIGN U..TELUGU VOWEL SIGN VOCALIC RR 0C82..0C83 ; SpacingMark # Mc [2] KANNADA SIGN ANUSVARA..KANNADA SIGN VISARGA 0CBE ; SpacingMark # Mc KANNADA VOWEL SIGN AA -0CC0..0CC1 ; SpacingMark # Mc [2] KANNADA VOWEL SIGN II..KANNADA VOWEL SIGN U +0CC1 ; SpacingMark # Mc KANNADA VOWEL SIGN U 0CC3..0CC4 ; SpacingMark # Mc [2] KANNADA VOWEL SIGN VOCALIC R..KANNADA VOWEL SIGN VOCALIC RR -0CC7..0CC8 ; SpacingMark # Mc [2] KANNADA VOWEL SIGN EE..KANNADA VOWEL SIGN AI -0CCA..0CCB ; SpacingMark # Mc [2] KANNADA VOWEL SIGN O..KANNADA VOWEL SIGN OO 0CF3 ; SpacingMark # Mc KANNADA SIGN COMBINING ANUSVARA ABOVE RIGHT 0D02..0D03 ; SpacingMark # Mc [2] MALAYALAM SIGN ANUSVARA..MALAYALAM SIGN VISARGA 0D3F..0D40 ; SpacingMark # Mc [2] MALAYALAM VOWEL SIGN I..MALAYALAM VOWEL SIGN II @@ -517,8 +551,6 @@ E0100..E01EF ; Extend # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-256 103B..103C ; SpacingMark # Mc [2] MYANMAR CONSONANT SIGN MEDIAL YA..MYANMAR CONSONANT SIGN MEDIAL RA 1056..1057 ; SpacingMark # Mc [2] MYANMAR VOWEL SIGN VOCALIC R..MYANMAR VOWEL SIGN VOCALIC RR 1084 ; SpacingMark # Mc MYANMAR VOWEL SIGN SHAN E -1715 ; SpacingMark # Mc TAGALOG SIGN PAMUDPOD -1734 ; SpacingMark # Mc HANUNOO SIGN PAMUDPOD 17B6 ; SpacingMark # Mc KHMER VOWEL SIGN AA 17BE..17C5 ; SpacingMark # Mc [8] KHMER VOWEL SIGN OE..KHMER VOWEL SIGN AU 17C7..17C8 ; SpacingMark # Mc [2] KHMER SIGN REAHMUK..KHMER SIGN YUUKALEAPINTU @@ -531,17 +563,13 @@ E0100..E01EF ; Extend # Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-256 1A57 ; SpacingMark # Mc TAI THAM CONSONANT SIGN LA TANG LAI 1A6D..1A72 ; SpacingMark # Mc [6] TAI THAM VOWEL SIGN OY..TAI THAM VOWEL SIGN THAM AI 1B04 ; SpacingMark # Mc BALINESE SIGN BISAH -1B3B ; SpacingMark # Mc BALINESE VOWEL SIGN RA REPA TEDUNG -1B3D..1B41 ; SpacingMark # Mc [5] BALINESE VOWEL SIGN LA LENGA TEDUNG..BALINESE VOWEL SIGN TALING REPA TEDUNG -1B43..1B44 ; SpacingMark # Mc [2] BALINESE VOWEL SIGN PEPET TEDUNG..BALINESE ADEG ADEG +1B3E..1B41 ; SpacingMark # Mc [4] BALINESE VOWEL SIGN TALING..BALINESE VOWEL SIGN TALING REPA TEDUNG 1B82 ; SpacingMark # Mc SUNDANESE SIGN PANGWISAD 1BA1 ; SpacingMark # Mc SUNDANESE CONSONANT SIGN PAMINGKAL 1BA6..1BA7 ; SpacingMark # Mc [2] SUNDANESE VOWEL SIGN PANAELAENG..SUNDANESE VOWEL SIGN PANOLONG -1BAA ; SpacingMark # Mc SUNDANESE SIGN PAMAAEH 1BE7 ; SpacingMark # Mc BATAK VOWEL SIGN E 1BEA..1BEC ; SpacingMark # Mc [3] BATAK VOWEL SIGN I..BATAK VOWEL SIGN O 1BEE ; SpacingMark # Mc BATAK VOWEL SIGN U -1BF2..1BF3 ; SpacingMark # Mc [2] BATAK PANGOLAT..BATAK PANONGONAN 1C24..1C2B ; SpacingMark # Mc [8] LEPCHA SUBJOINED LETTER YA..LEPCHA VOWEL SIGN UU 1C34..1C35 ; SpacingMark # Mc [2] LEPCHA CONSONANT SIGN NYIN-DO..LEPCHA CONSONANT SIGN KANG 1CE1 ; SpacingMark # Mc VEDIC TONE ATHARVAVEDIC INDEPENDENT SVARITA @@ -550,11 +578,11 @@ A823..A824 ; SpacingMark # Mc [2] SYLOTI NAGRI VOWEL SIGN A..SYLOTI NAGRI V A827 ; SpacingMark # Mc SYLOTI NAGRI VOWEL SIGN OO A880..A881 ; SpacingMark # Mc [2] SAURASHTRA SIGN ANUSVARA..SAURASHTRA SIGN VISARGA A8B4..A8C3 ; SpacingMark # Mc [16] SAURASHTRA CONSONANT SIGN HAARU..SAURASHTRA VOWEL SIGN AU -A952..A953 ; SpacingMark # Mc [2] REJANG CONSONANT SIGN H..REJANG VIRAMA +A952 ; SpacingMark # Mc REJANG CONSONANT SIGN H A983 ; SpacingMark # Mc JAVANESE SIGN WIGNYAN A9B4..A9B5 ; SpacingMark # Mc [2] JAVANESE VOWEL SIGN TARUNG..JAVANESE VOWEL SIGN TOLONG A9BA..A9BB ; SpacingMark # Mc [2] JAVANESE VOWEL SIGN TALING..JAVANESE VOWEL SIGN DIRGA MURE -A9BE..A9C0 ; SpacingMark # Mc [3] JAVANESE CONSONANT SIGN PENGKAL..JAVANESE PANGKON +A9BE..A9BF ; SpacingMark # Mc [2] JAVANESE CONSONANT SIGN PENGKAL..JAVANESE CONSONANT SIGN CAKRA AA2F..AA30 ; SpacingMark # Mc [2] CHAM VOWEL SIGN O..CHAM VOWEL SIGN AI AA33..AA34 ; SpacingMark # Mc [2] CHAM CONSONANT SIGN YA..CHAM CONSONANT SIGN RA AA4D ; SpacingMark # Mc CHAM CONSONANT SIGN FINAL H @@ -574,18 +602,20 @@ ABEC ; SpacingMark # Mc MEETEI MAYEK LUM IYEK 11145..11146 ; SpacingMark # Mc [2] CHAKMA VOWEL SIGN AA..CHAKMA VOWEL SIGN EI 11182 ; SpacingMark # Mc SHARADA SIGN VISARGA 111B3..111B5 ; SpacingMark # Mc [3] SHARADA VOWEL SIGN AA..SHARADA VOWEL SIGN II -111BF..111C0 ; SpacingMark # Mc [2] SHARADA VOWEL SIGN AU..SHARADA SIGN VIRAMA +111BF ; SpacingMark # Mc SHARADA VOWEL SIGN AU 111CE ; SpacingMark # Mc SHARADA VOWEL SIGN PRISHTHAMATRA E 1122C..1122E ; SpacingMark # Mc [3] KHOJKI VOWEL SIGN AA..KHOJKI VOWEL SIGN II 11232..11233 ; SpacingMark # Mc [2] KHOJKI VOWEL SIGN O..KHOJKI VOWEL SIGN AU -11235 ; SpacingMark # Mc KHOJKI SIGN VIRAMA 112E0..112E2 ; SpacingMark # Mc [3] KHUDAWADI VOWEL SIGN AA..KHUDAWADI VOWEL SIGN II 11302..11303 ; SpacingMark # Mc [2] GRANTHA SIGN ANUSVARA..GRANTHA SIGN VISARGA 1133F ; SpacingMark # Mc GRANTHA VOWEL SIGN I 11341..11344 ; SpacingMark # Mc [4] GRANTHA VOWEL SIGN U..GRANTHA VOWEL SIGN VOCALIC RR 11347..11348 ; SpacingMark # Mc [2] GRANTHA VOWEL SIGN EE..GRANTHA VOWEL SIGN AI -1134B..1134D ; SpacingMark # Mc [3] GRANTHA VOWEL SIGN OO..GRANTHA SIGN VIRAMA +1134B..1134C ; SpacingMark # Mc [2] GRANTHA VOWEL SIGN OO..GRANTHA VOWEL SIGN AU 11362..11363 ; SpacingMark # Mc [2] GRANTHA VOWEL SIGN VOCALIC L..GRANTHA VOWEL SIGN VOCALIC LL +113B9..113BA ; SpacingMark # Mc [2] TULU-TIGALARI VOWEL SIGN I..TULU-TIGALARI VOWEL SIGN II +113CA ; SpacingMark # Mc TULU-TIGALARI SIGN CANDRA ANUNASIKA +113CC..113CD ; SpacingMark # Mc [2] TULU-TIGALARI SIGN ANUSVARA..TULU-TIGALARI SIGN VISARGA 11435..11437 ; SpacingMark # Mc [3] NEWA VOWEL SIGN AA..NEWA VOWEL SIGN II 11440..11441 ; SpacingMark # Mc [2] NEWA VOWEL SIGN O..NEWA VOWEL SIGN AU 11445 ; SpacingMark # Mc NEWA SIGN VISARGA @@ -602,13 +632,12 @@ ABEC ; SpacingMark # Mc MEETEI MAYEK LUM IYEK 1163E ; SpacingMark # Mc MODI SIGN VISARGA 116AC ; SpacingMark # Mc TAKRI SIGN VISARGA 116AE..116AF ; SpacingMark # Mc [2] TAKRI VOWEL SIGN I..TAKRI VOWEL SIGN II -116B6 ; SpacingMark # Mc TAKRI SIGN VIRAMA +1171E ; SpacingMark # Mc AHOM CONSONANT SIGN MEDIAL RA 11726 ; SpacingMark # Mc AHOM VOWEL SIGN E 1182C..1182E ; SpacingMark # Mc [3] DOGRA VOWEL SIGN AA..DOGRA VOWEL SIGN II 11838 ; SpacingMark # Mc DOGRA SIGN VISARGA 11931..11935 ; SpacingMark # Mc [5] DIVES AKURU VOWEL SIGN I..DIVES AKURU VOWEL SIGN E 11937..11938 ; SpacingMark # Mc [2] DIVES AKURU VOWEL SIGN AI..DIVES AKURU VOWEL SIGN O -1193D ; SpacingMark # Mc DIVES AKURU SIGN HALANTA 11940 ; SpacingMark # Mc DIVES AKURU MEDIAL YA 11942 ; SpacingMark # Mc DIVES AKURU MEDIAL RA 119D1..119D3 ; SpacingMark # Mc [3] NANDINAGARI VOWEL SIGN AA..NANDINAGARI VOWEL SIGN II @@ -629,13 +658,10 @@ ABEC ; SpacingMark # Mc MEETEI MAYEK LUM IYEK 11F03 ; SpacingMark # Mc KAWI SIGN VISARGA 11F34..11F35 ; SpacingMark # Mc [2] KAWI VOWEL SIGN AA..KAWI VOWEL SIGN ALTERNATE AA 11F3E..11F3F ; SpacingMark # Mc [2] KAWI VOWEL SIGN E..KAWI VOWEL SIGN AI -11F41 ; SpacingMark # Mc KAWI SIGN KILLER +1612A..1612C ; SpacingMark # Mc [3] GURUNG KHEMA CONSONANT SIGN MEDIAL YA..GURUNG KHEMA CONSONANT SIGN MEDIAL HA 16F51..16F87 ; SpacingMark # Mc [55] MIAO SIGN ASPIRATION..MIAO VOWEL SIGN UI -16FF0..16FF1 ; SpacingMark # Mc [2] VIETNAMESE ALTERNATE READING MARK CA..VIETNAMESE ALTERNATE READING MARK NHAY -1D166 ; SpacingMark # Mc MUSICAL SYMBOL COMBINING SPRECHGESANG STEM -1D16D ; SpacingMark # Mc MUSICAL SYMBOL COMBINING AUGMENTATION DOT -# Total code points: 395 +# Total code points: 378 # ================================================ @@ -648,8 +674,10 @@ A960..A97C ; L # Lo [29] HANGUL CHOSEONG TIKEUT-MIEUM..HANGUL CHOSEONG SSANG 1160..11A7 ; V # Lo [72] HANGUL JUNGSEONG FILLER..HANGUL JUNGSEONG O-YAE D7B0..D7C6 ; V # Lo [23] HANGUL JUNGSEONG O-YEO..HANGUL JUNGSEONG ARAEA-E +16D63 ; V # Lo KIRAT RAI VOWEL SIGN AA +16D67..16D6A ; V # Lo [4] KIRAT RAI VOWEL SIGN E..KIRAT RAI VOWEL SIGN AU -# Total code points: 95 +# Total code points: 100 # ================================================ diff --git a/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakTest.txt b/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakTest.txt index 3c73f97b..d10c174b 100644 --- a/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakTest.txt +++ b/pkgs/characters/third_party/Unicode_Consortium/GraphemeBreakTest.txt @@ -1,8 +1,8 @@ -# GraphemeBreakTest-15.0.0.txt -# Date: 2022-02-26, 00:38:37 GMT -# © 2022 Unicode®, Inc. +# GraphemeBreakTest-16.0.0.txt +# Date: 2024-05-02, 15:02:48 GMT +# © 2024 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. -# For terms of use, see https://www.unicode.org/terms_of_use.html +# For terms of use and license, see https://www.unicode.org/terms_of_use.html # # Unicode Character Database # For documentation, see https://www.unicode.org/reports/tr44/ @@ -30,14 +30,14 @@ ÷ 0020 × 0308 ÷ 000A ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 0020 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) ÷ [5.0] (Control) ÷ [0.3] ÷ 0020 × 0308 ÷ 0001 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 0020 × 034F ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0020 × 0308 × 034F ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 0020 × 200C ÷ # ÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0020 × 0308 × 200C ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 0020 ÷ 1F1E6 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0020 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0020 ÷ 0600 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 0020 × 0308 ÷ 0600 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0020 × 0903 ÷ # ÷ [0.2] SPACE (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0020 × 0308 × 0903 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0020 × 0A03 ÷ # ÷ [0.2] SPACE (Other) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0020 × 0308 × 0A03 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 0020 ÷ 1100 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0020 × 0308 ÷ 1100 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0020 ÷ 1160 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -48,10 +48,22 @@ ÷ 0020 × 0308 ÷ AC00 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 0020 ÷ AC01 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 0020 × 0308 ÷ AC01 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0020 × 0903 ÷ # ÷ [0.2] SPACE (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0020 × 0308 × 0903 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0020 ÷ 0904 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0020 × 0308 ÷ 0904 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0020 ÷ 0D4E ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0020 × 0308 ÷ 0D4E ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0020 ÷ 0915 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0020 × 0308 ÷ 0915 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 0020 ÷ 231A ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0020 × 0308 ÷ 231A ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0020 × 0300 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 0020 × 0308 × 0300 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0020 × 0900 ÷ # ÷ [0.2] SPACE (Other) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0020 × 0308 × 0900 ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0020 × 094D ÷ # ÷ [0.2] SPACE (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0020 × 0308 × 094D ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 0020 × 200D ÷ # ÷ [0.2] SPACE (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0020 × 0308 × 200D ÷ # ÷ [0.2] SPACE (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0020 ÷ 0378 ÷ # ÷ [0.2] SPACE (Other) ÷ [999.0] (Other) ÷ [0.3] @@ -64,14 +76,14 @@ ÷ 000D ÷ 0308 ÷ 000A ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 000D ÷ 0001 ÷ # ÷ [0.2] (CR) ÷ [4.0] (Control) ÷ [0.3] ÷ 000D ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 000D ÷ 034F ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 000D ÷ 0308 × 034F ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 000D ÷ 200C ÷ # ÷ [0.2] (CR) ÷ [4.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 000D ÷ 0308 × 200C ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 000D ÷ 1F1E6 ÷ # ÷ [0.2] (CR) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 000D ÷ 0308 ÷ 1F1E6 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 000D ÷ 0600 ÷ # ÷ [0.2] (CR) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 000D ÷ 0308 ÷ 0600 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 000D ÷ 0903 ÷ # ÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 000D ÷ 0308 × 0903 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 000D ÷ 0A03 ÷ # ÷ [0.2] (CR) ÷ [4.0] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 000D ÷ 0308 × 0A03 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 000D ÷ 1100 ÷ # ÷ [0.2] (CR) ÷ [4.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 000D ÷ 0308 ÷ 1100 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 000D ÷ 1160 ÷ # ÷ [0.2] (CR) ÷ [4.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -82,10 +94,22 @@ ÷ 000D ÷ 0308 ÷ AC00 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 000D ÷ AC01 ÷ # ÷ [0.2] (CR) ÷ [4.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 000D ÷ 0308 ÷ AC01 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 000D ÷ 0903 ÷ # ÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 000D ÷ 0308 × 0903 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 000D ÷ 0904 ÷ # ÷ [0.2] (CR) ÷ [4.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 000D ÷ 0308 ÷ 0904 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 000D ÷ 0D4E ÷ # ÷ [0.2] (CR) ÷ [4.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 000D ÷ 0308 ÷ 0D4E ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 000D ÷ 0915 ÷ # ÷ [0.2] (CR) ÷ [4.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 000D ÷ 0308 ÷ 0915 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 000D ÷ 231A ÷ # ÷ [0.2] (CR) ÷ [4.0] WATCH (ExtPict) ÷ [0.3] ÷ 000D ÷ 0308 ÷ 231A ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 000D ÷ 0300 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 000D ÷ 0308 × 0300 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 000D ÷ 0900 ÷ # ÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 000D ÷ 0308 × 0900 ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 000D ÷ 094D ÷ # ÷ [0.2] (CR) ÷ [4.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 000D ÷ 0308 × 094D ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 000D ÷ 200D ÷ # ÷ [0.2] (CR) ÷ [4.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 000D ÷ 0308 × 200D ÷ # ÷ [0.2] (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 000D ÷ 0378 ÷ # ÷ [0.2] (CR) ÷ [4.0] (Other) ÷ [0.3] @@ -98,14 +122,14 @@ ÷ 000A ÷ 0308 ÷ 000A ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 000A ÷ 0001 ÷ # ÷ [0.2] (LF) ÷ [4.0] (Control) ÷ [0.3] ÷ 000A ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 000A ÷ 034F ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 000A ÷ 0308 × 034F ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 000A ÷ 200C ÷ # ÷ [0.2] (LF) ÷ [4.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 000A ÷ 0308 × 200C ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 000A ÷ 1F1E6 ÷ # ÷ [0.2] (LF) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 000A ÷ 0308 ÷ 1F1E6 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 000A ÷ 0600 ÷ # ÷ [0.2] (LF) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 000A ÷ 0308 ÷ 0600 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 000A ÷ 0903 ÷ # ÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 000A ÷ 0308 × 0903 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 000A ÷ 0A03 ÷ # ÷ [0.2] (LF) ÷ [4.0] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 000A ÷ 0308 × 0A03 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 000A ÷ 1100 ÷ # ÷ [0.2] (LF) ÷ [4.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 000A ÷ 0308 ÷ 1100 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 000A ÷ 1160 ÷ # ÷ [0.2] (LF) ÷ [4.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -116,10 +140,22 @@ ÷ 000A ÷ 0308 ÷ AC00 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 000A ÷ AC01 ÷ # ÷ [0.2] (LF) ÷ [4.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 000A ÷ 0308 ÷ AC01 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 000A ÷ 0903 ÷ # ÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 000A ÷ 0308 × 0903 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 000A ÷ 0904 ÷ # ÷ [0.2] (LF) ÷ [4.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 000A ÷ 0308 ÷ 0904 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 000A ÷ 0D4E ÷ # ÷ [0.2] (LF) ÷ [4.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 000A ÷ 0308 ÷ 0D4E ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 000A ÷ 0915 ÷ # ÷ [0.2] (LF) ÷ [4.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 000A ÷ 0308 ÷ 0915 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 000A ÷ 231A ÷ # ÷ [0.2] (LF) ÷ [4.0] WATCH (ExtPict) ÷ [0.3] ÷ 000A ÷ 0308 ÷ 231A ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 000A ÷ 0300 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 000A ÷ 0308 × 0300 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 000A ÷ 0900 ÷ # ÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 000A ÷ 0308 × 0900 ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 000A ÷ 094D ÷ # ÷ [0.2] (LF) ÷ [4.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 000A ÷ 0308 × 094D ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 000A ÷ 200D ÷ # ÷ [0.2] (LF) ÷ [4.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 000A ÷ 0308 × 200D ÷ # ÷ [0.2] (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 000A ÷ 0378 ÷ # ÷ [0.2] (LF) ÷ [4.0] (Other) ÷ [0.3] @@ -132,14 +168,14 @@ ÷ 0001 ÷ 0308 ÷ 000A ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 0001 ÷ 0001 ÷ # ÷ [0.2] (Control) ÷ [4.0] (Control) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ 0001 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 0001 ÷ 034F ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0001 ÷ 0308 × 034F ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 0001 ÷ 200C ÷ # ÷ [0.2] (Control) ÷ [4.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0001 ÷ 0308 × 200C ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 0001 ÷ 1F1E6 ÷ # ÷ [0.2] (Control) ÷ [4.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ 1F1E6 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0001 ÷ 0600 ÷ # ÷ [0.2] (Control) ÷ [4.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ 0600 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0001 ÷ 0903 ÷ # ÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0001 ÷ 0308 × 0903 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0001 ÷ 0A03 ÷ # ÷ [0.2] (Control) ÷ [4.0] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0001 ÷ 0308 × 0A03 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 0001 ÷ 1100 ÷ # ÷ [0.2] (Control) ÷ [4.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ 1100 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0001 ÷ 1160 ÷ # ÷ [0.2] (Control) ÷ [4.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -150,48 +186,72 @@ ÷ 0001 ÷ 0308 ÷ AC00 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 0001 ÷ AC01 ÷ # ÷ [0.2] (Control) ÷ [4.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ AC01 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0001 ÷ 0903 ÷ # ÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0001 ÷ 0308 × 0903 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0001 ÷ 0904 ÷ # ÷ [0.2] (Control) ÷ [4.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0001 ÷ 0308 ÷ 0904 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0001 ÷ 0D4E ÷ # ÷ [0.2] (Control) ÷ [4.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0001 ÷ 0308 ÷ 0D4E ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0001 ÷ 0915 ÷ # ÷ [0.2] (Control) ÷ [4.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0001 ÷ 0308 ÷ 0915 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 0001 ÷ 231A ÷ # ÷ [0.2] (Control) ÷ [4.0] WATCH (ExtPict) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ 231A ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0001 ÷ 0300 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 0001 ÷ 0308 × 0300 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0001 ÷ 0900 ÷ # ÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0001 ÷ 0308 × 0900 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0001 ÷ 094D ÷ # ÷ [0.2] (Control) ÷ [4.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0001 ÷ 0308 × 094D ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 0001 ÷ 200D ÷ # ÷ [0.2] (Control) ÷ [4.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0001 ÷ 0308 × 200D ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0001 ÷ 0378 ÷ # ÷ [0.2] (Control) ÷ [4.0] (Other) ÷ [0.3] ÷ 0001 ÷ 0308 ÷ 0378 ÷ # ÷ [0.2] (Control) ÷ [4.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] -÷ 034F ÷ 0020 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] SPACE (Other) ÷ [0.3] -÷ 034F × 0308 ÷ 0020 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] -÷ 034F ÷ 000D ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [5.0] (CR) ÷ [0.3] -÷ 034F × 0308 ÷ 000D ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] -÷ 034F ÷ 000A ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [5.0] (LF) ÷ [0.3] -÷ 034F × 0308 ÷ 000A ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] -÷ 034F ÷ 0001 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [5.0] (Control) ÷ [0.3] -÷ 034F × 0308 ÷ 0001 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 034F × 034F ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 034F × 0308 × 034F ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 034F ÷ 1F1E6 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] -÷ 034F × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] -÷ 034F ÷ 0600 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 034F × 0308 ÷ 0600 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 034F × 0903 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 034F × 0308 × 0903 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 034F ÷ 1100 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] -÷ 034F × 0308 ÷ 1100 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] -÷ 034F ÷ 1160 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] -÷ 034F × 0308 ÷ 1160 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] -÷ 034F ÷ 11A8 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] -÷ 034F × 0308 ÷ 11A8 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] -÷ 034F ÷ AC00 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] -÷ 034F × 0308 ÷ AC00 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] -÷ 034F ÷ AC01 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] -÷ 034F × 0308 ÷ AC01 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] -÷ 034F ÷ 231A ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] -÷ 034F × 0308 ÷ 231A ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] -÷ 034F × 0300 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] -÷ 034F × 0308 × 0300 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] -÷ 034F × 200D ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] -÷ 034F × 0308 × 200D ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] -÷ 034F ÷ 0378 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) ÷ [999.0] (Other) ÷ [0.3] -÷ 034F × 0308 ÷ 0378 ÷ # ÷ [0.2] COMBINING GRAPHEME JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 200C ÷ 0020 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 200C × 0308 ÷ 0020 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 200C ÷ 000D ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [5.0] (CR) ÷ [0.3] +÷ 200C × 0308 ÷ 000D ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 200C ÷ 000A ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [5.0] (LF) ÷ [0.3] +÷ 200C × 0308 ÷ 000A ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 200C ÷ 0001 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [5.0] (Control) ÷ [0.3] +÷ 200C × 0308 ÷ 0001 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 200C × 200C ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 200C × 0308 × 200C ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 200C ÷ 1F1E6 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 200C × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 200C ÷ 0600 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 200C × 0308 ÷ 0600 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 200C × 0A03 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 200C × 0308 × 0A03 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 200C ÷ 1100 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 200C × 0308 ÷ 1100 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 200C ÷ 1160 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 200C × 0308 ÷ 1160 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 200C ÷ 11A8 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 200C × 0308 ÷ 11A8 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 200C ÷ AC00 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 200C × 0308 ÷ AC00 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 200C ÷ AC01 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 200C × 0308 ÷ AC01 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 200C × 0903 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 200C × 0308 × 0903 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 200C ÷ 0904 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 200C × 0308 ÷ 0904 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 200C ÷ 0D4E ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 200C × 0308 ÷ 0D4E ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 200C ÷ 0915 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 200C × 0308 ÷ 0915 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 200C ÷ 231A ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 200C × 0308 ÷ 231A ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 200C × 0300 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 200C × 0308 × 0300 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 200C × 0900 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 200C × 0308 × 0900 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 200C × 094D ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 200C × 0308 × 094D ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 200C × 200D ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 200C × 0308 × 200D ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 200C ÷ 0378 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) ÷ [999.0] (Other) ÷ [0.3] +÷ 200C × 0308 ÷ 0378 ÷ # ÷ [0.2] ZERO WIDTH NON-JOINER (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] ÷ 1F1E6 ÷ 0020 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ 0020 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 1F1E6 ÷ 000D ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [5.0] (CR) ÷ [0.3] @@ -200,14 +260,14 @@ ÷ 1F1E6 × 0308 ÷ 000A ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 1F1E6 ÷ 0001 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [5.0] (Control) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ 0001 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 1F1E6 × 034F ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 1F1E6 × 0308 × 034F ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 1F1E6 × 200C ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 1F1E6 × 0308 × 200C ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 1F1E6 × 1F1E6 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [12.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 1F1E6 ÷ 0600 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ 0600 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 1F1E6 × 0903 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 1F1E6 × 0308 × 0903 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 1F1E6 × 0A03 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 1F1E6 × 0308 × 0A03 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 1F1E6 ÷ 1100 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ 1100 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 1F1E6 ÷ 1160 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -218,10 +278,22 @@ ÷ 1F1E6 × 0308 ÷ AC00 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 1F1E6 ÷ AC01 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ AC01 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 1F1E6 × 0903 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 1F1E6 × 0308 × 0903 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 1F1E6 ÷ 0904 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 1F1E6 × 0308 ÷ 0904 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 1F1E6 ÷ 0D4E ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 1F1E6 × 0308 ÷ 0D4E ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 1F1E6 ÷ 0915 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 1F1E6 × 0308 ÷ 0915 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 1F1E6 ÷ 231A ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 1F1E6 × 0308 ÷ 231A ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 1F1E6 × 0300 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 1F1E6 × 0308 × 0300 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 1F1E6 × 0900 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 1F1E6 × 0308 × 0900 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 1F1E6 × 094D ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 1F1E6 × 0308 × 094D ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 1F1E6 × 200D ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 1F1E6 × 0308 × 200D ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 1F1E6 ÷ 0378 ÷ # ÷ [0.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [999.0] (Other) ÷ [0.3] @@ -234,14 +306,14 @@ ÷ 0600 × 0308 ÷ 000A ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 0600 ÷ 0001 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) ÷ [5.0] (Control) ÷ [0.3] ÷ 0600 × 0308 ÷ 0001 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 0600 × 034F ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0600 × 0308 × 034F ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 0600 × 200C ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0600 × 0308 × 200C ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 0600 × 1F1E6 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0600 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0600 × 0600 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 0600 × 0308 ÷ 0600 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0600 × 0903 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0600 × 0308 × 0903 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0600 × 0A03 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0600 × 0308 × 0A03 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 0600 × 1100 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0600 × 0308 ÷ 1100 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0600 × 1160 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -252,48 +324,72 @@ ÷ 0600 × 0308 ÷ AC00 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 0600 × AC01 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 0600 × 0308 ÷ AC01 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0600 × 0903 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0600 × 0308 × 0903 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0600 × 0904 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0600 × 0308 ÷ 0904 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0600 × 0D4E ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0600 × 0308 ÷ 0D4E ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0600 × 0915 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0600 × 0308 ÷ 0915 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 0600 × 231A ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] WATCH (ExtPict) ÷ [0.3] ÷ 0600 × 0308 ÷ 231A ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0600 × 0300 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 0600 × 0308 × 0300 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0600 × 0900 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0600 × 0308 × 0900 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0600 × 094D ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0600 × 0308 × 094D ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 0600 × 200D ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0600 × 0308 × 200D ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0600 × 0378 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.2] (Other) ÷ [0.3] ÷ 0600 × 0308 ÷ 0378 ÷ # ÷ [0.2] ARABIC NUMBER SIGN (Prepend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] -÷ 0903 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] SPACE (Other) ÷ [0.3] -÷ 0903 × 0308 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] -÷ 0903 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [5.0] (CR) ÷ [0.3] -÷ 0903 × 0308 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] -÷ 0903 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [5.0] (LF) ÷ [0.3] -÷ 0903 × 0308 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] -÷ 0903 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [5.0] (Control) ÷ [0.3] -÷ 0903 × 0308 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 0903 × 034F ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0903 × 0308 × 034F ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0903 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] -÷ 0903 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] -÷ 0903 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0903 × 0308 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0903 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0903 × 0308 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0903 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] -÷ 0903 × 0308 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] -÷ 0903 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] -÷ 0903 × 0308 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] -÷ 0903 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] -÷ 0903 × 0308 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] -÷ 0903 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] -÷ 0903 × 0308 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] -÷ 0903 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] -÷ 0903 × 0308 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] -÷ 0903 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] -÷ 0903 × 0308 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] -÷ 0903 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] -÷ 0903 × 0308 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] -÷ 0903 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] -÷ 0903 × 0308 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] -÷ 0903 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] (Other) ÷ [0.3] -÷ 0903 × 0308 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0A03 ÷ 0020 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0020 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0A03 ÷ 000D ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [5.0] (CR) ÷ [0.3] +÷ 0A03 × 0308 ÷ 000D ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0A03 ÷ 000A ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [5.0] (LF) ÷ [0.3] +÷ 0A03 × 0308 ÷ 000A ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0A03 ÷ 0001 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [5.0] (Control) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0001 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0A03 × 200C ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0A03 × 0308 × 200C ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0A03 ÷ 1F1E6 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0A03 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0A03 ÷ 0600 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0600 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0A03 × 0A03 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0A03 × 0308 × 0A03 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0A03 ÷ 1100 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0A03 × 0308 ÷ 1100 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0A03 ÷ 1160 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0A03 × 0308 ÷ 1160 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0A03 ÷ 11A8 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0A03 × 0308 ÷ 11A8 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0A03 ÷ AC00 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0A03 × 0308 ÷ AC00 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0A03 ÷ AC01 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0A03 × 0308 ÷ AC01 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0A03 × 0903 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0A03 × 0308 × 0903 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0A03 ÷ 0904 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0904 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0A03 ÷ 0D4E ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0D4E ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0A03 ÷ 0915 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0915 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0A03 ÷ 231A ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0A03 × 0308 ÷ 231A ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0A03 × 0300 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 0308 × 0300 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 0900 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 0308 × 0900 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 094D ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 0308 × 094D ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 200D ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0A03 × 0308 × 200D ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0A03 ÷ 0378 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [999.0] (Other) ÷ [0.3] +÷ 0A03 × 0308 ÷ 0378 ÷ # ÷ [0.2] GURMUKHI SIGN VISARGA (SpacingMark) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] ÷ 1100 ÷ 0020 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 1100 × 0308 ÷ 0020 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 1100 ÷ 000D ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [5.0] (CR) ÷ [0.3] @@ -302,14 +398,14 @@ ÷ 1100 × 0308 ÷ 000A ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 1100 ÷ 0001 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [5.0] (Control) ÷ [0.3] ÷ 1100 × 0308 ÷ 0001 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 1100 × 034F ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 1100 × 0308 × 034F ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 1100 × 200C ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 1100 × 0308 × 200C ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 1100 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 1100 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 1100 ÷ 0600 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 1100 × 0308 ÷ 0600 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 1100 × 0903 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 1100 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 1100 × 0A03 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 1100 × 0308 × 0A03 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 1100 × 1100 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 1100 × 0308 ÷ 1100 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 1100 × 1160 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -320,10 +416,22 @@ ÷ 1100 × 0308 ÷ AC00 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 1100 × AC01 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [6.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 1100 × 0308 ÷ AC01 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 1100 × 0903 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 1100 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 1100 ÷ 0904 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 1100 × 0308 ÷ 0904 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 1100 ÷ 0D4E ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 1100 × 0308 ÷ 0D4E ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 1100 ÷ 0915 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 1100 × 0308 ÷ 0915 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 1100 ÷ 231A ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 1100 × 0308 ÷ 231A ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 1100 × 0300 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 1100 × 0308 × 0300 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 1100 × 0900 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 1100 × 0308 × 0900 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 1100 × 094D ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 1100 × 0308 × 094D ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 1100 × 200D ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 1100 × 0308 × 200D ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 1100 ÷ 0378 ÷ # ÷ [0.2] HANGUL CHOSEONG KIYEOK (L) ÷ [999.0] (Other) ÷ [0.3] @@ -336,14 +444,14 @@ ÷ 1160 × 0308 ÷ 000A ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 1160 ÷ 0001 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [5.0] (Control) ÷ [0.3] ÷ 1160 × 0308 ÷ 0001 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 1160 × 034F ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 1160 × 0308 × 034F ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 1160 × 200C ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 1160 × 0308 × 200C ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 1160 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 1160 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 1160 ÷ 0600 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 1160 × 0308 ÷ 0600 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 1160 × 0903 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 1160 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 1160 × 0A03 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 1160 × 0308 × 0A03 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 1160 ÷ 1100 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 1160 × 0308 ÷ 1100 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 1160 × 1160 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [7.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -354,10 +462,22 @@ ÷ 1160 × 0308 ÷ AC00 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 1160 ÷ AC01 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 1160 × 0308 ÷ AC01 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 1160 × 0903 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 1160 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 1160 ÷ 0904 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 1160 × 0308 ÷ 0904 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 1160 ÷ 0D4E ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 1160 × 0308 ÷ 0D4E ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 1160 ÷ 0915 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 1160 × 0308 ÷ 0915 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 1160 ÷ 231A ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 1160 × 0308 ÷ 231A ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 1160 × 0300 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 1160 × 0308 × 0300 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 1160 × 0900 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 1160 × 0308 × 0900 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 1160 × 094D ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 1160 × 0308 × 094D ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 1160 × 200D ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 1160 × 0308 × 200D ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 1160 ÷ 0378 ÷ # ÷ [0.2] HANGUL JUNGSEONG FILLER (V) ÷ [999.0] (Other) ÷ [0.3] @@ -370,14 +490,14 @@ ÷ 11A8 × 0308 ÷ 000A ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 11A8 ÷ 0001 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [5.0] (Control) ÷ [0.3] ÷ 11A8 × 0308 ÷ 0001 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 11A8 × 034F ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 11A8 × 0308 × 034F ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 11A8 × 200C ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 11A8 × 0308 × 200C ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 11A8 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 11A8 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 11A8 ÷ 0600 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 11A8 × 0308 ÷ 0600 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 11A8 × 0903 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 11A8 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 11A8 × 0A03 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 11A8 × 0308 × 0A03 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 11A8 ÷ 1100 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 11A8 × 0308 ÷ 1100 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 11A8 ÷ 1160 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -388,10 +508,22 @@ ÷ 11A8 × 0308 ÷ AC00 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 11A8 ÷ AC01 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 11A8 × 0308 ÷ AC01 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 11A8 × 0903 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 11A8 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 11A8 ÷ 0904 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 11A8 × 0308 ÷ 0904 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 11A8 ÷ 0D4E ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 11A8 × 0308 ÷ 0D4E ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 11A8 ÷ 0915 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 11A8 × 0308 ÷ 0915 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 11A8 ÷ 231A ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 11A8 × 0308 ÷ 231A ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 11A8 × 0300 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 11A8 × 0308 × 0300 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 11A8 × 0900 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 11A8 × 0308 × 0900 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 11A8 × 094D ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 11A8 × 0308 × 094D ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 11A8 × 200D ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 11A8 × 0308 × 200D ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 11A8 ÷ 0378 ÷ # ÷ [0.2] HANGUL JONGSEONG KIYEOK (T) ÷ [999.0] (Other) ÷ [0.3] @@ -404,14 +536,14 @@ ÷ AC00 × 0308 ÷ 000A ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ AC00 ÷ 0001 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [5.0] (Control) ÷ [0.3] ÷ AC00 × 0308 ÷ 0001 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ AC00 × 034F ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ AC00 × 0308 × 034F ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ AC00 × 200C ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ AC00 × 0308 × 200C ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ AC00 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ AC00 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ AC00 ÷ 0600 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ AC00 × 0308 ÷ 0600 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ AC00 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ AC00 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ AC00 × 0A03 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ AC00 × 0308 × 0A03 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ AC00 ÷ 1100 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ AC00 × 0308 ÷ 1100 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ AC00 × 1160 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [7.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -422,10 +554,22 @@ ÷ AC00 × 0308 ÷ AC00 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ AC00 ÷ AC01 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ AC00 × 0308 ÷ AC01 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ AC00 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ AC00 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ AC00 ÷ 0904 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ AC00 × 0308 ÷ 0904 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ AC00 ÷ 0D4E ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ AC00 × 0308 ÷ 0D4E ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ AC00 ÷ 0915 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ AC00 × 0308 ÷ 0915 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ AC00 ÷ 231A ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ AC00 × 0308 ÷ 231A ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ AC00 × 0300 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ AC00 × 0308 × 0300 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ AC00 × 0900 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ AC00 × 0308 × 0900 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ AC00 × 094D ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ AC00 × 0308 × 094D ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ AC00 × 200D ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ AC00 × 0308 × 200D ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ AC00 ÷ 0378 ÷ # ÷ [0.2] HANGUL SYLLABLE GA (LV) ÷ [999.0] (Other) ÷ [0.3] @@ -438,14 +582,14 @@ ÷ AC01 × 0308 ÷ 000A ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ AC01 ÷ 0001 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [5.0] (Control) ÷ [0.3] ÷ AC01 × 0308 ÷ 0001 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ AC01 × 034F ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ AC01 × 0308 × 034F ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ AC01 × 200C ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ AC01 × 0308 × 200C ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ AC01 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ AC01 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ AC01 ÷ 0600 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ AC01 × 0308 ÷ 0600 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ AC01 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ AC01 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ AC01 × 0A03 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ AC01 × 0308 × 0A03 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ AC01 ÷ 1100 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ AC01 × 0308 ÷ 1100 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ AC01 ÷ 1160 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -456,14 +600,210 @@ ÷ AC01 × 0308 ÷ AC00 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ AC01 ÷ AC01 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ AC01 × 0308 ÷ AC01 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ AC01 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ AC01 × 0308 × 0903 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ AC01 ÷ 0904 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ AC01 × 0308 ÷ 0904 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ AC01 ÷ 0D4E ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ AC01 × 0308 ÷ 0D4E ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ AC01 ÷ 0915 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ AC01 × 0308 ÷ 0915 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ AC01 ÷ 231A ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ AC01 × 0308 ÷ 231A ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ AC01 × 0300 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ AC01 × 0308 × 0300 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ AC01 × 0900 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ AC01 × 0308 × 0900 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ AC01 × 094D ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ AC01 × 0308 × 094D ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ AC01 × 200D ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ AC01 × 0308 × 200D ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ AC01 ÷ 0378 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) ÷ [999.0] (Other) ÷ [0.3] ÷ AC01 × 0308 ÷ 0378 ÷ # ÷ [0.2] HANGUL SYLLABLE GAG (LVT) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0903 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0903 × 0308 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0903 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [5.0] (CR) ÷ [0.3] +÷ 0903 × 0308 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0903 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [5.0] (LF) ÷ [0.3] +÷ 0903 × 0308 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0903 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [5.0] (Control) ÷ [0.3] +÷ 0903 × 0308 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0903 × 200C ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0903 × 0308 × 200C ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0903 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0903 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0903 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0903 × 0308 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0903 × 0A03 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0903 × 0308 × 0A03 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0903 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0903 × 0308 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0903 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0903 × 0308 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0903 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0903 × 0308 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0903 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0903 × 0308 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0903 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0903 × 0308 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0903 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0903 × 0308 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0903 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0903 × 0308 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0903 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0903 × 0308 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0903 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0903 × 0308 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0903 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0903 × 0308 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0903 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0903 × 0308 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0903 × 0900 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0903 × 0308 × 0900 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0903 × 094D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0903 × 0308 × 094D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0903 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0903 × 0308 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0903 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] (Other) ÷ [0.3] +÷ 0903 × 0308 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0904 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0904 × 0308 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0904 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [5.0] (CR) ÷ [0.3] +÷ 0904 × 0308 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0904 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [5.0] (LF) ÷ [0.3] +÷ 0904 × 0308 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0904 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [5.0] (Control) ÷ [0.3] +÷ 0904 × 0308 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0904 × 200C ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0904 × 0308 × 200C ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0904 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0904 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0904 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0904 × 0308 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0904 × 0A03 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0904 × 0308 × 0A03 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0904 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0904 × 0308 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0904 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0904 × 0308 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0904 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0904 × 0308 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0904 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0904 × 0308 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0904 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0904 × 0308 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0904 × 0903 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0904 × 0308 × 0903 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0904 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0904 × 0308 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0904 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0904 × 0308 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0904 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0904 × 0308 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0904 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0904 × 0308 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0904 × 0300 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0904 × 0308 × 0300 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0904 × 0900 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0904 × 0308 × 0900 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0904 × 094D ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0904 × 0308 × 094D ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0904 × 200D ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0904 × 0308 × 200D ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0904 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [999.0] (Other) ÷ [0.3] +÷ 0904 × 0308 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0D4E × 0020 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] SPACE (Other) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0020 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0D4E ÷ 000D ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [5.0] (CR) ÷ [0.3] +÷ 0D4E × 0308 ÷ 000D ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0D4E ÷ 000A ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [5.0] (LF) ÷ [0.3] +÷ 0D4E × 0308 ÷ 000A ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0D4E ÷ 0001 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [5.0] (Control) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0001 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0D4E × 200C ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0D4E × 0308 × 200C ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0D4E × 1F1E6 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0D4E × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0D4E × 0600 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0600 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0D4E × 0A03 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0D4E × 0308 × 0A03 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0D4E × 1100 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0D4E × 0308 ÷ 1100 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0D4E × 1160 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0D4E × 0308 ÷ 1160 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0D4E × 11A8 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0D4E × 0308 ÷ 11A8 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0D4E × AC00 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0D4E × 0308 ÷ AC00 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0D4E × AC01 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0D4E × 0308 ÷ AC01 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0D4E × 0903 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0D4E × 0308 × 0903 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0D4E × 0904 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0904 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0D4E × 0D4E ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0D4E ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0D4E × 0915 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0915 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0D4E × 231A ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] WATCH (ExtPict) ÷ [0.3] +÷ 0D4E × 0308 ÷ 231A ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0D4E × 0300 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 0308 × 0300 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 0900 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 0308 × 0900 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 094D ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 0308 × 094D ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 200D ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 0308 × 200D ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0D4E × 0378 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.2] (Other) ÷ [0.3] +÷ 0D4E × 0308 ÷ 0378 ÷ # ÷ [0.2] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0915 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0915 × 0308 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0915 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [5.0] (CR) ÷ [0.3] +÷ 0915 × 0308 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0915 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [5.0] (LF) ÷ [0.3] +÷ 0915 × 0308 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0915 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [5.0] (Control) ÷ [0.3] +÷ 0915 × 0308 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0915 × 200C ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0915 × 0308 × 200C ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0915 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0915 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0915 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0915 × 0308 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0915 × 0A03 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0915 × 0308 × 0A03 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0915 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0915 × 0308 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0915 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0915 × 0308 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0915 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0915 × 0308 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0915 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0915 × 0308 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0915 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0915 × 0308 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0915 × 0903 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0915 × 0308 × 0903 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0915 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0915 × 0308 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0915 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0915 × 0308 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0915 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 0308 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0915 × 0308 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0915 × 0300 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0915 × 0308 × 0300 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0915 × 0900 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0915 × 0308 × 0900 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0915 × 094D ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0915 × 0308 × 094D ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0915 × 200D ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0915 × 0308 × 200D ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0915 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] (Other) ÷ [0.3] +÷ 0915 × 0308 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] ÷ 231A ÷ 0020 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 231A × 0308 ÷ 0020 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 231A ÷ 000D ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [5.0] (CR) ÷ [0.3] @@ -472,14 +812,14 @@ ÷ 231A × 0308 ÷ 000A ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 231A ÷ 0001 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [5.0] (Control) ÷ [0.3] ÷ 231A × 0308 ÷ 0001 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 231A × 034F ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 231A × 0308 × 034F ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 231A × 200C ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 231A × 0308 × 200C ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 231A ÷ 1F1E6 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 231A × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 231A ÷ 0600 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 231A × 0308 ÷ 0600 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 231A × 0903 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 231A × 0308 × 0903 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 231A × 0A03 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 231A × 0308 × 0A03 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 231A ÷ 1100 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 231A × 0308 ÷ 1100 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 231A ÷ 1160 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -490,10 +830,22 @@ ÷ 231A × 0308 ÷ AC00 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 231A ÷ AC01 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 231A × 0308 ÷ AC01 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 231A × 0903 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 231A × 0308 × 0903 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 231A ÷ 0904 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 231A × 0308 ÷ 0904 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 231A ÷ 0D4E ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 231A × 0308 ÷ 0D4E ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 231A ÷ 0915 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 231A × 0308 ÷ 0915 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 231A ÷ 231A ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 231A × 0308 ÷ 231A ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 231A × 0300 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 231A × 0308 × 0300 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 231A × 0900 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 231A × 0308 × 0900 ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 231A × 094D ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 231A × 0308 × 094D ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 231A × 200D ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 231A × 0308 × 200D ÷ # ÷ [0.2] WATCH (ExtPict) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 231A ÷ 0378 ÷ # ÷ [0.2] WATCH (ExtPict) ÷ [999.0] (Other) ÷ [0.3] @@ -506,14 +858,14 @@ ÷ 0300 × 0308 ÷ 000A ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 0300 ÷ 0001 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] ÷ 0300 × 0308 ÷ 0001 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 0300 × 034F ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0300 × 0308 × 034F ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 0300 × 200C ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0300 × 0308 × 200C ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 0300 ÷ 1F1E6 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0300 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0300 ÷ 0600 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 0300 × 0308 ÷ 0600 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0300 × 0903 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0300 × 0308 × 0903 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0300 × 0A03 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0300 × 0308 × 0A03 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 0300 ÷ 1100 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0300 × 0308 ÷ 1100 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0300 ÷ 1160 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -524,14 +876,118 @@ ÷ 0300 × 0308 ÷ AC00 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 0300 ÷ AC01 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 0300 × 0308 ÷ AC01 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0300 × 0903 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0300 × 0308 × 0903 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0300 ÷ 0904 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0300 × 0308 ÷ 0904 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0300 ÷ 0D4E ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0300 × 0308 ÷ 0D4E ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0300 ÷ 0915 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0300 × 0308 ÷ 0915 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 0300 ÷ 231A ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0300 × 0308 ÷ 231A ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0300 × 0300 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 0300 × 0308 × 0300 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0300 × 0900 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0300 × 0308 × 0900 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0300 × 094D ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0300 × 0308 × 094D ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 0300 × 200D ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0300 × 0308 × 200D ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0300 ÷ 0378 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] ÷ 0300 × 0308 ÷ 0378 ÷ # ÷ [0.2] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0900 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0900 × 0308 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 0900 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0900 × 0308 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 0900 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0900 × 0308 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 0900 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0900 × 0308 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 0900 × 200C ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0900 × 0308 × 200C ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0900 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0900 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 0900 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0900 × 0308 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 0900 × 0A03 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0900 × 0308 × 0A03 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0900 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0900 × 0308 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 0900 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0900 × 0308 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 0900 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0900 × 0308 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 0900 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0900 × 0308 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 0900 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0900 × 0308 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0900 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0900 × 0308 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0900 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0900 × 0308 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0900 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0900 × 0308 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0900 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0900 × 0308 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0900 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0900 × 0308 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 0900 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0900 × 0308 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0900 × 0900 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0900 × 0308 × 0900 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0900 × 094D ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0900 × 0308 × 094D ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0900 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0900 × 0308 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 0900 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 0900 × 0308 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 094D ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 094D × 0308 ÷ 0020 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] +÷ 094D ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 094D × 0308 ÷ 000D ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] +÷ 094D ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 094D × 0308 ÷ 000A ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] +÷ 094D ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 094D × 0308 ÷ 0001 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] +÷ 094D × 200C ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 094D × 0308 × 200C ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 094D ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 094D × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] +÷ 094D ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 094D × 0308 ÷ 0600 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] +÷ 094D × 0A03 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 094D × 0308 × 0A03 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 094D ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 094D × 0308 ÷ 1100 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] +÷ 094D ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 094D × 0308 ÷ 1160 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] +÷ 094D ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 094D × 0308 ÷ 11A8 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL JONGSEONG KIYEOK (T) ÷ [0.3] +÷ 094D ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 094D × 0308 ÷ AC00 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] +÷ 094D ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 094D × 0308 ÷ AC01 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 094D × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 094D × 0308 × 0903 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 094D ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 094D × 0308 ÷ 0904 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 094D ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 094D × 0308 ÷ 0D4E ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 094D ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 094D × 0308 ÷ 0915 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 094D ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 094D × 0308 ÷ 231A ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] +÷ 094D × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 094D × 0308 × 0300 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 094D × 0900 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 094D × 0308 × 0900 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 094D × 094D ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 094D × 0308 × 094D ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 094D × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 094D × 0308 × 200D ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] +÷ 094D ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] +÷ 094D × 0308 ÷ 0378 ÷ # ÷ [0.2] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] ÷ 200D ÷ 0020 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 200D × 0308 ÷ 0020 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] SPACE (Other) ÷ [0.3] ÷ 200D ÷ 000D ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [5.0] (CR) ÷ [0.3] @@ -540,14 +996,14 @@ ÷ 200D × 0308 ÷ 000A ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 200D ÷ 0001 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] ÷ 200D × 0308 ÷ 0001 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 200D × 034F ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 200D × 0308 × 034F ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 200D × 200C ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 200D × 0308 × 200C ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 200D ÷ 1F1E6 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 200D × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 200D ÷ 0600 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 200D × 0308 ÷ 0600 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 200D × 0903 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 200D × 0308 × 0903 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 200D × 0A03 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 200D × 0308 × 0A03 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 200D ÷ 1100 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 200D × 0308 ÷ 1100 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 200D ÷ 1160 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -558,10 +1014,22 @@ ÷ 200D × 0308 ÷ AC00 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 200D ÷ AC01 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 200D × 0308 ÷ AC01 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 200D × 0903 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 200D × 0308 × 0903 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 200D ÷ 0904 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 200D × 0308 ÷ 0904 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 200D ÷ 0D4E ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 200D × 0308 ÷ 0D4E ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 200D ÷ 0915 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 200D × 0308 ÷ 0915 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 200D ÷ 231A ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 200D × 0308 ÷ 231A ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 200D × 0300 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 200D × 0308 × 0300 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 200D × 0900 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 200D × 0308 × 0900 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 200D × 094D ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 200D × 0308 × 094D ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 200D × 200D ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 200D × 0308 × 200D ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 200D ÷ 0378 ÷ # ÷ [0.2] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] (Other) ÷ [0.3] @@ -574,14 +1042,14 @@ ÷ 0378 × 0308 ÷ 000A ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (LF) ÷ [0.3] ÷ 0378 ÷ 0001 ÷ # ÷ [0.2] (Other) ÷ [5.0] (Control) ÷ [0.3] ÷ 0378 × 0308 ÷ 0001 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [5.0] (Control) ÷ [0.3] -÷ 0378 × 034F ÷ # ÷ [0.2] (Other) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] -÷ 0378 × 0308 × 034F ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAPHEME JOINER (Extend) ÷ [0.3] +÷ 0378 × 200C ÷ # ÷ [0.2] (Other) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] +÷ 0378 × 0308 × 200C ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH NON-JOINER (Extend) ÷ [0.3] ÷ 0378 ÷ 1F1E6 ÷ # ÷ [0.2] (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0378 × 0308 ÷ 1F1E6 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) ÷ [0.3] ÷ 0378 ÷ 0600 ÷ # ÷ [0.2] (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] ÷ 0378 × 0308 ÷ 0600 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) ÷ [0.3] -÷ 0378 × 0903 ÷ # ÷ [0.2] (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] -÷ 0378 × 0308 × 0903 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0378 × 0A03 ÷ # ÷ [0.2] (Other) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] +÷ 0378 × 0308 × 0A03 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] GURMUKHI SIGN VISARGA (SpacingMark) ÷ [0.3] ÷ 0378 ÷ 1100 ÷ # ÷ [0.2] (Other) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0378 × 0308 ÷ 1100 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL CHOSEONG KIYEOK (L) ÷ [0.3] ÷ 0378 ÷ 1160 ÷ # ÷ [0.2] (Other) ÷ [999.0] HANGUL JUNGSEONG FILLER (V) ÷ [0.3] @@ -592,10 +1060,22 @@ ÷ 0378 × 0308 ÷ AC00 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GA (LV) ÷ [0.3] ÷ 0378 ÷ AC01 ÷ # ÷ [0.2] (Other) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] ÷ 0378 × 0308 ÷ AC01 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] HANGUL SYLLABLE GAG (LVT) ÷ [0.3] +÷ 0378 × 0903 ÷ # ÷ [0.2] (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0378 × 0308 × 0903 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [0.3] +÷ 0378 ÷ 0904 ÷ # ÷ [0.2] (Other) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0378 × 0308 ÷ 0904 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER SHORT A (ConjunctLinkingScripts) ÷ [0.3] +÷ 0378 ÷ 0D4E ÷ # ÷ [0.2] (Other) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0378 × 0308 ÷ 0D4E ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] MALAYALAM LETTER DOT REPH (Prepend_ConjunctLinkingScripts) ÷ [0.3] +÷ 0378 ÷ 0915 ÷ # ÷ [0.2] (Other) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0378 × 0308 ÷ 0915 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] ÷ 0378 ÷ 231A ÷ # ÷ [0.2] (Other) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0378 × 0308 ÷ 231A ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] WATCH (ExtPict) ÷ [0.3] ÷ 0378 × 0300 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] ÷ 0378 × 0308 × 0300 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] COMBINING GRAVE ACCENT (Extend_ExtCccZwj) ÷ [0.3] +÷ 0378 × 0900 ÷ # ÷ [0.2] (Other) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0378 × 0308 × 0900 ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN INVERTED CANDRABINDU (Extend_ConjunctLinkingScripts_ExtCccZwj) ÷ [0.3] +÷ 0378 × 094D ÷ # ÷ [0.2] (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] +÷ 0378 × 0308 × 094D ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [0.3] ÷ 0378 × 200D ÷ # ÷ [0.2] (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0378 × 0308 × 200D ÷ # ÷ [0.2] (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0378 ÷ 0378 ÷ # ÷ [0.2] (Other) ÷ [999.0] (Other) ÷ [0.3] @@ -614,17 +1094,28 @@ ÷ 0061 ÷ 1F1E6 × 1F1E7 ÷ 1F1E8 × 1F1E9 ÷ 0062 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER A (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER B (RI) ÷ [999.0] REGIONAL INDICATOR SYMBOL LETTER C (RI) × [13.0] REGIONAL INDICATOR SYMBOL LETTER D (RI) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3] ÷ 0061 × 200D ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [0.3] ÷ 0061 × 0308 ÷ 0062 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3] -÷ 0061 × 0903 ÷ 0062 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3] +÷ 0061 × 0903 ÷ 0062 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.1] DEVANAGARI SIGN VISARGA (SpacingMark_ConjunctLinkingScripts) ÷ [999.0] LATIN SMALL LETTER B (Other) ÷ [0.3] ÷ 0061 ÷ 0600 × 0062 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) ÷ [999.0] ARABIC NUMBER SIGN (Prepend) × [9.2] LATIN SMALL LETTER B (Other) ÷ [0.3] -÷ 1F476 × 1F3FF ÷ 1F476 ÷ # ÷ [0.2] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend) ÷ [999.0] BABY (ExtPict) ÷ [0.3] -÷ 0061 × 1F3FF ÷ 1F476 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend) ÷ [999.0] BABY (ExtPict) ÷ [0.3] -÷ 0061 × 1F3FF ÷ 1F476 × 200D × 1F6D1 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend) ÷ [999.0] BABY (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3] -÷ 1F476 × 1F3FF × 0308 × 200D × 1F476 × 1F3FF ÷ # ÷ [0.2] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend) ÷ [0.3] +÷ 1F476 × 1F3FF ÷ 1F476 ÷ # ÷ [0.2] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [999.0] BABY (ExtPict) ÷ [0.3] +÷ 0061 × 1F3FF ÷ 1F476 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [999.0] BABY (ExtPict) ÷ [0.3] +÷ 0061 × 1F3FF ÷ 1F476 × 200D × 1F6D1 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [999.0] BABY (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3] +÷ 1F476 × 1F3FF × 0308 × 200D × 1F476 × 1F3FF ÷ # ÷ [0.2] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) × [9.0] COMBINING DIAERESIS (Extend_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] BABY (ExtPict) × [9.0] EMOJI MODIFIER FITZPATRICK TYPE-6 (Extend_ExtCccZwj) ÷ [0.3] ÷ 1F6D1 × 200D × 1F6D1 ÷ # ÷ [0.2] OCTAGONAL SIGN (ExtPict) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3] ÷ 0061 × 200D ÷ 1F6D1 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] OCTAGONAL SIGN (ExtPict) ÷ [0.3] ÷ 2701 × 200D × 2701 ÷ # ÷ [0.2] UPPER BLADE SCISSORS (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [11.0] UPPER BLADE SCISSORS (Other) ÷ [0.3] ÷ 0061 × 200D ÷ 2701 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) ÷ [999.0] UPPER BLADE SCISSORS (Other) ÷ [0.3] +÷ 0915 ÷ 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) ÷ [999.0] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 094D × 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 094D × 094D × 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 094D × 200D × 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 093C × 200D × 094D × 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN NUKTA (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 093C × 094D × 200D × 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN NUKTA (Extend_ConjunctLinkingScripts_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] ZERO WIDTH JOINER (ZWJ_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 094D × 0924 × 094D × 092F ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER YA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 094D ÷ 0061 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] LATIN SMALL LETTER A (Other) ÷ [0.3] +÷ 0061 × 094D ÷ 0924 ÷ # ÷ [0.2] LATIN SMALL LETTER A (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 003F × 094D ÷ 0924 ÷ # ÷ [0.2] QUESTION MARK (Other) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) ÷ [999.0] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] +÷ 0915 × 094D × 094D × 0924 ÷ # ÷ [0.2] DEVANAGARI LETTER KA (ConjunctLinkingScripts_LinkingConsonant) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.0] DEVANAGARI SIGN VIRAMA (Extend_ConjunctLinkingScripts_ConjunctLinker_ExtCccZwj) × [9.3] DEVANAGARI LETTER TA (ConjunctLinkingScripts_LinkingConsonant) ÷ [0.3] # -# Lines: 602 +# Lines: 1093 # # EOF diff --git a/pkgs/characters/third_party/Unicode_Consortium/UNICODE_LICENSE.txt b/pkgs/characters/third_party/Unicode_Consortium/UNICODE_LICENSE.txt index e216c7f3..ee8e69b2 100644 --- a/pkgs/characters/third_party/Unicode_Consortium/UNICODE_LICENSE.txt +++ b/pkgs/characters/third_party/Unicode_Consortium/UNICODE_LICENSE.txt @@ -1,46 +1,39 @@ -UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE +UNICODE LICENSE V3 -See Terms of Use -for definitions of Unicode Inc.’s Data Files and Software. +COPYRIGHT AND PERMISSION NOTICE -NOTICE TO USER: Carefully read the following legal agreement. -BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S -DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), -YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE -TERMS AND CONDITIONS OF THIS AGREEMENT. -IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE -THE DATA FILES OR SOFTWARE. +Copyright © 1991-2024 Unicode, Inc. -COPYRIGHT AND PERMISSION NOTICE +NOTICE TO USER: Carefully read the following legal agreement. BY +DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING DATA FILES, AND/OR +SOFTWARE, YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE +TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT +DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. -Copyright © 1991-2023 Unicode, Inc. All rights reserved. -Distributed under the Terms of Use in https://www.unicode.org/copyright.html. +Permission is hereby granted, free of charge, to any person obtaining a +copy of data files and any associated documentation (the "Data Files") or +software and any associated documentation (the "Software") to deal in the +Data Files or Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and/or sell +copies of the Data Files or Software, and to permit persons to whom the +Data Files or Software are furnished to do so, provided that either (a) +this copyright and permission notice appear with all copies of the Data +Files or Software, or (b) this copyright and permission notice appear in +associated Documentation. -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Unicode data files and any associated documentation -(the "Data Files") or Unicode software and any associated documentation -(the "Software") to deal in the Data Files or Software -without restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, and/or sell copies of -the Data Files or Software, and to permit persons to whom the Data Files -or Software are furnished to do so, provided that either -(a) this copyright and permission notice appear with all copies -of the Data Files or Software, or -(b) this copyright and permission notice appear in associated -Documentation. +THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +THIRD PARTY RIGHTS. -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF -ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE -WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT OF THIRD PARTY RIGHTS. -IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS -NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL -DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, -DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER -TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THE DATA FILES OR SOFTWARE. +IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE +BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, +OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA +FILES OR SOFTWARE. -Except as contained in this notice, the name of a copyright holder -shall not be used in advertising or otherwise to promote the sale, -use or other dealings in these Data Files or Software without prior -written authorization of the copyright holder. +Except as contained in this notice, the name of a copyright holder shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in these Data Files or Software without prior written +authorization of the copyright holder. diff --git a/pkgs/characters/third_party/Unicode_Consortium/emoji_data.txt b/pkgs/characters/third_party/Unicode_Consortium/emoji_data.txt index 999a4367..ff990282 100644 --- a/pkgs/characters/third_party/Unicode_Consortium/emoji_data.txt +++ b/pkgs/characters/third_party/Unicode_Consortium/emoji_data.txt @@ -1,11 +1,11 @@ # emoji-data.txt -# Date: 2022-08-02, 00:26:10 GMT -# © 2022 Unicode®, Inc. +# Date: 2024-05-01, 21:25:24 GMT +# © 2024 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. -# For terms of use, see https://www.unicode.org/terms_of_use.html +# For terms of use and license, see https://www.unicode.org/terms_of_use.html # # Emoji Data for UTS #51 -# Used with Emoji Version 15.0 and subsequent minor revisions (if any) +# Used with Emoji Version 16.0 and subsequent minor revisions (if any) # # For documentation and usage, see https://www.unicode.org/reports/tr51 # @@ -407,6 +407,8 @@ 1FA80..1FA82 ; Emoji # E12.0 [3] (🪀..🪂) yo-yo..parachute 1FA83..1FA86 ; Emoji # E13.0 [4] (🪃..🪆) boomerang..nesting dolls 1FA87..1FA88 ; Emoji # E15.0 [2] (🪇..🪈) maracas..flute +1FA89 ; Emoji # E16.0 [1] (🪉) harp +1FA8F ; Emoji # E16.0 [1] (🪏) shovel 1FA90..1FA95 ; Emoji # E12.0 [6] (🪐..🪕) ringed planet..banjo 1FA96..1FAA8 ; Emoji # E13.0 [19] (🪖..🪨) military helmet..rock 1FAA9..1FAAC ; Emoji # E14.0 [4] (🪩..🪬) mirror ball..hamsa @@ -414,19 +416,24 @@ 1FAB0..1FAB6 ; Emoji # E13.0 [7] (🪰..🪶) fly..feather 1FAB7..1FABA ; Emoji # E14.0 [4] (🪷..🪺) lotus..nest with eggs 1FABB..1FABD ; Emoji # E15.0 [3] (🪻..🪽) hyacinth..wing +1FABE ; Emoji # E16.0 [1] (🪾) leafless tree 1FABF ; Emoji # E15.0 [1] (🪿) goose 1FAC0..1FAC2 ; Emoji # E13.0 [3] (🫀..🫂) anatomical heart..people hugging 1FAC3..1FAC5 ; Emoji # E14.0 [3] (🫃..🫅) pregnant man..person with crown +1FAC6 ; Emoji # E16.0 [1] (🫆) fingerprint 1FACE..1FACF ; Emoji # E15.0 [2] (🫎..🫏) moose..donkey 1FAD0..1FAD6 ; Emoji # E13.0 [7] (🫐..🫖) blueberries..teapot 1FAD7..1FAD9 ; Emoji # E14.0 [3] (🫗..🫙) pouring liquid..jar 1FADA..1FADB ; Emoji # E15.0 [2] (🫚..🫛) ginger root..pea pod +1FADC ; Emoji # E16.0 [1] (🫜) root vegetable +1FADF ; Emoji # E16.0 [1] (🫟) splatter 1FAE0..1FAE7 ; Emoji # E14.0 [8] (🫠..🫧) melting face..bubbles 1FAE8 ; Emoji # E15.0 [1] (🫨) shaking face +1FAE9 ; Emoji # E16.0 [1] (🫩) face with bags under eyes 1FAF0..1FAF6 ; Emoji # E14.0 [7] (🫰..🫶) hand with index finger and thumb crossed..heart hands 1FAF7..1FAF8 ; Emoji # E15.0 [2] (🫷..🫸) leftwards pushing hand..rightwards pushing hand -# Total elements: 1424 +# Total elements: 1431 # ================================================ @@ -696,6 +703,8 @@ 1FA80..1FA82 ; Emoji_Presentation # E12.0 [3] (🪀..🪂) yo-yo..parachute 1FA83..1FA86 ; Emoji_Presentation # E13.0 [4] (🪃..🪆) boomerang..nesting dolls 1FA87..1FA88 ; Emoji_Presentation # E15.0 [2] (🪇..🪈) maracas..flute +1FA89 ; Emoji_Presentation # E16.0 [1] (🪉) harp +1FA8F ; Emoji_Presentation # E16.0 [1] (🪏) shovel 1FA90..1FA95 ; Emoji_Presentation # E12.0 [6] (🪐..🪕) ringed planet..banjo 1FA96..1FAA8 ; Emoji_Presentation # E13.0 [19] (🪖..🪨) military helmet..rock 1FAA9..1FAAC ; Emoji_Presentation # E14.0 [4] (🪩..🪬) mirror ball..hamsa @@ -703,19 +712,24 @@ 1FAB0..1FAB6 ; Emoji_Presentation # E13.0 [7] (🪰..🪶) fly..feather 1FAB7..1FABA ; Emoji_Presentation # E14.0 [4] (🪷..🪺) lotus..nest with eggs 1FABB..1FABD ; Emoji_Presentation # E15.0 [3] (🪻..🪽) hyacinth..wing +1FABE ; Emoji_Presentation # E16.0 [1] (🪾) leafless tree 1FABF ; Emoji_Presentation # E15.0 [1] (🪿) goose 1FAC0..1FAC2 ; Emoji_Presentation # E13.0 [3] (🫀..🫂) anatomical heart..people hugging 1FAC3..1FAC5 ; Emoji_Presentation # E14.0 [3] (🫃..🫅) pregnant man..person with crown +1FAC6 ; Emoji_Presentation # E16.0 [1] (🫆) fingerprint 1FACE..1FACF ; Emoji_Presentation # E15.0 [2] (🫎..🫏) moose..donkey 1FAD0..1FAD6 ; Emoji_Presentation # E13.0 [7] (🫐..🫖) blueberries..teapot 1FAD7..1FAD9 ; Emoji_Presentation # E14.0 [3] (🫗..🫙) pouring liquid..jar 1FADA..1FADB ; Emoji_Presentation # E15.0 [2] (🫚..🫛) ginger root..pea pod +1FADC ; Emoji_Presentation # E16.0 [1] (🫜) root vegetable +1FADF ; Emoji_Presentation # E16.0 [1] (🫟) splatter 1FAE0..1FAE7 ; Emoji_Presentation # E14.0 [8] (🫠..🫧) melting face..bubbles 1FAE8 ; Emoji_Presentation # E15.0 [1] (🫨) shaking face +1FAE9 ; Emoji_Presentation # E16.0 [1] (🫩) face with bags under eyes 1FAF0..1FAF6 ; Emoji_Presentation # E14.0 [7] (🫰..🫶) hand with index finger and thumb crossed..heart hands 1FAF7..1FAF8 ; Emoji_Presentation # E15.0 [2] (🫷..🫸) leftwards pushing hand..rightwards pushing hand -# Total elements: 1205 +# Total elements: 1212 # ================================================ @@ -1289,7 +1303,9 @@ E0020..E007F ; Emoji_Component # E0.0 [96] (󠀠..󠁿) tag space..c 1FA80..1FA82 ; Extended_Pictographic# E12.0 [3] (🪀..🪂) yo-yo..parachute 1FA83..1FA86 ; Extended_Pictographic# E13.0 [4] (🪃..🪆) boomerang..nesting dolls 1FA87..1FA88 ; Extended_Pictographic# E15.0 [2] (🪇..🪈) maracas..flute -1FA89..1FA8F ; Extended_Pictographic# E0.0 [7] (🪉..🪏) .. +1FA89 ; Extended_Pictographic# E16.0 [1] (🪉) harp +1FA8A..1FA8E ; Extended_Pictographic# E0.0 [5] (🪊..🪎) .. +1FA8F ; Extended_Pictographic# E16.0 [1] (🪏) shovel 1FA90..1FA95 ; Extended_Pictographic# E12.0 [6] (🪐..🪕) ringed planet..banjo 1FA96..1FAA8 ; Extended_Pictographic# E13.0 [19] (🪖..🪨) military helmet..rock 1FAA9..1FAAC ; Extended_Pictographic# E14.0 [4] (🪩..🪬) mirror ball..hamsa @@ -1297,19 +1313,23 @@ E0020..E007F ; Emoji_Component # E0.0 [96] (󠀠..󠁿) tag space..c 1FAB0..1FAB6 ; Extended_Pictographic# E13.0 [7] (🪰..🪶) fly..feather 1FAB7..1FABA ; Extended_Pictographic# E14.0 [4] (🪷..🪺) lotus..nest with eggs 1FABB..1FABD ; Extended_Pictographic# E15.0 [3] (🪻..🪽) hyacinth..wing -1FABE ; Extended_Pictographic# E0.0 [1] (🪾) +1FABE ; Extended_Pictographic# E16.0 [1] (🪾) leafless tree 1FABF ; Extended_Pictographic# E15.0 [1] (🪿) goose 1FAC0..1FAC2 ; Extended_Pictographic# E13.0 [3] (🫀..🫂) anatomical heart..people hugging 1FAC3..1FAC5 ; Extended_Pictographic# E14.0 [3] (🫃..🫅) pregnant man..person with crown -1FAC6..1FACD ; Extended_Pictographic# E0.0 [8] (🫆..🫍) .. +1FAC6 ; Extended_Pictographic# E16.0 [1] (🫆) fingerprint +1FAC7..1FACD ; Extended_Pictographic# E0.0 [7] (🫇..🫍) .. 1FACE..1FACF ; Extended_Pictographic# E15.0 [2] (🫎..🫏) moose..donkey 1FAD0..1FAD6 ; Extended_Pictographic# E13.0 [7] (🫐..🫖) blueberries..teapot 1FAD7..1FAD9 ; Extended_Pictographic# E14.0 [3] (🫗..🫙) pouring liquid..jar 1FADA..1FADB ; Extended_Pictographic# E15.0 [2] (🫚..🫛) ginger root..pea pod -1FADC..1FADF ; Extended_Pictographic# E0.0 [4] (🫜..🫟) .. +1FADC ; Extended_Pictographic# E16.0 [1] (🫜) root vegetable +1FADD..1FADE ; Extended_Pictographic# E0.0 [2] (🫝..🫞) .. +1FADF ; Extended_Pictographic# E16.0 [1] (🫟) splatter 1FAE0..1FAE7 ; Extended_Pictographic# E14.0 [8] (🫠..🫧) melting face..bubbles 1FAE8 ; Extended_Pictographic# E15.0 [1] (🫨) shaking face -1FAE9..1FAEF ; Extended_Pictographic# E0.0 [7] (🫩..🫯) .. +1FAE9 ; Extended_Pictographic# E16.0 [1] (🫩) face with bags under eyes +1FAEA..1FAEF ; Extended_Pictographic# E0.0 [6] (🫪..🫯) .. 1FAF0..1FAF6 ; Extended_Pictographic# E14.0 [7] (🫰..🫶) hand with index finger and thumb crossed..heart hands 1FAF7..1FAF8 ; Extended_Pictographic# E15.0 [2] (🫷..🫸) leftwards pushing hand..rightwards pushing hand 1FAF9..1FAFF ; Extended_Pictographic# E0.0 [7] (🫹..🫿) .. diff --git a/pkgs/characters/third_party/Unicode_Consortium/emoji_test.txt b/pkgs/characters/third_party/Unicode_Consortium/emoji_test.txt index 87d093d6..d77b118c 100644 --- a/pkgs/characters/third_party/Unicode_Consortium/emoji_test.txt +++ b/pkgs/characters/third_party/Unicode_Consortium/emoji_test.txt @@ -1,11 +1,11 @@ # emoji-test.txt -# Date: 2022-08-12, 20:24:39 GMT -# © 2022 Unicode®, Inc. +# Date: 2024-08-14, 23:51:54 GMT +# © 2024 Unicode®, Inc. # Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries. -# For terms of use, see https://www.unicode.org/terms_of_use.html +# For terms of use and license, see https://www.unicode.org/terms_of_use.html # # Emoji Keyboard/Display Test Data for UTS #51 -# Version: 15.0 +# Version: 16.0 # # For documentation and usage, see https://www.unicode.org/reports/tr51 # @@ -93,6 +93,10 @@ 1F62E 200D 1F4A8 ; fully-qualified # 😮‍💨 E13.1 face exhaling 1F925 ; fully-qualified # 🤥 E3.0 lying face 1FAE8 ; fully-qualified # 🫨 E15.0 shaking face +1F642 200D 2194 FE0F ; fully-qualified # 🙂‍↔️ E15.1 head shaking horizontally +1F642 200D 2194 ; minimally-qualified # 🙂‍↔ E15.1 head shaking horizontally +1F642 200D 2195 FE0F ; fully-qualified # 🙂‍↕️ E15.1 head shaking vertically +1F642 200D 2195 ; minimally-qualified # 🙂‍↕ E15.1 head shaking vertically # subgroup: face-sleepy 1F60C ; fully-qualified # 😌 E0.6 relieved face @@ -100,6 +104,7 @@ 1F62A ; fully-qualified # 😪 E0.6 sleepy face 1F924 ; fully-qualified # 🤤 E3.0 drooling face 1F634 ; fully-qualified # 😴 E1.0 sleeping face +1FAE9 ; fully-qualified # 🫩 E16.0 face with bags under eyes # subgroup: face-unwell 1F637 ; fully-qualified # 😷 E0.6 face with medical mask @@ -244,8 +249,8 @@ 1F4AD ; fully-qualified # 💭 E1.0 thought balloon 1F4A4 ; fully-qualified # 💤 E0.6 ZZZ -# Smileys & Emotion subtotal: 180 -# Smileys & Emotion subtotal: 180 w/o modifiers +# Smileys & Emotion subtotal: 185 +# Smileys & Emotion subtotal: 185 w/o modifiers # group: People & Body @@ -1746,12 +1751,12 @@ 1F936 1F3FD ; fully-qualified # 🤶🏽 E3.0 Mrs. Claus: medium skin tone 1F936 1F3FE ; fully-qualified # 🤶🏾 E3.0 Mrs. Claus: medium-dark skin tone 1F936 1F3FF ; fully-qualified # 🤶🏿 E3.0 Mrs. Claus: dark skin tone -1F9D1 200D 1F384 ; fully-qualified # 🧑‍🎄 E13.0 mx claus -1F9D1 1F3FB 200D 1F384 ; fully-qualified # 🧑🏻‍🎄 E13.0 mx claus: light skin tone -1F9D1 1F3FC 200D 1F384 ; fully-qualified # 🧑🏼‍🎄 E13.0 mx claus: medium-light skin tone -1F9D1 1F3FD 200D 1F384 ; fully-qualified # 🧑🏽‍🎄 E13.0 mx claus: medium skin tone -1F9D1 1F3FE 200D 1F384 ; fully-qualified # 🧑🏾‍🎄 E13.0 mx claus: medium-dark skin tone -1F9D1 1F3FF 200D 1F384 ; fully-qualified # 🧑🏿‍🎄 E13.0 mx claus: dark skin tone +1F9D1 200D 1F384 ; fully-qualified # 🧑‍🎄 E13.0 Mx Claus +1F9D1 1F3FB 200D 1F384 ; fully-qualified # 🧑🏻‍🎄 E13.0 Mx Claus: light skin tone +1F9D1 1F3FC 200D 1F384 ; fully-qualified # 🧑🏼‍🎄 E13.0 Mx Claus: medium-light skin tone +1F9D1 1F3FD 200D 1F384 ; fully-qualified # 🧑🏽‍🎄 E13.0 Mx Claus: medium skin tone +1F9D1 1F3FE 200D 1F384 ; fully-qualified # 🧑🏾‍🎄 E13.0 Mx Claus: medium-dark skin tone +1F9D1 1F3FF 200D 1F384 ; fully-qualified # 🧑🏿‍🎄 E13.0 Mx Claus: dark skin tone 1F9B8 ; fully-qualified # 🦸 E11.0 superhero 1F9B8 1F3FB ; fully-qualified # 🦸🏻 E11.0 superhero: light skin tone 1F9B8 1F3FC ; fully-qualified # 🦸🏼 E11.0 superhero: medium-light skin tone @@ -2065,6 +2070,66 @@ 1F6B6 1F3FE 200D 2640 ; minimally-qualified # 🚶🏾‍♀ E4.0 woman walking: medium-dark skin tone 1F6B6 1F3FF 200D 2640 FE0F ; fully-qualified # 🚶🏿‍♀️ E4.0 woman walking: dark skin tone 1F6B6 1F3FF 200D 2640 ; minimally-qualified # 🚶🏿‍♀ E4.0 woman walking: dark skin tone +1F6B6 200D 27A1 FE0F ; fully-qualified # 🚶‍➡️ E15.1 person walking facing right +1F6B6 200D 27A1 ; minimally-qualified # 🚶‍➡ E15.1 person walking facing right +1F6B6 1F3FB 200D 27A1 FE0F ; fully-qualified # 🚶🏻‍➡️ E15.1 person walking facing right: light skin tone +1F6B6 1F3FB 200D 27A1 ; minimally-qualified # 🚶🏻‍➡ E15.1 person walking facing right: light skin tone +1F6B6 1F3FC 200D 27A1 FE0F ; fully-qualified # 🚶🏼‍➡️ E15.1 person walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 27A1 ; minimally-qualified # 🚶🏼‍➡ E15.1 person walking facing right: medium-light skin tone +1F6B6 1F3FD 200D 27A1 FE0F ; fully-qualified # 🚶🏽‍➡️ E15.1 person walking facing right: medium skin tone +1F6B6 1F3FD 200D 27A1 ; minimally-qualified # 🚶🏽‍➡ E15.1 person walking facing right: medium skin tone +1F6B6 1F3FE 200D 27A1 FE0F ; fully-qualified # 🚶🏾‍➡️ E15.1 person walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 27A1 ; minimally-qualified # 🚶🏾‍➡ E15.1 person walking facing right: medium-dark skin tone +1F6B6 1F3FF 200D 27A1 FE0F ; fully-qualified # 🚶🏿‍➡️ E15.1 person walking facing right: dark skin tone +1F6B6 1F3FF 200D 27A1 ; minimally-qualified # 🚶🏿‍➡ E15.1 person walking facing right: dark skin tone +1F6B6 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶‍♀️‍➡️ E15.1 woman walking facing right +1F6B6 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🚶‍♀‍➡️ E15.1 woman walking facing right +1F6B6 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🚶‍♀️‍➡ E15.1 woman walking facing right +1F6B6 200D 2640 200D 27A1 ; minimally-qualified # 🚶‍♀‍➡ E15.1 woman walking facing right +1F6B6 1F3FB 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏻‍♀️‍➡️ E15.1 woman walking facing right: light skin tone +1F6B6 1F3FB 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🚶🏻‍♀‍➡️ E15.1 woman walking facing right: light skin tone +1F6B6 1F3FB 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🚶🏻‍♀️‍➡ E15.1 woman walking facing right: light skin tone +1F6B6 1F3FB 200D 2640 200D 27A1 ; minimally-qualified # 🚶🏻‍♀‍➡ E15.1 woman walking facing right: light skin tone +1F6B6 1F3FC 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏼‍♀️‍➡️ E15.1 woman walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🚶🏼‍♀‍➡️ E15.1 woman walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🚶🏼‍♀️‍➡ E15.1 woman walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 2640 200D 27A1 ; minimally-qualified # 🚶🏼‍♀‍➡ E15.1 woman walking facing right: medium-light skin tone +1F6B6 1F3FD 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏽‍♀️‍➡️ E15.1 woman walking facing right: medium skin tone +1F6B6 1F3FD 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🚶🏽‍♀‍➡️ E15.1 woman walking facing right: medium skin tone +1F6B6 1F3FD 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🚶🏽‍♀️‍➡ E15.1 woman walking facing right: medium skin tone +1F6B6 1F3FD 200D 2640 200D 27A1 ; minimally-qualified # 🚶🏽‍♀‍➡ E15.1 woman walking facing right: medium skin tone +1F6B6 1F3FE 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏾‍♀️‍➡️ E15.1 woman walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🚶🏾‍♀‍➡️ E15.1 woman walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🚶🏾‍♀️‍➡ E15.1 woman walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 2640 200D 27A1 ; minimally-qualified # 🚶🏾‍♀‍➡ E15.1 woman walking facing right: medium-dark skin tone +1F6B6 1F3FF 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏿‍♀️‍➡️ E15.1 woman walking facing right: dark skin tone +1F6B6 1F3FF 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🚶🏿‍♀‍➡️ E15.1 woman walking facing right: dark skin tone +1F6B6 1F3FF 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🚶🏿‍♀️‍➡ E15.1 woman walking facing right: dark skin tone +1F6B6 1F3FF 200D 2640 200D 27A1 ; minimally-qualified # 🚶🏿‍♀‍➡ E15.1 woman walking facing right: dark skin tone +1F6B6 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶‍♂️‍➡️ E15.1 man walking facing right +1F6B6 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🚶‍♂‍➡️ E15.1 man walking facing right +1F6B6 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🚶‍♂️‍➡ E15.1 man walking facing right +1F6B6 200D 2642 200D 27A1 ; minimally-qualified # 🚶‍♂‍➡ E15.1 man walking facing right +1F6B6 1F3FB 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏻‍♂️‍➡️ E15.1 man walking facing right: light skin tone +1F6B6 1F3FB 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🚶🏻‍♂‍➡️ E15.1 man walking facing right: light skin tone +1F6B6 1F3FB 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🚶🏻‍♂️‍➡ E15.1 man walking facing right: light skin tone +1F6B6 1F3FB 200D 2642 200D 27A1 ; minimally-qualified # 🚶🏻‍♂‍➡ E15.1 man walking facing right: light skin tone +1F6B6 1F3FC 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏼‍♂️‍➡️ E15.1 man walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🚶🏼‍♂‍➡️ E15.1 man walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🚶🏼‍♂️‍➡ E15.1 man walking facing right: medium-light skin tone +1F6B6 1F3FC 200D 2642 200D 27A1 ; minimally-qualified # 🚶🏼‍♂‍➡ E15.1 man walking facing right: medium-light skin tone +1F6B6 1F3FD 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏽‍♂️‍➡️ E15.1 man walking facing right: medium skin tone +1F6B6 1F3FD 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🚶🏽‍♂‍➡️ E15.1 man walking facing right: medium skin tone +1F6B6 1F3FD 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🚶🏽‍♂️‍➡ E15.1 man walking facing right: medium skin tone +1F6B6 1F3FD 200D 2642 200D 27A1 ; minimally-qualified # 🚶🏽‍♂‍➡ E15.1 man walking facing right: medium skin tone +1F6B6 1F3FE 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏾‍♂️‍➡️ E15.1 man walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🚶🏾‍♂‍➡️ E15.1 man walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🚶🏾‍♂️‍➡ E15.1 man walking facing right: medium-dark skin tone +1F6B6 1F3FE 200D 2642 200D 27A1 ; minimally-qualified # 🚶🏾‍♂‍➡ E15.1 man walking facing right: medium-dark skin tone +1F6B6 1F3FF 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🚶🏿‍♂️‍➡️ E15.1 man walking facing right: dark skin tone +1F6B6 1F3FF 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🚶🏿‍♂‍➡️ E15.1 man walking facing right: dark skin tone +1F6B6 1F3FF 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🚶🏿‍♂️‍➡ E15.1 man walking facing right: dark skin tone +1F6B6 1F3FF 200D 2642 200D 27A1 ; minimally-qualified # 🚶🏿‍♂‍➡ E15.1 man walking facing right: dark skin tone 1F9CD ; fully-qualified # 🧍 E12.0 person standing 1F9CD 1F3FB ; fully-qualified # 🧍🏻 E12.0 person standing: light skin tone 1F9CD 1F3FC ; fully-qualified # 🧍🏼 E12.0 person standing: medium-light skin tone @@ -2125,60 +2190,228 @@ 1F9CE 1F3FE 200D 2640 ; minimally-qualified # 🧎🏾‍♀ E12.0 woman kneeling: medium-dark skin tone 1F9CE 1F3FF 200D 2640 FE0F ; fully-qualified # 🧎🏿‍♀️ E12.0 woman kneeling: dark skin tone 1F9CE 1F3FF 200D 2640 ; minimally-qualified # 🧎🏿‍♀ E12.0 woman kneeling: dark skin tone +1F9CE 200D 27A1 FE0F ; fully-qualified # 🧎‍➡️ E15.1 person kneeling facing right +1F9CE 200D 27A1 ; minimally-qualified # 🧎‍➡ E15.1 person kneeling facing right +1F9CE 1F3FB 200D 27A1 FE0F ; fully-qualified # 🧎🏻‍➡️ E15.1 person kneeling facing right: light skin tone +1F9CE 1F3FB 200D 27A1 ; minimally-qualified # 🧎🏻‍➡ E15.1 person kneeling facing right: light skin tone +1F9CE 1F3FC 200D 27A1 FE0F ; fully-qualified # 🧎🏼‍➡️ E15.1 person kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 27A1 ; minimally-qualified # 🧎🏼‍➡ E15.1 person kneeling facing right: medium-light skin tone +1F9CE 1F3FD 200D 27A1 FE0F ; fully-qualified # 🧎🏽‍➡️ E15.1 person kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 27A1 ; minimally-qualified # 🧎🏽‍➡ E15.1 person kneeling facing right: medium skin tone +1F9CE 1F3FE 200D 27A1 FE0F ; fully-qualified # 🧎🏾‍➡️ E15.1 person kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 27A1 ; minimally-qualified # 🧎🏾‍➡ E15.1 person kneeling facing right: medium-dark skin tone +1F9CE 1F3FF 200D 27A1 FE0F ; fully-qualified # 🧎🏿‍➡️ E15.1 person kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 27A1 ; minimally-qualified # 🧎🏿‍➡ E15.1 person kneeling facing right: dark skin tone +1F9CE 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎‍♀️‍➡️ E15.1 woman kneeling facing right +1F9CE 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🧎‍♀‍➡️ E15.1 woman kneeling facing right +1F9CE 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🧎‍♀️‍➡ E15.1 woman kneeling facing right +1F9CE 200D 2640 200D 27A1 ; minimally-qualified # 🧎‍♀‍➡ E15.1 woman kneeling facing right +1F9CE 1F3FB 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏻‍♀️‍➡️ E15.1 woman kneeling facing right: light skin tone +1F9CE 1F3FB 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🧎🏻‍♀‍➡️ E15.1 woman kneeling facing right: light skin tone +1F9CE 1F3FB 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🧎🏻‍♀️‍➡ E15.1 woman kneeling facing right: light skin tone +1F9CE 1F3FB 200D 2640 200D 27A1 ; minimally-qualified # 🧎🏻‍♀‍➡ E15.1 woman kneeling facing right: light skin tone +1F9CE 1F3FC 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏼‍♀️‍➡️ E15.1 woman kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🧎🏼‍♀‍➡️ E15.1 woman kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🧎🏼‍♀️‍➡ E15.1 woman kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 2640 200D 27A1 ; minimally-qualified # 🧎🏼‍♀‍➡ E15.1 woman kneeling facing right: medium-light skin tone +1F9CE 1F3FD 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏽‍♀️‍➡️ E15.1 woman kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🧎🏽‍♀‍➡️ E15.1 woman kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🧎🏽‍♀️‍➡ E15.1 woman kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 2640 200D 27A1 ; minimally-qualified # 🧎🏽‍♀‍➡ E15.1 woman kneeling facing right: medium skin tone +1F9CE 1F3FE 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏾‍♀️‍➡️ E15.1 woman kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🧎🏾‍♀‍➡️ E15.1 woman kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🧎🏾‍♀️‍➡ E15.1 woman kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 2640 200D 27A1 ; minimally-qualified # 🧎🏾‍♀‍➡ E15.1 woman kneeling facing right: medium-dark skin tone +1F9CE 1F3FF 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏿‍♀️‍➡️ E15.1 woman kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🧎🏿‍♀‍➡️ E15.1 woman kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🧎🏿‍♀️‍➡ E15.1 woman kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 2640 200D 27A1 ; minimally-qualified # 🧎🏿‍♀‍➡ E15.1 woman kneeling facing right: dark skin tone +1F9CE 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎‍♂️‍➡️ E15.1 man kneeling facing right +1F9CE 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🧎‍♂‍➡️ E15.1 man kneeling facing right +1F9CE 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🧎‍♂️‍➡ E15.1 man kneeling facing right +1F9CE 200D 2642 200D 27A1 ; minimally-qualified # 🧎‍♂‍➡ E15.1 man kneeling facing right +1F9CE 1F3FB 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏻‍♂️‍➡️ E15.1 man kneeling facing right: light skin tone +1F9CE 1F3FB 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🧎🏻‍♂‍➡️ E15.1 man kneeling facing right: light skin tone +1F9CE 1F3FB 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🧎🏻‍♂️‍➡ E15.1 man kneeling facing right: light skin tone +1F9CE 1F3FB 200D 2642 200D 27A1 ; minimally-qualified # 🧎🏻‍♂‍➡ E15.1 man kneeling facing right: light skin tone +1F9CE 1F3FC 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏼‍♂️‍➡️ E15.1 man kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🧎🏼‍♂‍➡️ E15.1 man kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🧎🏼‍♂️‍➡ E15.1 man kneeling facing right: medium-light skin tone +1F9CE 1F3FC 200D 2642 200D 27A1 ; minimally-qualified # 🧎🏼‍♂‍➡ E15.1 man kneeling facing right: medium-light skin tone +1F9CE 1F3FD 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏽‍♂️‍➡️ E15.1 man kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🧎🏽‍♂‍➡️ E15.1 man kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🧎🏽‍♂️‍➡ E15.1 man kneeling facing right: medium skin tone +1F9CE 1F3FD 200D 2642 200D 27A1 ; minimally-qualified # 🧎🏽‍♂‍➡ E15.1 man kneeling facing right: medium skin tone +1F9CE 1F3FE 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏾‍♂️‍➡️ E15.1 man kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🧎🏾‍♂‍➡️ E15.1 man kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🧎🏾‍♂️‍➡ E15.1 man kneeling facing right: medium-dark skin tone +1F9CE 1F3FE 200D 2642 200D 27A1 ; minimally-qualified # 🧎🏾‍♂‍➡ E15.1 man kneeling facing right: medium-dark skin tone +1F9CE 1F3FF 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🧎🏿‍♂️‍➡️ E15.1 man kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🧎🏿‍♂‍➡️ E15.1 man kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🧎🏿‍♂️‍➡ E15.1 man kneeling facing right: dark skin tone +1F9CE 1F3FF 200D 2642 200D 27A1 ; minimally-qualified # 🧎🏿‍♂‍➡ E15.1 man kneeling facing right: dark skin tone 1F9D1 200D 1F9AF ; fully-qualified # 🧑‍🦯 E12.1 person with white cane 1F9D1 1F3FB 200D 1F9AF ; fully-qualified # 🧑🏻‍🦯 E12.1 person with white cane: light skin tone 1F9D1 1F3FC 200D 1F9AF ; fully-qualified # 🧑🏼‍🦯 E12.1 person with white cane: medium-light skin tone 1F9D1 1F3FD 200D 1F9AF ; fully-qualified # 🧑🏽‍🦯 E12.1 person with white cane: medium skin tone 1F9D1 1F3FE 200D 1F9AF ; fully-qualified # 🧑🏾‍🦯 E12.1 person with white cane: medium-dark skin tone 1F9D1 1F3FF 200D 1F9AF ; fully-qualified # 🧑🏿‍🦯 E12.1 person with white cane: dark skin tone +1F9D1 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 🧑‍🦯‍➡️ E15.1 person with white cane facing right +1F9D1 200D 1F9AF 200D 27A1 ; minimally-qualified # 🧑‍🦯‍➡ E15.1 person with white cane facing right +1F9D1 1F3FB 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 🧑🏻‍🦯‍➡️ E15.1 person with white cane facing right: light skin tone +1F9D1 1F3FB 200D 1F9AF 200D 27A1 ; minimally-qualified # 🧑🏻‍🦯‍➡ E15.1 person with white cane facing right: light skin tone +1F9D1 1F3FC 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 🧑🏼‍🦯‍➡️ E15.1 person with white cane facing right: medium-light skin tone +1F9D1 1F3FC 200D 1F9AF 200D 27A1 ; minimally-qualified # 🧑🏼‍🦯‍➡ E15.1 person with white cane facing right: medium-light skin tone +1F9D1 1F3FD 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 🧑🏽‍🦯‍➡️ E15.1 person with white cane facing right: medium skin tone +1F9D1 1F3FD 200D 1F9AF 200D 27A1 ; minimally-qualified # 🧑🏽‍🦯‍➡ E15.1 person with white cane facing right: medium skin tone +1F9D1 1F3FE 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 🧑🏾‍🦯‍➡️ E15.1 person with white cane facing right: medium-dark skin tone +1F9D1 1F3FE 200D 1F9AF 200D 27A1 ; minimally-qualified # 🧑🏾‍🦯‍➡ E15.1 person with white cane facing right: medium-dark skin tone +1F9D1 1F3FF 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 🧑🏿‍🦯‍➡️ E15.1 person with white cane facing right: dark skin tone +1F9D1 1F3FF 200D 1F9AF 200D 27A1 ; minimally-qualified # 🧑🏿‍🦯‍➡ E15.1 person with white cane facing right: dark skin tone 1F468 200D 1F9AF ; fully-qualified # 👨‍🦯 E12.0 man with white cane 1F468 1F3FB 200D 1F9AF ; fully-qualified # 👨🏻‍🦯 E12.0 man with white cane: light skin tone 1F468 1F3FC 200D 1F9AF ; fully-qualified # 👨🏼‍🦯 E12.0 man with white cane: medium-light skin tone 1F468 1F3FD 200D 1F9AF ; fully-qualified # 👨🏽‍🦯 E12.0 man with white cane: medium skin tone 1F468 1F3FE 200D 1F9AF ; fully-qualified # 👨🏾‍🦯 E12.0 man with white cane: medium-dark skin tone 1F468 1F3FF 200D 1F9AF ; fully-qualified # 👨🏿‍🦯 E12.0 man with white cane: dark skin tone +1F468 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👨‍🦯‍➡️ E15.1 man with white cane facing right +1F468 200D 1F9AF 200D 27A1 ; minimally-qualified # 👨‍🦯‍➡ E15.1 man with white cane facing right +1F468 1F3FB 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👨🏻‍🦯‍➡️ E15.1 man with white cane facing right: light skin tone +1F468 1F3FB 200D 1F9AF 200D 27A1 ; minimally-qualified # 👨🏻‍🦯‍➡ E15.1 man with white cane facing right: light skin tone +1F468 1F3FC 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👨🏼‍🦯‍➡️ E15.1 man with white cane facing right: medium-light skin tone +1F468 1F3FC 200D 1F9AF 200D 27A1 ; minimally-qualified # 👨🏼‍🦯‍➡ E15.1 man with white cane facing right: medium-light skin tone +1F468 1F3FD 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👨🏽‍🦯‍➡️ E15.1 man with white cane facing right: medium skin tone +1F468 1F3FD 200D 1F9AF 200D 27A1 ; minimally-qualified # 👨🏽‍🦯‍➡ E15.1 man with white cane facing right: medium skin tone +1F468 1F3FE 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👨🏾‍🦯‍➡️ E15.1 man with white cane facing right: medium-dark skin tone +1F468 1F3FE 200D 1F9AF 200D 27A1 ; minimally-qualified # 👨🏾‍🦯‍➡ E15.1 man with white cane facing right: medium-dark skin tone +1F468 1F3FF 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👨🏿‍🦯‍➡️ E15.1 man with white cane facing right: dark skin tone +1F468 1F3FF 200D 1F9AF 200D 27A1 ; minimally-qualified # 👨🏿‍🦯‍➡ E15.1 man with white cane facing right: dark skin tone 1F469 200D 1F9AF ; fully-qualified # 👩‍🦯 E12.0 woman with white cane 1F469 1F3FB 200D 1F9AF ; fully-qualified # 👩🏻‍🦯 E12.0 woman with white cane: light skin tone 1F469 1F3FC 200D 1F9AF ; fully-qualified # 👩🏼‍🦯 E12.0 woman with white cane: medium-light skin tone 1F469 1F3FD 200D 1F9AF ; fully-qualified # 👩🏽‍🦯 E12.0 woman with white cane: medium skin tone 1F469 1F3FE 200D 1F9AF ; fully-qualified # 👩🏾‍🦯 E12.0 woman with white cane: medium-dark skin tone 1F469 1F3FF 200D 1F9AF ; fully-qualified # 👩🏿‍🦯 E12.0 woman with white cane: dark skin tone +1F469 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👩‍🦯‍➡️ E15.1 woman with white cane facing right +1F469 200D 1F9AF 200D 27A1 ; minimally-qualified # 👩‍🦯‍➡ E15.1 woman with white cane facing right +1F469 1F3FB 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👩🏻‍🦯‍➡️ E15.1 woman with white cane facing right: light skin tone +1F469 1F3FB 200D 1F9AF 200D 27A1 ; minimally-qualified # 👩🏻‍🦯‍➡ E15.1 woman with white cane facing right: light skin tone +1F469 1F3FC 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👩🏼‍🦯‍➡️ E15.1 woman with white cane facing right: medium-light skin tone +1F469 1F3FC 200D 1F9AF 200D 27A1 ; minimally-qualified # 👩🏼‍🦯‍➡ E15.1 woman with white cane facing right: medium-light skin tone +1F469 1F3FD 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👩🏽‍🦯‍➡️ E15.1 woman with white cane facing right: medium skin tone +1F469 1F3FD 200D 1F9AF 200D 27A1 ; minimally-qualified # 👩🏽‍🦯‍➡ E15.1 woman with white cane facing right: medium skin tone +1F469 1F3FE 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👩🏾‍🦯‍➡️ E15.1 woman with white cane facing right: medium-dark skin tone +1F469 1F3FE 200D 1F9AF 200D 27A1 ; minimally-qualified # 👩🏾‍🦯‍➡ E15.1 woman with white cane facing right: medium-dark skin tone +1F469 1F3FF 200D 1F9AF 200D 27A1 FE0F ; fully-qualified # 👩🏿‍🦯‍➡️ E15.1 woman with white cane facing right: dark skin tone +1F469 1F3FF 200D 1F9AF 200D 27A1 ; minimally-qualified # 👩🏿‍🦯‍➡ E15.1 woman with white cane facing right: dark skin tone 1F9D1 200D 1F9BC ; fully-qualified # 🧑‍🦼 E12.1 person in motorized wheelchair 1F9D1 1F3FB 200D 1F9BC ; fully-qualified # 🧑🏻‍🦼 E12.1 person in motorized wheelchair: light skin tone 1F9D1 1F3FC 200D 1F9BC ; fully-qualified # 🧑🏼‍🦼 E12.1 person in motorized wheelchair: medium-light skin tone 1F9D1 1F3FD 200D 1F9BC ; fully-qualified # 🧑🏽‍🦼 E12.1 person in motorized wheelchair: medium skin tone 1F9D1 1F3FE 200D 1F9BC ; fully-qualified # 🧑🏾‍🦼 E12.1 person in motorized wheelchair: medium-dark skin tone 1F9D1 1F3FF 200D 1F9BC ; fully-qualified # 🧑🏿‍🦼 E12.1 person in motorized wheelchair: dark skin tone +1F9D1 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 🧑‍🦼‍➡️ E15.1 person in motorized wheelchair facing right +1F9D1 200D 1F9BC 200D 27A1 ; minimally-qualified # 🧑‍🦼‍➡ E15.1 person in motorized wheelchair facing right +1F9D1 1F3FB 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 🧑🏻‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: light skin tone +1F9D1 1F3FB 200D 1F9BC 200D 27A1 ; minimally-qualified # 🧑🏻‍🦼‍➡ E15.1 person in motorized wheelchair facing right: light skin tone +1F9D1 1F3FC 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 🧑🏼‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: medium-light skin tone +1F9D1 1F3FC 200D 1F9BC 200D 27A1 ; minimally-qualified # 🧑🏼‍🦼‍➡ E15.1 person in motorized wheelchair facing right: medium-light skin tone +1F9D1 1F3FD 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 🧑🏽‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: medium skin tone +1F9D1 1F3FD 200D 1F9BC 200D 27A1 ; minimally-qualified # 🧑🏽‍🦼‍➡ E15.1 person in motorized wheelchair facing right: medium skin tone +1F9D1 1F3FE 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 🧑🏾‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: medium-dark skin tone +1F9D1 1F3FE 200D 1F9BC 200D 27A1 ; minimally-qualified # 🧑🏾‍🦼‍➡ E15.1 person in motorized wheelchair facing right: medium-dark skin tone +1F9D1 1F3FF 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 🧑🏿‍🦼‍➡️ E15.1 person in motorized wheelchair facing right: dark skin tone +1F9D1 1F3FF 200D 1F9BC 200D 27A1 ; minimally-qualified # 🧑🏿‍🦼‍➡ E15.1 person in motorized wheelchair facing right: dark skin tone 1F468 200D 1F9BC ; fully-qualified # 👨‍🦼 E12.0 man in motorized wheelchair 1F468 1F3FB 200D 1F9BC ; fully-qualified # 👨🏻‍🦼 E12.0 man in motorized wheelchair: light skin tone 1F468 1F3FC 200D 1F9BC ; fully-qualified # 👨🏼‍🦼 E12.0 man in motorized wheelchair: medium-light skin tone 1F468 1F3FD 200D 1F9BC ; fully-qualified # 👨🏽‍🦼 E12.0 man in motorized wheelchair: medium skin tone 1F468 1F3FE 200D 1F9BC ; fully-qualified # 👨🏾‍🦼 E12.0 man in motorized wheelchair: medium-dark skin tone 1F468 1F3FF 200D 1F9BC ; fully-qualified # 👨🏿‍🦼 E12.0 man in motorized wheelchair: dark skin tone +1F468 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👨‍🦼‍➡️ E15.1 man in motorized wheelchair facing right +1F468 200D 1F9BC 200D 27A1 ; minimally-qualified # 👨‍🦼‍➡ E15.1 man in motorized wheelchair facing right +1F468 1F3FB 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👨🏻‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: light skin tone +1F468 1F3FB 200D 1F9BC 200D 27A1 ; minimally-qualified # 👨🏻‍🦼‍➡ E15.1 man in motorized wheelchair facing right: light skin tone +1F468 1F3FC 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👨🏼‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: medium-light skin tone +1F468 1F3FC 200D 1F9BC 200D 27A1 ; minimally-qualified # 👨🏼‍🦼‍➡ E15.1 man in motorized wheelchair facing right: medium-light skin tone +1F468 1F3FD 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👨🏽‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: medium skin tone +1F468 1F3FD 200D 1F9BC 200D 27A1 ; minimally-qualified # 👨🏽‍🦼‍➡ E15.1 man in motorized wheelchair facing right: medium skin tone +1F468 1F3FE 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👨🏾‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: medium-dark skin tone +1F468 1F3FE 200D 1F9BC 200D 27A1 ; minimally-qualified # 👨🏾‍🦼‍➡ E15.1 man in motorized wheelchair facing right: medium-dark skin tone +1F468 1F3FF 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👨🏿‍🦼‍➡️ E15.1 man in motorized wheelchair facing right: dark skin tone +1F468 1F3FF 200D 1F9BC 200D 27A1 ; minimally-qualified # 👨🏿‍🦼‍➡ E15.1 man in motorized wheelchair facing right: dark skin tone 1F469 200D 1F9BC ; fully-qualified # 👩‍🦼 E12.0 woman in motorized wheelchair 1F469 1F3FB 200D 1F9BC ; fully-qualified # 👩🏻‍🦼 E12.0 woman in motorized wheelchair: light skin tone 1F469 1F3FC 200D 1F9BC ; fully-qualified # 👩🏼‍🦼 E12.0 woman in motorized wheelchair: medium-light skin tone 1F469 1F3FD 200D 1F9BC ; fully-qualified # 👩🏽‍🦼 E12.0 woman in motorized wheelchair: medium skin tone 1F469 1F3FE 200D 1F9BC ; fully-qualified # 👩🏾‍🦼 E12.0 woman in motorized wheelchair: medium-dark skin tone 1F469 1F3FF 200D 1F9BC ; fully-qualified # 👩🏿‍🦼 E12.0 woman in motorized wheelchair: dark skin tone +1F469 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👩‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right +1F469 200D 1F9BC 200D 27A1 ; minimally-qualified # 👩‍🦼‍➡ E15.1 woman in motorized wheelchair facing right +1F469 1F3FB 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👩🏻‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: light skin tone +1F469 1F3FB 200D 1F9BC 200D 27A1 ; minimally-qualified # 👩🏻‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: light skin tone +1F469 1F3FC 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👩🏼‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: medium-light skin tone +1F469 1F3FC 200D 1F9BC 200D 27A1 ; minimally-qualified # 👩🏼‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: medium-light skin tone +1F469 1F3FD 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👩🏽‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: medium skin tone +1F469 1F3FD 200D 1F9BC 200D 27A1 ; minimally-qualified # 👩🏽‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: medium skin tone +1F469 1F3FE 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👩🏾‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: medium-dark skin tone +1F469 1F3FE 200D 1F9BC 200D 27A1 ; minimally-qualified # 👩🏾‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: medium-dark skin tone +1F469 1F3FF 200D 1F9BC 200D 27A1 FE0F ; fully-qualified # 👩🏿‍🦼‍➡️ E15.1 woman in motorized wheelchair facing right: dark skin tone +1F469 1F3FF 200D 1F9BC 200D 27A1 ; minimally-qualified # 👩🏿‍🦼‍➡ E15.1 woman in motorized wheelchair facing right: dark skin tone 1F9D1 200D 1F9BD ; fully-qualified # 🧑‍🦽 E12.1 person in manual wheelchair 1F9D1 1F3FB 200D 1F9BD ; fully-qualified # 🧑🏻‍🦽 E12.1 person in manual wheelchair: light skin tone 1F9D1 1F3FC 200D 1F9BD ; fully-qualified # 🧑🏼‍🦽 E12.1 person in manual wheelchair: medium-light skin tone 1F9D1 1F3FD 200D 1F9BD ; fully-qualified # 🧑🏽‍🦽 E12.1 person in manual wheelchair: medium skin tone 1F9D1 1F3FE 200D 1F9BD ; fully-qualified # 🧑🏾‍🦽 E12.1 person in manual wheelchair: medium-dark skin tone 1F9D1 1F3FF 200D 1F9BD ; fully-qualified # 🧑🏿‍🦽 E12.1 person in manual wheelchair: dark skin tone +1F9D1 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 🧑‍🦽‍➡️ E15.1 person in manual wheelchair facing right +1F9D1 200D 1F9BD 200D 27A1 ; minimally-qualified # 🧑‍🦽‍➡ E15.1 person in manual wheelchair facing right +1F9D1 1F3FB 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 🧑🏻‍🦽‍➡️ E15.1 person in manual wheelchair facing right: light skin tone +1F9D1 1F3FB 200D 1F9BD 200D 27A1 ; minimally-qualified # 🧑🏻‍🦽‍➡ E15.1 person in manual wheelchair facing right: light skin tone +1F9D1 1F3FC 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 🧑🏼‍🦽‍➡️ E15.1 person in manual wheelchair facing right: medium-light skin tone +1F9D1 1F3FC 200D 1F9BD 200D 27A1 ; minimally-qualified # 🧑🏼‍🦽‍➡ E15.1 person in manual wheelchair facing right: medium-light skin tone +1F9D1 1F3FD 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 🧑🏽‍🦽‍➡️ E15.1 person in manual wheelchair facing right: medium skin tone +1F9D1 1F3FD 200D 1F9BD 200D 27A1 ; minimally-qualified # 🧑🏽‍🦽‍➡ E15.1 person in manual wheelchair facing right: medium skin tone +1F9D1 1F3FE 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 🧑🏾‍🦽‍➡️ E15.1 person in manual wheelchair facing right: medium-dark skin tone +1F9D1 1F3FE 200D 1F9BD 200D 27A1 ; minimally-qualified # 🧑🏾‍🦽‍➡ E15.1 person in manual wheelchair facing right: medium-dark skin tone +1F9D1 1F3FF 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 🧑🏿‍🦽‍➡️ E15.1 person in manual wheelchair facing right: dark skin tone +1F9D1 1F3FF 200D 1F9BD 200D 27A1 ; minimally-qualified # 🧑🏿‍🦽‍➡ E15.1 person in manual wheelchair facing right: dark skin tone 1F468 200D 1F9BD ; fully-qualified # 👨‍🦽 E12.0 man in manual wheelchair 1F468 1F3FB 200D 1F9BD ; fully-qualified # 👨🏻‍🦽 E12.0 man in manual wheelchair: light skin tone 1F468 1F3FC 200D 1F9BD ; fully-qualified # 👨🏼‍🦽 E12.0 man in manual wheelchair: medium-light skin tone 1F468 1F3FD 200D 1F9BD ; fully-qualified # 👨🏽‍🦽 E12.0 man in manual wheelchair: medium skin tone 1F468 1F3FE 200D 1F9BD ; fully-qualified # 👨🏾‍🦽 E12.0 man in manual wheelchair: medium-dark skin tone 1F468 1F3FF 200D 1F9BD ; fully-qualified # 👨🏿‍🦽 E12.0 man in manual wheelchair: dark skin tone +1F468 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👨‍🦽‍➡️ E15.1 man in manual wheelchair facing right +1F468 200D 1F9BD 200D 27A1 ; minimally-qualified # 👨‍🦽‍➡ E15.1 man in manual wheelchair facing right +1F468 1F3FB 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👨🏻‍🦽‍➡️ E15.1 man in manual wheelchair facing right: light skin tone +1F468 1F3FB 200D 1F9BD 200D 27A1 ; minimally-qualified # 👨🏻‍🦽‍➡ E15.1 man in manual wheelchair facing right: light skin tone +1F468 1F3FC 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👨🏼‍🦽‍➡️ E15.1 man in manual wheelchair facing right: medium-light skin tone +1F468 1F3FC 200D 1F9BD 200D 27A1 ; minimally-qualified # 👨🏼‍🦽‍➡ E15.1 man in manual wheelchair facing right: medium-light skin tone +1F468 1F3FD 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👨🏽‍🦽‍➡️ E15.1 man in manual wheelchair facing right: medium skin tone +1F468 1F3FD 200D 1F9BD 200D 27A1 ; minimally-qualified # 👨🏽‍🦽‍➡ E15.1 man in manual wheelchair facing right: medium skin tone +1F468 1F3FE 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👨🏾‍🦽‍➡️ E15.1 man in manual wheelchair facing right: medium-dark skin tone +1F468 1F3FE 200D 1F9BD 200D 27A1 ; minimally-qualified # 👨🏾‍🦽‍➡ E15.1 man in manual wheelchair facing right: medium-dark skin tone +1F468 1F3FF 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👨🏿‍🦽‍➡️ E15.1 man in manual wheelchair facing right: dark skin tone +1F468 1F3FF 200D 1F9BD 200D 27A1 ; minimally-qualified # 👨🏿‍🦽‍➡ E15.1 man in manual wheelchair facing right: dark skin tone 1F469 200D 1F9BD ; fully-qualified # 👩‍🦽 E12.0 woman in manual wheelchair 1F469 1F3FB 200D 1F9BD ; fully-qualified # 👩🏻‍🦽 E12.0 woman in manual wheelchair: light skin tone 1F469 1F3FC 200D 1F9BD ; fully-qualified # 👩🏼‍🦽 E12.0 woman in manual wheelchair: medium-light skin tone 1F469 1F3FD 200D 1F9BD ; fully-qualified # 👩🏽‍🦽 E12.0 woman in manual wheelchair: medium skin tone 1F469 1F3FE 200D 1F9BD ; fully-qualified # 👩🏾‍🦽 E12.0 woman in manual wheelchair: medium-dark skin tone 1F469 1F3FF 200D 1F9BD ; fully-qualified # 👩🏿‍🦽 E12.0 woman in manual wheelchair: dark skin tone +1F469 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👩‍🦽‍➡️ E15.1 woman in manual wheelchair facing right +1F469 200D 1F9BD 200D 27A1 ; minimally-qualified # 👩‍🦽‍➡ E15.1 woman in manual wheelchair facing right +1F469 1F3FB 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👩🏻‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: light skin tone +1F469 1F3FB 200D 1F9BD 200D 27A1 ; minimally-qualified # 👩🏻‍🦽‍➡ E15.1 woman in manual wheelchair facing right: light skin tone +1F469 1F3FC 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👩🏼‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: medium-light skin tone +1F469 1F3FC 200D 1F9BD 200D 27A1 ; minimally-qualified # 👩🏼‍🦽‍➡ E15.1 woman in manual wheelchair facing right: medium-light skin tone +1F469 1F3FD 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👩🏽‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: medium skin tone +1F469 1F3FD 200D 1F9BD 200D 27A1 ; minimally-qualified # 👩🏽‍🦽‍➡ E15.1 woman in manual wheelchair facing right: medium skin tone +1F469 1F3FE 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👩🏾‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: medium-dark skin tone +1F469 1F3FE 200D 1F9BD 200D 27A1 ; minimally-qualified # 👩🏾‍🦽‍➡ E15.1 woman in manual wheelchair facing right: medium-dark skin tone +1F469 1F3FF 200D 1F9BD 200D 27A1 FE0F ; fully-qualified # 👩🏿‍🦽‍➡️ E15.1 woman in manual wheelchair facing right: dark skin tone +1F469 1F3FF 200D 1F9BD 200D 27A1 ; minimally-qualified # 👩🏿‍🦽‍➡ E15.1 woman in manual wheelchair facing right: dark skin tone 1F3C3 ; fully-qualified # 🏃 E0.6 person running 1F3C3 1F3FB ; fully-qualified # 🏃🏻 E1.0 person running: light skin tone 1F3C3 1F3FC ; fully-qualified # 🏃🏼 E1.0 person running: medium-light skin tone @@ -2209,6 +2442,66 @@ 1F3C3 1F3FE 200D 2640 ; minimally-qualified # 🏃🏾‍♀ E4.0 woman running: medium-dark skin tone 1F3C3 1F3FF 200D 2640 FE0F ; fully-qualified # 🏃🏿‍♀️ E4.0 woman running: dark skin tone 1F3C3 1F3FF 200D 2640 ; minimally-qualified # 🏃🏿‍♀ E4.0 woman running: dark skin tone +1F3C3 200D 27A1 FE0F ; fully-qualified # 🏃‍➡️ E15.1 person running facing right +1F3C3 200D 27A1 ; minimally-qualified # 🏃‍➡ E15.1 person running facing right +1F3C3 1F3FB 200D 27A1 FE0F ; fully-qualified # 🏃🏻‍➡️ E15.1 person running facing right: light skin tone +1F3C3 1F3FB 200D 27A1 ; minimally-qualified # 🏃🏻‍➡ E15.1 person running facing right: light skin tone +1F3C3 1F3FC 200D 27A1 FE0F ; fully-qualified # 🏃🏼‍➡️ E15.1 person running facing right: medium-light skin tone +1F3C3 1F3FC 200D 27A1 ; minimally-qualified # 🏃🏼‍➡ E15.1 person running facing right: medium-light skin tone +1F3C3 1F3FD 200D 27A1 FE0F ; fully-qualified # 🏃🏽‍➡️ E15.1 person running facing right: medium skin tone +1F3C3 1F3FD 200D 27A1 ; minimally-qualified # 🏃🏽‍➡ E15.1 person running facing right: medium skin tone +1F3C3 1F3FE 200D 27A1 FE0F ; fully-qualified # 🏃🏾‍➡️ E15.1 person running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 27A1 ; minimally-qualified # 🏃🏾‍➡ E15.1 person running facing right: medium-dark skin tone +1F3C3 1F3FF 200D 27A1 FE0F ; fully-qualified # 🏃🏿‍➡️ E15.1 person running facing right: dark skin tone +1F3C3 1F3FF 200D 27A1 ; minimally-qualified # 🏃🏿‍➡ E15.1 person running facing right: dark skin tone +1F3C3 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃‍♀️‍➡️ E15.1 woman running facing right +1F3C3 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🏃‍♀‍➡️ E15.1 woman running facing right +1F3C3 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🏃‍♀️‍➡ E15.1 woman running facing right +1F3C3 200D 2640 200D 27A1 ; minimally-qualified # 🏃‍♀‍➡ E15.1 woman running facing right +1F3C3 1F3FB 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏻‍♀️‍➡️ E15.1 woman running facing right: light skin tone +1F3C3 1F3FB 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🏃🏻‍♀‍➡️ E15.1 woman running facing right: light skin tone +1F3C3 1F3FB 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🏃🏻‍♀️‍➡ E15.1 woman running facing right: light skin tone +1F3C3 1F3FB 200D 2640 200D 27A1 ; minimally-qualified # 🏃🏻‍♀‍➡ E15.1 woman running facing right: light skin tone +1F3C3 1F3FC 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏼‍♀️‍➡️ E15.1 woman running facing right: medium-light skin tone +1F3C3 1F3FC 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🏃🏼‍♀‍➡️ E15.1 woman running facing right: medium-light skin tone +1F3C3 1F3FC 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🏃🏼‍♀️‍➡ E15.1 woman running facing right: medium-light skin tone +1F3C3 1F3FC 200D 2640 200D 27A1 ; minimally-qualified # 🏃🏼‍♀‍➡ E15.1 woman running facing right: medium-light skin tone +1F3C3 1F3FD 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏽‍♀️‍➡️ E15.1 woman running facing right: medium skin tone +1F3C3 1F3FD 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🏃🏽‍♀‍➡️ E15.1 woman running facing right: medium skin tone +1F3C3 1F3FD 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🏃🏽‍♀️‍➡ E15.1 woman running facing right: medium skin tone +1F3C3 1F3FD 200D 2640 200D 27A1 ; minimally-qualified # 🏃🏽‍♀‍➡ E15.1 woman running facing right: medium skin tone +1F3C3 1F3FE 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏾‍♀️‍➡️ E15.1 woman running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🏃🏾‍♀‍➡️ E15.1 woman running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🏃🏾‍♀️‍➡ E15.1 woman running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 2640 200D 27A1 ; minimally-qualified # 🏃🏾‍♀‍➡ E15.1 woman running facing right: medium-dark skin tone +1F3C3 1F3FF 200D 2640 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏿‍♀️‍➡️ E15.1 woman running facing right: dark skin tone +1F3C3 1F3FF 200D 2640 200D 27A1 FE0F ; minimally-qualified # 🏃🏿‍♀‍➡️ E15.1 woman running facing right: dark skin tone +1F3C3 1F3FF 200D 2640 FE0F 200D 27A1 ; minimally-qualified # 🏃🏿‍♀️‍➡ E15.1 woman running facing right: dark skin tone +1F3C3 1F3FF 200D 2640 200D 27A1 ; minimally-qualified # 🏃🏿‍♀‍➡ E15.1 woman running facing right: dark skin tone +1F3C3 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃‍♂️‍➡️ E15.1 man running facing right +1F3C3 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🏃‍♂‍➡️ E15.1 man running facing right +1F3C3 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🏃‍♂️‍➡ E15.1 man running facing right +1F3C3 200D 2642 200D 27A1 ; minimally-qualified # 🏃‍♂‍➡ E15.1 man running facing right +1F3C3 1F3FB 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏻‍♂️‍➡️ E15.1 man running facing right: light skin tone +1F3C3 1F3FB 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🏃🏻‍♂‍➡️ E15.1 man running facing right: light skin tone +1F3C3 1F3FB 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🏃🏻‍♂️‍➡ E15.1 man running facing right: light skin tone +1F3C3 1F3FB 200D 2642 200D 27A1 ; minimally-qualified # 🏃🏻‍♂‍➡ E15.1 man running facing right: light skin tone +1F3C3 1F3FC 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏼‍♂️‍➡️ E15.1 man running facing right: medium-light skin tone +1F3C3 1F3FC 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🏃🏼‍♂‍➡️ E15.1 man running facing right: medium-light skin tone +1F3C3 1F3FC 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🏃🏼‍♂️‍➡ E15.1 man running facing right: medium-light skin tone +1F3C3 1F3FC 200D 2642 200D 27A1 ; minimally-qualified # 🏃🏼‍♂‍➡ E15.1 man running facing right: medium-light skin tone +1F3C3 1F3FD 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏽‍♂️‍➡️ E15.1 man running facing right: medium skin tone +1F3C3 1F3FD 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🏃🏽‍♂‍➡️ E15.1 man running facing right: medium skin tone +1F3C3 1F3FD 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🏃🏽‍♂️‍➡ E15.1 man running facing right: medium skin tone +1F3C3 1F3FD 200D 2642 200D 27A1 ; minimally-qualified # 🏃🏽‍♂‍➡ E15.1 man running facing right: medium skin tone +1F3C3 1F3FE 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏾‍♂️‍➡️ E15.1 man running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🏃🏾‍♂‍➡️ E15.1 man running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🏃🏾‍♂️‍➡ E15.1 man running facing right: medium-dark skin tone +1F3C3 1F3FE 200D 2642 200D 27A1 ; minimally-qualified # 🏃🏾‍♂‍➡ E15.1 man running facing right: medium-dark skin tone +1F3C3 1F3FF 200D 2642 FE0F 200D 27A1 FE0F ; fully-qualified # 🏃🏿‍♂️‍➡️ E15.1 man running facing right: dark skin tone +1F3C3 1F3FF 200D 2642 200D 27A1 FE0F ; minimally-qualified # 🏃🏿‍♂‍➡️ E15.1 man running facing right: dark skin tone +1F3C3 1F3FF 200D 2642 FE0F 200D 27A1 ; minimally-qualified # 🏃🏿‍♂️‍➡ E15.1 man running facing right: dark skin tone +1F3C3 1F3FF 200D 2642 200D 27A1 ; minimally-qualified # 🏃🏿‍♂‍➡ E15.1 man running facing right: dark skin tone 1F483 ; fully-qualified # 💃 E0.6 woman dancing 1F483 1F3FB ; fully-qualified # 💃🏻 E1.0 woman dancing: light skin tone 1F483 1F3FC ; fully-qualified # 💃🏼 E1.0 woman dancing: medium-light skin tone @@ -3244,7 +3537,6 @@ 1F469 1F3FF 200D 2764 200D 1F469 1F3FE ; minimally-qualified # 👩🏿‍❤‍👩🏾 E13.1 couple with heart: woman, woman, dark skin tone, medium-dark skin tone 1F469 1F3FF 200D 2764 FE0F 200D 1F469 1F3FF ; fully-qualified # 👩🏿‍❤️‍👩🏿 E13.1 couple with heart: woman, woman, dark skin tone 1F469 1F3FF 200D 2764 200D 1F469 1F3FF ; minimally-qualified # 👩🏿‍❤‍👩🏿 E13.1 couple with heart: woman, woman, dark skin tone -1F46A ; fully-qualified # 👪 E0.6 family 1F468 200D 1F469 200D 1F466 ; fully-qualified # 👨‍👩‍👦 E2.0 family: man, woman, boy 1F468 200D 1F469 200D 1F467 ; fully-qualified # 👨‍👩‍👧 E2.0 family: man, woman, girl 1F468 200D 1F469 200D 1F467 200D 1F466 ; fully-qualified # 👨‍👩‍👧‍👦 E2.0 family: man, woman, girl, boy @@ -3277,10 +3569,16 @@ 1F464 ; fully-qualified # 👤 E0.6 bust in silhouette 1F465 ; fully-qualified # 👥 E1.0 busts in silhouette 1FAC2 ; fully-qualified # 🫂 E13.0 people hugging +1F46A ; fully-qualified # 👪 E0.6 family +1F9D1 200D 1F9D1 200D 1F9D2 ; fully-qualified # 🧑‍🧑‍🧒 E15.1 family: adult, adult, child +1F9D1 200D 1F9D1 200D 1F9D2 200D 1F9D2 ; fully-qualified # 🧑‍🧑‍🧒‍🧒 E15.1 family: adult, adult, child, child +1F9D1 200D 1F9D2 ; fully-qualified # 🧑‍🧒 E15.1 family: adult, child +1F9D1 200D 1F9D2 200D 1F9D2 ; fully-qualified # 🧑‍🧒‍🧒 E15.1 family: adult, child, child 1F463 ; fully-qualified # 👣 E0.6 footprints +1FAC6 ; fully-qualified # 🫆 E16.0 fingerprint -# People & Body subtotal: 2998 -# People & Body subtotal: 508 w/o modifiers +# People & Body subtotal: 3291 +# People & Body subtotal: 561 w/o modifiers # group: Component @@ -3395,6 +3693,7 @@ 1FABD ; fully-qualified # 🪽 E15.0 wing 1F426 200D 2B1B ; fully-qualified # 🐦‍⬛ E15.0 black bird 1FABF ; fully-qualified # 🪿 E15.0 goose +1F426 200D 1F525 ; fully-qualified # 🐦‍🔥 E15.1 phoenix # subgroup: animal-amphibian 1F438 ; fully-qualified # 🐸 E0.6 frog @@ -3422,6 +3721,11 @@ 1F41A ; fully-qualified # 🐚 E0.6 spiral shell 1FAB8 ; fully-qualified # 🪸 E14.0 coral 1FABC ; fully-qualified # 🪼 E15.0 jellyfish +1F980 ; fully-qualified # 🦀 E1.0 crab +1F99E ; fully-qualified # 🦞 E11.0 lobster +1F990 ; fully-qualified # 🦐 E3.0 shrimp +1F991 ; fully-qualified # 🦑 E3.0 squid +1F9AA ; fully-qualified # 🦪 E12.0 oyster # subgroup: animal-bug 1F40C ; fully-qualified # 🐌 E0.6 snail @@ -3476,9 +3780,10 @@ 1FAB9 ; fully-qualified # 🪹 E14.0 empty nest 1FABA ; fully-qualified # 🪺 E14.0 nest with eggs 1F344 ; fully-qualified # 🍄 E0.6 mushroom +1FABE ; fully-qualified # 🪾 E16.0 leafless tree -# Animals & Nature subtotal: 159 -# Animals & Nature subtotal: 159 w/o modifiers +# Animals & Nature subtotal: 166 +# Animals & Nature subtotal: 166 w/o modifiers # group: Food & Drink @@ -3488,6 +3793,7 @@ 1F349 ; fully-qualified # 🍉 E0.6 watermelon 1F34A ; fully-qualified # 🍊 E0.6 tangerine 1F34B ; fully-qualified # 🍋 E1.0 lemon +1F34B 200D 1F7E9 ; fully-qualified # 🍋‍🟩 E15.1 lime 1F34C ; fully-qualified # 🍌 E0.6 banana 1F34D ; fully-qualified # 🍍 E0.6 pineapple 1F96D ; fully-qualified # 🥭 E11.0 mango @@ -3522,6 +3828,8 @@ 1F330 ; fully-qualified # 🌰 E0.6 chestnut 1FADA ; fully-qualified # 🫚 E15.0 ginger root 1FADB ; fully-qualified # 🫛 E15.0 pea pod +1F344 200D 1F7EB ; fully-qualified # 🍄‍🟫 E15.1 brown mushroom +1FADC ; fully-qualified # 🫜 E16.0 root vegetable # subgroup: food-prepared 1F35E ; fully-qualified # 🍞 E0.6 bread @@ -3578,13 +3886,6 @@ 1F960 ; fully-qualified # 🥠 E5.0 fortune cookie 1F961 ; fully-qualified # 🥡 E5.0 takeout box -# subgroup: food-marine -1F980 ; fully-qualified # 🦀 E1.0 crab -1F99E ; fully-qualified # 🦞 E11.0 lobster -1F990 ; fully-qualified # 🦐 E3.0 shrimp -1F991 ; fully-qualified # 🦑 E3.0 squid -1F9AA ; fully-qualified # 🦪 E12.0 oyster - # subgroup: food-sweet 1F366 ; fully-qualified # 🍦 E0.6 soft ice cream 1F367 ; fully-qualified # 🍧 E0.6 shaved ice @@ -3633,8 +3934,8 @@ 1FAD9 ; fully-qualified # 🫙 E14.0 jar 1F3FA ; fully-qualified # 🏺 E1.0 amphora -# Food & Drink subtotal: 135 -# Food & Drink subtotal: 135 w/o modifiers +# Food & Drink subtotal: 133 +# Food & Drink subtotal: 133 w/o modifiers # group: Travel & Places @@ -4132,6 +4433,7 @@ 1FA98 ; fully-qualified # 🪘 E13.0 long drum 1FA87 ; fully-qualified # 🪇 E15.0 maracas 1FA88 ; fully-qualified # 🪈 E15.0 flute +1FA89 ; fully-qualified # 🪉 E16.0 harp # subgroup: phone 1F4F1 ; fully-qualified # 📱 E0.6 mobile phone @@ -4321,12 +4623,15 @@ 2696 ; unqualified # ⚖ E1.0 balance scale 1F9AF ; fully-qualified # 🦯 E12.0 white cane 1F517 ; fully-qualified # 🔗 E0.6 link +26D3 FE0F 200D 1F4A5 ; fully-qualified # ⛓️‍💥 E15.1 broken chain +26D3 200D 1F4A5 ; unqualified # ⛓‍💥 E15.1 broken chain 26D3 FE0F ; fully-qualified # ⛓️ E0.7 chains 26D3 ; unqualified # ⛓ E0.7 chains 1FA9D ; fully-qualified # 🪝 E13.0 hook 1F9F0 ; fully-qualified # 🧰 E11.0 toolbox 1F9F2 ; fully-qualified # 🧲 E11.0 magnet 1FA9C ; fully-qualified # 🪜 E13.0 ladder +1FA8F ; fully-qualified # 🪏 E16.0 shovel # subgroup: science 2697 FE0F ; fully-qualified # ⚗️ E1.0 alembic @@ -4389,8 +4694,8 @@ 1FAA7 ; fully-qualified # 🪧 E13.0 placard 1FAAA ; fully-qualified # 🪪 E14.0 identification card -# Objects subtotal: 310 -# Objects subtotal: 310 w/o modifiers +# Objects subtotal: 314 +# Objects subtotal: 314 w/o modifiers # group: Symbols @@ -4607,6 +4912,7 @@ 00AE ; unqualified # ® E0.6 registered 2122 FE0F ; fully-qualified # ™️ E0.6 trade mark 2122 ; unqualified # ™ E0.6 trade mark +1FADF ; fully-qualified # 🫟 E16.0 splatter # subgroup: keycap 0023 FE0F 20E3 ; fully-qualified # #️⃣ E0.6 keycap: # @@ -4726,8 +5032,8 @@ 1F533 ; fully-qualified # 🔳 E0.6 white square button 1F532 ; fully-qualified # 🔲 E0.6 black square button -# Symbols subtotal: 304 -# Symbols subtotal: 304 w/o modifiers +# Symbols subtotal: 305 +# Symbols subtotal: 305 w/o modifiers # group: Flags @@ -4799,6 +5105,7 @@ 1F1E8 1F1F3 ; fully-qualified # 🇨🇳 E0.6 flag: China 1F1E8 1F1F4 ; fully-qualified # 🇨🇴 E2.0 flag: Colombia 1F1E8 1F1F5 ; fully-qualified # 🇨🇵 E2.0 flag: Clipperton Island +1F1E8 1F1F6 ; fully-qualified # 🇨🇶 E16.0 flag: Sark 1F1E8 1F1F7 ; fully-qualified # 🇨🇷 E2.0 flag: Costa Rica 1F1E8 1F1FA ; fully-qualified # 🇨🇺 E2.0 flag: Cuba 1F1E8 1F1FB ; fully-qualified # 🇨🇻 E2.0 flag: Cape Verde @@ -4979,7 +5286,7 @@ 1F1F9 1F1F2 ; fully-qualified # 🇹🇲 E2.0 flag: Turkmenistan 1F1F9 1F1F3 ; fully-qualified # 🇹🇳 E2.0 flag: Tunisia 1F1F9 1F1F4 ; fully-qualified # 🇹🇴 E2.0 flag: Tonga -1F1F9 1F1F7 ; fully-qualified # 🇹🇷 E2.0 flag: Turkey +1F1F9 1F1F7 ; fully-qualified # 🇹🇷 E2.0 flag: Türkiye 1F1F9 1F1F9 ; fully-qualified # 🇹🇹 E2.0 flag: Trinidad & Tobago 1F1F9 1F1FB ; fully-qualified # 🇹🇻 E2.0 flag: Tuvalu 1F1F9 1F1FC ; fully-qualified # 🇹🇼 E2.0 flag: Taiwan @@ -5012,13 +5319,13 @@ 1F3F4 E0067 E0062 E0073 E0063 E0074 E007F ; fully-qualified # 🏴󠁧󠁢󠁳󠁣󠁴󠁿 E5.0 flag: Scotland 1F3F4 E0067 E0062 E0077 E006C E0073 E007F ; fully-qualified # 🏴󠁧󠁢󠁷󠁬󠁳󠁿 E5.0 flag: Wales -# Flags subtotal: 275 -# Flags subtotal: 275 w/o modifiers +# Flags subtotal: 276 +# Flags subtotal: 276 w/o modifiers # Status Counts -# fully-qualified : 3655 -# minimally-qualified : 827 -# unqualified : 242 +# fully-qualified : 3781 +# minimally-qualified : 1009 +# unqualified : 243 # component : 9 #EOF diff --git a/pkgs/characters/tool/README.txt b/pkgs/characters/tool/README.txt index 9fbd204d..80a27be7 100644 --- a/pkgs/characters/tool/README.txt +++ b/pkgs/characters/tool/README.txt @@ -9,3 +9,7 @@ The `-u` means read new files from `https://unicode.org/Public`, and `-o` means try to optimize table chunk sizes, which is most important when using new data files. +When using `-u`, the update stops if the license file has changed. +Check the differences, and decide whether to proceed, and if so +run again adding the `--accept-license` command line argument. + diff --git a/pkgs/characters/tool/benchmark.dart b/pkgs/characters/tool/benchmark.dart index bcdd3860..4c63dece 100644 --- a/pkgs/characters/tool/benchmark.dart +++ b/pkgs/characters/tool/benchmark.dart @@ -23,7 +23,9 @@ void main(List args) { hangul + genesis + diacretics + - recJoin(splitTests + emojis + zalgo); + recJoin(splitTests.map(_fst)) + + recJoin(emojis.map(_fst)) + + recJoin(zalgo); var codeUnits = text.length; var codePoints = text.runes.length; for (var i = 0; i < count; i++) { @@ -41,7 +43,7 @@ void main(List args) { } } -String recJoin(List> texts) => +String recJoin(Iterable> texts) => texts.map((x) => x.join("")).join("\n"); int benchForward(String text, int i, int cp, int cu) { @@ -83,3 +85,5 @@ int benchBackward(String text, int i, int cp, int cu) { "$n rounds"); return gc ~/ n; } + +List _fst((List gcs, String description) pair) => pair.$1; diff --git a/pkgs/characters/tool/bin/gentable.dart b/pkgs/characters/tool/bin/generate_tables.dart similarity index 88% rename from pkgs/characters/tool/bin/gentable.dart rename to pkgs/characters/tool/bin/generate_tables.dart index 953fbe79..b1d4e3fe 100644 --- a/pkgs/characters/tool/bin/gentable.dart +++ b/pkgs/characters/tool/bin/generate_tables.dart @@ -70,7 +70,7 @@ const int defaultLowChunkSize = 64; const int defaultHighChunkSize = 512; void main(List args) { - var flags = parseArgs(args, "gentable", allowOptimize: true); + var flags = parseArgs(args, "generate_tables", allowOptimize: true); var output = flags.dryrun ? null : flags.targetFile ?? File(path(packageRoot, tableFile)); @@ -91,18 +91,17 @@ void main(List args) { optimize: flags.optimize); } -Future generateTables(File? output, - {bool update = false, - bool dryrun = false, - bool optimize = false, - bool verbose = defaultVerbose}) async { +Future generateTables( + File? output, { + bool update = false, + bool dryrun = false, + bool optimize = false, + bool verbose = defaultVerbose, + bool acceptLicenseChange = false, +}) async { // Generate the category mapping for all Unicode code points. // This is the table we want to create an compressed version of. var table = await loadGraphemeCategories(update: update, verbose: verbose); - if (update) { - // Force license file update. - await licenseFile.load(checkForUpdate: true); - } var lowChunkSize = defaultLowChunkSize; var highChunkSize = defaultHighChunkSize; @@ -201,6 +200,44 @@ Future generateTables(File? output, } else { output.writeAsStringSync(buffer.toString()); } + if (update && !dryrun) { + var version = guessVersion(await graphemeBreakPropertyData.contents); + updateReadmeVersion(version); + } +} + +// ----------------------------------------------------------------------------- +// Unicode version number. + +String? guessVersion(String dataFile) { + // If first line has format: + // + // # GraphemeBreakProperty-16.0.0.txt + // + // Then use 16.0.0 as version number. + var match = RegExp(r"# \w+-(\d+\.\d+\.\d+)\.txt").matchAsPrefix(dataFile); + return match?[1]; +} + +void updateReadmeVersion(String? version) { + var readmeFile = File(packagePath("README.md")); + var contents = readmeFile.readAsStringSync(); + String replacementText; + if (version != null) { + replacementText = "version $version"; + } else { + var now = DateTime.timestamp(); + replacementText = "of ${now.year}-${lz(now.month)}-${lz(now.day)}"; + } + const startTag = ""; + const endTag = ""; + var versionRE = RegExp('(?<=$startTag).*?(?=$endTag)'); + var newContents = contents.replaceFirst(versionRE, replacementText); + if (contents != newContents) { + readmeFile.writeAsStringSync(newContents); + } else if (versionRE.firstMatch(contents) == null) { + stderr.writeln("MISSING VERSION TAGS IN README.md"); + } } // ----------------------------------------------------------------------------- @@ -272,6 +309,10 @@ void _writeSurrogateLookupFunction(StringSink out, String dataName, String _lookupMethod( String name, String dataName, String startName, int chunkSize) => """ + +@pragma('dart2js:prefer-inline') +@pragma('vm:prefer-inline') +@pragma('wasm:prefer-inline') int $name(int codeUnit) { var chunkStart = $startName.codeUnitAt(codeUnit >> ${chunkSize.bitLength - 1}); var index = chunkStart + (codeUnit & ${chunkSize - 1}); diff --git a/pkgs/characters/tool/bin/gentest.dart b/pkgs/characters/tool/bin/generate_tests.dart similarity index 77% rename from pkgs/characters/tool/bin/gentest.dart rename to pkgs/characters/tool/bin/generate_tests.dart index 39aee360..db8b9892 100644 --- a/pkgs/characters/tool/bin/gentest.dart +++ b/pkgs/characters/tool/bin/generate_tests.dart @@ -19,7 +19,7 @@ const defaultVerbose = false; const testFile = "test/src/unicode_grapheme_tests.dart"; void main(List args) async { - var flags = parseArgs(args, "gentest"); + var flags = parseArgs(args, "generate_tests"); var output = flags.dryrun ? null @@ -53,6 +53,7 @@ Future generateTests(File? output, ..writeln("// (${licenseFile.sourceLocation}, " "../../third_party/${licenseFile.targetLocation})") ..writeln("// ignore_for_file: lines_longer_than_80_chars") + ..writeln("// dart format off") ..writeln(); var texts = await Future.wait([ @@ -64,15 +65,15 @@ Future generateTests(File? output, await licenseFile.load(checkForUpdate: true); } { - buffer - ..writeln("// Grapheme cluster tests.") - ..writeln("const List> splitTests = ["); + buffer.writeln("// Grapheme cluster tests."); + writeTestHeader(buffer, 'splitTests'); var test = texts[0]; - var lineRE = RegExp(r"^(÷.*?)#", multiLine: true); + var lineRE = RegExp(r"^(÷.*?)#[ \t]*(.*)", multiLine: true); var tokensRE = RegExp(r"[÷×]|[\dA-F]+"); var writer = StringLiteralWriter(buffer, lineLength: 9999, escape: _escape); for (var line in lineRE.allMatches(test)) { - var tokens = tokensRE.allMatches(line[0]!).map((x) => x[0]!).toList(); + var description = line[2]!; + var tokens = tokensRE.allMatches(line[1]!).map((x) => x[0]!).toList(); assert(tokens.first == "÷"); assert(tokens.last == "÷"); @@ -86,38 +87,46 @@ Future generateTests(File? output, chars = []; } } - buffer.write(" ["); + buffer.write(" (["); for (var i = 0; i < parts.length; i++) { if (i > 0) buffer.write(", "); writer.start(0); parts[i].forEach(writer.add); writer.end(); } - buffer.writeln("],"); + buffer + ..write("], '") + ..write(description) + ..writeln("'),"); } buffer.writeln("];"); } { - buffer - ..writeln("// Emoji tests.") - ..writeln("const List> emojis = ["); + buffer.writeln("// Emoji tests."); + writeTestHeader(buffer, 'emojis'); // Emojis var emojis = texts[1]; - var lineRE = RegExp(r"^([ \dA-F]*?);", multiLine: true); + var lineRE = RegExp(r"^([ \dA-F]*?);[^#]*#[ \t]*(.*)", multiLine: true); var tokensRE = RegExp(r"[\dA-F]+"); var writer = StringLiteralWriter(buffer, lineLength: 9999, escape: _escape); for (var line in lineRE.allMatches(emojis)) { - buffer.write(" ["); + var description = line[2]!; + buffer.write(" (["); writer.start(); for (var token in tokensRE.allMatches(line[1]!)) { var value = int.parse(token[0]!, radix: 16); writer.add(value); } writer.end(); - buffer.writeln("],"); + buffer + ..write("], '") + ..write(description) // No current description contains `'`. + ..writeln("'),"); } buffer.writeln("];"); } + buffer.writeln("// dart format on"); + if (dryrun || output == null) { stdout.write(buffer); } else { @@ -129,3 +138,10 @@ Future generateTests(File? output, } bool _escape(int cp) => cp > 0xff || cp & 0x60 == 0 || cp == 0x7f; + +void writeTestHeader(StringSink buffer, String testName) { + buffer + ..write("const List<(List graphemeClusters, String description)> ") + ..write(testName) + ..writeln(" = ["); +} diff --git a/pkgs/characters/tool/generate.dart b/pkgs/characters/tool/generate.dart index ab40b683..00cc1f92 100644 --- a/pkgs/characters/tool/generate.dart +++ b/pkgs/characters/tool/generate.dart @@ -2,25 +2,31 @@ // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file. -import "dart:io" show File; +import "dart:io" show File, exit; -import "bin/gentable.dart" show generateTables, tableFile; -import "bin/gentest.dart" show generateTests, testFile; +import "bin/generate_tables.dart" show generateTables, tableFile; +import "bin/generate_tests.dart" show generateTests, testFile; import "src/args.dart"; import "src/shared.dart"; /// Generates both tests and tables. /// -/// Use this tool for updates, and `bin/gentable.dart` and `bin/gentest.dart` -/// mainly during development. +/// Use this tool for updates, and only access `bin/generate_tables.dart` and +/// `bin/generate_tests.dart` directly during development of those files. void main(List args) async { var flags = parseArgs(args, "generate", allowOptimize: true, allowFile: false); + if (flags.update && !await checkLicense(flags.acceptLicenseChange)) { + print("EXITING"); + exit(1); + } + await generateTables(File(path(packageRoot, tableFile)), optimize: flags.optimize, update: flags.update, dryrun: flags.dryrun, verbose: flags.verbose); + await generateTests(File(path(packageRoot, testFile)), update: flags.update, dryrun: flags.dryrun, verbose: flags.verbose); } diff --git a/pkgs/characters/tool/src/args.dart b/pkgs/characters/tool/src/args.dart index 9a8ebb67..60c79a8a 100644 --- a/pkgs/characters/tool/src/args.dart +++ b/pkgs/characters/tool/src/args.dart @@ -6,18 +6,14 @@ import "dart:io"; -class Flags { - final bool verbose; - final bool update; - final bool dryrun; - final bool optimize; - final File? targetFile; - Flags(this.targetFile, - {required this.update, - required this.dryrun, - required this.verbose, - required this.optimize}); -} +typedef Flags = ({ + bool verbose, + bool update, + bool dryrun, + bool optimize, + bool acceptLicenseChange, + File? targetFile, +}); Flags parseArgs(List args, String toolName, {bool allowOptimize = false, bool allowFile = true}) { @@ -25,6 +21,7 @@ Flags parseArgs(List args, String toolName, var dryrun = false; var verbose = false; var optimize = false; + var acceptLicenseChange = false; File? output; for (var arg in args) { if (arg == "-h" || arg == "--help") { @@ -34,6 +31,7 @@ Flags parseArgs(List args, String toolName, "${allowFile ? " " : ""}") ..writeln("-h | --help : Print this help and exit") ..writeln("-u | --update : Fetch new data files") + ..writeln("--accept-license : Accept a changed license") ..writeln( "-n | --dryrun : Write to stdout instead of target file"); if (allowOptimize) { @@ -51,6 +49,8 @@ Flags parseArgs(List args, String toolName, dryrun = true; } else if (arg == "-v" || arg == "--verbose") { verbose = true; + } else if (arg == "--accept-license") { + acceptLicenseChange = true; } else if (allowOptimize && arg == "-o" || arg == "-i" || arg.startsWith("--opt")) { @@ -65,6 +65,12 @@ Flags parseArgs(List args, String toolName, output = File(arg); } } - return Flags(output, - update: update, dryrun: dryrun, verbose: verbose, optimize: optimize); + return ( + acceptLicenseChange: acceptLicenseChange, + dryrun: dryrun, + optimize: optimize, + targetFile: output, + update: update, + verbose: verbose, + ); } diff --git a/pkgs/characters/tool/src/data_files.dart b/pkgs/characters/tool/src/data_files.dart index 2151aedb..da0d4d95 100644 --- a/pkgs/characters/tool/src/data_files.dart +++ b/pkgs/characters/tool/src/data_files.dart @@ -3,30 +3,24 @@ // BSD-style license that can be found in the LICENSE file. import "dart:io"; -import "shared.dart"; +import "shared.dart" as util; // Abstraction over files fetched from the `unicode.org/Public` UCD repository. - -// TODO: Find way to detect newest Unicode version, -// and compute URIs from that. +// If any of these URIs stop working, find out where they have moved to. final graphemeBreakPropertyData = DataFile( - // "https://unicode.org/Public/15.0.0/ucd/auxiliary/GraphemeBreakProperty.txt", "https://unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakProperty.txt", "third_party/Unicode_Consortium/GraphemeBreakProperty.txt"); final emojiData = DataFile( - // "https://unicode.org/Public/15.0.0/ucd/emoji/emoji-data.txt", "https://unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt", "third_party/Unicode_Consortium/emoji_data.txt"); final graphemeTestData = DataFile( - // "https://unicode.org/Public/15.0.0/ucd/auxiliary/GraphemeBreakTest.txt", "https://unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakTest.txt", "third_party/Unicode_Consortium/GraphemeBreakTest.txt"); final emojiTestData = DataFile( - // "https://www.unicode.org/Public/emoji/15.0/emoji-test.txt", "https://unicode.org/Public/emoji/latest/emoji-test.txt", "third_party/Unicode_Consortium/emoji_test.txt"); @@ -34,17 +28,52 @@ final licenseFile = DataFile("https://www.unicode.org/license.txt", "third_party/Unicode_Consortium/UNICODE_LICENSE.txt"); class DataFile { + /// Source URI. final String sourceLocation; - // Target location relative to package root. + + /// Target file path relative to package root. final String targetLocation; + + /// Cached contents. String? _contents; + DataFile(this.sourceLocation, this.targetLocation); Future get contents async => _contents ??= await load(); + /// Loads file, fetching it from the source first if necessary. + /// + /// If [checkForUpdate] is `false`, the content of an existing file at + /// [targetLocation] is read. If there is no file or if [checkForUpdate] + /// is `true`, new content is fetched from the [sourceLocation] URI + /// and written to the [targetLocation] file. Future load({bool checkForUpdate = false}) async => (checkForUpdate ? null : _contents) ?? - (_contents = await fetch(sourceLocation, - targetFile: File(path(packageRoot, targetLocation)), - forceLoad: checkForUpdate)); + (_contents = await util.fetch(sourceLocation, + targetFile: _targetFile, forceLoad: checkForUpdate)); + + /// Fetches content, compares to existing content. + /// + /// Returns `null` if no change, a path to a temporary file containing the + /// new content if there are changes. + Future checkChange([bool Function(String, String)? equals]) async { + equals ??= _eq; + var contents = await this.contents; + var tmpFile = File(util.tmpPath(targetLocation)); + var newContents = + await util.fetch(sourceLocation, targetFile: tmpFile, forceLoad: true); + if (equals(contents, newContents)) { + return null; + } + return tmpFile.path; + } + + static bool _eq(String a, String b) => a == b; + + void copyFrom(String contentPath) { + _contents = null; + File(contentPath).copySync(_targetFile.path); + } + + File get _targetFile => File(util.packagePath(targetLocation)); } diff --git a/pkgs/characters/tool/src/indirect_table.dart b/pkgs/characters/tool/src/indirect_table.dart index fbc0d6f7..f59b883e 100644 --- a/pkgs/characters/tool/src/indirect_table.dart +++ b/pkgs/characters/tool/src/indirect_table.dart @@ -9,7 +9,7 @@ import "dart:typed_data"; /// Contains a number, one or more, of chunks, /// and a list of entries which point to entire chunks or parts of chunks. /// -/// The entries represent sequnences of values. +/// The entries represent sequences of values. /// Each such sequence is stored in one of the chunks. /// /// The main goal of these tools are to go from an initial complete diff --git a/pkgs/characters/tool/src/shared.dart b/pkgs/characters/tool/src/shared.dart index eff2413a..bd45f2a6 100644 --- a/pkgs/characters/tool/src/shared.dart +++ b/pkgs/characters/tool/src/shared.dart @@ -6,15 +6,21 @@ import "dart:async"; import "dart:convert"; import "dart:io"; +import 'data_files.dart'; + // Shared tools used by other libraries. -/// Quick and dirty URI loader. +/// Quick and dirty caching URI loader. +/// +/// Reads from [targetFile] if it exists and [forceLoad] is not `true`. +/// Otherwise fetches from [location] URI and stores in [targetFile]. /// -/// Stashes copy in specified file, or in file in tmp directory. +/// If [targetFile] is omitted, a file in the system temporary directory +/// is used instead. Future fetch(String location, {File? targetFile, bool forceLoad = false}) async { if (targetFile == null) { - var safeLocation = location.replaceAll(RegExp(r'[^\w]+'), '-'); + var safeLocation = safePath(location); targetFile = File(path(Directory.systemTemp.path, safeLocation)); } if (!forceLoad && targetFile.existsSync()) { @@ -31,13 +37,59 @@ Future fetch(String location, if (response.statusCode != HttpStatus.ok) { throw HttpException(response.reasonPhrase, uri: uri); } - contents = await utf8.decoder.bind(response).join(""); + contents = await utf8.decoder.bind(response).join(); client.close(); } - targetFile.writeAsStringSync(contents); + writeToPath(targetFile, contents); return contents; } +/// Writes string to file. +/// +/// Ensures directory of file exits. +void writeToPath(File targetFile, String contents) { + var parentDir = Directory(parentPath(targetFile.path)); + parentDir.createSync(recursive: true); + targetFile.writeAsStringSync(contents); +} + +// Parent directory path of file or directory path. +String parentPath(String path) { + var end = path.length; + if (path.endsWith('/')) end -= 1; + var lastSlash = path.lastIndexOf("/", end); + if (lastSlash >= 0) { + return path.substring(0, lastSlash + 1); + } + if (path == "/") return path; + return './'; // Empty relative path. +} + +Future checkLicense(bool acceptLicenseChange) async { + if (await licenseFile.checkChange() case var changedLicensePath?) { + if (!acceptLicenseChange) { + stderr.writeln( + licenseChangeWarning(licenseFile.targetLocation, changedLicensePath)); + return false; + } + stderr.writeln("LICENSE CHANGE ACCEPTED!"); + licenseFile.copyFrom(changedLicensePath); + } else if (acceptLicenseChange) { + stderr.writeln("Accepting license change with no change."); + stderr.writeln("DO NOT AUTOMATE LICENSE ACCEPTANCE!"); + return false; + } + return true; +} + +/// Warning shown if the license has changed. +String licenseChangeWarning(String originalPath, String newPath) => """ +**NOTICE** +The license file has changed. Check that it has not changed meaning. +See changes using: + git diff ${_windowize(originalPath)} ${_windowize(newPath)} +"""; + const copyright = """ // Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a @@ -45,6 +97,12 @@ const copyright = """ """; +/// Temporary directory. Created once and for all. +Directory get tmpDirectory => _tmpDirectory ??= + Directory.systemTemp.createTempSync('dart_pkg_characters'); + +Directory? _tmpDirectory; + /// Combines file paths into one path. /// /// No fancy stuff, just adds path separator between parts, @@ -71,12 +129,23 @@ String path(String path, [String path2 = "", String path3 = ""]) { return buffer.toString(); } +/// Converts path to Windows path if on Windows (`/` to `\`). +/// +/// Returns original path if not on Windows. String _windowize(String path) => Platform.isWindows ? path.replaceAll("/", r"\") : path; /// Package root directory. String packageRoot = _findRootDir().path; +/// A path relative to the [packageRoot]. +String packagePath(String path2, [String path3 = ""]) => + path(packageRoot, path2, path3); + +/// A path relative to a temporary directory. +String tmpPath(String path2, [String path3 = ""]) => + path(tmpDirectory.path, path2, path3); + /// Finds package root in the parent chain of the current directory. /// /// Recognizes package root by `pubspec.yaml` file. @@ -92,3 +161,10 @@ Directory _findRootDir() { } } } + +/// Leading-zero padding. +String lz(int n, [int length = 2]) => n.toString().padLeft(length, "0"); + +final _unsafeCharsRE = RegExp(r'\W+'); +// Convert URI path to safe file path. +String safePath(String uriPath) => uriPath.replaceAll(_unsafeCharsRE, '-'); From 8dfaa9f19140c4baa5cf8ce595ec9e7f9aab5906 Mon Sep 17 00:00:00 2001 From: "Lasse R.H. Nielsen" Date: Fri, 18 Oct 2024 09:30:38 +0200 Subject: [PATCH 2/3] Update pkgs/characters/pubspec.yaml Co-authored-by: Devon Carew --- pkgs/characters/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/characters/pubspec.yaml b/pkgs/characters/pubspec.yaml index 452f81de..345dc8ee 100644 --- a/pkgs/characters/pubspec.yaml +++ b/pkgs/characters/pubspec.yaml @@ -12,5 +12,5 @@ environment: sdk: ^3.4.0 dev_dependencies: - dart_flutter_team_lints: ^3.2.0 + dart_flutter_team_lints: ^3.0.0 test: ^1.16.6 From 4e778878f17a838ab38d7cdcd7665e685e57fdfe Mon Sep 17 00:00:00 2001 From: "Lasse R.H. Nielsen" Date: Tue, 22 Oct 2024 14:16:06 +0200 Subject: [PATCH 3/3] Don't add `interface` modifier in this PR. The `Characters` class is an empty interface, but adding `interface` to it is potentially breaking, so not doing it as part of this PR. --- pkgs/characters/lib/src/characters.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/characters/lib/src/characters.dart b/pkgs/characters/lib/src/characters.dart index 7faf8ba1..52a99eaf 100644 --- a/pkgs/characters/lib/src/characters.dart +++ b/pkgs/characters/lib/src/characters.dart @@ -19,7 +19,7 @@ import "characters_impl.dart"; /// which allows iterating the independent characters in both directions, /// but which also provides ways to select other ranges of characters /// in different ways. -abstract interface class Characters implements Iterable { +abstract class Characters implements Iterable { /// An empty [Characters] containing no characters. static const Characters empty = StringCharacters("");