Fixes Issue 241, Emoji Picker addition to Messages activity, a=chris

Parth Patel [2022-03-09 00:Mar:th]
Fixes Issue 241, Emoji Picker addition to Messages activity, a=chris

Signed-off-by: Chris Pollett <chris@pollett.org>
Filename
src/css/messages.css
src/views/elements/UsermessagesElement.php
src/views/helpers/EmojipickerHelper.php
diff --git a/src/css/messages.css b/src/css/messages.css
index d56ee5594..1799e6340 100644
--- a/src/css/messages.css
+++ b/src/css/messages.css
@@ -186,6 +186,16 @@
 .message-detail-outer
 {
     display: inline-block;
+    max-width: 50%;
+    overflow-wrap: anywhere;
+    text-align: justify;
+}
+.mobile .message-detail-outer
+{
+    display: inline-block;
+    max-width: 90%;
+    overflow-wrap: anywhere;
+    text-align: justify;
 }
 .message-icon
 {
@@ -260,15 +270,25 @@
 }
 #new-message
 {
-    border-radius: 20px;
-    border: solid 1px gray;
-    color: #000;
+    border: none;
+    font-size: 18pt;
+    height:40px;
+    width: 80%;
+    resize: none;
+    outline: none;
+    background-color: transparent;
     display: inline-block;
+}
+.mobile #new-message
+{
+    border: none;
     font-size: 18pt;
     height:40px;
-    padding: 5px 20px 5px 20px;
     resize: none;
-    width: 50%;
+    outline: none;
+    background-color: transparent;
+    display: flex;
+    flex-shrink: inherit;
 }
 #attach-new-file,
 #send-message
@@ -299,3 +319,120 @@
 {
     width: 340px;
 }
+#user-input-container
+{
+    padding-bottom: 8px;
+    border-radius: 20px;
+    border: solid 1px gray;
+    color: #000;
+    display: inline-flex;
+    height:40px;
+    resize: none;
+    width: 50%;
+    text-align: start;
+    vertical-align: center;
+}
+#emoji-picker-button
+{
+    height:40px;
+    border: none;
+    font-size: 22px;
+    background-color: transparent;
+    cursor: pointer;
+    display: inline-block;
+    margin-top: 5px;
+    margin-left: 2px;
+}
+.emoji-picker-container
+{
+    display: none;
+    border: solid 1px gray;
+    border-radius: 5px;
+    width: 400px;
+    position: absolute;
+    bottom: 105%;
+    height: 350px;
+    background-color: white;
+    z-index: 1;
+}
+.mobile .emoji-picker-container
+{
+    display: none;
+    border: solid 1px gray;
+    border-radius: 5px;
+    width: 250px;
+    position: absolute;
+    bottom: 105%;
+    height: 300px;
+    background-color: white;
+    z-index: 1;
+}
+.emoji
+{
+    border: none;
+    display: inline-block;
+    font-size: 22px;
+    cursor: pointer;
+    font-size: 35px;
+    padding: 2px;
+    margin: 2px;
+}
+.emoji-group-navigator
+{
+    position: absolute;
+    bottom: 0;
+    height: 15%;
+    border-top: 1px solid grey;
+    text-align: center;
+    z-index: 2;
+    width: 100%;
+}
+.emoji-group-container
+{
+    display: none;
+    text-align: left;
+    height: 85%;
+    position: absolute;
+    width: 100%;
+}
+.emoji-container
+{
+    width: 100%;
+    height: 90%;
+    overflow-y: scroll;
+    position: relative;
+    padding: 10px;
+}
+#emoji-group-name
+{
+    font-size: 10px;
+    text-transform: uppercase;
+    color: gray;
+    margin: 5px;
+}
+.active-emoji-group
+{
+    display: flex;
+    flex-direction: column;
+}
+.emoji-group-tab
+{
+    margin: 5px;
+    font-size: 22px;
+    cursor: pointer;
+    display: inline-block;
+    padding: 5px;
+}
+.mobile .emoji-group-tab
+{
+    margin: 2% 0 0 0;
+    font-size: 100%;
+    display: inline-block;
+    padding: 2%;
+}
+.active-emoji-group-tab
+{
+    background-color: gainsboro;
+    border: 1px solid grey;
+    border-radius: 10%;
+}
diff --git a/src/views/elements/UsermessagesElement.php b/src/views/elements/UsermessagesElement.php
index 558cea6a4..cdb60afea 100644
--- a/src/views/elements/UsermessagesElement.php
+++ b/src/views/elements/UsermessagesElement.php
@@ -42,6 +42,11 @@ use seekquarry\yioop\library\CrawlConstants;
  */
 class UsermessagesElement extends Element implements CrawlConstants
 {
+    /**
+     * Emojipicker helper
+     * @var helper
+     */
+    public $emoji_helper;
     /**
      *
      *
@@ -56,6 +61,7 @@ class UsermessagesElement extends Element implements CrawlConstants
             }
             return;
         }
+        $this->emoji_helper = $this->view->helper('emojipicker');
         ?>
         <div class="messages-container"><?php
         if ($is_mobile && empty($data['CONTACT_ID']) || !$is_mobile) { ?>
@@ -110,7 +116,7 @@ class UsermessagesElement extends Element implements CrawlConstants
         </form>
         <?php
         $token_string = C\CSRF_TOKEN . "=". $data[C\CSRF_TOKEN];
-        foreach($data['CONTACTS'] as $contact_id => $contact_info) {
+        foreach ($data['CONTACTS'] as $contact_id => $contact_info) {
             $selected = ($contact_id == $data['CONTACT_ID']) ?
                 " selected-contact " : "";
             ?>
@@ -136,7 +142,7 @@ class UsermessagesElement extends Element implements CrawlConstants
                 "blockcontact" => tl('usermessages_element_block'),
                 "ignorecontact" => tl('usermessages_element_ignore'),
             ];
-            foreach($data['CONTACT_REQUESTS'] as $contact_id => $contact_info) {
+            foreach ($data['CONTACT_REQUESTS'] as $contact_id => $contact_info) {
                 $contact_request_url = B\feedsUrl('user_messages',
                     $contact_id, true, $data['CONTROLLER']) .
                     $token_string . "&amp;contact_id=$contact_id&amp;arg=";
@@ -277,7 +283,7 @@ class UsermessagesElement extends Element implements CrawlConstants
         ?>
         <div class="new-message-container">
         <form  id="newmessageForm" method="post" action="<?=C\SHORT_BASE_URL?>"
-            enctype='multipart/form-data'>
+            enctype='multipart/form-data' onsubmit="parseEmojiShortcuts()">
         <input type="hidden" name="c" value="<?=$data['CONTROLLER'] ?>" />
         <input type="hidden" name="a" value="userMessages" />
         <input type="hidden" name="arg" value="newmessage" />
@@ -290,9 +296,15 @@ class UsermessagesElement extends Element implements CrawlConstants
         <a id="attach-new-file"
             href="javascript:elt('file-new-message').click()"
             >๐Ÿ“Ž</a>
-        <input type="ext" id="new-message"  name="description"
-            placeholder="<?=tl('usermessages_element_new_message') ?>"
-             />
+        <span id="user-input-container">
+            <button id="emoji-picker-button" type="button"
+                onclick="toggleEmojiPicker()">๐Ÿ™‚</button>
+            <div class="emoji-picker-container" id="emoji-picker-container">
+                <?=$this->emoji_helper->render();?>
+            </div>
+            <input type="ext" id="new-message"  name="description"
+                placeholder="<?=tl('usermessages_element_new_message') ?>" />
+        </span>
         <button type="submit" id="send-message" ><?=$arrow ?></button>
         </form>
         </div>
@@ -306,8 +318,75 @@ class UsermessagesElement extends Element implements CrawlConstants
               L\metricToInt(ini_get('post_max_size')))
               ?>, "textarea", null, true);
         }
+        const emoji_groups = <?php echo
+            json_encode($this->emoji_helper->emoji_groups); ?>;
+        let emojis_array = {};
+        for (const group in emoji_groups) {
+            let group_data = emoji_groups[group];
+            for (const emoji in group_data["emojis"]) {
+                emojis_array[emoji] = group_data["emojis"][emoji][0];
+            }
+        }
+        function insertEmoji(emoji)
+        {
+            let input = document.getElementById('new-message');
+            input.value += emoji;
+        }
+        function toggleEmojiPicker()
+        {
+            let emoji_picker =
+                document.getElementById('emoji-picker-container');
+            if (emoji_picker.style.display === "none"
+                || emoji_picker.style.display === "") {
+                emoji_picker.style.display = "inline-block";
+            } else {
+                emoji_picker.style.display = "none";
+            }
+        }
+        function toggleEmojiGroup(emoji_grp_tab, emoji_grp_name)
+        {
+            let emoji_grp_id = "emoji-group-" + emoji_grp_name;
+            let emoji_groups =
+                document.getElementsByClassName("emoji-group-container");
+            for (let i=0;i<emoji_groups.length;i++) {
+                if (emoji_groups[i].id === emoji_grp_id) {
+                    emoji_groups[i].className += " active-emoji-group";
+                } else {
+                    emoji_groups[i].className = "emoji-group-container";
+                }
+            }
+            let emoji_grps_tab =
+                document.getElementsByClassName("emoji-group-tab");
+            for (let i=0;i<emoji_grps_tab.length;i++) {
+                emoji_grps_tab[i].className = "emoji-group-tab";
+            }
+            emoji_grp_tab.className += " active-emoji-group-tab";
+        }
+        function parseEmojiShortcuts()
+        {
+            let input = document.getElementById("new-message");
+            let raw_message = input.value;
+            let possible_shortcuts = raw_message.matchAll(/\[([^\]]+)\]/g);
+            let parse_message = "";
+            let last_start_idx = 0;
+            for (let shortcut of possible_shortcuts) {
+                let text = shortcut[1];
+                let emoji = emojis_array[text];
+                if (emoji !== undefined) {
+                    parse_message += raw_message.substring(last_start_idx,
+                        shortcut["index"]) + emoji;
+                } else {
+                    parse_message += raw_message.substring(last_start_idx,
+                        shortcut["index"]) + "[" + text + "]";
+                }
+                last_start_idx = shortcut["index"] + text.length + 2;
+            }
+            parse_message += raw_message.substring(last_start_idx);
+            input.value = parse_message;
+            return true;
+        }
         </script>
         </div><?php
     }

-}
+}
\ No newline at end of file
diff --git a/src/views/helpers/EmojipickerHelper.php b/src/views/helpers/EmojipickerHelper.php
new file mode 100644
index 000000000..9bec8cfa5
--- /dev/null
+++ b/src/views/helpers/EmojipickerHelper.php
@@ -0,0 +1,2002 @@
+<?php
+/**
+ * SeekQuarry/Yioop --
+ * Open Source Pure PHP Search Engine, Crawler, and Indexer
+ *
+ * Copyright (C) 2009 - 2022  Chris Pollett chris@pollett.org
+ *
+ * LICENSE:
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ * END LICENSE
+ *
+ * @author Chris Pollett chris@pollett.org
+ * @license https://www.gnu.org/licenses/ GPL3
+ * @link https://www.seekquarry.com/
+ * @copyright 2009 - 2022
+ * @filesource
+ */
+namespace seekquarry\yioop\views\helpers;
+
+/**
+ * This is a helper class is used to handle
+ * drawing of Emojis in the Usermessages activity
+ *
+ * @author Chris Pollett
+ */
+class EmojipickerHelper extends Helper
+{
+
+    /**
+     * Emojis unicode codepoint supported
+     * @var array
+     */
+    var $emoji_groups;
+    /**
+     * Intialises emoji_groups array when the object is created
+     * The key is shortcut for emoji and each emoji has corresponding
+     * description
+     */
+    public function __construct()
+    {
+        $this->emoji_groups = [
+            "Smileys & People" => ["icon" => "๐Ÿ˜ƒ",
+            "emojis" => [
+                "grinning" => ["๐Ÿ˜€","Grinning Face"],
+                "smiley" => ["๐Ÿ˜ƒ","Grinning Face with Big Eyes"],
+                "smile" => ["๐Ÿ˜„","Grinning Face with Smiling Eyes"],
+                "grin" => ["๐Ÿ˜","Beaming Face with Smiling Eyes"],
+                "laughing" => ["๐Ÿ˜†","Grinning Squinting Face"],
+                "sweat_smile" => ["๐Ÿ˜…","Grinning Face with Sweat"],
+                "rofl" => ["๐Ÿคฃ","Rolling on the Floor Laughing"],
+                "joy" => ["๐Ÿ˜‚","Face with Tears of Joy"],
+                "slightly_smiling_face" => ["๐Ÿ™‚","Slightly Smiling Face"],
+                "upside_down_face" => ["๐Ÿ™ƒ","Upside-Down Face"],
+                "wink" => ["๐Ÿ˜‰","Winking Face"],
+                "blush" => ["๐Ÿ˜Š","Smiling Face with Smiling Eyes"],
+                "innocent" => ["๐Ÿ˜‡","Smiling Face with Halo"],
+                "smiling_face_hearts" => ["๐Ÿฅฐ","Smiling Face with Hearts"],
+                "heart_eyes" => ["๐Ÿ˜","Smiling Face with Heart-Eyes"],
+                "star_struck" => ["๐Ÿคฉ","Star-Struck"],
+                "kissing_heart" => ["๐Ÿ˜˜","Face Blowing a Kiss"],
+                "kissing" => ["๐Ÿ˜—","Kissing Face"],
+                "relaxed" => ["&#x1F642;&#xFE0F;","Smiling Face"],
+                "kissing_closed_eyes" => ["๐Ÿ˜š","Kissing Face with Closed Eyes"],
+                "kissing_smiling_eyes" => ["๐Ÿ˜™",
+                    "Kissing Face with Smiling Eyes"],
+                "smiling_face_tear" => ["๐Ÿฅฒ","Smiling Face with Tear"],
+                "yum" => ["๐Ÿ˜‹","Face Savoring Food"],
+                "tongue_out" => ["๐Ÿ˜›","Face with Tongue"],
+                "tongue_out_winking" => ["๐Ÿ˜œ","Winking Face with Tongue"],
+                "zany_face" => ["๐Ÿคช","Zany Face"],
+                "tongue_out_closed" => ["๐Ÿ˜","Squinting Face with Tongue"],
+                "money_mouth" => ["๐Ÿค‘","Money-Mouth Face"],
+                "hugs" => ["๐Ÿค—","Smiling Face with Open Hands"],
+                "hand_over_mouth" => ["๐Ÿคญ","Face with Hand Over Mouth"],
+                "shushing" => ["๐Ÿคซ","Shushing Face"],
+                "thinking" => ["๐Ÿค”","Thinking Face"],
+                "zipper_mouth" => ["๐Ÿค","Zipper-Mouth Face"],
+                "raised_eyebrow" => ["๐Ÿคจ","Face with Raised Eyebrow"],
+                "neutral_face" => ["๐Ÿ˜","Neutral Face"],
+                "expressionless" => ["๐Ÿ˜‘","Expressionless Face"],
+                "no_mouth" => ["๐Ÿ˜ถ","Face Without Mouth"],
+                "face_clouds" => ["๐Ÿ˜ถ‍๐ŸŒซ๏ธ&#xFE0F;","Face in Clouds"],
+                "smirk" => ["๐Ÿ˜","Smirking Face"],
+                "unamused" => ["๐Ÿ˜’","Unamused Face"],
+                "roll_eyes" => ["๐Ÿ™„","Face with Rolling Eyes"],
+                "grimacing" => ["๐Ÿ˜ฌ","Grimacing Face"],
+                "exhaling" => ["๐Ÿ˜ฎ‍๐Ÿ’จ","Face Exhaling"],
+                "lying" => ["๐Ÿคฅ","Lying Face"],
+                "relieved" => ["๐Ÿ˜Œ","Relieved Face"],
+                "pensive" => ["๐Ÿ˜”","Pensive Face"],
+                "sleepy" => ["๐Ÿ˜ช","Sleepy Face"],
+                "drooling" => ["๐Ÿคค","Drooling Face"],
+                "sleeping" => ["๐Ÿ˜ด","Sleeping Face"],
+                "mask" => ["๐Ÿ˜ท","Face with Medical Mask"],
+                "face_thermometer" => ["๐Ÿค’","Face with Thermometer"],
+                "face_bandage" => ["๐Ÿค•","Face with Head-Bandage"],
+                "nauseated" => ["๐Ÿคข","Nauseated Face"],
+                "vomiting" => ["๐Ÿคฎ","Face Vomiting"],
+                "sneezing" => ["๐Ÿคง","Sneezing Face"],
+                "hot" => ["๐Ÿฅต","Hot Face"],
+                "cold" => ["๐Ÿฅถ","Cold Face"],
+                "woozy" => ["๐Ÿฅด","Woozy Face"],
+                "dizzy" => ["๐Ÿ˜ต","Face with Crossed-Out Eyes"],
+                "spiral_eyes" => ["๐Ÿ˜ต‍๐Ÿ’ซ","Face with Spiral Eyes"],
+                "exploding_head" => ["๐Ÿคฏ","Exploding Head"],
+                "cowboy_hat" => ["๐Ÿค ","Cowboy Hat Face"],
+                "partying" => ["๐Ÿฅณ","Partying Face"],
+                "disguised" => ["๐Ÿฅธ","Disguised Face"],
+                "sunglasses" => ["๐Ÿ˜Ž","Smiling Face with Sunglasses"],
+                "nerd" => ["๐Ÿค“","Nerd Face"],
+                "monocle" => ["๐Ÿง","Face with Monocle"],
+                "confused" => ["๐Ÿ˜•","Confused Face"],
+                "worried" => ["๐Ÿ˜Ÿ","Worried Face"],
+                "slightly_frowning" => ["๐Ÿ™","Slightly Frowning Face"],
+                "frowning" => ["&#x2639;&#xFE0F;","Frowning Face"],
+                "open_mouth" => ["๐Ÿ˜ฎ","Face with Open Mouth"],
+                "hushed" => ["๐Ÿ˜ฏ","Hushed Face"],
+                "astonished" => ["๐Ÿ˜ฒ","Astonished Face"],
+                "flushed" => ["๐Ÿ˜ณ","Flushed Face"],
+                "pleading" => ["๐Ÿฅบ","Pleading Face"],
+                "frowning" => ["๐Ÿ˜ฆ","Frowning Face with Open Mouth"],
+                "anguished" => ["๐Ÿ˜ง","Anguished Face"],
+                "fearful" => ["๐Ÿ˜จ","Fearful Face"],
+                "cold_sweat" => ["๐Ÿ˜ฐ","Anxious Face with Sweat"],
+                "disappointed_relieved" => ["๐Ÿ˜ฅ","Sad but Relieved Face"],
+                "cry" => ["๐Ÿ˜ข","Crying Face"],
+                "sob" => ["๐Ÿ˜ญ","Loudly Crying Face"],
+                "scream" => ["๐Ÿ˜ฑ","Face Screaming in Fear"],
+                "confounded" => ["๐Ÿ˜–","Confounded Face"],
+                "persevere" => ["๐Ÿ˜ฃ","Persevering Face"],
+                "disappointed" => ["๐Ÿ˜ž","Disappointed Face"],
+                "sweat" => ["๐Ÿ˜“","Downcast Face with Sweat"],
+                "weary" => ["๐Ÿ˜ฉ","Weary Face"],
+                "tired" => ["๐Ÿ˜ซ","Tired Face"],
+                "yawning" => ["๐Ÿฅฑ","Yawning Face"],
+                "triumph" => ["๐Ÿ˜ค","Face with Steam From Nose"],
+                "rage" => ["๐Ÿ˜ก","Enraged Face"],
+                "angry" => ["๐Ÿ˜ ","Angry Face"],
+                "cursing" => ["๐Ÿคฌ","Face with Symbols on Mouth"],
+                "smiling_imp" => ["๐Ÿ˜ˆ","Smiling Face with Horns"],
+                "imp" => ["๐Ÿ‘ฟ","Angry Face with Horns"],
+                "skull" => ["๐Ÿ’€","Skull"],
+                "skull_crossbones" =>
+                    ["&#x2620;&#xFE0F;","Skull and Crossbones"],
+                "poop" => ["๐Ÿ’ฉ","Pile of Poo"],
+                "clown" => ["๐Ÿคก","Clown Face"],
+                "japanese_ogre" => ["๐Ÿ‘น","Ogre"],
+                "japanese_goblin" => ["๐Ÿ‘บ","Goblin"],
+                "ghost" => ["๐Ÿ‘ป","Ghost"],
+                "alien" => ["๐Ÿ‘ฝ","Alien"],
+                "space_invader" => ["๐Ÿ‘พ","Alien Monster"],
+                "robot" => ["๐Ÿค–","Robot"],
+                "smiley_cat" => ["๐Ÿ˜บ","Grinning Cat"],
+                "smile_cat" => ["๐Ÿ˜ธ","Grinning Cat with Smiling Eyes"],
+                "joy_cat" => ["๐Ÿ˜น","Cat with Tears of Joy"],
+                "heart_eyes_cat" => ["๐Ÿ˜ป","Smiling Cat with Heart-Eyes"],
+                "smirk_cat" => ["๐Ÿ˜ผ","Cat with Wry Smile"],
+                "kissing_cat" => ["๐Ÿ˜ฝ","Kissing Cat"],
+                "scream_cat" => ["๐Ÿ™€","Weary Cat"],
+                "crying_cat" => ["๐Ÿ˜ฟ","Crying Cat"],
+                "pouting_cat" => ["๐Ÿ˜พ","Pouting Cat"],
+                "see_no_evil" => ["๐Ÿ™ˆ","See-No-Evil Monkey"],
+                "hear_no_evil" => ["๐Ÿ™‰","Hear-No-Evil Monkey"],
+                "speak_no_evil" => ["๐Ÿ™Š","Speak-No-Evil Monkey"],
+                "kiss" => ["๐Ÿ’‹","Kiss Mark"],
+                "wave" => ["๐Ÿ‘‹","Waving Hand"],
+                "raised_back_hand" => ["๐Ÿคš","Raised Back of Hand"],
+                "hand_fingers_splayed" =>
+                    ["๐Ÿ–๏ธ&#xFE0F;","Hand with Fingers Splayed"],
+                "hand" => ["โœ‹","Raised Hand"],
+                "vulcan_salute" => ["๐Ÿ––","Vulcan Salute"],
+                "ok_hand" => ["๐Ÿ‘Œ","OK Hand"],
+                "pinched" => ["๐ŸคŒ","Pinched Fingers"],
+                "pinching" => ["๐Ÿค","Pinching Hand"],
+                "v" => ["&#x270C;&#xFE0F;","Victory Hand"],
+                "crossed_fingers" => ["๐Ÿคž","Crossed Fingers"],
+                "love_you" => ["๐ŸคŸ","Love-You Gesture"],
+                "metal" => ["๐Ÿค˜","Sign of the Horns"],
+                "call_me" => ["๐Ÿค™","Call Me Hand"],
+                "point_left" => ["๐Ÿ‘ˆ","Backhand Index Pointing Left"],
+                "point_right" => ["๐Ÿ‘‰","Backhand Index Pointing Right"],
+                "point_up_2" => ["๐Ÿ‘†","Backhand Index Pointing Up"],
+                "fu" => ["๐Ÿ–•","Middle Finger"],
+                "point_down" => ["๐Ÿ‘‡","Backhand Index Pointing Down"],
+                "point_up" => ["&#x1F446;&#xFE0F;","Index Pointing Up"],
+                "+1" => ["๐Ÿ‘","Thumbs Up"],
+                "-1" => ["๐Ÿ‘Ž","Thumbs Down"],
+                "fist" => ["โœŠ","Raised Fist"],
+                "punch" => ["๐Ÿ‘Š","Oncoming Fist"],
+                "fist_left" => ["๐Ÿค›","Left-Facing Fist"],
+                "fist_right" => ["๐Ÿคœ","Right-Facing Fist"],
+                "clap" => ["๐Ÿ‘","Clapping Hands"],
+                "raised_hands" => ["๐Ÿ™Œ","Raising Hands"],
+                "open_hands" => ["๐Ÿ‘","Open Hands"],
+                "palms_up" => ["๐Ÿคฒ","Palms Up Together"],
+                "handshake" => ["๐Ÿค","Handshake"],
+                "pray" => ["๐Ÿ™","Folded Hands"],
+                "writing" => ["&#x270D;&#xFE0F;","Writing Hand"],
+                "nail_care" => ["๐Ÿ’…","Nail Polish"],
+                "selfie" => ["๐Ÿคณ","Selfie"],
+                "muscle" => ["๐Ÿ’ช","Flexed Biceps"],
+                "mechanical_arm" => ["๐Ÿฆพ","Mechanical Arm"],
+                "mechanical_leg" => ["๐Ÿฆฟ","Mechanical Leg"],
+                "leg" => ["๐Ÿฆต","Leg"],
+                "foot" => ["๐Ÿฆถ","Foot"],
+                "ear" => ["๐Ÿ‘‚","Ear"],
+                "hearing_aid    " => ["๐Ÿฆป","Ear with Hearing Aid"],
+                "nose" => ["๐Ÿ‘ƒ","Nose"],
+                "brain" => ["๐Ÿง ","Brain"],
+                "anatomical_heart" => ["๐Ÿซ€","Anatomical Heart"],
+                "lungs" => ["๐Ÿซ","Lungs"],
+                "tooth" => ["๐Ÿฆท","Tooth"],
+                "bone" => ["๐Ÿฆด","Bone"],
+                "eyes" => ["๐Ÿ‘€","Eyes"],
+                "eye" => ["๐Ÿ‘๏ธ&#xFE0F;","Eye"],
+                "tongue" => ["๐Ÿ‘…","Tongue"],
+                "lips" => ["๐Ÿ‘„","Mouth"],
+                "baby" => ["๐Ÿ‘ถ","Baby"],
+                "child" => ["๐Ÿง’","Child"],
+                "boy" => ["๐Ÿ‘ฆ","Boy"],
+                "girl" => ["๐Ÿ‘ง","Girl"],
+                "adult" => ["๐Ÿง‘","Person"],
+                "blond_haired" => ["๐Ÿ‘ฑ","Person: Blond Hair"],
+                "man" => ["๐Ÿ‘จ","Man"],
+                "bearded_person" => ["๐Ÿง”","Person: Beard"],
+                "red_haired_man" => ["๐Ÿ‘จ‍๐Ÿฆฐ","Man: Red Hair"],
+                "curly_haired_man" => ["๐Ÿ‘จ‍๐Ÿฆฑ","Man: Curly Hair"],
+                "white_haired_man" => ["๐Ÿ‘จ‍๐Ÿฆณ","Man: White Hair"],
+                "bald_man" => ["๐Ÿ‘จ‍๐Ÿฆฒ","Man: Bald"],
+                "woman" => ["๐Ÿ‘ฉ","Woman"],
+                "red_haired_woman" => ["๐Ÿ‘ฉ‍๐Ÿฆฐ","Woman: Red Hair"],
+                "person_red_hair" => ["๐Ÿง‘‍๐Ÿฆฐ","Person: Red Hair"],
+                "curly_haired_woman" => ["๐Ÿ‘ฉ‍๐Ÿฆฑ","Woman: Curly Hair"],
+                "person_curly_hair" => ["๐Ÿง‘‍๐Ÿฆฑ","Person: Curly Hair"],
+                "white_haired_woman" => ["๐Ÿ‘ฉ‍๐Ÿฆณ","Woman: White Hair"],
+                "person_white_hair" => ["๐Ÿง‘‍๐Ÿฆณ","Person: White Hair"],
+                "bald_woman" => ["๐Ÿ‘ฉ‍๐Ÿฆฒ","Woman: Bald"],
+                "person_bald" => ["๐Ÿง‘‍๐Ÿฆฒ","Person: Bald"],
+                "blonde_woman" => ["๐Ÿ‘ฑ‍โ™€๏ธ&#xFE0F;","Woman: Blond Hair"],
+                "blonde_man" => ["๐Ÿ‘ฑ‍โ™‚๏ธ&#xFE0F;","Man: Blond Hair"],
+                "older_adult" => ["๐Ÿง“","Older Person"],
+                "older_man" => ["๐Ÿ‘ด","Old Man"],
+                "older_woman" => ["๐Ÿ‘ต","Old Woman"],
+                "frowning_person" => ["๐Ÿ™","Person Frowning"],
+                "frowning_man" => ["๐Ÿ™‍โ™‚๏ธ&#xFE0F;","Man Frowning"],
+                "frowning_woman" => ["๐Ÿ™‍โ™€๏ธ&#xFE0F;","Woman Frowning"],
+                "pouting_face" => ["๐Ÿ™Ž","Person Pouting"],
+                "pouting_man" => ["๐Ÿ™Ž‍โ™‚๏ธ&#xFE0F;","Man Pouting"],
+                "pouting_woman" => ["๐Ÿ™Ž‍โ™€๏ธ&#xFE0F;","Woman Pouting"],
+                "no_good" => ["๐Ÿ™…","Person Gesturing No"],
+                "ng_man" => ["๐Ÿ™…‍โ™‚๏ธ&#xFE0F;","Man Gesturing No"],
+                "ng_woman" => ["๐Ÿ™…‍โ™€๏ธ&#xFE0F;","Woman Gesturing No"],
+                "ok_person" => ["๐Ÿ™†","Person Gesturing OK"],
+                "ok_man" => ["๐Ÿ™†‍โ™‚๏ธ&#xFE0F;","Man Gesturing OK"],
+                "ok_woman" => ["๐Ÿ™†‍โ™€๏ธ&#xFE0F;","Woman Gesturing OK"],
+                "tipping_hand_person" => ["๐Ÿ’","Person Tipping Hand"],
+                "sassy_man" => ["๐Ÿ’‍โ™‚๏ธ&#xFE0F;","Man Tipping Hand"],
+                "sassy_woman" => ["๐Ÿ’‍โ™€๏ธ&#xFE0F;","Woman Tipping Hand"],
+                "raising_hand" => ["๐Ÿ™‹","Person Raising Hand"],
+                "raising_hand_man" => ["๐Ÿ™‹‍โ™‚๏ธ&#xFE0F;","Man Raising Hand"],
+                "raising_hand_woman" => ["๐Ÿ™‹‍โ™€๏ธ&#xFE0F;","Woman Raising Hand"],
+                "deaf_person" => ["๐Ÿง","Deaf Person"],
+                "deaf_man" => ["๐Ÿง‍โ™‚๏ธ&#xFE0F;","Deaf Man"],
+                "deaf_woman" => ["๐Ÿง‍โ™€๏ธ&#xFE0F;","Deaf Woman"],
+                "bow" => ["๐Ÿ™‡","Person Bowing"],
+                "bowing_man" => ["๐Ÿ™‡‍โ™‚๏ธ&#xFE0F;","Man Bowing"],
+                "bowing_woman" => ["๐Ÿ™‡‍โ™€๏ธ&#xFE0F;","Woman Bowing"],
+                "facepalm" => ["๐Ÿคฆ","Person Facepalming"],
+                "man_facepalming" => ["๐Ÿคฆ‍โ™‚๏ธ&#xFE0F;","Man Facepalming"],
+                "woman_facepalming" => ["๐Ÿคฆ‍โ™€๏ธ&#xFE0F;","Woman Facepalming"],
+                "shrug" => ["๐Ÿคท","Person Shrugging"],
+                "man_shrugging" => ["๐Ÿคท‍โ™‚๏ธ&#xFE0F;","Man Shrugging"],
+                "woman_shrugging" => ["๐Ÿคท‍โ™€๏ธ&#xFE0F;","Woman Shrugging"],
+                "health_worker" => ["๐Ÿง‘‍โš•๏ธ&#xFE0F;","Health Worker"],
+                "man_health_worker" => ["๐Ÿ‘จ‍โš•๏ธ&#xFE0F;","Man Health Worker"],
+                "woman_health_worker" => ["๐Ÿ‘ฉ‍โš•๏ธ&#xFE0F;","Woman Health Worker"],
+                "student" => ["๐Ÿง‘‍๐ŸŽ“","Student"],
+                "man_student" => ["๐Ÿ‘จ‍๐ŸŽ“","Man Student"],
+                "woman_student" => ["๐Ÿ‘ฉ‍๐ŸŽ“","Woman Student"],
+                "teacher" => ["๐Ÿง‘‍๐Ÿซ","Teacher"],
+                "man_teacher" => ["๐Ÿ‘จ‍๐Ÿซ","Man Teacher"],
+                "woman_teacher" => ["๐Ÿ‘ฉ‍๐Ÿซ","Woman Teacher"],
+                "judge" => ["๐Ÿง‘‍โš–๏ธ&#xFE0F;","Judge"],
+                "man_judge" => ["๐Ÿ‘จ‍โš–๏ธ&#xFE0F;","Man Judge"],
+                "woman_judge" => ["๐Ÿ‘ฉ‍โš–๏ธ&#xFE0F;","Woman Judge"],
+                "farmer" => ["๐Ÿง‘‍๐ŸŒพ","Farmer"],
+                "man_farmer" => ["๐Ÿ‘จ‍๐ŸŒพ","Man Farmer"],
+                "woman_farmer" => ["๐Ÿ‘ฉ‍๐ŸŒพ","Woman Farmer"],
+                "cook" => ["๐Ÿง‘‍๐Ÿณ","Cook"],
+                "man_cook" => ["๐Ÿ‘จ‍๐Ÿณ","Man Cook"],
+                "woman_cook" => ["๐Ÿ‘ฉ‍๐Ÿณ","Woman Cook"],
+                "mechanic" => ["๐Ÿง‘‍๐Ÿ”ง","Mechanic"],
+                "man_mechanic" => ["๐Ÿ‘จ‍๐Ÿ”ง","Man Mechanic"],
+                "woman_mechanic" => ["๐Ÿ‘ฉ‍๐Ÿ”ง","Woman Mechanic"],
+                "factory_worker" => ["๐Ÿง‘‍๐Ÿญ","Factory Worker"],
+                "man_factory_worker" => ["๐Ÿ‘จ‍๐Ÿญ","Man Factory Worker"],
+                "woman_factory_worker" => ["๐Ÿ‘ฉ‍๐Ÿญ","Woman Factory Worker"],
+                "office_worker" => ["๐Ÿง‘‍๐Ÿ’ผ","Office Worker"],
+                "man_office_worker" => ["๐Ÿ‘จ‍๐Ÿ’ผ","Man Office Worker"],
+                "woman_office_worker" => ["๐Ÿ‘ฉ‍๐Ÿ’ผ","Woman Office Worker"],
+                "scientist" => ["๐Ÿง‘‍๐Ÿ”ฌ","Scientist"],
+                "man_scientist" => ["๐Ÿ‘จ‍๐Ÿ”ฌ","Man Scientist"],
+                "woman_scientist" => ["๐Ÿ‘ฉ‍๐Ÿ”ฌ","Woman Scientist"],
+                "technologist" => ["๐Ÿง‘‍๐Ÿ’ป","Technologist"],
+                "man_technologist" => ["๐Ÿ‘จ‍๐Ÿ’ป","Man Technologist"],
+                "woman_technologist" => ["๐Ÿ‘ฉ‍๐Ÿ’ป","Woman Technologist"],
+                "singer" => ["๐Ÿง‘‍๐ŸŽค","Singer"],
+                "man_singer" => ["๐Ÿ‘จ‍๐ŸŽค","Man Singer"],
+                "woman_singer" => ["๐Ÿ‘ฉ‍๐ŸŽค","Woman Singer"],
+                "artist" => ["๐Ÿง‘‍๐ŸŽจ","Artist"],
+                "man_artist" => ["๐Ÿ‘จ‍๐ŸŽจ","Man Artist"],
+                "woman_artist" => ["๐Ÿ‘ฉ‍๐ŸŽจ","Woman Artist"],
+                "pilot" => ["๐Ÿง‘‍โœˆ๏ธ&#xFE0F;","Pilot"],
+                "man_pilot" => ["๐Ÿ‘จ‍โœˆ๏ธ&#xFE0F;","Man Pilot"],
+                "woman_pilot" => ["๐Ÿ‘ฉ‍โœˆ๏ธ&#xFE0F;","Woman Pilot"],
+                "astronaut" => ["๐Ÿง‘‍๐Ÿš€","Astronaut"],
+                "man_astronaut" => ["๐Ÿ‘จ‍๐Ÿš€","Man Astronaut"],
+                "woman_astronaut" => ["๐Ÿ‘ฉ‍๐Ÿš€","Woman Astronaut"],
+                "firefighter" => ["๐Ÿง‘‍๐Ÿš’","Firefighter"],
+                "man_firefighter" => ["๐Ÿ‘จ‍๐Ÿš’","Man Firefighter"],
+                "woman_firefighter" => ["๐Ÿ‘ฉ‍๐Ÿš’","Woman Firefighter"],
+                "cop" => ["๐Ÿ‘ฎ","Police Officer"],
+                "policeman" => ["๐Ÿ‘ฎ‍โ™‚๏ธ&#xFE0F;","Man Police Officer"],
+                "policewoman" => ["๐Ÿ‘ฎ‍โ™€๏ธ&#xFE0F;","Woman Police Officer"],
+                "detective" => ["๐Ÿ•ต๏ธ&#xFE0F;","Detective"],
+                "male_detective" => ["๐Ÿ•ต๏ธ‍โ™‚๏ธ&#xFE0F;","Man Detective"],
+                "female_detective" => ["๐Ÿ•ต๏ธ‍โ™€๏ธ&#xFE0F;","Woman Detective"],
+                "guard" => ["๐Ÿ’‚","Guard"],
+                "guardsman" => ["๐Ÿ’‚‍โ™‚๏ธ&#xFE0F;","Man Guard"],
+                "guardswoman" => ["๐Ÿ’‚‍โ™€๏ธ&#xFE0F;","Woman Guard"],
+                "ninja" => ["๐Ÿฅท","Ninja"],
+                "construction_worker" => ["๐Ÿ‘ท","Construction Worker"],
+                "construction_worker_man" =>
+                    ["๐Ÿ‘ท‍โ™‚๏ธ&#xFE0F;","Man Construction Worker"],
+                "construction_worker_woman" =>
+                    ["๐Ÿ‘ท‍โ™€๏ธ&#xFE0F;","Woman Construction Worker"],
+                "prince" => ["๐Ÿคด","Prince"],
+                "princess" => ["๐Ÿ‘ธ","Princess"],
+                "person_turban" => ["๐Ÿ‘ณ","Person Wearing Turban"],
+                "man_turban" => ["๐Ÿ‘ณ‍โ™‚๏ธ&#xFE0F;","Man Wearing Turban"],
+                "woman_turban" => ["๐Ÿ‘ณ‍โ™€๏ธ&#xFE0F;","Woman Wearing Turban"],
+                "man_gua_pi_mao" => ["๐Ÿ‘ฒ","Person with Skullcap"],
+                "woman_headscarf" => ["๐Ÿง•","Woman with Headscarf"],
+                "person_tuxedo" => ["๐Ÿคต","Person in Tuxedo"],
+                "man_tuxedo" => ["๐Ÿคต‍โ™‚๏ธ&#xFE0F;","Man in Tuxedo"],
+                "woman_tuxedo" => ["๐Ÿคต‍โ™€๏ธ&#xFE0F;","Woman in Tuxedo"],
+                "person_veil" => ["๐Ÿ‘ฐ","Person with Veil"],
+                "man_veil" => ["๐Ÿ‘ฐ‍โ™‚๏ธ&#xFE0F;","Man with Veil"],
+                "woman_veil" => ["๐Ÿ‘ฐ‍โ™€๏ธ&#xFE0F;","Woman with Veil"],
+                "pregnant_woman" => ["๐Ÿคฐ","Pregnant Woman"],
+                "breast_feeding" => ["๐Ÿคฑ","Breast-Feeding"],
+                "woman_feeding_baby" => ["๐Ÿ‘ฉ‍๐Ÿผ","Woman Feeding Baby"],
+                "man_feeding_baby" => ["๐Ÿ‘จ‍๐Ÿผ","Man Feeding Baby"],
+                "person_feeding_baby" => ["๐Ÿง‘‍๐Ÿผ","Person Feeding Baby"],
+                "angel" => ["๐Ÿ‘ผ","Baby Angel"],
+                "santa" => ["๐ŸŽ…","Santa Claus"],
+                "mrs_claus" => ["๐Ÿคถ","Mrs. Claus"],
+                "mx_claus" => ["๐Ÿง‘‍๐ŸŽ„","Mx Claus"],
+                "superhero" => ["๐Ÿฆธ","Superhero"],
+                "superhero_man" => ["๐Ÿฆธ‍โ™‚๏ธ&#xFE0F;","Man Superhero"],
+                "superhero_woman" => ["๐Ÿฆธ‍โ™€๏ธ&#xFE0F;","Woman Superhero"],
+                "supervillain" => ["๐Ÿฆน","Supervillain"],
+                "supervillain_man" => ["๐Ÿฆน‍โ™‚๏ธ&#xFE0F;","Man Supervillain"],
+                "supervillain_woman" => ["๐Ÿฆน‍โ™€๏ธ&#xFE0F;","Woman Supervillain"],
+                "mage" => ["๐Ÿง™","Mage"],
+                "mage_man" => ["๐Ÿง™‍โ™‚๏ธ&#xFE0F;","Man Mage"],
+                "mage_woman" => ["๐Ÿง™‍โ™€๏ธ&#xFE0F;","Woman Mage"],
+                "fairy" => ["๐Ÿงš","Fairy"],
+                "fairy_man" => ["๐Ÿงš‍โ™‚๏ธ&#xFE0F;","Man Fairy"],
+                "fairy_woman" => ["๐Ÿงš‍โ™€๏ธ&#xFE0F;","Woman Fairy"],
+                "vampire" => ["๐Ÿง›","Vampire"],
+                "vampire_man" => ["๐Ÿง›‍โ™‚๏ธ&#xFE0F;","Man Vampire"],
+                "vampire_woman" => ["๐Ÿง›‍โ™€๏ธ&#xFE0F;","Woman Vampire"],
+                "merperson" => ["๐Ÿงœ","Merperson"],
+                "merman" => ["๐Ÿงœ‍โ™‚๏ธ&#xFE0F;","Merman"],
+                "mermaid" => ["๐Ÿงœ‍โ™€๏ธ&#xFE0F;","Mermaid"],
+                "elf" => ["๐Ÿง","Elf"],
+                "elf_man" => ["๐Ÿง‍โ™‚๏ธ&#xFE0F;","Man Elf"],
+                "elf_woman" => ["๐Ÿง‍โ™€๏ธ&#xFE0F;","Woman Elf"],
+                "genie" => ["๐Ÿงž","Genie"],
+                "genie_man" => ["๐Ÿงž‍โ™‚๏ธ&#xFE0F;","Man Genie"],
+                "genie_woman" => ["๐Ÿงž‍โ™€๏ธ&#xFE0F;","Woman Genie"],
+                "zombie" => ["๐ŸงŸ","Zombie"],
+                "zombie_man" => ["๐ŸงŸ‍โ™‚๏ธ&#xFE0F;","Man Zombie"],
+                "zombie_woman" => ["๐ŸงŸ‍โ™€๏ธ&#xFE0F;","Woman Zombie"],
+                "massage" => ["๐Ÿ’†","Person Getting Massage"],
+                "massage_man" => ["๐Ÿ’†‍โ™‚๏ธ&#xFE0F;","Man Getting Massage"],
+                "massage_woman" => ["๐Ÿ’†‍โ™€๏ธ&#xFE0F;","Woman Getting Massage"],
+                "haircut" => ["๐Ÿ’‡","Person Getting Haircut"],
+                "haircut_man" => ["๐Ÿ’‡‍โ™‚๏ธ&#xFE0F;","Man Getting Haircut"],
+                "haircut_woman" => ["๐Ÿ’‡‍โ™€๏ธ&#xFE0F;","Woman Getting Haircut"],
+                "walking" => ["๐Ÿšถ","Person Walking"],
+                "walking_man" => ["๐Ÿšถ‍โ™‚๏ธ&#xFE0F;","Man Walking"],
+                "walking_woman" => ["๐Ÿšถ‍โ™€๏ธ&#xFE0F;","Woman Walking"],
+                "standing_person" => ["๐Ÿง","Person Standing"],
+                "standing_man" => ["๐Ÿง‍โ™‚๏ธ&#xFE0F;","Man Standing"],
+                "standing_woman" => ["๐Ÿง‍โ™€๏ธ&#xFE0F;","Woman Standing"],
+                "kneeling_person" => ["๐ŸงŽ","Person Kneeling"],
+                "kneeling_man" => ["๐ŸงŽ‍โ™‚๏ธ&#xFE0F;","Man Kneeling"],
+                "kneeling_woman" => ["๐ŸงŽ‍โ™€๏ธ&#xFE0F;","Woman Kneeling"],
+                "person_probing_cane" => ["๐Ÿง‘‍๐Ÿฆฏ","Person with White Cane"],
+                "man_probing_cane" => ["๐Ÿ‘จ‍๐Ÿฆฏ","Man with White Cane"],
+                "woman_probing_cane" => ["๐Ÿ‘ฉ‍๐Ÿฆฏ","Woman with White Cane"],
+                "person_motorized_wheelchair" =>
+                    ["๐Ÿง‘‍๐Ÿฆผ","Person in Motorized Wheelchair"],
+                "man_motorized_wheelchair" =>
+                    ["๐Ÿ‘จ‍๐Ÿฆผ","Man in Motorized Wheelchair"],
+                "woman_motorized_wheelchair" =>
+                    ["๐Ÿ‘ฉ‍๐Ÿฆผ","Woman in Motorized Wheelchair"],
+                "person_manual_wheelchair" =>
+                    ["๐Ÿง‘‍๐Ÿฆฝ","Person in Manual Wheelchair"],
+                "man_manual_wheelchair" => ["๐Ÿ‘จ‍๐Ÿฆฝ","Man in Manual Wheelchair"],
+                "woman_manual_wheelchair" =>
+                    ["๐Ÿ‘ฉ‍๐Ÿฆฝ","Woman in Manual Wheelchair"],
+                "runner" => ["๐Ÿƒ","Person Running"],
+                "running_man" => ["๐Ÿƒ‍โ™‚๏ธ&#xFE0F;","Man Running"],
+                "running_woman" => ["๐Ÿƒ‍โ™€๏ธ&#xFE0F;","Woman Running"],
+                "dancer" => ["๐Ÿ’ƒ","Woman Dancing"],
+                "man_dancing" => ["๐Ÿ•บ","Man Dancing"],
+                "suit_levitating" => ["๐Ÿ•ด๏ธ&#xFE0F;","Person in Suit Levitating"],
+                "dancers" => ["๐Ÿ‘ฏ","People with Bunny Ears"],
+                "dancing_men" => ["๐Ÿ‘ฏ‍โ™‚๏ธ&#xFE0F;","Men with Bunny Ears"],
+                "dancing_women" => ["๐Ÿ‘ฏ‍โ™€๏ธ&#xFE0F;","Women with Bunny Ears"],
+                "sauna_person" => ["๐Ÿง–","Person in Steamy Room"],
+                "sauna_man" => ["๐Ÿง–‍โ™‚๏ธ&#xFE0F;","Man in Steamy Room"],
+                "sauna_woman" => ["๐Ÿง–‍โ™€๏ธ&#xFE0F;","Woman in Steamy Room"],
+                "lotus_position" => ["๐Ÿง˜","Person in Lotus Position"],
+                "people_holding_hands" => ["๐Ÿง‘‍๐Ÿค‍๐Ÿง‘","People Holding Hands"],
+                "two_women_holding_hands" => ["๐Ÿ‘ญ","Women Holding Hands"],
+                "couple" => ["๐Ÿ‘ซ","Woman and Man Holding Hands"],
+                "two_men_holding_hands" => ["๐Ÿ‘ฌ","Men Holding Hands"],
+                "couplekiss" => ["๐Ÿ’","Kiss"],
+                "couplekiss_man_woman" => ["๐Ÿ‘ฉ‍โค๏ธ‍๐Ÿ’‹‍๐Ÿ‘จ","Kiss: Woman, Man"],
+                "couplekiss_man_man" => ["๐Ÿ‘จ‍โค๏ธ‍๐Ÿ’‹‍๐Ÿ‘จ","Kiss: Man, Man"],
+                "couplekiss_woman_woman" => ["๐Ÿ‘ฉ‍โค๏ธ‍๐Ÿ’‹‍๐Ÿ‘ฉ","Kiss: Woman, Woman"],
+                "couple_heart" => ["๐Ÿ’‘","Couple with Heart"],
+                "couple_heart_woman_man" =>
+                    ["๐Ÿ‘ฉ‍โค๏ธ‍๐Ÿ‘จ","Couple with Heart: Woman, Man"],
+                "couple_heart_man_man" => ["๐Ÿ‘จ‍โค๏ธ‍๐Ÿ‘จ","Couple with Heart: Man, Man"],
+                "couple_heart_woman_woman" =>
+                    ["๐Ÿ‘ฉ‍โค๏ธ‍๐Ÿ‘ฉ","Couple with Heart: Woman, Woman"],
+                "family" => ["๐Ÿ‘ช","Family"],
+                "family_man_woman_boy" => ["๐Ÿ‘จ‍๐Ÿ‘ฉ‍๐Ÿ‘ฆ","Family: Man, Woman, Boy"],
+                "family_man_woman_girl" => ["๐Ÿ‘จ‍๐Ÿ‘ฉ‍๐Ÿ‘ง","Family: Man, Woman, Girl"],
+                "family_man_woman_girl_boy" =>
+                    ["๐Ÿ‘จ‍๐Ÿ‘ฉ‍๐Ÿ‘ง‍๐Ÿ‘ฆ","Family: Man, Woman, Girl, Boy"],
+                "family_man_woman_boy_boy" =>
+                    ["๐Ÿ‘จ‍๐Ÿ‘ฉ‍๐Ÿ‘ฆ‍๐Ÿ‘ฆ","Family: Man, Woman, Boy, Boy"],
+                "family_man_woman_girl_girl" =>
+                    ["๐Ÿ‘จ‍๐Ÿ‘ฉ‍๐Ÿ‘ง‍๐Ÿ‘ง","Family: Man, Woman, Girl, Girl"],
+                "family_man_man_boy" => ["๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ฆ","Family: Man, Man, Boy"],
+                "family_man_man_girl" => ["๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ง","Family: Man, Man, Girl"],
+                "family_man_man_girl_boy" =>
+                    ["๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ง‍๐Ÿ‘ฆ","Family: Man, Man, Girl, Boy"],
+                "family_man_man_boy_boy" => ["๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ฆ‍๐Ÿ‘ฆ","Family: Man, Man, Boy, Boy"],
+                "family_man_man_girl_girl" =>
+                    ["๐Ÿ‘จ‍๐Ÿ‘จ‍๐Ÿ‘ง‍๐Ÿ‘ง","Family: Man, Man, Girl, Girl"],
+                "family_woman_woman_boy" => ["๐Ÿ‘ฉ‍๐Ÿ‘ฉ‍๐Ÿ‘ฆ","Family: Woman, Woman, Boy"],
+                "family_woman_woman_girl" =>
+                    ["๐Ÿ‘ฉ‍๐Ÿ‘ฉ‍๐Ÿ‘ง","Family: Woman, Woman, Girl"],
+                "family_woman_woman_girl_boy" =>
+                    ["๐Ÿ‘ฉ‍๐Ÿ‘ฉ‍๐Ÿ‘ง‍๐Ÿ‘ฆ","Family: Woman, Woman, Girl, Boy"],
+                "family_woman_woman_boy_boy" =>
+                    ["๐Ÿ‘ฉ‍๐Ÿ‘ฉ‍๐Ÿ‘ฆ‍๐Ÿ‘ฆ","Family: Woman, Woman, Boy, Boy"],
+                "family_woman_woman_girl_girl" =>
+                    ["๐Ÿ‘ฉ‍๐Ÿ‘ฉ‍๐Ÿ‘ง‍๐Ÿ‘ง","Family: Woman, Woman, Girl, Girl"],
+                "family_man_boy" => ["๐Ÿ‘จ‍๐Ÿ‘ฆ","Family: Man, Boy"],
+                "family_man_boy_boy" => ["๐Ÿ‘จ‍๐Ÿ‘ฆ‍๐Ÿ‘ฆ","Family: Man, Boy, Boy"],
+                "family_man_girl" => ["๐Ÿ‘จ‍๐Ÿ‘ง","Family: Man, Girl"],
+                "family_man_girl_boy" => ["๐Ÿ‘จ‍๐Ÿ‘ง‍๐Ÿ‘ฆ","Family: Man, Girl, Boy"],
+                "family_man_girl_girl" => ["๐Ÿ‘จ‍๐Ÿ‘ง‍๐Ÿ‘ง","Family: Man, Girl, Girl"],
+                "family_woman_boy" => ["๐Ÿ‘ฉ‍๐Ÿ‘ฆ","Family: Woman, Boy"],
+                "family_woman_boy_boy" => ["๐Ÿ‘ฉ‍๐Ÿ‘ฆ‍๐Ÿ‘ฆ","Family: Woman, Boy, Boy"],
+                "family_woman_girl" => ["๐Ÿ‘ฉ‍๐Ÿ‘ง","Family: Woman, Girl"],
+                "family_woman_girl_boy" => ["๐Ÿ‘ฉ‍๐Ÿ‘ง‍๐Ÿ‘ฆ","Family: Woman, Girl, Boy"],
+                "family_woman_girl_girl" => ["๐Ÿ‘ฉ‍๐Ÿ‘ง‍๐Ÿ‘ง","Family: Woman, Girl, Girl"],
+                "speaking_head" => ["๐Ÿ—ฃ๏ธ&#xFE0F;","Speaking Head"],
+                "bust_silhouette" => ["๐Ÿ‘ค","Bust in Silhouette"],
+                "busts_silhouette" => ["๐Ÿ‘ฅ","Busts in Silhouette"],
+                "people_hugging" => ["๐Ÿซ‚","People Hugging"],
+                "footprints" => ["๐Ÿ‘ฃ","Footprints"],
+                "luggage" => ["๐Ÿงณ","Luggage"],
+                "closed_umbrella" => ["๐ŸŒ‚","Closed Umbrella"],
+                "umbrella" => ["โ˜‚๏ธ&#xFE0F;","Umbrella"],
+                "jack_o_lantern" => ["๐ŸŽƒ","Jack-O-Lantern"],
+                "thread" => ["๐Ÿงต","Thread"],
+                "yarn" => ["๐Ÿงถ","Yarn"],
+                "eyeglasses" => ["๐Ÿ‘“","Glasses"],
+                "dark_sunglasses" => ["๐Ÿ•ถ๏ธ&#xFE0F;","Sunglasses"],
+                "goggles" => ["๐Ÿฅฝ","Goggles"],
+                "lab_coat" => ["๐Ÿฅผ","Lab Coat"],
+                "safety_vest" => ["๐Ÿฆบ","Safety Vest"],
+                "necktie" => ["๐Ÿ‘”","Necktie"],
+                "shirt" => ["๐Ÿ‘•","T-Shirt"],
+                "jeans" => ["๐Ÿ‘–","Jeans"],
+                "scarf" => ["๐Ÿงฃ","Scarf"],
+                "gloves" => ["๐Ÿงค","Gloves"],
+                "coat" => ["๐Ÿงฅ","Coat"],
+                "socks" => ["๐Ÿงฆ","Socks"],
+                "dress" => ["๐Ÿ‘—","Dress"],
+                "kimono" => ["๐Ÿ‘˜","Kimono"],
+                "sari" => ["๐Ÿฅป","Sari"],
+                "one_piece_swimsuit" => ["๐Ÿฉฑ","One-Piece Swimsuit"],
+                "swim_brief" => ["๐Ÿฉฒ","Briefs"],
+                "shorts" => ["๐Ÿฉณ","Shorts"],
+                "bikini" => ["๐Ÿ‘™","Bikini"],
+                "womans_clothes" => ["๐Ÿ‘š","Woman’s Clothes"],
+                "purse" => ["๐Ÿ‘›","Purse"],
+                "handbag" => ["๐Ÿ‘œ","Handbag"],
+                "pouch" => ["๐Ÿ‘","Clutch Bag"],
+                "school_satchel" => ["๐ŸŽ’","Backpack"],
+                "thong_sandal" => ["๐Ÿฉด","Thong Sandal"],
+                "shoe" => ["๐Ÿ‘ž","Man’s Shoe"],
+                "athletic_shoe" => ["๐Ÿ‘Ÿ","Running Shoe"],
+                "hiking_boot" => ["๐Ÿฅพ","Hiking Boot"],
+                "flat_shoe" => ["๐Ÿฅฟ","Flat Shoe"],
+                "high_heel" => ["๐Ÿ‘ ","High-Heeled Shoe"],
+                "sandal" => ["๐Ÿ‘ก","Woman’s Sandal"],
+                "ballet_shoes" => ["๐Ÿฉฐ","Ballet Shoes"],
+                "boot" => ["๐Ÿ‘ข","Woman’s Boot"],
+                "crown" => ["๐Ÿ‘‘","Crown"],
+                "womans_hat" => ["๐Ÿ‘’","Woman’s Hat"],
+                "tophat" => ["๐ŸŽฉ","Top Hat"],
+                "mortar_board" => ["๐ŸŽ“","Graduation Cap"],
+                "billed_cap" => ["๐Ÿงข","Billed Cap"],
+                "military_helmet" => ["๐Ÿช–","Military Helmet"],
+                "rescue_worker_helmet" =>
+                    ["โ›‘๏ธ&#xFE0F;","Rescue Worker’s Helmet"],
+                "lipstick" => ["๐Ÿ’„","Lipstick"],
+                "ring" => ["๐Ÿ’","Ring"],
+                "briefcase" => ["๐Ÿ’ผ","Briefcase"],
+                "drop_of_blood" => ["๐Ÿฉธ","Drop of Blood"]
+            ]],
+            "Animals & Nature" => ["icon" => "๐Ÿป",
+            "emojis" => ["boom" => ["๐Ÿ’ฅ","Collision"],
+                "dizzy" => ["๐Ÿ’ซ","Dizzy"],
+                "sweat_drops" => ["๐Ÿ’ฆ","Sweat Droplets"],
+                "dash" => ["๐Ÿ’จ","Dashing Away"],
+                "monkey_face" => ["๐Ÿต","Monkey Face"],
+                "monkey" => ["๐Ÿ’","Monkey"],
+                "gorilla" => ["๐Ÿฆ","Gorilla"],
+                "orangutan" => ["๐Ÿฆง","Orangutan"],
+                "dog" => ["๐Ÿถ","Dog Face"],
+                "dog2" => ["๐Ÿ•","Dog"],
+                "guide_dog" => ["๐Ÿฆฎ","Guide Dog"],
+                "service_dog" => ["๐Ÿ•‍๐Ÿฆบ&#xFE0F;","Service Dog"],
+                "poodle" => ["๐Ÿฉ","Poodle"],
+                "wolf" => ["๐Ÿบ","Wolf"],
+                "fox_face" => ["๐ŸฆŠ","Fox"],
+                "raccoon" => ["๐Ÿฆ","Raccoon"],
+                "cat" => ["๐Ÿฑ","Cat Face"],
+                "cat2" => ["๐Ÿˆ","Cat"],
+                "black_cat" => ["๐Ÿˆ‍โฌ›&#xFE0F;","Black Cat"],
+                "lion" => ["๐Ÿฆ","Lion"],
+                "tiger" => ["๐Ÿฏ","Tiger Face"],
+                "tiger2" => ["๐Ÿ…","Tiger"],
+                "leopard" => ["๐Ÿ†","Leopard"],
+                "horse" => ["๐Ÿด","Horse Face"],
+                "racehorse" => ["๐ŸŽ","Horse"],
+                "unicorn" => ["๐Ÿฆ„","Unicorn"],
+                "zebra" => ["๐Ÿฆ“","Zebra"],
+                "deer" => ["๐ŸฆŒ","Deer"],
+                "bison" => ["๐Ÿฆฌ","Bison"],
+                "cow" => ["๐Ÿฎ","Cow Face"],
+                "ox" => ["๐Ÿ‚","Ox"],
+                "water_buffalo" => ["๐Ÿƒ","Water Buffalo"],
+                "cow2" => ["๐Ÿ„","Cow"],
+                "pig" => ["๐Ÿท","Pig Face"],
+                "pig2" => ["๐Ÿ–","Pig"],
+                "boar" => ["๐Ÿ—","Boar"],
+                "pig_nose" => ["๐Ÿฝ","Pig Nose"],
+                "ram" => ["๐Ÿ","Ram"],
+                "sheep" => ["๐Ÿ‘","Ewe"],
+                "goat" => ["๐Ÿ","Goat"],
+                "dromedary_camel" => ["๐Ÿช","Camel"],
+                "camel" => ["๐Ÿซ","Two-Hump Camel"],
+                "llama" => ["๐Ÿฆ™","Llama"],
+                "giraffe" => ["๐Ÿฆ’","Giraffe"],
+                "elephant" => ["๐Ÿ˜","Elephant"],
+                "mammoth" => ["๐Ÿฆฃ","Mammoth"],
+                "rhinoceros" => ["๐Ÿฆ","Rhinoceros"],
+                "hippopotamus" => ["๐Ÿฆ›","Hippopotamus"],
+                "mouse" => ["๐Ÿญ","Mouse Face"],
+                "mouse2" => ["๐Ÿ","Mouse"],
+                "rat" => ["๐Ÿ€","Rat"],
+                "hamster" => ["๐Ÿน","Hamster"],
+                "rabbit" => ["๐Ÿฐ","Rabbit Face"],
+                "rabbit2" => ["๐Ÿ‡","Rabbit"],
+                "chipmunk" => ["๐Ÿฟ๏ธ&#xFE0F;","Chipmunk"],
+                "beaver" => ["๐Ÿฆซ","Beaver"],
+                "hedgehog" => ["๐Ÿฆ”","Hedgehog"],
+                "bat" => ["๐Ÿฆ‡","Bat"],
+                "bear" => ["๐Ÿป","Bear"],
+                "polar_bear" => ["๐Ÿป‍โ„๏ธ&#xFE0F;","Polar Bear"],
+                "koala" => ["๐Ÿจ","Koala"],
+                "panda_face" => ["๐Ÿผ","Panda"],
+                "sloth" => ["๐Ÿฆฅ","Sloth"],
+                "otter" => ["๐Ÿฆฆ","Otter"],
+                "skunk" => ["๐Ÿฆจ","Skunk"],
+                "kangaroo" => ["๐Ÿฆ˜","Kangaroo"],
+                "badger" => ["๐Ÿฆก","Badger"],
+                "feet" => ["๐Ÿพ","Paw Prints"],
+                "turkey" => ["๐Ÿฆƒ","Turkey"],
+                "chicken" => ["๐Ÿ”","Chicken"],
+                "rooster" => ["๐Ÿ“","Rooster"],
+                "hatching_chick" => ["๐Ÿฃ","Hatching Chick"],
+                "baby_chick" => ["๐Ÿค","Baby Chick"],
+                "hatched_chick" => ["๐Ÿฅ","Front-Facing Baby Chick"],
+                "bird" => ["๐Ÿฆ","Bird"],
+                "penguin" => ["๐Ÿง","Penguin"],
+                "dove" => ["๐Ÿ•Š๏ธ&#xFE0F;","Dove"],
+                "eagle" => ["๐Ÿฆ…","Eagle"],
+                "duck" => ["๐Ÿฆ†","Duck"],
+                "swan" => ["๐Ÿฆข","Swan"],
+                "owl" => ["๐Ÿฆ‰","Owl"],
+                "dodo" => ["๐Ÿฆค","Dodo"],
+                "feather" => ["๐Ÿชถ","Feather"],
+                "flamingo" => ["๐Ÿฆฉ","Flamingo"],
+                "peacock" => ["๐Ÿฆš","Peacock"],
+                "parrot" => ["๐Ÿฆœ","Parrot"],
+                "frog" => ["๐Ÿธ","Frog"],
+                "crocodile" => ["๐ŸŠ","Crocodile"],
+                "turtle" => ["๐Ÿข","Turtle"],
+                "lizard" => ["๐ŸฆŽ","Lizard"],
+                "snake" => ["๐Ÿ","Snake"],
+                "dragon_face" => ["๐Ÿฒ","Dragon Face"],
+                "dragon" => ["๐Ÿ‰","Dragon"],
+                "sauropod" => ["๐Ÿฆ•","Sauropod"],
+                "t-rex" => ["๐Ÿฆ–","T-Rex"],
+                "whale" => ["๐Ÿณ","Spouting Whale"],
+                "whale2" => ["๐Ÿ‹","Whale"],
+                "dolphin" => ["๐Ÿฌ","Dolphin"],
+                "seal" => ["๐Ÿฆญ","Seal"],
+                "fish" => ["๐ŸŸ","Fish"],
+                "tropical_fish" => ["๐Ÿ ","Tropical Fish"],
+                "blowfish" => ["๐Ÿก","Blowfish"],
+                "shark" => ["๐Ÿฆˆ","Shark"],
+                "octopus" => ["๐Ÿ™","Octopus"],
+                "shell" => ["๐Ÿš","Spiral Shell"],
+                "snail" => ["๐ŸŒ","Snail"],
+                "butterfly" => ["๐Ÿฆ‹","Butterfly"],
+                "bug" => ["๐Ÿ›","Bug"],
+                "ant" => ["๐Ÿœ","Ant"],
+                "bee" => ["๐Ÿ","Honeybee"],
+                "beetle" => ["๐Ÿชฒ","Beetle"],
+                "lady_beetle" => ["๐Ÿž","Lady Beetle"],
+                "cricket" => ["๐Ÿฆ—","Cricket"],
+                "cockroach" => ["๐Ÿชณ&#xFE0F;","Cockroach"],
+                "spider" => ["๐Ÿ•ท๏ธ&#xFE0F;","Spider"],
+                "spider_web" => ["๐Ÿ•ธ๏ธ&#xFE0F;","Spider Web"],
+                "scorpion" => ["๐Ÿฆ‚","Scorpion"],
+                "mosquito" => ["๐ŸฆŸ","Mosquito"],
+                "fly" => ["๐Ÿชฐ","Fly"],
+                "worm" => ["๐Ÿชฑ","Worm"],
+                "microbe" => ["๐Ÿฆ ","Microbe"],
+                "bouquet" => ["๐Ÿ’","Bouquet"],
+                "cherry_blossom" => ["๐ŸŒธ","Cherry Blossom"],
+                "white_flower" => ["๐Ÿ’ฎ","White Flower"],
+                "rosette" => ["๐Ÿต๏ธ&#xFE0F;","Rosette"],
+                "rose" => ["๐ŸŒน","Rose"],
+                "wilted_flower" => ["๐Ÿฅ€","Wilted Flower"],
+                "hibiscus" => ["๐ŸŒบ","Hibiscus"],
+                "sunflower" => ["๐ŸŒป","Sunflower"],
+                "blossom" => ["๐ŸŒผ","Blossom"],
+                "tulip" => ["๐ŸŒท","Tulip"],
+                "seedling" => ["๐ŸŒฑ","Seedling"],
+                "potted_plant" => ["๐Ÿชด","Potted Plant"],
+                "evergreen_tree" => ["๐ŸŒฒ","Evergreen Tree"],
+                "deciduous_tree" => ["๐ŸŒณ","Deciduous Tree"],
+                "palm_tree" => ["๐ŸŒด","Palm Tree"],
+                "cactus" => ["๐ŸŒต","Cactus"],
+                "ear_of_rice" => ["๐ŸŒพ","Sheaf of Rice"],
+                "herb" => ["๐ŸŒฟ","Herb"],
+                "shamrock" => ["โ˜˜๏ธ&#xFE0F;","Shamrock"],
+                "four_leaf_clover" => ["๐Ÿ€","Four Leaf Clover"],
+                "maple_leaf" => ["๐Ÿ","Maple Leaf"],
+                "fallen_leaf" => ["๐Ÿ‚","Fallen Leaf"],
+                "leaves" => ["๐Ÿƒ","Leaf Fluttering in Wind"],
+                "mushroom" => ["๐Ÿ„","Mushroom"],
+                "chestnut" => ["๐ŸŒฐ","Chestnut"],
+                "crab" => ["๐Ÿฆ€","Crab"],
+                "lobster" => ["๐Ÿฆž","Lobster"],
+                "shrimp" => ["๐Ÿฆ","Shrimp"],
+                "squid" => ["๐Ÿฆ‘","Squid"],
+                "earth_africa" => ["๐ŸŒ","Globe Showing Europe-Africa"],
+                "earth_americas" => ["๐ŸŒŽ","Globe Showing Americas"],
+                "earth_asia" => ["๐ŸŒ","Globe Showing Asia-Australia"],
+                "globe_meridians" => ["๐ŸŒ","Globe with Meridians"],
+                "rock" => ["๐Ÿชจ","Rock"],
+                "new_moon" => ["๐ŸŒ‘","New Moon"],
+                "waxing_crescent_moon" => ["๐ŸŒ’","Waxing Crescent Moon"],
+                "first_quarter_moon" => ["๐ŸŒ“","First Quarter Moon"],
+                "moon" => ["๐ŸŒ”","Waxing Gibbous Moon"],
+                "full_moon" => ["๐ŸŒ•","Full Moon"],
+                "waning_gibbous_moon" => ["๐ŸŒ–","Waning Gibbous Moon"],
+                "last_quarter_moon" => ["๐ŸŒ—","Last Quarter Moon"],
+                "waning_crescent_moon" => ["๐ŸŒ˜","Waning Crescent Moon"],
+                "crescent_moon" => ["๐ŸŒ™","Crescent Moon"],
+                "new_moon_face" => ["๐ŸŒš","New Moon Face"],
+                "first_quarter_moon_face" => ["๐ŸŒ›","First Quarter Moon Face"],
+                "last_quarter_moon_face" => ["๐ŸŒœ","Last Quarter Moon Face"],
+                "sunny" => ["โ˜€๏ธ&#xFE0F;","Sun"],
+                "full_moon_face" => ["๐ŸŒ","Full Moon Face"],
+                "sun_face" => ["๐ŸŒž","Sun with Face"],
+                "star" => ["โญ","Star"],
+                "star2" => ["๐ŸŒŸ","Glowing Star"],
+                "stars" => ["๐ŸŒ ","Shooting Star"],
+                "cloud" => ["โ˜๏ธ&#xFE0F;","Cloud"],
+                "partly_sunny" => ["โ›…","Sun Behind Cloud"],
+                "cloud_lightning_rain" =>
+                    ["โ›ˆ๏ธ&#xFE0F;","Cloud with Lightning and Rain"],
+                "sun_small_cloud" => ["๐ŸŒค๏ธ&#xFE0F;","Sun Behind Small Cloud"],
+                "sun_large_cloud" => ["๐ŸŒฅ๏ธ&#xFE0F;","Sun Behind Large Cloud"],
+                "sun_rain_cloud" => ["๐ŸŒฆ๏ธ&#xFE0F;","Sun Behind Rain Cloud"],
+                "cloud_rain" => ["๐ŸŒง๏ธ&#xFE0F;","Cloud with Rain"],
+                "cloud_snow" => ["๐ŸŒจ๏ธ&#xFE0F;","Cloud with Snow"],
+                "cloud_lightning" => ["๐ŸŒฉ๏ธ&#xFE0F;","Cloud with Lightning"],
+                "tornado" => ["๐ŸŒช๏ธ&#xFE0F;","Tornado"],
+                "fog" => ["๐ŸŒซ๏ธ&#xFE0F;","Fog"],
+                "wind_face" => ["๐ŸŒฌ๏ธ&#xFE0F;","Wind Face"],
+                "rainbow" => ["๐ŸŒˆ","Rainbow"],
+                "open_umbrella" => ["โ˜‚๏ธ&#xFE0F;","Umbrella"],
+                "umbrella" => ["โ˜”&#xFE0F;","Umbrella with Rain Drops"],
+                "zap" => ["โšก&#xFE0F;","High Voltage"],
+                "snowflake" => ["โ„๏ธ&#xFE0F;","Snowflake"],
+                "snowman_snow" => ["โ˜ƒ๏ธ&#xFE0F;","Snowman"],
+                "snowman" => ["โ›„","Snowman Without Snow"],
+                "comet" => ["โ˜„๏ธ&#xFE0F;","Comet"],
+                "fire" => ["๐Ÿ”ฅ","Fire"],
+                "droplet" => ["๐Ÿ’ง","Droplet"],
+                "ocean" => ["๐ŸŒŠ","Water Wave"],
+                "christmas_tree" => ["๐ŸŽ„","Christmas Tree"],
+                "sparkles" => ["โœจ","Sparkles"],
+                "tanabata_tree" => ["๐ŸŽ‹","Tanabata Tree"],
+                "bamboo" => ["๐ŸŽ","Pine Decoration"]
+            ]],
+            "Foods & Drinks" => ["icon" => "๐Ÿ”",
+            "emojis" => ["grapes" => ["๐Ÿ‡","Grapes"],
+                "melon" => ["๐Ÿˆ","Melon"],
+                "watermelon" => ["๐Ÿ‰","Watermelon"],
+                "orange" => ["๐ŸŠ","Tangerine"],
+                "lemon" => ["๐Ÿ‹","Lemon"],
+                "banana" => ["๐ŸŒ","Banana"],
+                "pineapple" => ["๐Ÿ","Pineapple"],
+                "mango" => ["๐Ÿฅญ","Mango"],
+                "apple" => ["๐ŸŽ","Red Apple"],
+                "green_apple" => ["๐Ÿ","Green Apple"],
+                "pear" => ["๐Ÿ","Pear"],
+                "peach" => ["๐Ÿ‘","Peach"],
+                "cherries" => ["๐Ÿ’","Cherries"],
+                "strawberry" => ["๐Ÿ“","Strawberry"],
+                "blueberries" => ["๐Ÿซ","Blueberries"],
+                "kiwi_fruit" => ["๐Ÿฅ","Kiwi Fruit"],
+                "tomato" => ["๐Ÿ…","Tomato"],
+                "olive" => ["๐Ÿซ’","Olive"],
+                "coconut" => ["๐Ÿฅฅ","Coconut"],
+                "avocado" => ["๐Ÿฅ‘","Avocado"],
+                "eggplant" => ["๐Ÿ†","Eggplant"],
+                "potato" => ["๐Ÿฅ”","Potato"],
+                "carrot" => ["๐Ÿฅ•","Carrot"],
+                "corn" => ["๐ŸŒฝ","Ear of Corn"],
+                "hot_pepper" => ["๐ŸŒถ๏ธ&#xFE0F;","Hot Pepper"],
+                "bell_pepper" => ["๐Ÿซ‘","Bell Pepper"],
+                "cucumber" => ["๐Ÿฅ’","Cucumber"],
+                "leafy_green" => ["๐Ÿฅฌ","Leafy Green"],
+                "broccoli" => ["๐Ÿฅฆ","Broccoli"],
+                "garlic" => ["๐Ÿง„","Garlic"],
+                "onion" => ["๐Ÿง…","Onion"],
+                "mushroom" => ["๐Ÿ„","Mushroom"],
+                "peanuts" => ["๐Ÿฅœ","Peanuts"],
+                "chestnut" => ["๐ŸŒฐ","Chestnut"],
+                "bread" => ["๐Ÿž","Bread"],
+                "croissant" => ["๐Ÿฅ","Croissant"],
+                "baguette_bread" => ["๐Ÿฅ–","Baguette Bread"],
+                "flatbread" => ["๐Ÿซ“","Flatbread"],
+                "pretzel" => ["๐Ÿฅจ","Pretzel"],
+                "bagel" => ["๐Ÿฅฏ","Bagel"],
+                "pancakes" => ["๐Ÿฅž","Pancakes"],
+                "waffle" => ["๐Ÿง‡","Waffle"],
+                "cheese" => ["๐Ÿง€","Cheese Wedge"],
+                "meat_bone" => ["๐Ÿ–","Meat on Bone"],
+                "poultry_leg" => ["๐Ÿ—","Poultry Leg"],
+                "cut_meat" => ["๐Ÿฅฉ","Cut of Meat"],
+                "bacon" => ["๐Ÿฅ“","Bacon"],
+                "hamburger" => ["๐Ÿ”","Hamburger"],
+                "fries" => ["๐ŸŸ","French Fries"],
+                "pizza" => ["๐Ÿ•","Pizza"],
+                "hotdog" => ["๐ŸŒญ","Hot Dog"],
+                "sandwich" => ["๐Ÿฅช","Sandwich"],
+                "taco" => ["๐ŸŒฎ","Taco"],
+                "burrito" => ["๐ŸŒฏ","Burrito"],
+                "tamale" => ["๐Ÿซ”","Tamale"],
+                "stuffed_flatbread" => ["๐Ÿฅ™","Stuffed Flatbread"],
+                "falafel" => ["๐Ÿง†","Falafel"],
+                "egg" => ["๐Ÿฅš","Egg"],
+                "fried_egg" => ["๐Ÿณ","Cooking"],
+                "shallow_pan_of_food" => ["๐Ÿฅ˜","Shallow Pan of Food"],
+                "stew" => ["๐Ÿฒ","Pot of Food"],
+                "fondue" => ["๐Ÿซ•","Fondue"],
+                "bowl_spoon" => ["๐Ÿฅฃ","Bowl with Spoon"],
+                "green_salad" => ["๐Ÿฅ—","Green Salad"],
+                "popcorn" => ["๐Ÿฟ","Popcorn"],
+                "butter" => ["๐Ÿงˆ","Butter"],
+                "salt" => ["๐Ÿง‚","Salt"],
+                "canned_food" => ["๐Ÿฅซ","Canned Food"],
+                "bento" => ["๐Ÿฑ","Bento Box"],
+                "rice_cracker" => ["๐Ÿ˜","Rice Cracker"],
+                "rice_ball" => ["๐Ÿ™","Rice Ball"],
+                "rice" => ["๐Ÿš","Cooked Rice"],
+                "curry" => ["๐Ÿ›","Curry Rice"],
+                "ramen" => ["๐Ÿœ","Steaming Bowl"],
+                "spaghetti" => ["๐Ÿ","Spaghetti"],
+                "sweet_potato" => ["๐Ÿ ","Roasted Sweet Potato"],
+                "oden" => ["๐Ÿข","Oden"],
+                "sushi" => ["๐Ÿฃ","Sushi"],
+                "fried_shrimp" => ["๐Ÿค","Fried Shrimp"],
+                "fish_cake" => ["๐Ÿฅ","Fish Cake with Swirl"],
+                "moon_cake" => ["๐Ÿฅฎ","Moon Cake"],
+                "dango" => ["๐Ÿก","Dango"],
+                "dumpling" => ["๐ŸฅŸ","Dumpling"],
+                "fortune_cookie" => ["๐Ÿฅ ","Fortune Cookie"],
+                "takeout_box" => ["๐Ÿฅก","Takeout Box"],
+                "oyster" => ["๐Ÿฆช","Oyster"],
+                "soft_ice_cream" => ["๐Ÿฆ","Soft Ice Cream"],
+                "shaved_ice" => ["๐Ÿง","Shaved Ice"],
+                "ice_cream" => ["๐Ÿจ","Ice Cream"],
+                "doughnut" => ["๐Ÿฉ","Doughnut"],
+                "cookie" => ["๐Ÿช","Cookie"],
+                "birthday" => ["๐ŸŽ‚","Birthday Cake"],
+                "cake" => ["๐Ÿฐ","Shortcake"],
+                "cupcake" => ["๐Ÿง","Cupcake"],
+                "pie" => ["๐Ÿฅง","Pie"],
+                "chocolate_bar" => ["๐Ÿซ","Chocolate Bar"],
+                "candy" => ["๐Ÿฌ","Candy"],
+                "lollipop" => ["๐Ÿญ","Lollipop"],
+                "custard" => ["๐Ÿฎ","Custard"],
+                "honey_pot" => ["๐Ÿฏ","Honey Pot"],
+                "baby_bottle" => ["๐Ÿผ","Baby Bottle"],
+                "milk_glass" => ["๐Ÿฅ›","Glass of Milk"],
+                "coffee" => ["&#x2615;&#xFE0F;","Hot Beverage"],
+                "teapot" => ["๐Ÿซ–","Teapot"],
+                "tea" => ["๐Ÿต","Teacup Without Handle"],
+                "sake" => ["๐Ÿถ","Sake"],
+                "champagne" => ["๐Ÿพ","Bottle with Popping Cork"],
+                "wine_glass" => ["๐Ÿท","Wine Glass"],
+                "cocktail" => ["๐Ÿธ","Cocktail Glass"],
+                "tropical_drink" => ["๐Ÿน","Tropical Drink"],
+                "beer" => ["๐Ÿบ","Beer Mug"],
+                "beers" => ["๐Ÿป","Clinking Beer Mugs"],
+                "clinking_glasses" => ["๐Ÿฅ‚","Clinking Glasses"],
+                "tumbler_glass" => ["๐Ÿฅƒ","Tumbler Glass"],
+                "cup_straw" => ["๐Ÿฅค","Cup with Straw"],
+                "bubble_tea" => ["๐Ÿง‹","Bubble Tea"],
+                "beverage_box" => ["๐Ÿงƒ","Beverage Box"],
+                "mate" => ["๐Ÿง‰","Mate"],
+                "ice_cube" => ["๐ŸงŠ","Ice"],
+                "chopsticks" => ["๐Ÿฅข","Chopsticks"],
+                "plate_cutlery" => ["๐Ÿฝ๏ธ&#xFE0F;","Fork and Knife with Plate"],
+                "fork_knife" => ["๐Ÿด","Fork and Knife"],
+                "spoon" => ["๐Ÿฅ„","Spoon"]
+            ]],
+            "Activity" => ["icon" => "โšฝ",
+            "emojis" => ["climbing" => ["๐Ÿง—","Person Climbing"],
+                "climbing_man" => ["๐Ÿง—‍โ™‚๏ธ&#xFE0F;","Man Climbing"],
+                "climbing_woman" => ["๐Ÿง—‍โ™€๏ธ&#xFE0F;","Woman Climbing"],
+                "person_fencing" => ["๐Ÿคบ","Person Fencing"],
+                "horse_racing" => ["๐Ÿ‡","Horse Racing"],
+                "skier" => ["โ›ท๏ธ&#xFE0F;","Skier"],
+                "snowboarder" => ["๐Ÿ‚","Snowboarder"],
+                "golfing" => ["๐ŸŒ๏ธ&#xFE0F;","Person Golfing"],
+                "golfing_man" => ["๐ŸŒ๏ธ‍โ™‚๏ธ&#xFE0F;","Man Golfing"],
+                "golfing_woman" => ["๐ŸŒ๏ธ‍โ™€๏ธ&#xFE0F;","Woman Golfing"],
+                "surfer" => ["๐Ÿ„","Person Surfing"],
+                "surfing_man" => ["๐Ÿ„‍โ™‚๏ธ Man Surfing"],
+                "surfing_woman" => ["๐Ÿ„‍โ™€๏ธ&#xFE0F;","Woman Surfing"],
+                "rowboat" => ["๐Ÿšฃ&#xFE0F;","Person Rowing Boat"],
+                "rowing_man" => ["๐Ÿšฃ‍โ™‚๏ธ&#xFE0F;","Man Rowing Boat"],
+                "rowing_woman" => ["๐Ÿšฃ‍โ™€๏ธ&#xFE0F;","Woman Rowing Boat"],
+                "swimmer" => ["๐ŸŠ","Person Swimming"],
+                "swimming_man" => ["๐ŸŠ‍โ™‚๏ธ&#xFE0F;","Man Swimming"],
+                "swimming_woman" => ["๐ŸŠ‍โ™€๏ธ&#xFE0F;","Woman Swimming"],
+                "basketball_person" => ["โ›น๏ธ&#xFE0F;","Person Bouncing Ball"],
+                "basketball_man" => ["โ›น๏ธ‍โ™‚๏ธ&#xFE0F;","Man Bouncing Ball"],
+                "basketball_woman" => ["โ›น๏ธ‍โ™€๏ธ&#xFE0F;","Woman Bouncing Ball"],
+                "weight_lifting" => ["๐Ÿ‹๏ธ&#xFE0F;","Person Lifting Weights"],
+                "weight_lifting_man" => ["๐Ÿ‹๏ธ‍โ™‚๏ธ&#xFE0F;","Man Lifting Weights"],
+                "weight_lifting_woman" =>
+                    ["๐Ÿ‹๏ธ‍โ™€๏ธ&#xFE0F;","Woman Lifting Weights"],
+                "bicyclist" => ["๐Ÿšด","Person Biking"],
+                "biking_man" => ["๐Ÿšด‍โ™‚๏ธ&#xFE0F;","Man Biking"],
+                "biking_woman" => ["๐Ÿšด‍โ™€๏ธ&#xFE0F;","Woman Biking"],
+                "mountain_bicyclist" => ["๐Ÿšต","Person Mountain Biking"],
+                "mountain_biking_man" => ["๐Ÿšต‍โ™‚๏ธ&#xFE0F;","Man Mountain Biking"],
+                "mountain_biking_woman" =>
+                    ["๐Ÿšต‍โ™€๏ธ&#xFE0F;","Woman Mountain Biking"],
+                "cartwheeling" => ["๐Ÿคธ","Person Cartwheeling"],
+                "man_cartwheeling" => ["๐Ÿคธ‍โ™‚๏ธ&#xFE0F;","Man Cartwheeling"],
+                "woman_cartwheeling" => ["๐Ÿคธ‍โ™€๏ธ&#xFE0F;","Woman Cartwheeling"],
+                "wrestling" => ["๐Ÿคผ","People Wrestling"],
+                "men_wrestling" => ["๐Ÿคผ‍โ™‚๏ธ&#xFE0F;","Men Wrestling"],
+                "women_wrestling" => ["๐Ÿคผ‍โ™€๏ธ&#xFE0F;","Women Wrestling"],
+                "water_polo" => ["๐Ÿคฝ","Person Playing Water Polo"],
+                "man_water_polo" => ["๐Ÿคฝ‍โ™‚๏ธ&#xFE0F;","Man Playing Water Polo"],
+                "woman_water_polo" => ["๐Ÿคฝ‍โ™€๏ธ&#xFE0F;","Woman Playing Water Polo"],
+                "handball_person" => ["๐Ÿคพ","Person Playing Handball"],
+                "man_handball" => ["๐Ÿคพ‍โ™‚๏ธ&#xFE0F;","Man Playing Handball"],
+                "woman_handball" => ["๐Ÿคพ‍โ™€๏ธ&#xFE0F;","Woman Playing Handball"],
+                "juggling_person" => ["๐Ÿคน","Person Juggling"],
+                "man_juggling" => ["๐Ÿคน‍โ™‚๏ธ&#xFE0F;","Man Juggling"],
+                "woman_juggling" => ["๐Ÿคน‍โ™€๏ธ&#xFE0F;","Woman Juggling"],
+                "lotus_position" => ["๐Ÿง˜","Person in Lotus Position"],
+                "lotus_position_man" => ["๐Ÿง˜‍โ™‚๏ธ&#xFE0F;","Man in Lotus Position"],
+                "lotus_position_woman" =>
+                    ["๐Ÿง˜‍โ™€๏ธ&#xFE0F;","Woman in Lotus Position"],
+                "circus" => ["๐ŸŽช","Circus Tent"],
+                "skateboard" => ["๐Ÿ›น","Skateboard"],
+                "roller_skate" => ["๐Ÿ›ผ","Roller Skate"],
+                "canoe" => ["๐Ÿ›ถ","Canoe"],
+                "reminder_ribbon" => ["๐ŸŽ—๏ธ&#xFE0F;","Reminder Ribbon"],
+                "tickets" => ["๐ŸŽŸ๏ธ&#xFE0F;","Admission Tickets"],
+                "ticket" => ["๐ŸŽซ","Ticket"],
+                "medal_military" => ["๐ŸŽ–๏ธ&#xFE0F;","Military Medal"],
+                "trophy" => ["๐Ÿ†","Trophy"],
+                "medal_sports" => ["๐Ÿ…","Sports Medal"],
+                "1st_place_medal" => ["๐Ÿฅ‡","1st Place Medal"],
+                "2nd_place_medal" => ["๐Ÿฅˆ","2nd Place Medal"],
+                "3rd_place_medal" => ["๐Ÿฅ‰","3rd Place Medal"],
+                "soccer" => ["โšฝ","Soccer Ball"],
+                "baseball" => ["โšพ","Baseball"],
+                "softball" => ["๐ŸฅŽ","Softball"],
+                "basketball" => ["๐Ÿ€","Basketball"],
+                "volleyball" => ["๐Ÿ","Volleyball"],
+                "football" => ["๐Ÿˆ","American Football"],
+                "rugby_football" => ["๐Ÿ‰","Rugby Football"],
+                "tennis" => ["๐ŸŽพ","Tennis"],
+                "flying_disc" => ["๐Ÿฅ","Flying Disc"],
+                "bowling" => ["๐ŸŽณ","Bowling"],
+                "cricket_game" => ["๐Ÿ","Cricket Game"],
+                "field_hockey" => ["๐Ÿ‘","Field Hockey"],
+                "ice_hockey" => ["๐Ÿ’","Ice Hockey"],
+                "lacrosse" => ["๐Ÿฅ","Lacrosse"],
+                "ping_pong" => ["๐Ÿ“","Ping Pong"],
+                "badminton" => ["๐Ÿธ","Badminton"],
+                "boxing_glove" => ["๐ŸฅŠ","Boxing Glove"],
+                "martial_arts_uniform" => ["๐Ÿฅ‹","Martial Arts Uniform"],
+                "goal_net" => ["๐Ÿฅ…","Goal Net"],
+                "golf" => ["โ›ณ","Flag in Hole"],
+                "ice_skate" => ["โ›ธ๏ธ&#xFE0F;","Ice Skate"],
+                "fishing_pole_fish" => ["๐ŸŽฃ","Fishing Pole"],
+                "running_shirt" => ["๐ŸŽฝ","Running Shirt"],
+                "ski" => ["๐ŸŽฟ","Skis"],
+                "sled" => ["๐Ÿ›ท","Sled"],
+                "curling_stone" => ["๐ŸฅŒ","Curling Stone"],
+                "dart" => ["๐ŸŽฏ","Bullseye"],
+                "8ball" => ["๐ŸŽฑ","Pool 8 Ball"],
+                "video_game" => ["๐ŸŽฎ","Video Game"],
+                "slot_machine" => ["๐ŸŽฐ","Slot Machine"],
+                "game_die" => ["๐ŸŽฒ","Game Die"],
+                "jigsaw" => ["๐Ÿงฉ","Puzzle Piece"],
+                "chess_pawn" => ["โ™Ÿ๏ธ&#xFE0F;","Chess Pawn"],
+                "performing_arts" => ["๐ŸŽญ","Performing Arts"],
+                "art" => ["๐ŸŽจ","Artist Palette"],
+                "thread" => ["๐Ÿงต","Thread"],
+                "yarn" => ["๐Ÿงถ","Yarn"],
+                "musical_score" => ["๐ŸŽผ","Musical Score"],
+                "microphone" => ["๐ŸŽค","Microphone"],
+                "headphones" => ["๐ŸŽง","Headphone"],
+                "saxophone" => ["๐ŸŽท","Saxophone"],
+                "accordion" => ["๐Ÿช—","Accordion"],
+                "guitar" => ["๐ŸŽธ","Guitar"],
+                "musical_keyboard" => ["๐ŸŽน","Musical Keyboard"],
+                "trumpet" => ["๐ŸŽบ","Trumpet"],
+                "violin" => ["๐ŸŽป","Violin"],
+                "drum" => ["๐Ÿฅ","Drum"],
+                "long_drum" => ["๐Ÿช˜","Long Drum"],
+                "clapper" => ["๐ŸŽฌ","Clapper Board"],
+                "bow_arrow" => ["๐Ÿน","Bow and Arrow"]
+            ]],
+            "Travel & Places" => ["icon" => "๐Ÿš—",
+            "emojis" => ["japan" => ["๐Ÿ—พ","Map of Japan"],
+                "mountain_snow" => ["๐Ÿ”๏ธ&#xFE0F;","Snow-Capped Mountain"],
+                "mountain" => ["โ›ฐ๏ธ&#xFE0F;","Mountain"],
+                "volcano" => ["๐ŸŒ‹","Volcano"],
+                "mount_fuji" => ["๐Ÿ—ป","Mount Fuji"],
+                "camping" => ["๐Ÿ•๏ธ&#xFE0F;","Camping"],
+                "beach_umbrella" => ["๐Ÿ–๏ธ&#xFE0F;","Beach with Umbrella"],
+                "desert" => ["๐Ÿœ๏ธ&#xFE0F;","Desert"],
+                "desert_island" => ["๐Ÿ๏ธ&#xFE0F;","Desert Island"],
+                "national_park" => ["๐Ÿž๏ธ&#xFE0F;","National Park"],
+                "stadium" => ["๐ŸŸ๏ธ&#xFE0F;","Stadium"],
+                "classical_building" => ["๐Ÿ›๏ธ&#xFE0F;","Classical Building"],
+                "building_construction" =>
+                    ["๐Ÿ—๏ธ&#xFE0F;","Building Construction"],
+                "hut" => ["๐Ÿ›–&#xFE0F;","Hut"],
+                "houses" => ["๐Ÿ˜๏ธ&#xFE0F;","Houses"],
+                "derelict_house" => ["๐Ÿš๏ธ&#xFE0F;","Derelict House"],
+                "house" => ["๐Ÿ ","House"],
+                "house_with_garden" => ["๐Ÿก","House with Garden"],
+                "office" => ["๐Ÿข","Office Building"],
+                "post_office" => ["๐Ÿฃ","Japanese Post Office"],
+                "european_post_office" => ["๐Ÿค","Post Office"],
+                "hospital" => ["๐Ÿฅ","Hospital"],
+                "bank" => ["๐Ÿฆ","Bank"],
+                "hotel" => ["๐Ÿจ","Hotel"],
+                "love_hotel" => ["๐Ÿฉ","Love Hotel"],
+                "convenience_store" => ["๐Ÿช","Convenience Store"],
+                "school" => ["๐Ÿซ","School"],
+                "department_store" => ["๐Ÿฌ","Department Store"],
+                "factory" => ["๐Ÿญ","Factory"],
+                "japanese_castle" => ["๐Ÿฏ","Japanese Castle"],
+                "european_castle" => ["๐Ÿฐ","Castle"],
+                "wedding" => ["๐Ÿ’’","Wedding"],
+                "tokyo_tower" => ["๐Ÿ—ผ","Tokyo Tower"],
+                "statue_of_liberty" => ["๐Ÿ—ฝ","Statue of Liberty"],
+                "church" => ["โ›ช","Church"],
+                "mosque" => ["๐Ÿ•Œ","Mosque"],
+                "temple" => ["๐Ÿ›•","Hindu Temple"],
+                "synagogue" => ["๐Ÿ•","Synagogue"],
+                "shinto_shrine" => ["โ›ฉ๏ธ&#xFE0F;","Shinto Shrine"],
+                "kaaba" => ["๐Ÿ•‹","Kaaba"],
+                "fountain" => ["โ›ฒ","Fountain"],
+                "tent" => ["โ›บ","Tent"],
+                "foggy" => ["๐ŸŒ","Foggy"],
+                "night_stars" => ["๐ŸŒƒ","Night with Stars"],
+                "cityscape" => ["๐Ÿ™๏ธ&#xFE0F;","Cityscape"],
+                "sunrise_over_mountains" => ["๐ŸŒ„","Sunrise Over Mountains"],
+                "sunrise" => ["๐ŸŒ…","Sunrise"],
+                "city_sunrise" => ["๐ŸŒ†","Cityscape at Dusk"],
+                "city_sunset" => ["๐ŸŒ‡","Sunset"],
+                "bridge_night" => ["๐ŸŒ‰","Bridge at Night"],
+                "carousel_horse" => ["๐ŸŽ ","Carousel Horse"],
+                "ferris_wheel" => ["๐ŸŽก","Ferris Wheel"],
+                "roller_coaster" => ["๐ŸŽข","Roller Coaster"],
+                "steam_locomotive" => ["๐Ÿš‚","Locomotive"],
+                "railway_car" => ["๐Ÿšƒ","Railway Car"],
+                "bullettrain_side" => ["๐Ÿš„","High-Speed Train"],
+                "bullettrain_front" => ["๐Ÿš…","Bullet Train"],
+                "train2" => ["๐Ÿš†","Train"],
+                "metro" => ["๐Ÿš‡","Metro"],
+                "light_rail" => ["๐Ÿšˆ","Light Rail"],
+                "station" => ["๐Ÿš‰","Station"],
+                "tram" => ["๐ŸšŠ","Tram"],
+                "monorail" => ["๐Ÿš","Monorail"],
+                "mountain_railway" => ["๐Ÿšž","Mountain Railway"],
+                "train" => ["๐Ÿš‹","Tram Car"],
+                "bus" => ["๐ŸšŒ","Bus"],
+                "oncoming_bus" => ["๐Ÿš","Oncoming Bus"],
+                "trolleybus" => ["๐ŸšŽ","Trolleybus"],
+                "minibus" => ["๐Ÿš","Minibus"],
+                "ambulance" => ["๐Ÿš‘","Ambulance"],
+                "fire_engine" => ["๐Ÿš’","Fire Engine"],
+                "police_car" => ["๐Ÿš“","Police Car"],
+                "oncoming_police_car" => ["๐Ÿš”","Oncoming Police Car"],
+                "taxi" => ["๐Ÿš•","Taxi"],
+                "oncoming_taxi" => ["๐Ÿš–","Oncoming Taxi"],
+                "car" => ["๐Ÿš—","Automobile"],
+                "oncoming_automobile" => ["๐Ÿš˜","Oncoming Automobile"],
+                "blue_car" => ["๐Ÿš™","Sport Utility Vehicle"],
+                "pickup_truck" => ["๐Ÿ›ป","Pickup Truck"],
+                "truck" => ["๐Ÿšš","Delivery Truck"],
+                "articulated_lorry" => ["๐Ÿš›","Articulated Lorry"],
+                "tractor" => ["๐Ÿšœ","Tractor"],
+                "racing_car" => ["๐ŸŽ๏ธ&#xFE0F;","Racing Car"],
+                "motorcycle" => ["๐Ÿ๏ธ&#xFE0F;","Motorcycle"],
+                "motor_scooter" => ["๐Ÿ›ต","Motor Scooter"],
+                "auto_rickshaw" => ["๐Ÿ›บ","Auto Rickshaw"],
+                "bike" => ["๐Ÿšฒ","Bicycle"],
+                "kick_scooter" => ["๐Ÿ›ด","Kick Scooter"],
+                "busstop" => ["๐Ÿš","Bus Stop"],
+                "motorway" => ["๐Ÿ›ฃ๏ธ&#xFE0F;","Motorway"],
+                "railway_track" => ["๐Ÿ›ค๏ธ&#xFE0F;","Railway Track"],
+                "fuelpump" => ["โ›ฝ","Fuel Pump"],
+                "rotating_light" => ["๐Ÿšจ","Police Car Light"],
+                "traffic_light" => ["๐Ÿšฅ","Horizontal Traffic Light"],
+                "vertical_traffic_light" => ["๐Ÿšฆ","Vertical Traffic Light"],
+                "construction" => ["๐Ÿšง","Construction"],
+                "anchor" => ["&#x2693;&#xFE0F;","Anchor"],
+                "boat" => ["โ›ต","Sailboat"],
+                "speedboat" => ["๐Ÿšค","Speedboat"],
+                "passenger_ship" => ["๐Ÿ›ณ๏ธ&#xFE0F;","Passenger Ship"],
+                "ferry" => ["โ›ด๏ธ&#xFE0F;","Ferry"],
+                "motor_boat" => ["๐Ÿ›ฅ๏ธ&#xFE0F;","Motor Boat"],
+                "ship" => ["๐Ÿšข","Ship"],
+                "airplane" => ["&#x2708;&#xFE0F;","Airplane"],
+                "small_airplane" => ["๐Ÿ›ฉ๏ธ&#xFE0F;","Small Airplane"],
+                "flight_departure" => ["๐Ÿ›ซ","Airplane Departure"],
+                "flight_arrival" => ["๐Ÿ›ฌ","Airplane Arrival"],
+                "parachute" => ["๐Ÿช‚","Parachute"],
+                "seat" => ["๐Ÿ’บ","Seat"],
+                "helicopter" => ["๐Ÿš","Helicopter"],
+                "suspension_railway" => ["๐ŸšŸ","Suspension Railway"],
+                "mountain_cableway" => ["๐Ÿš ","Mountain Cableway"],
+                "aerial_tramway" => ["๐Ÿšก","Aerial Tramway"],
+                "artificial_satellite" => ["๐Ÿ›ฐ๏ธ&#xFE0F;","Satellite"],
+                "rocket" => ["๐Ÿš€","Rocket"],
+                "flying_saucer" => ["๐Ÿ›ธ","Flying Saucer"],
+                "ringed_planet" => ["๐Ÿช","Ringed Planet"],
+                "stars" => ["๐ŸŒ ","Shooting Star"],
+                "milky_way" => ["๐ŸŒŒ","Milky Way"],
+                "parasol_on_ground" => ["โ›ฑ๏ธ&#xFE0F;","Umbrella on Ground"],
+                "fireworks" => ["๐ŸŽ†","Fireworks"],
+                "sparkler" => ["๐ŸŽ‡","Sparkler"],
+                "rice_scene" => ["๐ŸŽ‘","Moon Viewing Ceremony"],
+                "yen" => ["๐Ÿ’ด","Yen Banknote"],
+                "dollar" => ["๐Ÿ’ต","Dollar Banknote"],
+                "euro" => ["๐Ÿ’ถ","Euro Banknote"],
+                "pound" => ["๐Ÿ’ท","Pound Banknote"],
+                "passport_control" => ["๐Ÿ›‚","Passport Control"],
+                "customs" => ["๐Ÿ›ƒ","Customs"],
+                "baggage_claim" => ["๐Ÿ›„","Baggage Claim"],
+                "left_luggage" => ["๐Ÿ›…","Left Luggage"]
+            ]],
+            "Objects" => ["icon" => "๐Ÿ’ก",
+            "emojis" => ["love_letter" => ["๐Ÿ’Œ","Love Letter"],
+                "hole" => ["๐Ÿ•ณ๏ธ&#xFE0F;","Hole"],
+                "bomb" => ["๐Ÿ’ฃ","Bomb"],
+                "bath" => ["๐Ÿ›€","Person Taking Bath"],
+                "sleeping_bed" => ["๐Ÿ›Œ","Person in Bed"],
+                "knife" => ["๐Ÿ”ช","Kitchen Knife"],
+                "amphora" => ["๐Ÿบ","Amphora"],
+                "world_map" => ["๐Ÿ—บ๏ธ&#xFE0F;","World Map"],
+                "compass" => ["๐Ÿงญ","Compass"],
+                "brick" => ["๐Ÿงฑ","Brick"],
+                "manual_wheelchair" => ["๐Ÿฆฝ","Manual Wheelchair"],
+                "motorized_wheelchair" => ["๐Ÿฆผ","Motorized Wheelchair"],
+                "oil_drum" => ["๐Ÿ›ข๏ธ&#xFE0F;","Oil Drum"],
+                "bellhop_bell" => ["๐Ÿ›Ž๏ธ&#xFE0F;","Bellhop Bell"],
+                "luggage" => ["๐Ÿงณ","Luggage"],
+                "hourglass" => ["โŒ›","Hourglass Done"],
+                "hourglass_not_done" => ["โณ","Hourglass Not Done"],
+                "watch" => ["โŒš","Watch"],
+                "alarm_clock" => ["โฐ","Alarm Clock"],
+                "stopwatch" => ["โฑ๏ธ&#xFE0F;","Stopwatch"],
+                "timer_clock" => ["โฒ๏ธ&#xFE0F;","Timer Clock"],
+                "mantelpiece_clock" => ["๐Ÿ•ฐ๏ธ&#xFE0F;","Mantelpiece Clock"],
+                "thermometer" => ["๐ŸŒก๏ธ&#xFE0F;","Thermometer"],
+                "parasol_on_ground" => ["โ›ฑ๏ธ&#xFE0F;","Umbrella on Ground"],
+                "firecracker" => ["๐Ÿงจ","Firecracker"],
+                "balloon" => ["๐ŸŽˆ","Balloon"],
+                "tada" => ["๐ŸŽ‰","Party Popper"],
+                "confetti_ball" => ["๐ŸŽŠ","Confetti Ball"],
+                "dolls" => ["๐ŸŽŽ","Japanese Dolls"],
+                "flags" => ["๐ŸŽ","Carp Streamer"],
+                "wind_chime" => ["๐ŸŽ","Wind Chime"],
+                "red_envelope" => ["๐Ÿงง","Red Envelope"],
+                "ribbon" => ["๐ŸŽ€","Ribbon"],
+                "gift" => ["๐ŸŽ","Wrapped Gift"],
+                "diving_mask" => ["๐Ÿคฟ","Diving Mask"],
+                "yo_yo" => ["๐Ÿช€","Yo-Yo"],
+                "kite" => ["๐Ÿช","Kite"],
+                "crystal_ball" => ["๐Ÿ”ฎ","Crystal Ball"],
+                "magic_wand" => ["๐Ÿช„","Magic Wand"],
+                "nazar_amulet" => ["๐Ÿงฟ","Nazar Amulet"],
+                "joystick" => ["๐Ÿ•น๏ธ&#xFE0F;","Joystick"],
+                "teddy_bear" => ["๐Ÿงธ","Teddy Bear"],
+                "pinata" => ["๐Ÿช…","Piñata"],
+                "nesting_dolls" => ["๐Ÿช†","Nesting Dolls"],
+                "framed_picture" => ["๐Ÿ–ผ๏ธ&#xFE0F;","Framed Picture"],
+                "thread" => ["๐Ÿงต","Thread"],
+                "sewing_needle" => ["๐Ÿชก","Sewing Needle"],
+                "yarn" => ["๐Ÿงถ","Yarn"],
+                "knot" => ["๐Ÿชข","Knot"],
+                "shopping" => ["๐Ÿ›๏ธ&#xFE0F;","Shopping Bags"],
+                "prayer_beads" => ["๐Ÿ“ฟ","Prayer Beads"],
+                "gem" => ["๐Ÿ’Ž","Gem Stone"],
+                "postal_horn" => ["๐Ÿ“ฏ","Postal Horn"],
+                "studio_microphone" => ["๐ŸŽ™๏ธ&#xFE0F;","Studio Microphone"],
+                "level_slider" => ["๐ŸŽš๏ธ&#xFE0F;","Level Slider"],
+                "control_knobs" => ["๐ŸŽ›๏ธ&#xFE0F;","Control Knobs"],
+                "radio" => ["๐Ÿ“ป","Radio"],
+                "banjo" => ["๐Ÿช•","Banjo"],
+                "iphone" => ["๐Ÿ“ฑ","Mobile Phone"],
+                "calling" => ["๐Ÿ“ฒ","Mobile Phone with Arrow"],
+                "phone" => ["โ˜Ž๏ธ&#xFE0F;","Telephone"],
+                "telephone_receiver" => ["๐Ÿ“ž","Telephone Receiver"],
+                "pager" => ["๐Ÿ“Ÿ","Pager"],
+                "fax" => ["๐Ÿ“ ","Fax Machine"],
+                "battery" => ["๐Ÿ”‹","Battery"],
+                "electric_plug" => ["๐Ÿ”Œ","Electric Plug"],
+                "computer" => ["๐Ÿ’ป","Laptop"],
+                "desktop_computer" => ["๐Ÿ–ฅ๏ธ&#xFE0F;","Desktop Computer"],
+                "printer" => ["๐Ÿ–จ๏ธ&#xFE0F;","Printer"],
+                "keyboard" => ["โŒจ๏ธ&#xFE0F;","Keyboard"],
+                "computer_mouse" => ["๐Ÿ–ฑ๏ธ&#xFE0F;","Computer Mouse"],
+                "computer_mouse" => ["๐Ÿ–ฒ๏ธ&#xFE0F;","Trackball"],
+                "minidisc" => ["๐Ÿ’ฝ","Computer Disk"],
+                "floppy_disk" => ["๐Ÿ’พ","Floppy Disk"],
+                "cd" => ["๐Ÿ’ฟ","Optical Disk"],
+                "dvd" => ["๐Ÿ“€","DVD"],
+                "abacus" => ["๐Ÿงฎ","Abacus"],
+                "movie_camera" => ["๐ŸŽฅ","Movie Camera"],
+                "film_strip" => ["๐ŸŽž๏ธ&#xFE0F;","Film Frames"],
+                "film_projector" => ["๐Ÿ“ฝ๏ธ&#xFE0F;","Film Projector"],
+                "tv" => ["๐Ÿ“บ","Television"],
+                "camera" => ["๐Ÿ“ท","Camera"],
+                "camera_flash" => ["๐Ÿ“ธ","Camera with Flash"],
+                "video_camera" => ["๐Ÿ“น","Video Camera"],
+                "vhs" => ["๐Ÿ“ผ","Videocassette"],
+                "mag" => ["๐Ÿ”","Magnifying Glass Tilted Left"],
+                "mag_right" => ["๐Ÿ”Ž","Magnifying Glass Tilted Right"],
+                "candle" => ["๐Ÿ•ฏ๏ธ&#xFE0F;","Candle"],
+                "bulb" => ["๐Ÿ’ก","Light Bulb"],
+                "flashlight" => ["๐Ÿ”ฆ","Flashlight"],
+                "lantern" => ["๐Ÿฎ","Red Paper Lantern"],
+                "diya_lamp" => ["๐Ÿช”","Diya Lamp"],
+                "notebook_decorative_cover" =>
+                    ["๐Ÿ“”","Notebook with Decorative Cover"],
+                "closed_book" => ["๐Ÿ“•","Closed Book"],
+                "book" => ["๐Ÿ“–","Open Book"],
+                "green_book" => ["๐Ÿ“—","Green Book"],
+                "blue_book" => ["๐Ÿ“˜","Blue Book"],
+                "orange_book" => ["๐Ÿ“™","Orange Book"],
+                "books" => ["๐Ÿ“š","Books"],
+                "notebook" => ["๐Ÿ““","Notebook"],
+                "ledger" => ["๐Ÿ“’","Ledger"],
+                "page_with_curl" => ["๐Ÿ“ƒ","Page with Curl"],
+                "scroll" => ["๐Ÿ“œ","Scroll"],
+                "page_facing_up" => ["๐Ÿ“„","Page Facing Up"],
+                "newspaper" => ["๐Ÿ“ฐ","Newspaper"],
+                "newspaper_roll" => ["๐Ÿ—ž๏ธ&#xFE0F;","Rolled-Up Newspaper"],
+                "bookmark_tabs" => ["๐Ÿ“‘","Bookmark Tabs"],
+                "bookmark" => ["๐Ÿ”–","Bookmark"],
+                "label" => ["๐Ÿท๏ธ&#xFE0F;","Label"],
+                "moneybag" => ["๐Ÿ’ฐ","Money Bag"],
+                "coin" => ["๐Ÿช™","Coin"],
+                "yen" => ["๐Ÿ’ด","Yen Banknote"],
+                "dollar" => ["๐Ÿ’ต","Dollar Banknote"],
+                "euro" => ["๐Ÿ’ถ","Euro Banknote"],
+                "pound" => ["๐Ÿ’ท","Pound Banknote"],
+                "money_with_wings" => ["๐Ÿ’ธ","Money with Wings"],
+                "credit_card" => ["๐Ÿ’ณ","Credit Card"],
+                "receipt" => ["๐Ÿงพ","Receipt"],
+                "envelope" => ["&#x2709;&#xFE0F;","Envelope"],
+                "email" => ["๐Ÿ“ง","E-Mail"],
+                "incoming_envelope" => ["๐Ÿ“จ","Incoming Envelope"],
+                "envelope_arrow" => ["๐Ÿ“ฉ","Envelope with Arrow"],
+                "outbox_tray" => ["๐Ÿ“ค","Outbox Tray"],
+                "inbox_tray" => ["๐Ÿ“ฅ","Inbox Tray"],
+                "package" => ["๐Ÿ“ฆ","Package"],
+                "mailbox" => ["๐Ÿ“ซ","Closed Mailbox with Raised Flag"],
+                "mailbox_closed" => ["๐Ÿ“ช","Closed Mailbox with Lowered Flag"],
+                "mailbox_mail" => ["๐Ÿ“ฌ","Open Mailbox with Raised Flag"],
+                "mailbox_no_mail" => ["๐Ÿ“ญ","Open Mailbox with Lowered Flag"],
+                "postbox" => ["๐Ÿ“ฎ","Postbox"],
+                "ballot_box" => ["๐Ÿ—ณ๏ธ&#xFE0F;","Ballot Box with Ballot"],
+                "pencil2" => ["&#x270F;&#xFE0F;","Pencil"],
+                "black_nib" => ["&#x2712;&#xFE0F;","Black Nib"],
+                "fountain_pen" => ["๐Ÿ–‹๏ธ&#xFE0F;","Fountain Pen"],
+                "pen" => ["๐Ÿ–Š๏ธ&#xFE0F;","Pen"],
+                "paintbrush" => ["๐Ÿ–Œ๏ธ&#xFE0F;","Paintbrush"],
+                "crayon" => ["๐Ÿ–๏ธ&#xFE0F;","Crayon"],
+                "memo" => ["๐Ÿ“","Memo"],
+                "file_folder" => ["๐Ÿ“","File Folder"],
+                "open_file_folder" => ["๐Ÿ“‚","Open File Folder"],
+                "card_index_dividers" => ["๐Ÿ—‚๏ธ&#xFE0F;","Card Index Dividers"],
+                "date" => ["๐Ÿ“…","Calendar"],
+                "calendar" => ["๐Ÿ“†","Tear-Off Calendar"],
+                "spiral_notepad" => ["๐Ÿ—’๏ธ&#xFE0F;","Spiral Notepad"],
+                "spiral_calendar" => ["๐Ÿ—“๏ธ&#xFE0F;","Spiral Calendar"],
+                "card_index" => ["๐Ÿ“‡","Card Index"],
+                "chart_upwards_trend" => ["๐Ÿ“ˆ","Chart Increasing"],
+                "chart_downwards_trend" => ["๐Ÿ“‰","Chart Decreasing"],
+                "bar_chart" => ["๐Ÿ“Š","Bar Char"],
+                "clipboard" => ["๐Ÿ“‹","Clipboard"],
+                "pushpin" => ["๐Ÿ“Œ","Pushpin"],
+                "round_pushpin" => ["๐Ÿ“","Round Pushpin"],
+                "paperclip" => ["๐Ÿ“Ž","Paperclip"],
+                "paperclips" => ["๐Ÿ–‡๏ธ&#xFE0F;","Linked Paperclips"],
+                "straight_ruler" => ["๐Ÿ“","Straight Ruler"],
+                "triangular_ruler" => ["๐Ÿ“","Triangular Ruler"],
+                "scissors" => ["&#x2702;&#xFE0F;","Scissors"],
+                "card_file_box" => ["๐Ÿ—ƒ๏ธ&#xFE0F;","Card File Box"],
+                "file_cabinet" => ["๐Ÿ—„๏ธ&#xFE0F;","File Cabinet"],
+                "wastebasket" => ["๐Ÿ—‘๏ธ&#xFE0F;","Wastebasket"],
+                "lock" => ["๐Ÿ”’","Locked"],
+                "unlock" => ["๐Ÿ”“","Unlocked"],
+                "lock_ink_pen" => ["๐Ÿ”","Locked with Pen"],
+                "closed_lock_key" => ["๐Ÿ”","Locked with Key"],
+                "key" => ["๐Ÿ”‘","Key"],
+                "old_key" => ["๐Ÿ—๏ธ&#xFE0F;","Old Key"],
+                "hammer" => ["๐Ÿ”จ","Hammer"],
+                "axe" => ["๐Ÿช“","Axe"],
+                "pick" => ["โ›๏ธ&#xFE0F;","Pick"],
+                "hammer_pick" => ["&#x2692;&#xFE0F;","Hammer and Pick"],
+                "hammer_wrench" => ["๐Ÿ› ๏ธ","Hammer and Wrench"],
+                "dagger" => ["๐Ÿ—ก๏ธ","Dagger"],
+                "crossed_swords" => ["&#x2694&#xFE0F;","Crossed Swords"],
+                "gun" => ["๐Ÿ”ซ","Water Pistol"],
+                "boomerang" => ["๐Ÿชƒ","Boomerang"],
+                "shield" => ["๐Ÿ›ก๏ธ&#xFE0F;","Shield"],
+                "carpentry_saw" => ["๐Ÿชš","Carpentry Saw"],
+                "wrench" => ["๐Ÿ”ง","Wrench"],
+                "screwdriver" => ["๐Ÿช›","Screwdriver"],
+                "nut_bolt" => ["๐Ÿ”ฉ","Nut and Bolt"],
+                "gear" => ["&#x2699;&#xFE0F;","Gear"],
+                "clamp" => ["๐Ÿ—œ๏ธ&#xFE0F;","Clamp"],
+                "balance_scale" => ["&#x2696;&#xFE0F;","Balance Scale"],
+                "probing_cane" => ["๐Ÿฆฏ","White Cane"],
+                "link" => ["๐Ÿ”—","Link"],
+                "chains" => ["โ›“๏ธ&#xFE0F;","Chains"],
+                "hook" => ["๐Ÿช","Hook"],
+                "toolbox" => ["๐Ÿงฐ","Toolbox"],
+                "magnet" => ["๐Ÿงฒ","Magnet"],
+                "ladder" => ["๐Ÿชœ","Ladder"],
+                "alembic" => ["&#x2697;&#xFE0F;","Alembic"],
+                "test_tube" => ["๐Ÿงช","Test Tube"],
+                "test_tube" => ["๐Ÿงซ","Petri Dish"],
+                "dna" => ["๐Ÿงฌ","DNA"],
+                "microscope" => ["๐Ÿ”ฌ","Microscope"],
+                "telescope" => ["๐Ÿ”ญ","Telescope"],
+                "satellite" => ["๐Ÿ“ก","Satellite Antenna"],
+                "syringe" => ["๐Ÿ’‰","Syringe"],
+                "drop_of_blood" => ["๐Ÿฉธ","Drop of Blood"],
+                "pill" => ["๐Ÿ’Š","Pill"],
+                "adhesive_bandage" => ["๐Ÿฉน","Adhesive Bandage"],
+                "stethoscope" => ["๐Ÿฉบ","Stethoscope"],
+                "door" => ["๐Ÿšช","Door"],
+                "mirror" => ["๐Ÿชž","Mirror"],
+                "window" => ["๐ŸชŸ","Window"],
+                "bed" => ["๐Ÿ›๏ธ&#xFE0F;","Bed"],
+                "couch_lamp" => ["๐Ÿ›‹๏ธ&#xFE0F;","Couch and Lamp"],
+                "chair" => ["๐Ÿช‘","Chair"],
+                "toilet" => ["๐Ÿšฝ","Toilet"],
+                "plunger" => ["๐Ÿช ","Plunger"],
+                "shower" => ["๐Ÿšฟ","Shower"],
+                "bathtub" => ["๐Ÿ›","Bathtub"],
+                "mouse_trap" => ["๐Ÿชค","Mouse Trap"],
+                "razor" => ["๐Ÿช’","Razor"],
+                "lotion_bottle" => ["๐Ÿงด","Lotion Bottle"],
+                "safety_pin" => ["๐Ÿงท","Safety Pin"],
+                "broom" => ["๐Ÿงน","Broom"],
+                "broom" => ["๐Ÿงบ","Basket"],
+                "roll_of_paper" => ["๐Ÿงป","Roll of Paper"],
+                "bucket" => ["๐Ÿชฃ","Bucket"],
+                "soap" => ["๐Ÿงผ","Soap"],
+                "toothbrush" => ["๐Ÿชฅ","Toothbrush"],
+                "sponge" => ["๐Ÿงฝ","Sponge"],
+                "fire_extinguisher" => ["๐Ÿงฏ","Fire Extinguisher"],
+                "shopping_cart" => ["๐Ÿ›’","Shopping Cart"],
+                "smoking" => ["๐Ÿšฌ","Cigarette"],
+                "coffin" => ["โšฐ๏ธ&#xFE0F;","Coffin"],
+                "headstone" => ["๐Ÿชฆ","Headstone"],
+                "funeral_urn" => ["โšฑ๏ธ&#xFE0F;","Funeral Urn"],
+                "moyai" => ["๐Ÿ—ฟ","Moai"],
+                "placard" => ["๐Ÿชง","Placard"],
+                "potable_water" => ["๐Ÿšฐ","Potable Water"]
+            ]],
+            "Symbols" => ["icon" => "๐Ÿ”ฃ",
+            "emojis" => ["cupid" => ["๐Ÿ’˜","Heart with Arrow"],
+                "gift_heart" => ["๐Ÿ’","Heart with Ribbon"],
+                "sparkling_heart" => ["๐Ÿ’–","Sparkling Heart"],
+                "heartpulse" => ["๐Ÿ’—","Growing Heart"],
+                "heartbeat" => ["๐Ÿ’“","Beating Heart"],
+                "revolving_hearts" => ["๐Ÿ’ž","Revolving Hearts"],
+                "two_hearts" => ["๐Ÿ’•","Two Hearts"],
+                "heart_decoration" => ["๐Ÿ’Ÿ","Heart Decoration"],
+                "heart_exclamation" => ["โฃ๏ธ&#xFE0F;","Heart Exclamation"],
+                "broken_heart" => ["๐Ÿ’”","Broken Heart"],
+                "heart_fire" => ["โค๏ธ‍๐Ÿ”ฅ","Heart on Fire"],
+                "mending_heart" => ["โค๏ธ‍๐Ÿฉน","Mending Heart"],
+                "heart" => ["โค๏ธ&#xFE0F;","Red Heart"],
+                "orange_heart" => ["๐Ÿงก","Orange Heart"],
+                "yellow_heart" => ["๐Ÿ’›","Yellow Heart"],
+                "green_heart" => ["๐Ÿ’š","Green Heart"],
+                "blue_heart" => ["๐Ÿ’™","Blue Heart"],
+                "purple_heart" => ["๐Ÿ’œ","Purple Heart"],
+                "brown_heart" => ["๐ŸคŽ","Brown Heart"],
+                "black_heart" => ["๐Ÿ–ค","Black Heart"],
+                "white_heart" => ["๐Ÿค","White Heart"],
+                "100" => ["๐Ÿ’ฏ","Hundred Points"],
+                "anger" => ["๐Ÿ’ข","Anger Symbol"],
+                "speech_balloon" => ["๐Ÿ’ฌ","Speech Balloon"],
+                "eye_speech_bubble" => ["๐Ÿ‘๏ธ‍๐Ÿ—จ๏ธ&#xFE0F;","Eye in Speech Bubble"],
+                "left_speech_bubble" => ["๐Ÿ—จ๏ธ&#xFE0F;","Left Speech Bubble"],
+                "right_anger_bubble" => ["๐Ÿ—ฏ๏ธ&#xFE0F;","Right Anger Bubble"],
+                "thought_balloon" => ["๐Ÿ’ญ","Thought Balloon"],
+                "zzz" => ["๐Ÿ’ค","Zzz"],
+                "white_flower" => ["๐Ÿ’ฎ","White Flower"],
+                "hotsprings" => ["โ™จ๏ธ&#xFE0F;","Hot Springs"],
+                "barber" => ["๐Ÿ’ˆ","Barber Pole"],
+                "stop_sign" => ["๐Ÿ›‘","Stop Sign"],
+                "clock12" => ["๐Ÿ•›","Twelve O’Clock"],
+                "clock1230" => ["๐Ÿ•ง","Twelve-Thirty"],
+                "clock1" => ["๐Ÿ•","One O’Clock"],
+                "clock130" => ["๐Ÿ•œ","One-Thirty"],
+                "clock2" => ["๐Ÿ•‘","Two O’Clock"],
+                "clock230" => ["๐Ÿ•","Two-Thirty"],
+                "clock3" => ["๐Ÿ•’","Three O’Clock"],
+                "clock330" => ["๐Ÿ•ž","Three-Thirty"],
+                "clock4" => ["๐Ÿ•“","Four O’Clock"],
+                "clock430" => ["๐Ÿ•Ÿ","Four-Thirty"],
+                "clock5" => ["๐Ÿ•”","Five O’Clock"],
+                "clock530" => ["๐Ÿ• ","Five-Thirty"],
+                "clock6" => ["๐Ÿ••","Six O’Clock"],
+                "clock630" => ["๐Ÿ•ก","Six-Thirty"],
+                "clock7" => ["๐Ÿ•–","Seven O’Clock"],
+                "clock730" => ["๐Ÿ•ข","Seven-Thirty"],
+                "clock8" => ["๐Ÿ•—","Eight O’Clock"],
+                "clock830" => ["๐Ÿ•ฃ","Eight-Thirty"],
+                "clock9" => ["๐Ÿ•˜","Nine O’Clock"],
+                "clock930" => ["๐Ÿ•ค","Nine-Thirty"],
+                "clock10" => ["๐Ÿ•™","Ten O’Clock"],
+                "clock1030" => ["๐Ÿ•ฅ","Ten-Thirty"],
+                "clock11" => ["๐Ÿ•š","Eleven O’Clock"],
+                "clock1130" => ["๐Ÿ•ฆ","Eleven-Thirty"],
+                "cyclone" => ["๐ŸŒ€","Cyclone"],
+                "spades" => ["♠๏ธ&#xFE0F","Spade Suit"],
+                "hearts" => ["♥๏ธ&#xFE0F","Heart Suit"],
+                "diamonds" => ["♦๏ธ&#xFE0F","Diamond Suit"],
+                "clubs" => ["♣๏ธ&#xFE0F","Club Suit"],
+                "black_joker" => ["๐Ÿƒ","Joker"],
+                "mahjong" => ["๐Ÿ€„","Mahjong Red Dragon"],
+                "flower_playing_cards" => ["๐ŸŽด","Flower Playing Cards"],
+                "mute" => ["๐Ÿ”‡","Muted Speaker"],
+                "speaker" => ["๐Ÿ”ˆ","Speaker Low Volume"],
+                "sound" => ["๐Ÿ”‰","Speaker Medium Volume"],
+                "loud_sound" => ["๐Ÿ”Š","Speaker High Volume"],
+                "loudspeaker" => ["๐Ÿ“ข","Loudspeaker"],
+                "mega" => ["๐Ÿ“ฃ","Megaphone"],
+                "postal_horn" => ["๐Ÿ“ฏ","Postal Horn"],
+                "bell" => ["๐Ÿ””","Bell"],
+                "no_bell" => ["๐Ÿ”•","Bell with Slash"],
+                "musical_note" => ["๐ŸŽต","Musical Note"],
+                "notes" => ["๐ŸŽถ","Musical Notes"],
+                "chart" => ["๐Ÿ’น","Chart Increasing with Yen"],
+                "elevator" => ["๐Ÿ›—","Elevator"],
+                "atm" => ["๐Ÿง","ATM Sign"],
+                "put_litter_in_its_place" => ["๐Ÿšฎ","Litter in Bin Sign"],
+                "potable_water" => ["๐Ÿšฐ","Potable Water"],
+                "wheelchair" => ["&#x267F;&#xFE0F;","Wheelchair Symbol"],
+                "mens" => ["๐Ÿšน","Men’s Room"],
+                "womens" => ["๐Ÿšบ","Women’s Room"],
+                "restroom" => ["๐Ÿšป","Restroom"],
+                "baby_symbol" => ["๐Ÿšผ","Baby Symbol"],
+                "wc" => ["๐Ÿšพ","Water Closet"],
+                "warning" => ["&#x26A0;&#xFE0F;","Warning"],
+                "children_crossing" => ["๐Ÿšธ","Children Crossing"],
+                "no_entry" => ["โ›”","No Entry"],
+                "no_entry_sign" => ["๐Ÿšซ","Prohibited"],
+                "no_bicycles" => ["๐Ÿšณ","No Bicycles"],
+                "no_smoking" => ["๐Ÿšญ","No Smoking"],
+                "do_not_litter" => ["๐Ÿšฏ","No Littering"],
+                "non_potable_water" => ["๐Ÿšฑ","Non-Potable Water"],
+                "no_pedestrians" => ["๐Ÿšท","No Pedestrians"],
+                "no_mobile_phones" => ["๐Ÿ“ต","No Mobile Phones"],
+                "underage" => ["๐Ÿ”ž","No One Under Eighteen"],
+                "radioactive" => ["&#x2622;&#xFE0F;","Radioactive"],
+                "biohazard" => ["&#x2623;&#xFE0F;","Biohazard"],
+                "arrow_up" => ["โฌ†๏ธ&#xFE0F;","Up Arrow"],
+                "arrow_upper_right" => ["โ†—๏ธ&#xFE0F;","Up-Right Arrow"],
+                "arrow_right" => ["โžก๏ธ&#xFE0F;","Right Arrow"],
+                "arrow_lower_right" => ["โ†˜๏ธ&#xFE0F;","Down-Right Arrow"],
+                "arrow_down" => ["โฌ‡๏ธ&#xFE0F;","Down Arrow"],
+                "arrow_lower_left" => ["โ†™๏ธ&#xFE0F;","Down-Left Arrow"],
+                "arrow_left" => ["โฌ…๏ธ&#xFE0F;","Left Arrow"],
+                "arrow_upper_left" => ["โ†–๏ธ&#xFE0F;","Up-Left Arrow"],
+                "arrow_up_down" => ["โ†•๏ธ&#xFE0F;","Up-Down Arrow"],
+                "left_right_arrow" => ["↔๏ธ&#xFE0F;","Left-Right Arrow"],
+                "arrow_left_hook" => ["โ†ฉ๏ธ&#xFE0F;","Right Arrow Curving Left"],
+                "arrow_right_hook" => ["โ†ช๏ธ&#xFE0F;","Left Arrow Curving Right"],
+                "arrow_heading_up" => ["โคด๏ธ&#xFE0F;","Right Arrow Curving Up"],
+                "arrow_heading_down" =>
+                    ["โคต๏ธ&#xFE0F;","Right Arrow Curving Down"],
+                "arrows_clockwise" => ["๐Ÿ”ƒ","Clockwise Vertical Arrows"],
+                "arrows_counterclockwise" =>
+                    ["๐Ÿ”„","Counterclockwise Arrows Button"],
+                "back" => ["๐Ÿ”™","Back Arrow"],
+                "end" => ["๐Ÿ”š","End Arrow"],
+                "on" => ["๐Ÿ”›","On! Arrow"],
+                "soon" => ["๐Ÿ”œ","Soon Arrow"],
+                "top" => ["๐Ÿ”","Top Arrow"],
+                "place_of_worship" => ["๐Ÿ›","Place of Worship"],
+                "atom_symbol" => ["โš›๏ธ&#xFE0F;","Atom Symbol"],
+                "om" => ["๐Ÿ•‰๏ธ&#xFE0F;","Om"],
+                "star_of_david" => ["โœก๏ธ&#xFE0F;","Star of David"],
+                "wheel_of_dharma" => ["โ˜ธ๏ธ&#xFE0F;","Wheel of Dharma"],
+                "yin_yang" => ["โ˜ฏ๏ธ&#xFE0F;","Yin Yang"],
+                "latin_cross" => ["โœ๏ธ&#xFE0F;","Latin Cross"],
+                "orthodox_cross" => ["โ˜ฆ๏ธ&#xFE0F;","Orthodox Cross"],
+                "star_and_crescent" => ["โ˜ช๏ธ&#xFE0F;","Star and Crescent"],
+                "peace_symbol" => ["โ˜ฎ๏ธ&#xFE0F;","Peace Symbol"],
+                "menorah" => ["๐Ÿ•Ž","Menorah"],
+                "six_pointed_star" => ["๐Ÿ”ฏ","Dotted Six-Pointed Star"],
+                "aries" => ["โ™ˆ&#xFE0F;","Aries"],
+                "taurus" => ["โ™‰&#xFE0F;","Taurus"],
+                "gemini" => ["โ™Š&#xFE0F;","Gemini"],
+                "cancer" => ["โ™‹&#xFE0F;","Cancer"],
+                "leo" => ["โ™Œ&#xFE0F;","Leo"],
+                "virgo" => ["โ™&#xFE0F;","Virgo"],
+                "libra" => ["โ™Ž&#xFE0F;","Libra"],
+                "scorpius" => ["โ™&#xFE0F;","Scorpio"],
+                "sagittarius" => ["โ™&#xFE0F;","Sagittarius"],
+                "capricorn" => ["โ™‘&#xFE0F;","Capricorn"],
+                "aquarius" => ["โ™’&#xFE0F;","Aquarius"],
+                "pisces" => ["โ™“&#xFE0F;","Pisces"],
+                "ophiuchus" => ["โ›Ž","Ophiuchus"],
+                "twisted_rightwards_arrows" => ["๐Ÿ”€","Shuffle Tracks Button"],
+                "repeat" => ["๐Ÿ”","Repeat Button"],
+                "repeat_one" => ["๐Ÿ”‚","Repeat Single Button"],
+                "arrow_forward" => ["โ–ถ๏ธ&#xFE0F;","Play Button"],
+                "arrow_forward" => ["โฉ","Fast-Forward Button"],
+                "next_track_button" => ["โญ๏ธ&#xFE0F;","Next Track Button"],
+                "play_or_pause_button" => ["โฏ๏ธ&#xFE0F;","Play or Pause Button"],
+                "arrow_backward" => ["โ—€๏ธ&#xFE0F;","Reverse Button"],
+                "rewind" => ["โช","Fast Reverse Button"],
+                "previous_track_button" => ["โฎ๏ธ&#xFE0F;","Last Track Button"],
+                "arrow_up_small" => ["๐Ÿ”ผ","Upwards Button"],
+                "arrow_double_up" => ["โซ","Fast Up Button"],
+                "arrow_down_small" => ["๐Ÿ”ฝ","Downwards Button"],
+                "arrow_double_down" => ["โฌ","Fast Down Button"],
+                "pause_button" => ["โธ๏ธ&#xFE0F;","Pause Button"],
+                "stop_button" => ["โน๏ธ&#xFE0F;","Stop Button"],
+                "record_button" => ["โบ๏ธ&#xFE0F;","Record Button"],
+                "record_button" => ["โ๏ธ&#xFE0F;","Eject Button"],
+                "cinema" => ["๐ŸŽฆ","Cinema"],
+                "low_brightness" => ["๐Ÿ”…","Dim Button"],
+                "high_brightness" => ["๐Ÿ”†","Bright Button"],
+                "signal_strength" => ["๐Ÿ“ถ","Antenna Bars"],
+                "vibration_mode" => ["๐Ÿ“ณ","Vibration Mode"],
+                "mobile_phone_off" => ["๐Ÿ“ด","Mobile Phone Off"],
+                "female_sign" => ["โ™€๏ธ&#xFE0F;","Female Sign"],
+                "male_sign" => ["โ™‚๏ธ&#xFE0F;","Male Sign"],
+                "heavy_multiplication_x" => ["โœ–๏ธ&#xFE0F;","Multiply"],
+                "heavy_plus_sign" => ["โž•&#xFE0F;","Plus"],
+                "heavy_plus_sign" => ["โž–&#xFE0F;","Minus"],
+                "heavy_division_sign" => ["โž—","Divide"],
+                "infinity" => ["โ™พ๏ธ&#xFE0F;","Infinity"],
+                "bangbang" => ["โ€ผ๏ธ&#xFE0F;","Double Exclamation Mark"],
+                "interrobang" => ["โ‰๏ธ&#xFE0F;","Exclamation Question Mark"],
+                "question" => ["โ“","Red Question Mark"],
+                "grey_question" => ["โ”","White Question Mark"],
+                "grey_exclamation" => ["โ•","White Exclamation Mark"],
+                "wavy_dash" => ["ใ€ฐ๏ธ&#xFE0F;","Wavy Dash"],
+                "currency_exchange" => ["๐Ÿ’ฑ","Currency Exchange"],
+                "heavy_dollar_sign" => ["๐Ÿ’ฒ","Heavy Dollar Sign"],
+                "medical_symbol" => ["โš•๏ธ&#xFE0F;","Medical Symbol"],
+                "recycle" => ["โ™ป๏ธ&#xFE0F;","Recycling Symbol"],
+                "fleur_de_lis" => ["โšœ๏ธ&#xFE0F;","Fleur-de-lis"],
+                "trident" => ["๐Ÿ”ฑ","Trident Emblem"],
+                "name_badge" => ["๐Ÿ“›","Name Badge"],
+                "beginner" => ["๐Ÿ”ฐ","Japanese Symbol for Beginner"],
+                "o" => ["โญ•","Hollow Red Circle"],
+                "white_check_mark" => ["โœ…","Check Mark Button"],
+                "ballot_box_with_check" => ["โ˜‘๏ธ&#xFE0F;","Check Box with Check"],
+                "heavy_check_mark" => ["โœ”๏ธ&#xFE0F;","Check Mark"],
+                "x" => ["โŒ","Cross Mark"],
+                "negative_squared_cross_mark" => ["โŽ","Cross Mark Button"],
+                "curly_loop" => ["โžฐ&#xFE0F;","Curly Loop"],
+                "loop" => ["โžฟ&#xFE0F;","Double Curly Loop"],
+                "part_alternation_mark" =>
+                    ["ใ€ฝ๏ธ&#xFE0F;","Part Alternation Mark"],
+                "eight_spoked_asterisk" =>
+                    ["โœณ๏ธ&#xFE0F;","Eight-Spoked Asterisk"],
+                "eight_pointed_black_star" =>
+                    ["โœด๏ธ&#xFE0F;","Eight-Pointed Star"],
+                "sparkle" => ["โ‡๏ธ&#xFE0F;","Sparkle"],
+                "copyright" => ["©๏ธ&#xFE0F;","Copyright"],
+                "registered" => ["®๏ธ&#xFE0F;","Registered"],
+                "tm" => ["™๏ธ&#xFE0F;","Trade Mark"],
+                "hash" => ["#๏ธโƒฃ&#xFE0F","Keycap Number Sign"],
+                "asterisk" => ["*๏ธโƒฃ&#xFE0F;","Keycap Asterisk"],
+                "zero" => ["0๏ธโƒฃ&#xFE0F;","Keycap Digit Zero"],
+                "one" => ["1๏ธโƒฃ&#xFE0F;","Keycap Digit One"],
+                "two" => ["2๏ธโƒฃ&#xFE0F;","Keycap Digit Two"],
+                "three" => ["3๏ธโƒฃ&#xFE0F;","Keycap Digit Three"],
+                "four" => ["4๏ธโƒฃ&#xFE0F;","Keycap Digit Four"],
+                "five" => ["5๏ธโƒฃ&#xFE0F;","Keycap Digit Five"],
+                "six" => ["6๏ธโƒฃ&#xFE0F;","Keycap Digit Six"],
+                "seven" => ["7๏ธโƒฃ&#xFE0F;","Keycap Digit Seven"],
+                "eight" => ["8๏ธโƒฃ&#xFE0F;","Keycap Digit Eight"],
+                "nine" => ["9๏ธโƒฃ&#xFE0F;","Keycap Digit Nine"],
+                "keycap_ten" => ["๐Ÿ”Ÿ","Keycap: 10"],
+                "capital_abcd" => ["๐Ÿ” ","Input Latin Uppercase"],
+                "abcd" => ["๐Ÿ”ก","Input Latin Lowercase"],
+                "1234" => ["๐Ÿ”ข","Input Numbers"],
+                "symbols" => ["๐Ÿ”ฃ","Input Symbols"],
+                "abc" => ["๐Ÿ”ค","Input Latin Letters"],
+                "a" => ["๐Ÿ…ฐ๏ธ&#xFE0F;","A Button (Blood Type)"],
+                "ab" => ["๐Ÿ†Ž","AB Button (Blood Type)"],
+                "b" => ["๐Ÿ…ฑ๏ธ&#xFE0F;","B Button (Blood Type)"],
+                "cl" => ["๐Ÿ†‘","CL Button"],
+                "cool" => ["๐Ÿ†’","Cool Button"],
+                "free" => ["๐Ÿ†“","Free Button"],
+                "information_source" => ["โ„น๏ธ&#xFE0F;","Information"],
+                "id" => ["๐Ÿ†”","ID Button"],
+                "m" => ["โ“‚๏ธ&#xFE0F;","Circled M"],
+                "new" => ["๐Ÿ†•","New Button"],
+                "ng" => ["๐Ÿ†–","NG Button"],
+                "o2" => ["๐Ÿ…พ๏ธ&#xFE0F;","O Button (Blood Type)"],
+                "ok" => ["๐Ÿ†—","OK Button"],
+                "parking" => ["๐Ÿ…ฟ๏ธ&#xFE0F;","P Button"],
+                "sos" => ["๐Ÿ†˜","SOS Button"],
+                "up" => ["๐Ÿ†™","Up! Button"],
+                "vs" => ["๐Ÿ†š","Vs Button"],
+                "koko" => ["๐Ÿˆ","Japanese “Here” Button"],
+                "sa" => ["๐Ÿˆ‚๏ธ&#xFE0F;","Japanese “Service Charge” Button"],
+                "u6708" => ["๐Ÿˆท๏ธ&#xFE0F;","Japanese “Monthly Amount” Button"],
+                "u6709" => ["๐Ÿˆถ","Japanese “Not Free of Charge” Button"],
+                "u6307" => ["๐Ÿˆฏ","Japanese “Reserved” Button"],
+                "ideograph_advantage" => ["๐Ÿ‰","Japanese “Bargain” Button"],
+                "u5272" => ["๐Ÿˆน","Japanese “Discount” Button"],
+                "u7121" => ["๐Ÿˆš","Japanese “Free of Charge” Button"],
+                "u7981" => ["๐Ÿˆฒ","Japanese “Prohibited” Button"],
+                "accept" => ["๐Ÿ‰‘","Japanese “Acceptable” Button"],
+                "u7533" => ["๐Ÿˆธ","Japanese “Application” Button"],
+                "u5408" => ["๐Ÿˆด","Japanese “Passing Grade” Button"],
+                "u7a7a" => ["๐Ÿˆณ","Japanese “Vacancy” Button"],
+                "congratulations" =>
+                    ["ใŠ—๏ธ&#xFE0F;","Japanese “Congratulations” Button"],
+                "secret" => ["ใŠ™๏ธ&#xFE0F;","Japanese “Secret” Button"],
+                "u55b6" => ["๐Ÿˆบ","Japanese “Open for Business” Button"],
+                "u6e80" => ["๐Ÿˆต","Japanese “No Vacancy” Button"],
+                "red_circle" => ["๐Ÿ”ด","Red Circle"],
+                "orange_circle" => ["๐ŸŸ ","Orange Circle"],
+                "yellow_circle" => ["๐ŸŸก","Yellow Circle"],
+                "green_circle" => ["๐ŸŸข","Green Circle"],
+                "large_blue_circle" => ["๐Ÿ”ต","Blue Circle"],
+                "purple_circle" => ["๐ŸŸฃ","Purple Circle"],
+                "brown_circle" => ["๐ŸŸค","Brown Circle"],
+                "black_circle" => ["โšซ","Black Circle"],
+                "white_circle" => ["โšช","White Circle"],
+                "red_square" => ["๐ŸŸฅ","Red Square"],
+                "orange_square" => ["๐ŸŸง","Orange Square"],
+                "yellow_square" => ["๐ŸŸจ","Yellow Square"],
+                "green_square" => ["๐ŸŸฉ","Green Square"],
+                "blue_square" => ["๐ŸŸฆ","Blue Square"],
+                "purple_square" => ["๐ŸŸช","Purple Square"],
+                "brown_square" => ["๐ŸŸซ","Brown Square"],
+                "black_large_square" => ["โฌ›","Black Large Square"],
+                "white_large_square" => ["โฌœ","White Large Square"],
+                "black_medium_square" => ["โ—ผ๏ธ&#xFE0F;","Black Medium Square"],
+                "white_medium_square" => ["โ—ป๏ธ&#xFE0F;","White Medium Square"],
+                "black_medium_small_square" =>
+                    ["โ—พ","Black Medium-Small Square"],
+                "white_medium_small_square" =>
+                    ["โ—ฝ","White Medium-Small Square"],
+                "black_small_square" => ["โ–ช๏ธ&#xFE0F;","Black Small Square"],
+                "white_small_square" => ["โ–ซ๏ธ&#xFE0F;","White Small Square"],
+                "large_orange_diamond" => ["๐Ÿ”ถ","Large Orange Diamond"],
+                "large_blue_diamond" => ["๐Ÿ”ท","Large Blue Diamond"],
+                "small_orange_diamond" => ["๐Ÿ”ธ","Small Orange Diamond"],
+                "small_blue_diamond" => ["๐Ÿ”น","Small Blue Diamond"],
+                "small_red_triangle" => ["๐Ÿ”บ","Red Triangle Pointed Up"],
+                "small_red_triangle_down" => ["๐Ÿ”ป","Red Triangle Pointed Down"],
+                "diamond_shape_dot_inside" => ["๐Ÿ’ ","Diamond with a Dot"],
+                "radio_button" => ["๐Ÿ”˜","Radio Button"],
+                "white_square_button" => ["๐Ÿ”ณ","White Square Button"],
+                "black_square_button" => ["๐Ÿ”ฒ","Black Square Button"]
+            ]],
+            "Flags" => ["icon" => "๐Ÿ",
+            "emojis" => ["checkered_flag" => ["๐Ÿ","Chequered Flag"],
+                "triangular_flag_on_post" => ["๐Ÿšฉ","Triangular Flag"],
+                "crossed_flags" => ["๐ŸŽŒ","Crossed Flags"],
+                "black_flag" => ["๐Ÿด","Black Flag"],
+                "white_flag" => ["๐Ÿณ๏ธ&#xFE0F;","White Flag"],
+                "rainbow_flag" => ["๐Ÿณ๏ธ‍๐ŸŒˆ&#xFE0F;","Rainbow Flag"],
+                "transgender_flag" => ["๐Ÿณ๏ธ‍โšง๏ธ&#xFE0F;","Transgender Flag"],
+                "pirate_flag" => ["๐Ÿด‍โ˜ ๏ธ&#xFE0F;","Pirate Flag"],
+                "ascension_island" => ["๐Ÿ‡ฆ๐Ÿ‡จ","Flag: Ascension Island"],
+                "andorra" => ["๐Ÿ‡ฆ๐Ÿ‡ฉ","Flag: Andorra"],
+                "united_arab_emirates" => ["๐Ÿ‡ฆ๐Ÿ‡ช","Flag: United Arab Emirates"],
+                "afghanistan" => ["๐Ÿ‡ฆ๐Ÿ‡ซ","Flag: Afghanistan"],
+                "antigua_barbuda" => ["๐Ÿ‡ฆ๐Ÿ‡ฌ","Flag: Antigua & Barbuda"],
+                "anguilla" => ["๐Ÿ‡ฆ๐Ÿ‡ฎ","Flag: Anguilla"],
+                "albania" => ["๐Ÿ‡ฆ๐Ÿ‡ฑ","Flag: Albania"],
+                "armenia" => ["๐Ÿ‡ฆ๐Ÿ‡ฒ","Flag: Armenia"],
+                "angola" => ["๐Ÿ‡ฆ๐Ÿ‡ด","Flag: Angola"],
+                "antarctica" => ["๐Ÿ‡ฆ๐Ÿ‡ถ","Flag: Antarctica"],
+                "argentina" => ["๐Ÿ‡ฆ๐Ÿ‡ท","Flag: Argentina"],
+                "american_samoa" => ["๐Ÿ‡ฆ๐Ÿ‡ธ","Flag: American Samoa"],
+                "austria" => ["๐Ÿ‡ฆ๐Ÿ‡น","Flag: Austria"],
+                "australia" => ["๐Ÿ‡ฆ๐Ÿ‡บ","Flag: Australia"],
+                "aruba" => ["๐Ÿ‡ฆ๐Ÿ‡ผ","Flag: Aruba"],
+                "aland_islands" => ["๐Ÿ‡ฆ๐Ÿ‡ฝ","Flag: Åland Islands"],
+                "azerbaijan" => ["๐Ÿ‡ฆ๐Ÿ‡ฟ","Flag: Azerbaijan"],
+                "bosnia_herzegovina" =>
+                    ["๐Ÿ‡ง๐Ÿ‡ฆ","Flag: Bosnia & Herzegovina"],
+                "barbados" => ["๐Ÿ‡ง๐Ÿ‡ง","Flag: Barbados"],
+                "bangladesh" => ["๐Ÿ‡ง๐Ÿ‡ฉ","Flag: Bangladesh"],
+                "belgium" => ["๐Ÿ‡ง๐Ÿ‡ช","Flag: Belgium"],
+                "burkina_faso" => ["๐Ÿ‡ง๐Ÿ‡ซ","Flag: Burkina Faso"],
+                "bulgaria" => ["๐Ÿ‡ง๐Ÿ‡ฌ","Flag: Bulgaria"],
+                "bahrain" => ["๐Ÿ‡ง๐Ÿ‡ญ","Flag: Bahrain"],
+                "burundi" => ["๐Ÿ‡ง๐Ÿ‡ฎ","Flag: Burundi"],
+                "benin" => ["๐Ÿ‡ง๐Ÿ‡ฏ","Flag: Benin"],
+                "st_barthelemy" => ["๐Ÿ‡ง๐Ÿ‡ฑ","Flag: St. Barthélemy"],
+                "bermuda" => ["๐Ÿ‡ง๐Ÿ‡ฒ","Flag: Bermuda"],
+                "brunei" => ["๐Ÿ‡ง๐Ÿ‡ณ","Flag: Brunei"],
+                "bolivia" => ["๐Ÿ‡ง๐Ÿ‡ด","Flag: Bolivia"],
+                "caribbean_netherlands" =>
+                    ["๐Ÿ‡ง๐Ÿ‡ถ","Flag: Caribbean Netherlands"],
+                "brazil" => ["๐Ÿ‡ง๐Ÿ‡ท","Flag: Brazil"],
+                "bahamas" => ["๐Ÿ‡ง๐Ÿ‡ธ","Flag: Bahamas"],
+                "bhutan" => ["๐Ÿ‡ง๐Ÿ‡น","Flag: Bhutan"],
+                "bouvet_island" => ["๐Ÿ‡ง๐Ÿ‡ป","Flag: Bouvet Island"],
+                "botswana" => ["๐Ÿ‡ง๐Ÿ‡ผ","Flag: Botswana"],
+                "belarus" => ["๐Ÿ‡ง๐Ÿ‡พ","Flag: Belarus"],
+                "belize" => ["๐Ÿ‡ง๐Ÿ‡ฟ","Flag: Belize"],
+                "canada" => ["๐Ÿ‡จ๐Ÿ‡ฆ","Flag: Canada"],
+                "cocos_islands" => ["๐Ÿ‡จ๐Ÿ‡จ","Flag: Cocos (Keeling) Islands"],
+                "congo_kinshasa" => ["๐Ÿ‡จ๐Ÿ‡ฉ","Flag: Congo - Kinshasa"],
+                "central_african_republic" =>
+                    ["๐Ÿ‡จ๐Ÿ‡ซ","Flag: Central African Republic"],
+                "congo_kinshasa" => ["๐Ÿ‡จ๐Ÿ‡ฌ","Flag: Congo - Brazzaville"],
+                "central_african_republic" => ["๐Ÿ‡จ๐Ÿ‡ญ","Flag: Switzerland"],
+                "congo_brazzaville" => ["๐Ÿ‡จ๐Ÿ‡ฎ","Flag: Côte d’Ivoire"],
+                "cook_islands" => ["๐Ÿ‡จ๐Ÿ‡ฐ","Flag: Cook Islands"],
+                "chile" => ["๐Ÿ‡จ๐Ÿ‡ฑ","Flag: Chile"],
+                "cameroon" => ["๐Ÿ‡จ๐Ÿ‡ฒ","Flag: Cameroon"],
+                "cn" => ["๐Ÿ‡จ๐Ÿ‡ณ","Flag: China"],
+                "colombia" => ["๐Ÿ‡จ๐Ÿ‡ด","Flag: Colombia"],
+                "clipperton_island" => ["๐Ÿ‡จ๐Ÿ‡ต","Flag: Clipperton Island"],
+                "costa_rica" => ["๐Ÿ‡จ๐Ÿ‡ท","Flag: Costa Rica"],
+                "cuba" => ["๐Ÿ‡จ๐Ÿ‡บ","Flag: Cuba"],
+                "cape_verde" => ["๐Ÿ‡จ๐Ÿ‡ป","Flag: Cape Verde"],
+                "curacao" => ["๐Ÿ‡จ๐Ÿ‡ผ","Flag: Curaçao"],
+                "christmas_island" => ["๐Ÿ‡จ๐Ÿ‡ฝ","Flag: Christmas Island"],
+                "cyprus" => ["๐Ÿ‡จ๐Ÿ‡พ","Flag: Cyprus"],
+                "czech" => ["๐Ÿ‡จ๐Ÿ‡ฟ","Flag: Czechia"],
+                "de" => ["๐Ÿ‡ฉ๐Ÿ‡ช","Flag: Germany"],
+                "diego_garcia" => ["๐Ÿ‡ฉ๐Ÿ‡ฌ","Flag: Diego Garcia"],
+                "djibouti" => ["๐Ÿ‡ฉ๐Ÿ‡ฏ","Flag: Djibouti"],
+                "denmark" => ["๐Ÿ‡ฉ๐Ÿ‡ฐ","Flag: Denmark"],
+                "dominica" => ["๐Ÿ‡ฉ๐Ÿ‡ฒ","Flag: Dominica"],
+                "dominican_republic" => ["๐Ÿ‡ฉ๐Ÿ‡ด","Flag: Dominican Republic"],
+                "algeria" => ["๐Ÿ‡ฉ๐Ÿ‡ฟ","Flag: Algeria"],
+                "ceuta_melilla" => ["๐Ÿ‡ช๐Ÿ‡ฆ","Flag: Ceuta & Melilla"],
+                "ecuador" => ["๐Ÿ‡ช๐Ÿ‡จ","Flag: Ecuador"],
+                "estonia" => ["๐Ÿ‡ช๐Ÿ‡ช","Flag: Estonia"],
+                "egypt" => ["๐Ÿ‡ช๐Ÿ‡ฌ","Flag: Egypt"],
+                "western_sahara" => ["๐Ÿ‡ช๐Ÿ‡ญ","Flag: Western Sahara"],
+                "eritrea" => ["๐Ÿ‡ช๐Ÿ‡ท","Flag: Eritrea"],
+                "es" => ["๐Ÿ‡ช๐Ÿ‡ธ","Flag: Spain"],
+                "ethiopia" => ["๐Ÿ‡ช๐Ÿ‡น","Flag: Ethiopia"],
+                "eu" => ["๐Ÿ‡ช๐Ÿ‡บ","Flag: European Union"],
+                "finland" => ["๐Ÿ‡ซ๐Ÿ‡ฎ","Flag: Finland"],
+                "fiji" => ["๐Ÿ‡ซ๐Ÿ‡ฏ","Flag: Fiji"],
+                "falkland_islands" => ["๐Ÿ‡ซ๐Ÿ‡ฐ","Flag: Falkland Islands"],
+                "micronesia" => ["๐Ÿ‡ซ๐Ÿ‡ฒ","Flag: Micronesia"],
+                "faroe_islands" => ["๐Ÿ‡ซ๐Ÿ‡ด","Flag: Faroe Islands"],
+                "fr" => ["๐Ÿ‡ซ๐Ÿ‡ท","Flag: France"],
+                "gabon" => ["๐Ÿ‡ฌ๐Ÿ‡ฆ","Flag: Gabon"],
+                "gb" => ["๐Ÿ‡ฌ๐Ÿ‡ง","Flag: United Kingdom"],
+                "grenada" => ["๐Ÿ‡ฌ๐Ÿ‡ฉ","Flag: Grenada"],
+                "georgia" => ["๐Ÿ‡ฌ๐Ÿ‡ช","Flag: Georgia"],
+                "french_guiana" => ["๐Ÿ‡ฌ๐Ÿ‡ซ","Flag: French Guiana"],
+                "guernsey" => ["๐Ÿ‡ฌ๐Ÿ‡ฌ","Flag: Guernsey"],
+                "ghana" => ["๐Ÿ‡ฌ๐Ÿ‡ญ","Flag: Ghana"],
+                "gibraltar" => ["๐Ÿ‡ฌ๐Ÿ‡ฎ","Flag: Gibraltar"],
+                "greenland" => ["๐Ÿ‡ฌ๐Ÿ‡ฑ","Flag: Greenland"],
+                "gambia" => ["๐Ÿ‡ฌ๐Ÿ‡ฒ","Flag: Gambia"],
+                "guinea" => ["๐Ÿ‡ฌ๐Ÿ‡ณ","Flag: Guinea"],
+                "guadeloupe" => ["๐Ÿ‡ฌ๐Ÿ‡ต","Flag: Guadeloupe"],
+                "equatorial_guinea" => ["๐Ÿ‡ฌ๐Ÿ‡ถ","Flag: Equatorial Guinea"],
+                "greece" => ["๐Ÿ‡ฌ๐Ÿ‡ท","Flag: Greece"],
+                "south_georgia_south_sandwich_islands" =>
+                    ["๐Ÿ‡ฌ๐Ÿ‡ธ","Flag: South Georgia & South Sandwich Islands"],
+                "guatemala" => ["๐Ÿ‡ฌ๐Ÿ‡น","Flag: Guatemala"],
+                "guam" => ["๐Ÿ‡ฌ๐Ÿ‡บ","Flag: Guam"],
+                "guinea_bissau" => ["๐Ÿ‡ฌ๐Ÿ‡ผ","Flag: Guinea-Bissau"],
+                "guyana" => ["๐Ÿ‡ฌ๐Ÿ‡พ","Flag: Guyana"],
+                "hong_kong" => ["๐Ÿ‡ญ๐Ÿ‡ฐ","Flag: Hong Kong SAR China"],
+                "heard_mcdonald_islands" =>
+                    ["๐Ÿ‡ญ๐Ÿ‡ฒ","Flag: Heard & McDonald Islands"],
+                "honduras" => ["๐Ÿ‡ญ๐Ÿ‡ณ","Flag: Honduras"],
+                "croatia" => ["๐Ÿ‡ญ๐Ÿ‡ท","Flag: Croatia"],
+                "haiti" => ["๐Ÿ‡ญ๐Ÿ‡น","Flag: Haiti"],
+                "hungary" => ["๐Ÿ‡ญ๐Ÿ‡บ","Flag: Hungary"],
+                "canary_islands" => ["๐Ÿ‡ฎ๐Ÿ‡จ","Flag: Canary Islands"],
+                "indonesia" => ["๐Ÿ‡ฎ๐Ÿ‡ฉ","Flag: Indonesia"],
+                "ireland" => ["๐Ÿ‡ฎ๐Ÿ‡ช","Flag: Ireland"],
+                "israel" => ["๐Ÿ‡ฎ๐Ÿ‡ฑ","Flag: Israel"],
+                "isle_of_man" => ["๐Ÿ‡ฎ๐Ÿ‡ฒ","Flag: Isle of Man"],
+                "india" => ["๐Ÿ‡ฎ๐Ÿ‡ณ","Flag: India"],
+                "british_indian_ocean_territory" =>
+                    ["๐Ÿ‡ฎ๐Ÿ‡ด","Flag: British Indian Ocean Territory"],
+                "iraq" => ["๐Ÿ‡ฎ๐Ÿ‡ถ","Flag: Iraq"],
+                "iran" => ["๐Ÿ‡ฎ๐Ÿ‡ท","Flag: Iran"],
+                "iceland" => ["๐Ÿ‡ฎ๐Ÿ‡ธ","Flag: Iceland"],
+                "it" => ["๐Ÿ‡ฎ๐Ÿ‡น","Flag: Italy"],
+                "jersey" => ["๐Ÿ‡ฏ๐Ÿ‡ช","Flag: Jersey"],
+                "jamaica" => ["๐Ÿ‡ฏ๐Ÿ‡ฒ","Flag: Jamaica"],
+                "jordan" => ["๐Ÿ‡ฏ๐Ÿ‡ด","Flag: Jordan"],
+                "jp" => ["๐Ÿ‡ฏ๐Ÿ‡ต","Flag: Japan"],
+                "kenya" => ["๐Ÿ‡ฐ๐Ÿ‡ช","Flag: Kenya"],
+                "kyrgyzstan" => ["๐Ÿ‡ฐ๐Ÿ‡ฌ","Flag: Kyrgyzstan"],
+                "cambodia" => ["๐Ÿ‡ฐ๐Ÿ‡ญ","Flag: Cambodia"],
+                "kiribati" => ["๐Ÿ‡ฐ๐Ÿ‡ฎ","Flag: Kiribati"],
+                "comoros" => ["๐Ÿ‡ฐ๐Ÿ‡ฒ","Flag: Comoros"],
+                "st_kitts_nevis" => ["๐Ÿ‡ฐ๐Ÿ‡ณ","Flag: St. Kitts & Nevis"],
+                "north_korea" => ["๐Ÿ‡ฐ๐Ÿ‡ต","Flag: North Korea"],
+                "kr" => ["๐Ÿ‡ฐ๐Ÿ‡ท","Flag: South Korea"],
+                "kuwait" => ["๐Ÿ‡ฐ๐Ÿ‡ผ","Flag: Kuwait"],
+                "cayman_islands" => ["๐Ÿ‡ฐ๐Ÿ‡พ","Flag: Cayman Islands"],
+                "kazakhstan" => ["๐Ÿ‡ฐ๐Ÿ‡ฟ","Flag: Kazakhstan"],
+                "laos" => ["๐Ÿ‡ฑ๐Ÿ‡ฆ","Flag: Laos"],
+                "lebanon" => ["๐Ÿ‡ฑ๐Ÿ‡ง","Flag: Lebanon"],
+                "st_lucia" => ["๐Ÿ‡ฑ๐Ÿ‡จ","Flag: St. Lucia"],
+                "liechtenstein" => ["๐Ÿ‡ฑ๐Ÿ‡ฎ","Flag: Liechtenstein"],
+                "sri_lanka" => ["๐Ÿ‡ฑ๐Ÿ‡ฐ","Flag: Sri Lanka"],
+                "liberia" => ["๐Ÿ‡ฑ๐Ÿ‡ท","Flag: Liberia"],
+                "lesotho" => ["๐Ÿ‡ฑ๐Ÿ‡ธ","Flag: Lesotho"],
+                "lithuania" => ["๐Ÿ‡ฑ๐Ÿ‡น","Flag: Lithuania"],
+                "luxembourg" => ["๐Ÿ‡ฑ๐Ÿ‡บ","Flag: Luxembourg"],
+                "latvia" => ["๐Ÿ‡ฑ๐Ÿ‡ป","Flag: Latvia"],
+                "libya" => ["๐Ÿ‡ฑ๐Ÿ‡พ","Flag: Libya"],
+                "morocco" => ["๐Ÿ‡ฒ๐Ÿ‡ฆ","Flag: Morocco"],
+                "monaco" => ["๐Ÿ‡ฒ๐Ÿ‡จ","Flag: Monaco"],
+                "moldova" => ["๐Ÿ‡ฒ๐Ÿ‡ฉ","Flag: Moldova"],
+                "montenegro" => ["๐Ÿ‡ฒ๐Ÿ‡ช","Flag: Montenegro"],
+                "st_martin" => ["๐Ÿ‡ฒ๐Ÿ‡ซ","Flag: St. Martin"],
+                "madagascar" => ["๐Ÿ‡ฒ๐Ÿ‡ฌ","Flag: Madagascar"],
+                "marshall_islands" => ["๐Ÿ‡ฒ๐Ÿ‡ญ","Flag: Marshall Islands"],
+                "macedonia" => ["๐Ÿ‡ฒ๐Ÿ‡ฐ","Flag: North Macedonia"],
+                "mali" => ["๐Ÿ‡ฒ๐Ÿ‡ฑ","Flag: Mali"],
+                "myanmar" => ["๐Ÿ‡ฒ๐Ÿ‡ฒ","Flag: Myanmar (Burma)"],
+                "mongolia" => ["๐Ÿ‡ฒ๐Ÿ‡ณ","Flag: Mongolia"],
+                "macau" => ["๐Ÿ‡ฒ๐Ÿ‡ด","Flag: Macao Sar China"],
+                "northern_mariana_islands" =>
+                    ["๐Ÿ‡ฒ๐Ÿ‡ต","Flag: Northern Mariana Islands"],
+                "martinique" => ["๐Ÿ‡ฒ๐Ÿ‡ถ","Flag: Martinique"],
+                "mauritania" => ["๐Ÿ‡ฒ๐Ÿ‡ท","Flag: Mauritania"],
+                "montserrat" => ["๐Ÿ‡ฒ๐Ÿ‡ธ","Flag: Montserrat"],
+                "malta" => ["๐Ÿ‡ฒ๐Ÿ‡น","Flag: Malta"],
+                "mauritius" => ["๐Ÿ‡ฒ๐Ÿ‡บ","Flag: Mauritius"],
+                "maldives" => ["๐Ÿ‡ฒ๐Ÿ‡ป","Flag: Maldives"],
+                "malawi" => ["๐Ÿ‡ฒ๐Ÿ‡ผ","Flag: Malawi"],
+                "mexico" => ["๐Ÿ‡ฒ๐Ÿ‡ฝ","Flag: Mexico"],
+                "malaysia" => ["๐Ÿ‡ฒ๐Ÿ‡พ","Flag: Malaysia"],
+                "mozambique" => ["๐Ÿ‡ฒ๐Ÿ‡ฟ","Flag: Mozambique"],
+                "namibia" => ["๐Ÿ‡ณ๐Ÿ‡ฆ","Flag: Namibia"],
+                "new_caledonia" => ["๐Ÿ‡ณ๐Ÿ‡จ","Flag: New Caledonia"],
+                "niger" => ["๐Ÿ‡ณ๐Ÿ‡ช","Flag: Niger"],
+                "norfolk_island" => ["๐Ÿ‡ณ๐Ÿ‡ซ","Flag: Norfolk Island"],
+                "nigeria" => ["๐Ÿ‡ณ๐Ÿ‡ฌ","Flag: Nigeria"],
+                "nicaragua" => ["๐Ÿ‡ณ๐Ÿ‡ฎ","Flag: Nicaragua"],
+                "netherlands" => ["๐Ÿ‡ณ๐Ÿ‡ฑ","Flag: Netherlands"],
+                "norway" => ["๐Ÿ‡ณ๐Ÿ‡ด","Flag: Norway"],
+                "nepal" => ["๐Ÿ‡ณ๐Ÿ‡ต","Flag: Nepal"],
+                "nauru" => ["๐Ÿ‡ณ๐Ÿ‡ท","Flag: Nauru"],
+                "niue" => ["๐Ÿ‡ณ๐Ÿ‡บ","Flag: Niue"],
+                "new_zealand" => ["๐Ÿ‡ณ๐Ÿ‡ฟ","Flag: New Zealand"],
+                "oman" => ["๐Ÿ‡ด๐Ÿ‡ฒ","Flag: Oman"],
+                "panama" => ["๐Ÿ‡ต๐Ÿ‡ฆ","Flag: Panama"],
+                "peru" => ["๐Ÿ‡ต๐Ÿ‡ช","Flag: Peru"],
+                "french_polynesia" => ["๐Ÿ‡ต๐Ÿ‡ซ","Flag: French Polynesia"],
+                "papua_new_guinea" => ["๐Ÿ‡ต๐Ÿ‡ฌ","Flag: Papua New Guinea"],
+                "philippines" => ["๐Ÿ‡ต๐Ÿ‡ญ","Flag: Philippines"],
+                "pakistan" => ["๐Ÿ‡ต๐Ÿ‡ฐ","Flag: Pakistan"],
+                "poland" => ["๐Ÿ‡ต๐Ÿ‡ฑ","Flag: Poland"],
+                "st_pierre_miquelon" => ["๐Ÿ‡ต๐Ÿ‡ฒ","Flag: St. Pierre & Miquelon"],
+                "pitcairn_islands" => ["๐Ÿ‡ต๐Ÿ‡ณ","Flag: Pitcairn Islands"],
+                "puerto_rico" => ["๐Ÿ‡ต๐Ÿ‡ท","Flag: Puerto Rico"],
+                "palestinian_territories" =>
+                    ["๐Ÿ‡ต๐Ÿ‡ธ","Flag: Palestinian Territories"],
+                "portugal" => ["๐Ÿ‡ต๐Ÿ‡น","Flag: Portugal"],
+                "palau" => ["๐Ÿ‡ต๐Ÿ‡ผ","Flag: Palau"],
+                "paraguay" => ["๐Ÿ‡ต๐Ÿ‡พ","Flag: Paraguay"],
+                "qatar" => ["๐Ÿ‡ถ๐Ÿ‡ฆ","Flag: Qatar"],
+                "reunion" => ["๐Ÿ‡ท๐Ÿ‡ช","Flag: Réunion"],
+                "romania" => ["๐Ÿ‡ท๐Ÿ‡ด","Flag: Romania"],
+                "serbia" => ["๐Ÿ‡ท๐Ÿ‡ธ","Flag: Serbia"],
+                "ru" => ["๐Ÿ‡ท๐Ÿ‡บ","Flag: Russia"],
+                "rwanda" => ["๐Ÿ‡ท๐Ÿ‡ผ","Flag: Rwanda"],
+                "saudi_arabia" => ["๐Ÿ‡ธ๐Ÿ‡ฆ","Flag: Saudi Arabia"],
+                "solomon_islands" => ["๐Ÿ‡ธ๐Ÿ‡ง","Flag: Solomon Islands"],
+                "seychelles" => ["๐Ÿ‡ธ๐Ÿ‡จ","Flag: Seychelles"],
+                "sudan" => ["๐Ÿ‡ธ๐Ÿ‡ฉ","Flag: Sudan"],
+                "sweden" => ["๐Ÿ‡ธ๐Ÿ‡ช","Flag: Sweden"],
+                "singapore" => ["๐Ÿ‡ธ๐Ÿ‡ฌ","Flag: Singapore"],
+                "st_helena" => ["๐Ÿ‡ธ๐Ÿ‡ญ","Flag: St. Helena"],
+                "slovenia" => ["๐Ÿ‡ธ๐Ÿ‡ฎ","Flag: Slovenia"],
+                "svalbard_jan_mayen" => ["๐Ÿ‡ธ๐Ÿ‡ฏ","Flag: Svalbard & Jan Mayen"],
+                "slovakia" => ["๐Ÿ‡ธ๐Ÿ‡ฐ","Flag: Slovakia"],
+                "sierra_leone" => ["๐Ÿ‡ธ๐Ÿ‡ฑ","Flag: Sierra Leone"],
+                "san_marino" => ["๐Ÿ‡ธ๐Ÿ‡ฒ","Flag: San Marino"],
+                "senegal" => ["๐Ÿ‡ธ๐Ÿ‡ณ","Flag: Senegal"],
+                "somalia" => ["๐Ÿ‡ธ๐Ÿ‡ด","Flag: Somalia"],
+                "suriname" => ["๐Ÿ‡ธ๐Ÿ‡ท","Flag: Suriname"],
+                "south_sudan" => ["๐Ÿ‡ธ๐Ÿ‡ธ","Flag: South Sudan"],
+                "sao_tome_principe" => ["๐Ÿ‡ธ๐Ÿ‡น","Flag: São Tomé & Príncipe"],
+                "el_salvador" => ["๐Ÿ‡ธ๐Ÿ‡ป","Flag: El Salvador"],
+                "sint_maarten" => ["๐Ÿ‡ธ๐Ÿ‡ฝ","Flag: Sint Maarten"],
+                "syria" => ["๐Ÿ‡ธ๐Ÿ‡พ","Flag: Syria"],
+                "swaziland" => ["๐Ÿ‡ธ๐Ÿ‡ฟ","Flag: Eswatini"],
+                "tristan_da_cunha" => ["๐Ÿ‡น๐Ÿ‡ฆ","Flag: Tristan Da Cunha"],
+                "turks_caicos_islands" => ["๐Ÿ‡น๐Ÿ‡จ","Flag: Turks & Caicos Islands"],
+                "chad" => ["๐Ÿ‡น๐Ÿ‡ฉ","Flag: Chad"],
+                "french_southern_territories" =>
+                    ["๐Ÿ‡น๐Ÿ‡ซ","Flag: French Southern Territories"],
+                "togo" => ["๐Ÿ‡น๐Ÿ‡ฌ","Flag: Togo"],
+                "thailand" => ["๐Ÿ‡น๐Ÿ‡ญ","Flag: Thailand"],
+                "tajikistan" => ["๐Ÿ‡น๐Ÿ‡ฏ","Flag: Tajikistan"],
+                "tokelau" => ["๐Ÿ‡น๐Ÿ‡ฐ","Flag: Tokelau"],
+                "timor_leste" => ["๐Ÿ‡น๐Ÿ‡ฑ","Flag: Timor-Leste"],
+                "turkmenistan" => ["๐Ÿ‡น๐Ÿ‡ฒ","Flag: Turkmenistan"],
+                "tunisia" => ["๐Ÿ‡น๐Ÿ‡ณ","Flag: Tunisia"],
+                "tonga" => ["๐Ÿ‡น๐Ÿ‡ด","Flag: Tonga"],
+                "tr" => ["๐Ÿ‡น๐Ÿ‡ท","Flag: Turkey"],
+                "trinidad_tobago" => ["๐Ÿ‡น๐Ÿ‡น","Flag: Trinidad & Tobago"],
+                "tuvalu" => ["๐Ÿ‡น๐Ÿ‡ป","Flag: Tuvalu"],
+                "taiwan" => ["๐Ÿ‡น๐Ÿ‡ผ","Flag: Taiwan"],
+                "tanzania" => ["๐Ÿ‡น๐Ÿ‡ฟ","Flag: Tanzania"],
+                "ukraine" => ["๐Ÿ‡บ๐Ÿ‡ฆ","Flag: Ukraine"],
+                "uganda" => ["๐Ÿ‡บ๐Ÿ‡ฌ","Flag: Uganda"],
+                "us_outlying_islands" => ["๐Ÿ‡บ๐Ÿ‡ฒ","Flag: U.S. Outlying Islands"],
+                "united_nations" => ["๐Ÿ‡บ๐Ÿ‡ณ","Flag: United Nations"],
+                "us" => ["๐Ÿ‡บ๐Ÿ‡ธ","Flag: United States"],
+                "uruguay" => ["๐Ÿ‡บ๐Ÿ‡พ","Flag: Uruguay"],
+                "uzbekistan" => ["๐Ÿ‡บ๐Ÿ‡ฟ","Flag: Uzbekistan"],
+                "vatican_city" => ["๐Ÿ‡ป๐Ÿ‡ฆ","Flag: Vatican City"],
+                "st_vincent_grenadines" =>
+                    ["๐Ÿ‡ป๐Ÿ‡จ","Flag: St. Vincent & Grenadines"],
+                "venezuela" => ["๐Ÿ‡ป๐Ÿ‡ช","Flag: Venezuela"],
+                "british_virgin_islands" =>
+                    ["๐Ÿ‡ป๐Ÿ‡ฌ","Flag: British Virgin Islands"],
+                "us_virgin_islands" => ["๐Ÿ‡ป๐Ÿ‡ฎ","Flag: U.S. Virgin Islands"],
+                "vietnam" => ["๐Ÿ‡ป๐Ÿ‡ณ","Flag: Vietnam"],
+                "vanuatu" => ["๐Ÿ‡ป๐Ÿ‡บ","Flag: Vanuatu"],
+                "wallis_futuna" => ["๐Ÿ‡ผ๐Ÿ‡ซ","Flag: Wallis & Futuna"],
+                "samoa" => ["๐Ÿ‡ผ๐Ÿ‡ธ","Flag: Samoa"],
+                "kosovo" => ["๐Ÿ‡ฝ๐Ÿ‡ฐ","Flag: Kosovo"],
+                "yemen" => ["๐Ÿ‡พ๐Ÿ‡ช","Flag: Yemen"],
+                "mayotte" => ["๐Ÿ‡พ๐Ÿ‡น","Flag: Mayotte"],
+                "south_africa" => ["๐Ÿ‡ฟ๐Ÿ‡ฆ","Flag: South Africa"],
+                "zambia" => ["๐Ÿ‡ฟ๐Ÿ‡ฒ","Flag: Zambia"],
+                "zimbabwe" => ["๐Ÿ‡ฟ๐Ÿ‡ผ","Flag: Zimbabwe"],
+                "england" => ["๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ","Flag: England"],
+                "scotland" => ["๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ","Flag: Scotland"],
+                "wales" => ["๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ","Flag: Wales"],
+                "us_tx" => ["๐Ÿด๓ ต๓ ณ๓ ด๓ ธ๓ ฟ","Flag for Texas (US-TX)"]
+            ]]
+        ];
+    }
+    /**
+     * Draws a div containing emojis
+     *
+     */
+    public function render()
+    {
+        $active_emoji_group = true;
+        foreach ($this->emoji_groups as $group => $group_data) {
+            $class = null;
+            if ($active_emoji_group == true) {
+                $active_emoji_group = false;
+                $class = "emoji-group-container active-emoji-group";
+            } else {
+                $class = "emoji-group-container";
+            }
+            ?>
+            <div id="emoji-group-<?=$group?>" class="<?= $class ?>">
+                <p id="emoji-group-name"><?=$group?></p>
+                <div id="emoji-container" class="emoji-container">
+            <?php
+            $emojis = $group_data["emojis"];
+            foreach ($emojis as $shortcut => $emoji_data) {
+                $aria_label = $emoji_data[1]." | Shortcut: [".$shortcut."]";
+            ?>
+                    <span id="<?=$shortcut?>-emoji" class="emoji"
+                        aria-label="<?=$aria_label?>"
+                        onclick="insertEmoji('<?=$emoji_data[0]?>')">
+                        <?=$emoji_data[0]?>
+                    </span> <?php
+            } ?>
+                </div>
+            </div><?php
+        } ?>
+        <div id="emoji-group-navigator" class="emoji-group-navigator"><?php
+        $selected_emoji_tab = true;
+        foreach ($this->emoji_groups as $group => $group_data) {
+            $class = null;
+            if ($selected_emoji_tab == true) {
+                $selected_emoji_tab = false;
+                $class = "emoji-group-tab active-emoji-group-tab";
+            } else {
+                $class = "emoji-group-tab";
+            }
+            $tab_icon = $group_data['icon'];?>
+            <span id="<?= $group ?> symbol" class="<?=$class?>"
+                aria-label="<?= $group; ?>"
+                onclick="toggleEmojiGroup(this, '<?= $group ?>',
+                    '<?= count($this->emoji_groups) ?>')">
+                <?= $tab_icon ?>
+            </span>
+        <?php
+        } ?>
+        </div><?php
+    }
+}
ViewGit