TesterTV_Emoji

Get emojis in few clicks

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         TesterTV_Emoji
// @namespace    http://tampermonkey.net/
// @version      2024.07.17
// @description  Get emojis in few clicks
// @license      GPL version 3 or any later version
// @author       TesterTV
// @match        *://*/*
// @grant        GM_setClipboard
// ==/UserScript==

(function() {

    // Check if current window isn't an iframe
    var isInIframe = window === window.top;
    if (isInIframe) {

        // Create the main button
        const mainButton = document.createElement('button');
        mainButton.innerHTML = '😛';
        mainButton.style.position = 'fixed';
        mainButton.style.top = '10px';
        mainButton.style.right = '10px';
        mainButton.style.backgroundColor = 'white'; // White background color
        mainButton.style.width = '30px';
        mainButton.style.height = '20px';
        mainButton.style.border = '0px solid white';
        mainButton.style.borderRadius = '4px';
        mainButton.style.zIndex = '10000'; // Ensure it is the topmost element
        document.body.appendChild(mainButton);

        // List of emojis with tags for each tab
        const emojiTabs = [
            [
                { "emoji": "😀", "tags": ["happy", "smile"] },
                { "emoji": "😃", "tags": ["happy", "smile"] },
                { "emoji": "😄", "tags": ["happy", "smile"] },
                { "emoji": "😁", "tags": ["happy", "grin", "smile"] },
                { "emoji": "😆", "tags": ["happy", "laugh", "smile"] },
                { "emoji": "🥹", "tags": ["grateful", "smile", "tears"] },
                { "emoji": "😅", "tags": ["happy", "sweat", "relief"] },
                { "emoji": "😂", "tags": ["laugh", "tears", "funny"] },
                { "emoji": "🤣", "tags": ["laugh", "rolling", "funny"] },
                { "emoji": "🥲", "tags": ["smile", "tear", "bittersweet"] },
                { "emoji": "☺️", "tags": ["happy", "smile", "blush"] },
                { "emoji": "😊", "tags": ["happy", "smile", "blush"] },
                { "emoji": "😇", "tags": ["angel", "praying", "god", "religion", "innocent", "smile"] },
                { "emoji": "🙂", "tags": ["happy", "smile"] },
                { "emoji": "🙃", "tags": ["upside-down", "silly", "fun"] },
                { "emoji": "😉", "tags": ["wink", "happy", "smile"] },
                { "emoji": "😌", "tags": ["relieved", "smile", "calm"] },
                { "emoji": "😍", "tags": ["love", "heart", "eyes"] },
                { "emoji": "🥰", "tags": ["love", "heart", "smile"] },
                { "emoji": "😘", "tags": ["kiss", "heart", "love"] },
                { "emoji": "😗", "tags": ["kiss", "smile"] },
                { "emoji": "😙", "tags": ["kiss", "smile"] },
                { "emoji": "😚", "tags": ["kiss", "blush", "smile"] },
                { "emoji": "😋", "tags": ["tongue", "yummy", "smile"] },
                { "emoji": "😛", "tags": ["tongue", "silly", "fun"] },
                { "emoji": "😝", "tags": ["tongue", "closed eyes", "silly"] },
                { "emoji": "😜", "tags": ["wink", "tongue", "silly"] },
                { "emoji": "🤪", "tags": ["crazy", "tongue", "silly", "fun"] },
                { "emoji": "🤨", "tags": ["raised eyebrow", "doubt", "skeptical", "?"] },
                { "emoji": "🧐", "tags": ["monocle", "serious", "focused", "?"] },
                { "emoji": "🤓", "tags": ["nerd", "glasses", "geek"] },
                { "emoji": "😎", "tags": ["cool", "sunglasses", "smile"] },
                { "emoji": "🥸", "tags": ["disguise", "silly", "fun"] },
                { "emoji": "🤩", "tags": ["starry eyes", "amazed", "excited"] },
                { "emoji": "🥳", "tags": ["party", "celebration", "birthday", "fun"] },
                { "emoji": "😏", "tags": ["smirk", "sly", "confident"] },
                { "emoji": "😒", "tags": ["unamused", "displeased", "bored"] },
                { "emoji": "😞", "tags": ["sad", "disappointed"] },
                { "emoji": "😔", "tags": ["sad", "pensive"] },
                { "emoji": "😟", "tags": ["worried", "concerned"] },
                { "emoji": "😕", "tags": ["confused", "unsure"] },
                { "emoji": "🙁", "tags": ["frowning", "sad"] },
                { "emoji": "☹️", "tags": ["frowning", "sad"] },
                { "emoji": "😣", "tags": ["persevering", "struggling"] },
                { "emoji": "😖", "tags": ["confounded", "struggling"] },
                { "emoji": "😫", "tags": ["tired", "weary"] },
                { "emoji": "😩", "tags": ["tired", "weary"] },
                { "emoji": "🥺", "tags": ["pleading", "sad", "puppy eyes"] },
                { "emoji": "😢", "tags": ["crying", "sad", "tear"] },
                { "emoji": "😭", "tags": ["crying", "sad", "sobbing"] },
                { "emoji": "😤", "tags": ["triumph", "angry", "steam"] },
                { "emoji": "😠", "tags": ["angry", "mad"] },
                { "emoji": "😡", "tags": ["angry", "mad"] },
                { "emoji": "🤬", "tags": ["cursing", "angry"] },
                { "emoji": "🤯", "tags": ["exploding head", "mind blown"] },
                { "emoji": "😳", "tags": ["flushed", "shocked"] },
                { "emoji": "🥵", "tags": ["hot", "overheated", "heat"] },
                { "emoji": "🥶", "tags": ["cold", "freezing", "ice"] },
                { "emoji": "😶‍🌫️", "tags": ["foggy", "confused", "cloud"] },
                { "emoji": "😱", "tags": ["scared", "screaming", "shocked", "edvard munch"] },
                { "emoji": "😨", "tags": ["fearful", "scared"] },
                { "emoji": "😰", "tags": ["anxious", "sweat"] },
                { "emoji": "😥", "tags": ["sad", "relieved", "sweat"] },
                { "emoji": "😓", "tags": ["sweat", "sad", "disappointed"] },
                { "emoji": "🤗", "tags": ["hugging", "happy"] },
                { "emoji": "🤔", "tags": ["thinking", "thoughtful", "?"] },
                { "emoji": "🫣", "tags": ["peeking", "shy"] },
                { "emoji": "🤭", "tags": ["hand over mouth", "gasp"] },
                { "emoji": "🫢", "tags": ["shushing", "quiet", "silence"] },
                { "emoji": "🫡", "tags": ["saluting", "respect", "army", "soldier", "military"] },
                { "emoji": "🤫", "tags": ["shushing", "quiet", "silence"] },
                { "emoji": "🫠", "tags": ["melting", "hot"] },
                { "emoji": "🤥", "tags": ["lying", "fibbing", "nose", "pinocchio"] },
                { "emoji": "😶", "tags": ["speechless", "silent"] },
                { "emoji": "🫥", "tags": ["dotted line", "invisible"] },
                { "emoji": "😐", "tags": ["neutral", "meh"] },
                { "emoji": "🫤", "tags": ["disappointed", "pensive"] },
                { "emoji": "😑", "tags": ["expressionless", "blank"] },
                { "emoji": "😬", "tags": ["grimacing", "awkward"] },
                { "emoji": "🙄", "tags": ["eye roll", "bored"] },
                { "emoji": "😯", "tags": ["hushed", "surprised"] },
                { "emoji": "😦", "tags": ["frowning", "disappointed"] },
                { "emoji": "😧", "tags": ["anguished", "worried"] },
                { "emoji": "😮", "tags": ["open mouth", "surprised"] },
                { "emoji": "😲", "tags": ["astonished", "shocked"] },
                { "emoji": "🥱", "tags": ["yawning", "tired"] },
                { "emoji": "😴", "tags": ["sleeping", "tired"] },
                { "emoji": "🤤", "tags": ["drooling", "sleepy"] },
                { "emoji": "😪", "tags": ["sleepy", "tired"] },
                { "emoji": "😮‍💨", "tags": ["exhaling", "relief"] },
                { "emoji": "😵", "tags": ["dizzy", "confused"] },
                { "emoji": "😵‍💫", "tags": ["dizzy", "spinning"] },
                { "emoji": "🤐", "tags": ["zipper mouth", "silent"] },
                { "emoji": "🥴", "tags": ["woozy", "drunk"] },
                { "emoji": "🤢", "tags": ["nauseated", "sick"] },
                { "emoji": "🤮", "tags": ["vomiting", "sick"] },
                { "emoji": "🤧", "tags": ["sneezing", "sick"] },
                { "emoji": "😷", "tags": ["mask", "sick"] },
                { "emoji": "🤒", "tags": ["thermometer", "sick"] },
                { "emoji": "🤕", "tags": ["bandage", "hurt"] },
                { "emoji": "🤑", "tags": ["money", "rich", "dollar"] },
                { "emoji": "🤠", "tags": ["cowboy", "hat", "texas"] },
                { "emoji": "😈", "tags": ["smiling devil", "religion", "mischievous", "satan"] },
                { "emoji": "👿", "tags": ["angry devil", "religion", "mad", "satan"] },
                { "emoji": "👹", "tags": ["ogre", "angry", "mask", "religion", "devil", "satan"] },
                { "emoji": "👺", "tags": ["goblin", "angry", "mask"] },
                { "emoji": "🤡", "tags": ["clown", "funny", "circus"] },
                { "emoji": "💩", "tags": ["poop", "funny", "shit"] },
                { "emoji": "👻", "tags": ["ghost", "spooky"] },
                { "emoji": "💀", "tags": ["skull", "death"] },
                { "emoji": "☠️", "tags": ["skull and crossbones", "danger", "pirate"] },
                { "emoji": "👽", "tags": ["alien", "extraterrestrial", "ufo"] },
                { "emoji": "👾", "tags": ["space invader", "game", "pixel", "80s"] },
                { "emoji": "🤖", "tags": ["robot", "tech", "ai", "artificial intelligence"] },
                { "emoji": "🎃", "tags": ["jack-o-lantern", "halloween", "horror"] }
            ],
            [
                { "emoji": "🫶", "tags": ["love", "hands", "heart"] },
                { "emoji": "🤲", "tags": ["offering", "hands", "gesture"] },
                { "emoji": "👐", "tags": ["open hands", "gesture", "hands"] },
                { "emoji": "🙌", "tags": ["celebration", "hands", "gesture"] },
                { "emoji": "👏", "tags": ["clapping", "applause", "hands"] },
                { "emoji": "🤝", "tags": ["handshake", "agreement", "gesture"] },
                { "emoji": "👍", "tags": ["thumbs up", "approval", "like", "gesture"] },
                { "emoji": "👎", "tags": ["thumbs down", "disapproval", "dislike", "gesture"] },
                { "emoji": "👊", "tags": ["fist bump", "punch", "gesture", "hands"] },
                { "emoji": "✊", "tags": ["raised fist", "gesture", "hands"] },
                { "emoji": "🤛", "tags": ["left-facing fist", "punch", "gesture", "hands"] },
                { "emoji": "🤜", "tags": ["right-facing fist", "fist bump", "punch", "gesture", "hands"] },
                //{ "emoji": "🫷", "tags": ["leftwards pushing hand", "gesture", "hands"] },
                //{ "emoji": "🫸", "tags": ["rightwards pushing hand", "gesture", "hands"] },
                { "emoji": "🤞", "tags": ["crossed fingers", "luck", "gesture"] },
                { "emoji": "✌️", "tags": ["peace", "victory", "gesture", "hands"] },
                { "emoji": "🫰", "tags": ["money gesture", "gesture", "hands"] },
                { "emoji": "🤟", "tags": ["love-you gesture", "gesture", "hands"] },
                { "emoji": "🤘", "tags": ["rock on", "sign of the horns", "gesture", "hands"] },
                { "emoji": "👌", "tags": ["OK", "gesture", "hands"] },
                { "emoji": "🤌", "tags": ["pinched fingers", "italian", "gesture", "hands"] },
                { "emoji": "🤏", "tags": ["pinching hand", "little", "tiny", "small", "gesture", "hands"] },
                { "emoji": "🫳", "tags": ["palm down hand", "gesture", "hands"] },
                { "emoji": "🫴", "tags": ["palm up hand", "gesture", "hands"] },
                { "emoji": "👈", "tags": ["point left", "gesture", "hands"] },
                { "emoji": "👉", "tags": ["point right", "gesture", "hands"] },
                { "emoji": "👆", "tags": ["point up", "gesture", "hands"] },
                { "emoji": "👇", "tags": ["point down", "gesture", "hands"] },
                { "emoji": "☝️", "tags": ["pointing up", "attention", "gesture", "hands"] },
                { "emoji": "✋", "tags": ["raised hand", "palm", "stop", "gesture", "hands"] },
                { "emoji": "🤚", "tags": ["raised back of hand", "palm", "stop", "gesture", "hands"] },
                { "emoji": "🖐", "tags": ["splayed hand", "palm", "gesture", "hands"] },
                { "emoji": "🖖", "tags": ["vulcan salute", "palm", "star trek", "gesture", "hands"] },
                { "emoji": "👋", "tags": ["waving", "palm", "hi", "hey", "bye", "gesture", "hands"] },
                { "emoji": "🤙", "tags": ["call me", "gesture", "hands"] },
                { "emoji": "🫲", "tags": ["leftwards", "gesture", "hands"] },
                { "emoji": "🫱", "tags": ["rightwards", "gesture", "hands"] },
                { "emoji": "💪", "tags": ["flexed biceps", "muscle", "gym", "sport", "strength", "gesture"] },
                { "emoji": "🦾", "tags": ["mechanical arm", "prosthetic", "robot", "gesture"] },
                { "emoji": "🖕", "tags": ["middle finger", "rude", "fuck", "gesture"] },
                { "emoji": "✍️", "tags": ["writing", "gesture", "hands"] },
                { "emoji": "🙏", "tags": ["praying", "god", "religion", "high-five", "gesture", "hands"] },
                { "emoji": "🫵", "tags": ["i want you", "gesture", "hands"] },
                { "emoji": "🦶", "tags": ["foot", "body", "limb"] },
                { "emoji": "🦵", "tags": ["leg", "body", "limb"] },
                { "emoji": "🦿", "tags": ["mechanical leg", "prosthetic", "robot", "limb"] },
                { "emoji": "🤳", "tags": ["selfie", "phone", "mobile", "camera"] },
                { "emoji": "💅", "tags": ["nail polish brush", "manicure", "cosmetics", "beauty", "fingers"] },
                { "emoji": "💄", "tags": ["lipstick", "makeup", "cosmetics", "beauty"] },
                { "emoji": "💋", "tags": ["kiss", "lips", "love"] },
                { "emoji": "👄", "tags": ["mouth", "lips", "body"] },
                { "emoji": "🫦", "tags": ["biting lip", "sexy", "gesture", "body"] },
                { "emoji": "🦷", "tags": ["tooth", "dental", "mouth", "body", "dentist"] },
                { "emoji": "👅", "tags": ["tongue", "body", "face"] },
                { "emoji": "👂", "tags": ["ear", "body", "hearing"] },
                { "emoji": "🦻", "tags": ["ear with hearing aid", "body", "hearing"] },
                { "emoji": "👃", "tags": ["nose", "body", "face"] },
                { "emoji": "👣", "tags": ["footprints", "body", "feet"] },
                { "emoji": "👁", "tags": ["eye", "body", "face"] },
                { "emoji": "👀", "tags": ["eyes", "body", "face"] },
                { "emoji": "🫀", "tags": ["heart", "anatomy", "body"] },
                { "emoji": "🫁", "tags": ["lungs", "anatomy", "body"] },
                { "emoji": "🧠", "tags": ["brain", "anatomy", "body"] }
            ],
            [
                { "emoji": "🗣", "tags": ["speaking", "gesture", "body"] },
                { "emoji": "👤", "tags": ["person", "body", "silhouette"] },
                { "emoji": "👥", "tags": ["people", "body", "silhouette"] },
                { "emoji": "🫂", "tags": ["hugging", "gesture", "body"] },
                { "emoji": "👶", "tags": ["baby", "child", "young"] },
                { "emoji": "👧", "tags": ["girl", "child", "young"] },
                { "emoji": "🧒", "tags": ["child", "young", "gender neutral"] },
                { "emoji": "👦", "tags": ["boy", "child", "young"] },
                { "emoji": "👩", "tags": ["woman", "adult", "female"] },
                { "emoji": "🧑", "tags": ["person", "adult", "gender neutral"] },
                { "emoji": "👨", "tags": ["man", "adult", "male"] },
                { "emoji": "👩‍🦱", "tags": ["woman", "curly hair", "female"] },
                { "emoji": "🧑‍🦱", "tags": ["person", "curly hair", "gender neutral"] },
                { "emoji": "👨‍🦱", "tags": ["man", "curly hair", "male"] },
                { "emoji": "👩‍🦰", "tags": ["woman", "red hair", "female"] },
                { "emoji": "🧑‍🦰", "tags": ["person", "red hair", "gender neutral"] },
                { "emoji": "👨‍🦰", "tags": ["man", "red hair", "male"] },
                { "emoji": "👱‍♀️", "tags": ["woman", "blond hair", "female"] },
                { "emoji": "👱", "tags": ["person", "blond hair", "gender neutral"] },
                { "emoji": "👱‍♂️", "tags": ["man", "blond hair", "male"] },
                { "emoji": "👩‍🦳", "tags": ["woman", "white hair", "female"] },
                { "emoji": "🧑‍🦳", "tags": ["person", "white hair", "gender neutral"] },
                { "emoji": "👨‍🦳", "tags": ["man", "white hair", "male"] },
                { "emoji": "👩‍🦲", "tags": ["woman", "bald", "female"] },
                { "emoji": "🧑‍🦲", "tags": ["person", "bald", "gender neutral"] },
                { "emoji": "👨‍🦲", "tags": ["man", "bald", "male"] },
                { "emoji": "🧔‍♀️", "tags": ["woman", "beard", "female"] },
                { "emoji": "🧔", "tags": ["person", "beard", "gender neutral"] },
                { "emoji": "🧔‍♂️", "tags": ["man", "beard", "male"] },
                { "emoji": "👵", "tags": ["older woman", "female", "grandmother"] },
                { "emoji": "🧓", "tags": ["older person", "gender neutral", "elderly"] },
                { "emoji": "👴", "tags": ["older man", "male", "grandfather"] },
                { "emoji": "👲", "tags": ["man", "hat", "male"] },
                { "emoji": "👳‍♀️", "tags": ["woman", "turban", "female"] },
                { "emoji": "👳", "tags": ["person", "turban", "gender neutral"] },
                { "emoji": "👳‍♂️", "tags": ["man", "turban", "muslim", "religion", "male"] },
                { "emoji": "🧕", "tags": ["woman", "hijab", "muslim", "religion", "female"] },
                { "emoji": "👮‍♀️", "tags": ["woman", "police officer", "female"] },
                { "emoji": "👮", "tags": ["person", "police officer", "gender neutral"] },
                { "emoji": "👮‍♂️", "tags": ["man", "police officer", "male"] },
                { "emoji": "👷‍♀️", "tags": ["woman", "construction worker", "helmet", "building", "female"] },
                { "emoji": "👷", "tags": ["person", "construction worker", "helmet", "building", "gender neutral"] },
                { "emoji": "👷‍♂️", "tags": ["man", "construction worker", "helmet", "building", "male"] },
                { "emoji": "💂‍♀️", "tags": ["woman", "guard", "england", "soldier", "female"] },
                { "emoji": "💂", "tags": ["person", "guard", "england", "soldier", "gender neutral"] },
                { "emoji": "💂‍♂️", "tags": ["man", "guard", "england", "soldier", "male"] },
                { "emoji": "🕵️‍♀️", "tags": ["woman", "detective", "spy", "secret agent", "thriller", "female"] },
                { "emoji": "🕵", "tags": ["person", "detective", "spy", "secret agent", "thriller", "gender neutral"] },
                { "emoji": "🕵️‍♂️", "tags": ["man", "detective", "spy", "secret agent", "thriller", "male"] },
                { "emoji": "👩‍⚕️", "tags": ["woman", "doctor", "clinic", "hospital", "ambulance", "female"] },
                { "emoji": "🧑‍⚕️", "tags": ["person", "doctor", "clinic", "hospital", "ambulance", "gender neutral"] },
                { "emoji": "👨‍⚕️", "tags": ["man", "doctor", "clinic", "hospital", "ambulance", "male"] },
                { "emoji": "👩‍🌾", "tags": ["woman", "farmer", "hat", "pitchfork", "female"] },
                { "emoji": "🧑‍🌾", "tags": ["person", "farmer", "hat", "pitchfork", "gender neutral"] },
                { "emoji": "👨‍🌾", "tags": ["man", "farmer", "hat", "pitchfork", "male"] },
                { "emoji": "👩‍🍳", "tags": ["woman", "chef", "cook", "spoon", "hat", "female"] },
                { "emoji": "🧑‍🍳", "tags": ["person", "chef", "cook", "spoon", "hat", "gender neutral"] },
                { "emoji": "👨‍🍳", "tags": ["man", "chef", "cook", "spoon", "hat", "male"] },
                { "emoji": "👩‍🎓", "tags": ["woman", "student", "pupil", "school", "college", "university", "science", "education", "female"] },
                { "emoji": "🧑‍🎓", "tags": ["person", "student", "pupil", "school", "college", "university", "science", "education", "gender neutral"] },
                { "emoji": "👨‍🎓", "tags": ["man", "student", "pupil", "school", "college", "university", "science", "education", "male"] },
                { "emoji": "👩‍🎤", "tags": ["woman", "singer", "musician", "star", "rock", "female"] },
                { "emoji": "🧑‍🎤", "tags": ["person", "singer", "musician", "star", "rock", "gender neutral"] },
                { "emoji": "👨‍🎤", "tags": ["man", "singer", "musician", "star", "rock", "male"] },
                { "emoji": "👩‍🏫", "tags": ["woman", "teacher", "professor", "school", "college", "university", "science", "education", "female"] },
                { "emoji": "🧑‍🏫", "tags": ["person", "teacher", "professor", "school", "college", "university", "science", "education", "gender neutral"] },
                { "emoji": "👨‍🏫", "tags": ["man", "teacher", "professor", "school", "college", "university", "science", "education", "male"] },
                { "emoji": "👩‍🏭", "tags": ["woman", "factory worker", "welding", "bunsen burner", "helmet", "female"] },
                { "emoji": "🧑‍🏭", "tags": ["person", "factory worker", "welding", "bunsen burner", "helmet", "gender neutral"] },
                { "emoji": "👨‍🏭", "tags": ["man", "factory worker", "welding", "bunsen burner", "helmet", "male"] },
                { "emoji": "👩‍💻", "tags": ["woman", "technologist", "laptop", "notebook", "it", "female"] },
                { "emoji": "🧑‍💻", "tags": ["person", "technologist", "laptop", "notebook", "it", "gender neutral"] },
                { "emoji": "👨‍💻", "tags": ["man", "technologist", "laptop", "notebook", "it", "male"] },
                { "emoji": "👩‍💼", "tags": ["woman", "office worker", "stock exchange", "data", "analytics", "marketing", "statistics", "report", "presentation", "diagram", "female"] },
                { "emoji": "🧑‍💼", "tags": ["person", "office worker", "stock exchange", "data", "analytics", "marketing", "statistics", "report", "presentation", "diagram", "gender neutral"] },
                { "emoji": "👨‍💼", "tags": ["man", "office worker", "stock exchange", "data", "analytics", "marketing", "statistics", "report", "presentation", "diagram", "male"] },
                { "emoji": "👩‍🔧", "tags": ["woman", "mechanic", "helmet", "adjustable spanner", "adjustable wrench", "female"] },
                { "emoji": "🧑‍🔧", "tags": ["person", "mechanic", "helmet", "adjustable spanner", "adjustable wrench", "gender neutral"] },
                { "emoji": "👨‍🔧", "tags": ["man", "mechanic", "helmet", "adjustable spanner", "adjustable wrench", "male"] },
                { "emoji": "👩‍🔬", "tags": ["woman", "scientist", "chemistry", "reaction", "reagent", "flask", "female"] },
                { "emoji": "🧑‍🔬", "tags": ["person", "scientist", "chemistry", "reaction", "reagent", "flask", "gender neutral"] },
                { "emoji": "👨‍🔬", "tags": ["man", "scientist", "chemistry", "reaction", "reagent", "flask", "male"] },
                { "emoji": "👩‍🎨", "tags": ["woman", "artist", "female"] },
                { "emoji": "🧑‍🎨", "tags": ["person", "artist", "gender neutral"] },
                { "emoji": "👨‍🎨", "tags": ["man", "artist", "male"] },
                { "emoji": "👩‍🚒", "tags": ["woman", "firefighter", "female"] },
                { "emoji": "🧑‍🚒", "tags": ["person", "firefighter", "gender neutral"] },
                { "emoji": "👨‍🚒", "tags": ["man", "firefighter", "male"] },
                { "emoji": "👩‍✈️", "tags": ["woman", "pilot", "female"] },
                { "emoji": "🧑‍✈️", "tags": ["person", "pilot", "gender neutral"] },
                { "emoji": "👨‍✈️", "tags": ["man", "pilot", "male"] },
                { "emoji": "👩‍🚀", "tags": ["woman", "astronaut", "female"] },
                { "emoji": "🧑‍🚀", "tags": ["person", "astronaut", "gender neutral"] },
                { "emoji": "👨‍🚀", "tags": ["man", "astronaut", "male"] },
                { "emoji": "👩‍⚖️", "tags": ["woman", "judge", "female"] },
                { "emoji": "🧑‍⚖️", "tags": ["person", "judge", "gender neutral"] },
                { "emoji": "👨‍⚖️", "tags": ["man", "judge", "male"] },
                { "emoji": "👰‍♀️", "tags": ["woman", "bride", "female"] },
                { "emoji": "👰", "tags": ["person", "bride", "gender neutral"] },
                { "emoji": "👰‍♂️", "tags": ["man", "bride", "male"] },
                { "emoji": "🤵‍♀️", "tags": ["woman", "groom", "female"] },
                { "emoji": "🤵", "tags": ["person", "groom", "gender neutral"] },
                { "emoji": "🤵‍♂️", "tags": ["man", "groom", "male"] },
                { "emoji": "👸", "tags": ["princess", "royal", "female"] },
                { "emoji": "🫅", "tags": ["royalty", "gender neutral", "crown"] },
                { "emoji": "🤴", "tags": ["prince", "royal", "male"] },
                { "emoji": "🥷", "tags": ["ninja", "stealth", "warrior"] },
                { "emoji": "🦸‍♀️", "tags": ["woman", "superhero", "female"] },
                { "emoji": "🦸", "tags": ["person", "superhero", "gender neutral"] },
                { "emoji": "🦸‍♂️", "tags": ["man", "superhero", "male"] },
                { "emoji": "🦹‍♀️", "tags": ["woman", "supervillain", "female"] },
                { "emoji": "🦹", "tags": ["person", "supervillain", "gender neutral"] },
                { "emoji": "🦹‍♂️", "tags": ["man", "supervillain", "male"] },
                { "emoji": "🤶", "tags": ["Mrs. Claus", "Christmas", "female"] },
                { "emoji": "🧑‍🎄", "tags": ["person", "Christmas", "gender neutral"] },
                { "emoji": "🎅", "tags": ["Santa Claus", "Christmas", "male"] },
                { "emoji": "🧙‍♀️", "tags": ["woman", "mage", "female"] },
                { "emoji": "🧙", "tags": ["person", "mage", "gender neutral"] },
                { "emoji": "🧙‍♂️", "tags": ["man", "mage", "male"] },
                { "emoji": "🧝‍♀️", "tags": ["woman", "elf", "female"] },
                { "emoji": "🧝", "tags": ["person", "elf", "gender neutral"] },
                { "emoji": "🧝‍♂️", "tags": ["man", "elf", "male"] },
                { "emoji": "🧌", "tags": ["troll", "fantasy", "monster"] },
                { "emoji": "🧛‍♀️", "tags": ["woman", "vampire", "female"] },
                { "emoji": "🧛", "tags": ["person", "vampire", "gender neutral"] },
                { "emoji": "🧛‍♂️", "tags": ["man", "vampire", "male"] },
                { "emoji": "🧟‍♀️", "tags": ["woman", "zombie", "female"] },
                { "emoji": "🧟", "tags": ["person", "zombie", "gender neutral"] },
                { "emoji": "🧟‍♂️", "tags": ["man", "zombie", "male"] },
                { "emoji": "🧞‍♀️", "tags": ["woman", "genie", "jinn", "islam", "female"] },
                { "emoji": "🧞", "tags": ["person", "genie", "jinn", "islam", "gender neutral"] },
                { "emoji": "🧞‍♂️", "tags": ["man", "genie", "jinn", "islam", "male"] },
                { "emoji": "🧜‍♀️", "tags": ["woman", "mermaid", "female"] },
                { "emoji": "🧜", "tags": ["person", "mermaid", "gender neutral"] },
                { "emoji": "🧜‍♂️", "tags": ["man", "merman", "male"] },
                { "emoji": "🧚‍♀️", "tags": ["woman", "fairy", "female"] },
                { "emoji": "🧚", "tags": ["person", "fairy", "gender neutral"] },
                { "emoji": "🧚‍♂️", "tags": ["man", "fairy", "male"] },
                { "emoji": "👼", "tags": ["angel", "child", "wings"] },
                { "emoji": "🤰", "tags": ["pregnant", "woman", "female"] },
                { "emoji": "🫄", "tags": ["pregnant", "gender neutral", "person"] },
                { "emoji": "🫃", "tags": ["pregnant", "man", "male"] },
                { "emoji": "🤱", "tags": ["breastfeeding", "mother", "baby"] },
                { "emoji": "👩‍🍼", "tags": ["woman", "feeding baby", "female"] },
                { "emoji": "🧑‍🍼", "tags": ["person", "feeding baby", "gender neutral"] },
                { "emoji": "👨‍🍼", "tags": ["man", "feeding baby", "male"] },
                { "emoji": "🙇‍♀️", "tags": ["woman", "bowing", "female"] },
                { "emoji": "🙇", "tags": ["person", "bowing", "gender neutral"] },
                { "emoji": "🙇‍♂️", "tags": ["man", "bowing", "male"] },
                { "emoji": "💁‍♀️", "tags": ["woman", "information desk", "female"] },
                { "emoji": "💁", "tags": ["person", "information desk", "gender neutral"] },
                { "emoji": "💁‍♂️", "tags": ["man", "information desk", "male"] },
                { "emoji": "🙅‍♀️", "tags": ["woman", "no", "female"] },
                { "emoji": "🙅", "tags": ["person", "no", "gender neutral"] },
                { "emoji": "🙅‍♂️", "tags": ["man", "no", "male"] },
                { "emoji": "🙆‍♀️", "tags": ["woman", "OK", "female"] },
                { "emoji": "🙆", "tags": ["person", "OK", "gender neutral"] },
                { "emoji": "🙆‍♂️", "tags": ["man", "OK", "male"] },
                { "emoji": "🙋‍♀️", "tags": ["woman", "raising hand", "female"] },
                { "emoji": "🙋", "tags": ["person", "raising hand", "gender neutral"] },
                { "emoji": "🙋‍♂️", "tags": ["man", "raising hand", "male"] },
                { "emoji": "🧏‍♀️", "tags": ["woman", "deaf", "female"] },
                { "emoji": "🧏", "tags": ["person", "deaf", "gender neutral"] },
                { "emoji": "🧏‍♂️", "tags": ["man", "deaf", "male"] },
                { "emoji": "🤦‍♀️", "tags": ["woman", "facepalm", "female"] },
                { "emoji": "🤦", "tags": ["person", "facepalm", "gender neutral"] },
                { "emoji": "🤦‍♂️", "tags": ["man", "facepalm", "male"] },
                { "emoji": "🤷‍♀️", "tags": ["woman", "shrug", "female"] },
                { "emoji": "🤷", "tags": ["person", "shrug", "gender neutral"] },
                { "emoji": "🤷‍♂️", "tags": ["man", "shrug", "male"] },
                { "emoji": "🙎‍♀️", "tags": ["woman", "pouting", "female"] },
                { "emoji": "🙎", "tags": ["person", "pouting", "gender neutral"] },
                { "emoji": "🙎‍♂️", "tags": ["man", "pouting", "male"] },
                { "emoji": "🙍‍♀️", "tags": ["woman", "frowning", "female"] },
                { "emoji": "🙍", "tags": ["person", "frowning", "gender neutral"] },
                { "emoji": "🙍‍♂️", "tags": ["man", "frowning", "male"] },
                { "emoji": "💇‍♀️", "tags": ["woman", "haircut", "female"] },
                { "emoji": "💇", "tags": ["person", "haircut", "gender neutral"] },
                { "emoji": "💇‍♂️", "tags": ["man", "haircut", "male"] },
                { "emoji": "💆‍♀️", "tags": ["woman", "massage", "female"] },
                { "emoji": "💆", "tags": ["person", "massage", "gender neutral"] },
                { "emoji": "💆‍♂️", "tags": ["man", "massage", "male"] },
                { "emoji": "🧖‍♀️", "tags": ["woman", "sauna", "female"] },
                { "emoji": "🧖", "tags": ["person", "sauna", "gender neutral"] },
                { "emoji": "🧖‍♂️", "tags": ["man", "sauna", "male"] },
                { "emoji": "💃", "tags": ["woman", "dancing", "female"] },
                { "emoji": "🕺", "tags": ["man", "dancing", "male"] },
                { "emoji": "👯‍♀️", "tags": ["women", "dancing", "female"] },
                { "emoji": "👯", "tags": ["people", "dancing", "gender neutral"] },
                { "emoji": "👯‍♂️", "tags": ["men", "dancing", "male"] },
                { "emoji": "🕴", "tags": ["person", "suit", "levitating"] },
                { "emoji": "👩‍🦽", "tags": ["woman", "wheelchair", "female"] },
                { "emoji": "🧑‍🦽", "tags": ["person", "wheelchair", "gender neutral"] },
                { "emoji": "👨‍🦽", "tags": ["man", "wheelchair", "male"] },
                //{ "emoji": "👩‍🦽‍➡️", "tags": ["woman", "wheelchair", "moving"] },
                //{ "emoji": "🧑‍🦽‍➡️", "tags": ["person", "wheelchair", "moving"] },
                //{ "emoji": "👨‍🦽‍➡️", "tags": ["man", "wheelchair", "moving"] },
                { "emoji": "👩‍🦼", "tags": ["woman", "motorized wheelchair", "female"] },
                { "emoji": "🧑‍🦼", "tags": ["person", "motorized wheelchair", "gender neutral"] },
                { "emoji": "👨‍🦼", "tags": ["man", "motorized wheelchair", "male"] },
                //{ "emoji": "👩‍🦼‍➡️", "tags": ["woman", "motorized wheelchair", "moving"] },
                //{ "emoji": "🧑‍🦼‍➡️", "tags": ["person", "motorized wheelchair", "moving"] },
                //{ "emoji": "👨‍🦼‍➡️", "tags": ["man", "motorized wheelchair", "moving"] },
                { "emoji": "🚶‍♀️", "tags": ["woman", "walking", "female"] },
                { "emoji": "🚶", "tags": ["person", "walking", "gender neutral"] },
                { "emoji": "🚶‍♂️", "tags": ["man", "walking", "male"] },
                //{ "emoji": "🚶‍♀️‍➡️", "tags": ["woman", "walking", "moving"] },
                //{ "emoji": "🚶‍➡️", "tags": ["person", "walking", "moving"] },
                //{ "emoji": "🚶‍♂️‍➡️", "tags": ["man", "walking", "moving"] },
                { "emoji": "👩‍🦯", "tags": ["woman", "white cane", "female"] },
                { "emoji": "🧑‍🦯", "tags": ["person", "white cane", "gender neutral"] },
                { "emoji": "👨‍🦯", "tags": ["man", "white cane", "male"] },
                //{ "emoji": "👩‍🦯‍➡️", "tags": ["woman", "white cane", "moving"] },
                //{ "emoji": "🧑‍🦯‍➡️", "tags": ["person", "white cane", "moving"] },
                //{ "emoji": "👨‍🦯‍➡️", "tags": ["man", "white cane", "moving"] },
                { "emoji": "🧎‍♀️", "tags": ["woman", "kneeling", "female"] },
                { "emoji": "🧎", "tags": ["person", "kneeling", "gender neutral"] },
                { "emoji": "🧎‍♂️", "tags": ["man", "kneeling", "male"] },
                { "emoji": "🏃‍♀️", "tags": ["woman", "running", "female"] },
                { "emoji": "🏃", "tags": ["person", "running", "gender neutral"] },
                { "emoji": "🏃‍♂️", "tags": ["man", "running", "male"] },
                //{ "emoji": "🏃‍♀️‍➡️", "tags": ["woman", "running", "moving"] },
                //{ "emoji": "🏃‍➡️", "tags": ["person", "running", "moving"] },
                //{ "emoji": "🏃‍♂️‍➡️", "tags": ["man", "running", "moving"] },
                //{ "emoji": "🧎‍♀️‍➡️", "tags": ["woman", "kneeling", "moving"] },
                //{ "emoji": "🧎‍➡️", "tags": ["person", "kneeling", "moving"] },
                //{ "emoji": "🧎‍♂️‍➡️", "tags": ["man", "kneeling", "moving"] },
                { "emoji": "🧍‍♀️", "tags": ["woman", "standing", "female"] },
                { "emoji": "🧍", "tags": ["person", "standing", "gender neutral"] },
                { "emoji": "🧍‍♂️", "tags": ["man", "standing", "male"] },
                { "emoji": "👫", "tags": ["couple", "holding hands", "gender neutral"] },
                { "emoji": "👭", "tags": ["women", "holding hands", "female"] },
                { "emoji": "👬", "tags": ["men", "holding hands", "male"] },
                { "emoji": "👩‍❤️‍👨", "tags": ["couple", "woman", "man", "heart"] },
                { "emoji": "👩‍❤️‍👩", "tags": ["couple", "women", "heart"] },
                { "emoji": "💑", "tags": ["couple", "heart", "gender neutral"] },
                { "emoji": "👨‍❤️‍👨", "tags": ["couple", "men", "heart"] },
                { "emoji": "👩‍❤️‍💋‍👨", "tags": ["couple", "woman", "man", "kiss"] },
                { "emoji": "👩‍❤️‍💋‍👩", "tags": ["couple", "women", "kiss"] },
                { "emoji": "💏", "tags": ["couple", "kiss", "gender neutral"] },
                { "emoji": "👨‍❤️‍💋‍👨", "tags": ["couple", "men", "kiss"] }
            ],
            [
                { "emoji": "😺", "tags": ["cat", "happy", "smile"] },
                { "emoji": "😸", "tags": ["cat", "happy", "grin"] },
                { "emoji": "😹", "tags": ["cat", "laugh", "tears"] },
                { "emoji": "😻", "tags": ["cat", "love", "hearts", "eyes"] },
                { "emoji": "😼", "tags": ["cat", "smirk", "sly"] },
                { "emoji": "😽", "tags": ["cat", "kiss", "love"] },
                { "emoji": "🙀", "tags": ["cat", "scared", "screaming", "shocked", "edvard munch"] },
                { "emoji": "😿", "tags": ["cat", "crying", "sad"] },
                { "emoji": "😾", "tags": ["cat", "angry", "mad"] },
                { "emoji": "🐶", "tags": ["dog", "pet"] },
                { "emoji": "🐱", "tags": ["cat", "pet"] },
                { "emoji": "🐭", "tags": ["mouse", "pet"] },
                { "emoji": "🐹", "tags": ["hamster", "pet"] },
                { "emoji": "🐰", "tags": ["rabbit", "pet"] },
                { "emoji": "🦊", "tags": ["fox", "wild"] },
                { "emoji": "🐻", "tags": ["bear", "wild"] },
                { "emoji": "🐼", "tags": ["panda", "wild"] },
                { "emoji": "🐻‍❄️", "tags": ["polar bear", "north pole", "wild"] },
                { "emoji": "🐨", "tags": ["koala", "australia", "wild"] },
                { "emoji": "🐯", "tags": ["tiger", "wild"] },
                { "emoji": "🦁", "tags": ["lion", "wild"] },
                { "emoji": "🐮", "tags": ["cow", "farm"] },
                { "emoji": "🐷", "tags": ["pig", "porky", "farm"] },
                { "emoji": "🐽", "tags": ["pig nose", "porky", "farm"] },
                { "emoji": "🐸", "tags": ["frog", "toad", "reptile", "wild"] },
                { "emoji": "🐵", "tags": ["monkey", "wild"] },
                { "emoji": "🙈", "tags": ["monkey", "see no evil", "wild"] },
                { "emoji": "🙉", "tags": ["monkey", "hear no evil", "wild"] },
                { "emoji": "🙊", "tags": ["monkey", "speak no evil", "wild"] },
                { "emoji": "🐒", "tags": ["monkey", "wild"] },
                { "emoji": "🐔", "tags": ["chicken", "bird", "farm"] },
                { "emoji": "🐧", "tags": ["penguin", "bird", "antarctic", "wild"] },
                { "emoji": "🐦", "tags": ["bird", "wild"] },
                { "emoji": "🐤", "tags": ["chick", "bird", "farm"] },
                { "emoji": "🐣", "tags": ["hatching chick", "bird", "egg", "farm"] },
                { "emoji": "🐥", "tags": ["baby chick", "bird", "farm"] },
                //{ "emoji": "🪿", "tags": ["goose", "bird", "wild"] },
                { "emoji": "🦆", "tags": ["duck", "bird", "farm"] },
                //{ "emoji": "🐦‍⬛️", "tags": ["black bird", "bird", "wild"] },
                { "emoji": "🦅", "tags": ["eagle", "bird", "wild"] },
                { "emoji": "🦉", "tags": ["owl", "bird", "wild"] },
                { "emoji": "🦇", "tags": ["bat", "blood", "wild"] },
                { "emoji": "🐺", "tags": ["wolf", "wild"] },
                { "emoji": "🐗", "tags": ["boar", "wild"] },
                { "emoji": "🐴", "tags": ["horse", "farm"] },
                { "emoji": "🦄", "tags": ["unicorn", "mythical", "fantasy", "rainbow"] },
                //{ "emoji": "🫎", "tags": ["moose", "wild"] },
                { "emoji": "🐝", "tags": ["bee", "insect"] },
                { "emoji": "🪱", "tags": ["worm", "insect"] },
                { "emoji": "🐛", "tags": ["bug", "insect"] },
                { "emoji": "🦋", "tags": ["butterfly", "insect"] },
                { "emoji": "🐌", "tags": ["snail", "insect"] },
                { "emoji": "🐞", "tags": ["ladybug", "insect"] },
                { "emoji": "🐜", "tags": ["ant", "insect"] },
                { "emoji": "🪰", "tags": ["fly", "insect"] },
                { "emoji": "🪲", "tags": ["beetle", "insect"] },
                { "emoji": "🪳", "tags": ["cockroach", "insect"] },
                { "emoji": "🦟", "tags": ["mosquito", "insect"] },
                { "emoji": "🦗", "tags": ["cricket", "insect"] },
                { "emoji": "🕷", "tags": ["spider", "arthropod"] },
                { "emoji": "🕸", "tags": ["spider web", "arthropod"] },
                { "emoji": "🦂", "tags": ["scorpion", "arthropod"] },
                { "emoji": "🐢", "tags": ["turtle", "reptile"] },
                { "emoji": "🐍", "tags": ["snake", "reptile"] },
                { "emoji": "🦎", "tags": ["lizard", "reptile"] },
                { "emoji": "🦖", "tags": ["t-rex", "dinosaur"] },
                { "emoji": "🦕", "tags": ["brontosaurus", "dinosaur"] },
                { "emoji": "🐙", "tags": ["octopus", "tentacle", "sea"] },
                { "emoji": "🦑", "tags": ["squid", "tentacle", "sea"] },
                //{ "emoji": "🪼", "tags": ["jellyfish", "sea"] },
                { "emoji": "🦐", "tags": ["shrimp", "arthropod", "sea"] },
                { "emoji": "🦞", "tags": ["lobster", "arthropod", "sea"] },
                { "emoji": "🦀", "tags": ["crab", "arthropod", "sea"] },
                { "emoji": "🐡", "tags": ["blowfish", "sea"] },
                { "emoji": "🐠", "tags": ["fish", "sea"] },
                { "emoji": "🐟", "tags": ["fish", "sea"] },
                { "emoji": "🐬", "tags": ["dolphin", "sea"] },
                { "emoji": "🐳", "tags": ["whale", "sea"] },
                { "emoji": "🐋", "tags": ["whale", "sea"] },
                { "emoji": "🦈", "tags": ["shark", "fish", "sea"] },
                { "emoji": "🦭", "tags": ["seal", "sea"] },
                { "emoji": "🐊", "tags": ["crocodile", "reptile"] },
                { "emoji": "🐅", "tags": ["tiger", "wild"] },
                { "emoji": "🐆", "tags": ["leopard", "wild"] },
                { "emoji": "🦓", "tags": ["zebra", "wild"] },
                { "emoji": "🦍", "tags": ["monkey", "gorilla", "wild"] },
                { "emoji": "🦧", "tags": ["monkey", "orangutan", "wild"] },
                { "emoji": "🦣", "tags": ["mammoth", "prehistoric"] },
                { "emoji": "🐘", "tags": ["elephant", "wild"] },
                { "emoji": "🦛", "tags": ["hippopotamus", "wild"] },
                { "emoji": "🦏", "tags": ["rhinoceros", "wild"] },
                { "emoji": "🐪", "tags": ["camel", "wild"] },
                { "emoji": "🐫", "tags": ["two-hump camel", "wild"] },
                { "emoji": "🦒", "tags": ["giraffe", "wild"] },
                { "emoji": "🦘", "tags": ["kangaroo", "australia", "wild"] },
                { "emoji": "🦬", "tags": ["bison", "wild"] },
                { "emoji": "🐃", "tags": ["water buffalo", "farm"] },
                { "emoji": "🐂", "tags": ["ox", "farm"] },
                { "emoji": "🐄", "tags": ["cow", "milk", "farm"] },
                //{ "emoji": "🫏", "tags": ["donkey", "farm"] },
                { "emoji": "🐎", "tags": ["horse", "mustang", "farm"] },
                { "emoji": "🐖", "tags": ["pig", "porky", "farm"] },
                { "emoji": "🐏", "tags": ["ram", "farm"] },
                { "emoji": "🐑", "tags": ["sheep", "farm"] },
                { "emoji": "🦙", "tags": ["llama", "farm"] },
                { "emoji": "🐐", "tags": ["goat", "farm"] },
                { "emoji": "🦌", "tags": ["deer", "wild"] },
                { "emoji": "🐕", "tags": ["dog", "pet"] },
                { "emoji": "🐩", "tags": ["poodle", "pet"] },
                { "emoji": "🦮", "tags": ["guide dog", "service", "pet"] },
                { "emoji": "🐕‍🦺", "tags": ["service dog", "service", "pet"] },
                { "emoji": "🐈", "tags": ["cat", "pet"] },
                { "emoji": "🐈‍⬛️", "tags": ["black cat", "pet"] },
                { "emoji": "🪶", "tags": ["feather", "quill", "bird"] },
                //{ "emoji": "🪽", "tags": ["wing", "bird"] },
                { "emoji": "🐓", "tags": ["rooster", "bird", "farm"] },
                { "emoji": "🦃", "tags": ["turkey", "bird", "farm"] },
                { "emoji": "🦤", "tags": ["dodo", "bird", "extinct"] },
                { "emoji": "🦚", "tags": ["peacock", "bird"] },
                { "emoji": "🦜", "tags": ["parrot", "bird"] },
                { "emoji": "🦢", "tags": ["swan", "bird"] },
                { "emoji": "🦩", "tags": ["flamingo", "bird"] },
                { "emoji": "🕊", "tags": ["dove", "pigeon", "letter", "bird"] },
                { "emoji": "🐇", "tags": ["rabbit", "pet"] },
                { "emoji": "🦝", "tags": ["raccoon", "wild"] },
                { "emoji": "🦨", "tags": ["skunk", "stinks", "wild"] },
                { "emoji": "🦡", "tags": ["badger", "wild"] },
                { "emoji": "🦫", "tags": ["beaver", "wood", "wild"] },
                { "emoji": "🦦", "tags": ["otter", "wild"] },
                { "emoji": "🦥", "tags": ["sloth", "slow", "wild"] },
                { "emoji": "🐁", "tags": ["mouse", "pet"] },
                { "emoji": "🐀", "tags": ["rat", "pet"] },
                { "emoji": "🐿", "tags": ["chipmunk", "wild"] },
                { "emoji": "🦔", "tags": ["hedgehog", "wild"] },
                { "emoji": "🐾", "tags": ["paw prints", "pet"] },
                { "emoji": "🐉", "tags": ["dragon", "mythical", "reptile", "fantasy"] },
                { "emoji": "🐲", "tags": ["dragon face", "mythical", "reptile", "fantasy"] },
                //{ "emoji": "🐦‍🔥", "tags": ["phoenix", "mythical", "bird", "fantasy"] }
            ],
            [
                { "emoji": "🌵", "tags": ["cactus", "plant", "desert"] },
                { "emoji": "🎄", "tags": ["christmas", "xmas", "tree", "holiday"] },
                { "emoji": "🌲", "tags": ["tree", "nature"] },
                { "emoji": "🌳", "tags": ["tree", "nature"] },
                { "emoji": "🌴", "tags": ["palm", "tree", "tropical"] },
                { "emoji": "🪵", "tags": ["wood", "log", "nature"] },
                { "emoji": "🌱", "tags": ["seedling", "growth", "nature"] },
                { "emoji": "🌿", "tags": ["herb", "leaf", "nature"] },
                { "emoji": "☘️", "tags": ["shamrock", "luck", "leprechaun"] },
                { "emoji": "🍀", "tags": ["four-leaf clover", "luck", "leprechaun"] },
                { "emoji": "🎍", "tags": ["japanese pine", "new year", "holiday"] },
                { "emoji": "🪴", "tags": ["potted plant", "home", "nature"] },
                { "emoji": "🎋", "tags": ["bamboo", "tanabata", "festival"] },
                { "emoji": "🍃", "tags": ["leaf", "nature", "green"] },
                { "emoji": "🍂", "tags": ["fallen leaves", "autumn", "nature"] },
                { "emoji": "🍁", "tags": ["maple leaf", "autumn", "fall"] },
                { "emoji": "🪺", "tags": ["nest", "nature", "bird"] },
                { "emoji": "🪹", "tags": ["nesting", "bird", "nature"] },
                { "emoji": "🍄", "tags": ["mushroom", "fungus", "nature"] },
                //{ "emoji": "🍄‍🟫", "tags": ["brown mushroom", "nature", "food"] },
                { "emoji": "🐚", "tags": ["shell", "beach", "ocean"] },
                { "emoji": "🪸", "tags": ["coral", "marine", "ocean"] },
                { "emoji": "🪨", "tags": ["rock", "stone", "nature"] },
                { "emoji": "🌾", "tags": ["sheaf of rice", "grain", "nature"] },
                { "emoji": "💐", "tags": ["bouquet", "flowers", "gift"] },
                { "emoji": "🌷", "tags": ["tulip", "flower", "spring"] },
                { "emoji": "🌹", "tags": ["rose", "flower", "love"] },
                { "emoji": "🥀", "tags": ["wilted flower", "flower", "sad"] },
                //{ "emoji": "🪻", "tags": ["violet", "flower", "nature"] },
                { "emoji": "🪷", "tags": ["lotus", "flower", "water"] },
                { "emoji": "🌺", "tags": ["hibiscus", "flower", "tropical"] },
                { "emoji": "🌸", "tags": ["cherry blossom", "flower", "spring"] },
                { "emoji": "🌼", "tags": ["blossom", "flower", "nature"] },
                { "emoji": "🌻", "tags": ["sunflower", "flower", "nature"] },
                { "emoji": "🌞", "tags": ["sun", "smiling", "happy"] },
                { "emoji": "🌝", "tags": ["full moon", "face", "night"] },
                { "emoji": "🌛", "tags": ["crescent moon", "face", "night"] },
                { "emoji": "🌜", "tags": ["moon", "night", "space"] },
                { "emoji": "🌚", "tags": ["new moon", "face", "night"] },
                { "emoji": "🌕", "tags": ["full moon", "night", "space"] },
                { "emoji": "🌖", "tags": ["waxing gibbous", "moon", "night"] },
                { "emoji": "🌗", "tags": ["last quarter", "moon", "night"] },
                { "emoji": "🌘", "tags": ["waning crescent", "moon", "night"] },
                { "emoji": "🌑", "tags": ["new moon", "dark", "night"] },
                { "emoji": "🌒", "tags": ["waxing crescent", "moon", "night"] },
                { "emoji": "🌓", "tags": ["first quarter", "moon", "night"] },
                { "emoji": "🌔", "tags": ["waxing gibbous", "moon", "night"] },
                { "emoji": "🌙", "tags": ["crescent moon", "night", "space"] },
                { "emoji": "🌎", "tags": ["Earth", "globe", "planet"] },
                { "emoji": "🌍", "tags": ["Earth", "globe", "planet"] },
                { "emoji": "🌏", "tags": ["Earth", "globe", "planet"] },
                { "emoji": "🪐", "tags": ["planet", "ringed", "space"] },
                { "emoji": "💫", "tags": ["shooting star", "magic", "light"] },
                { "emoji": "⭐️", "tags": ["star", "night", "shine"] },
                { "emoji": "🌟", "tags": ["glowing star", "shine", "night"] },
                { "emoji": "✨", "tags": ["sparkles", "magic", "shine"] },
                { "emoji": "⚡️", "tags": ["zap", "electric", "storm"] },
                { "emoji": "☄️", "tags": ["comet", "space", "star"] },
                { "emoji": "💥", "tags": ["collision", "explosion", "boom"] },
                { "emoji": "🔥", "tags": ["fire", "flame", "hot"] },
                { "emoji": "🌪", "tags": ["tornado", "storm", "wind"] },
                { "emoji": "🌈", "tags": ["rainbow", "color", "nature"] },
                { "emoji": "☀️", "tags": ["sun", "light", "day"] },
                { "emoji": "🌤", "tags": ["sunny", "clear", "weather"] },
                { "emoji": "⛅️", "tags": ["partly cloudy", "weather", "sky"] },
                { "emoji": "🌥", "tags": ["cloudy", "weather", "sky"] },
                { "emoji": "☁️", "tags": ["cloud", "weather", "sky"] },
                { "emoji": "🌦", "tags": ["rain", "sun", "weather"] },
                { "emoji": "🌧", "tags": ["rain", "cloud", "weather"] },
                { "emoji": "⛈", "tags": ["storm", "cloud", "rain"] },
                { "emoji": "🌩", "tags": ["thunderstorm", "lightning", "cloud"] },
                { "emoji": "🌨", "tags": ["snow", "cloud", "winter"] },
                { "emoji": "❄️", "tags": ["snowflake", "winter", "cold"] },
                { "emoji": "☃️", "tags": ["snowman", "winter", "cold"] },
                { "emoji": "⛄️", "tags": ["snowman", "winter", "cold"] },
                { "emoji": "🌬", "tags": ["wind", "weather", "breeze"] },
                { "emoji": "💨", "tags": ["wind", "movement", "air"] },
                { "emoji": "💧", "tags": ["water", "drop", "liquid"] },
                { "emoji": "💦", "tags": ["sweat", "water", "liquid"] },
                { "emoji": "🫧", "tags": ["bubble", "soap", "liquid"] },
                { "emoji": "☔️", "tags": ["umbrella", "rain", "weather"] },
                { "emoji": "☂️", "tags": ["umbrella", "rain", "weather"] },
                { "emoji": "🌊", "tags": ["water", "ocean", "wave"] },
                { "emoji": "🌫", "tags": ["fog", "weather", "cloud"] }
            ],
            [
                { "emoji": "🍏", "tags": ["green apple", "fruit"] },
                { "emoji": "🍎", "tags": ["red apple", "fruit"] },
                { "emoji": "🍐", "tags": ["pear", "fruit"] },
                { "emoji": "🍊", "tags": ["tangerine", "fruit", "citrus"] },
                { "emoji": "🍋", "tags": ["lemon", "fruit", "citrus"] },
                //{ "emoji": "🍋‍🟩", "tags": ["lime", "fruit", "citrus"] },
                { "emoji": "🍌", "tags": ["banana", "fruit"] },
                { "emoji": "🍉", "tags": ["watermelon", "fruit"] },
                { "emoji": "🍇", "tags": ["grapes", "vine"] },
                { "emoji": "🍓", "tags": ["strawberry", "berry"] },
                { "emoji": "🫐", "tags": ["blueberries", "berry"] },
                { "emoji": "🍈", "tags": ["melon", "fruit"] },
                { "emoji": "🍒", "tags": ["cherries", "berry"] },
                { "emoji": "🍑", "tags": ["peach", "fruit"] },
                { "emoji": "🥭", "tags": ["mango", "fruit", "tropical"] },
                { "emoji": "🍍", "tags": ["pineapple", "fruit", "tropical"] },
                { "emoji": "🥥", "tags": ["coconut", "fruit", "tropical"] },
                { "emoji": "🥝", "tags": ["kiwi", "fruit", "exotic"] },
                { "emoji": "🍅", "tags": ["tomato", "vegetable", "fruit"] },
                { "emoji": "🍆", "tags": ["eggplant", "vegetable", "purple"] },
                { "emoji": "🥑", "tags": ["avocado", "fruit"] },
                //{ "emoji": "🫛", "tags": ["beans", "legume"] },
                { "emoji": "🥦", "tags": ["broccoli", "vegetable", "green"] },
                { "emoji": "🥬", "tags": ["leafy green", "vegetable"] },
                { "emoji": "🥒", "tags": ["cucumber", "vegetable", "green"] },
                { "emoji": "🌶", "tags": ["hot pepper", "vegetable", "spicy"] },
                { "emoji": "🫑", "tags": ["bell pepper", "vegetable"] },
                { "emoji": "🌽", "tags": ["corn", "vegetable", "yellow"] },
                { "emoji": "🥕", "tags": ["carrot", "vegetable", "orange"] },
                { "emoji": "🫒", "tags": ["olive", "fruit", "mediterranean"] },
                { "emoji": "🧄", "tags": ["garlic", "vegetable", "flavor"] },
                { "emoji": "🧅", "tags": ["onion", "vegetable", "flavor"] },
                { "emoji": "🥔", "tags": ["potato", "vegetable", "starch"] },
                { "emoji": "🍠", "tags": ["sweet potato", "vegetable", "starch"] },
                //{ "emoji": "🫚", "tags": ["ginger", "root", "spice"] },
                { "emoji": "🥐", "tags": ["croissant", "pastry", "breakfast"] },
                { "emoji": "🥯", "tags": ["bagel", "bread", "breakfast"] },
                { "emoji": "🍞", "tags": ["bread", "baked"] },
                { "emoji": "🥖", "tags": ["baguette", "bread", "french"] },
                { "emoji": "🥨", "tags": ["pretzel", "germany", "bavaria", "bread", "snack"] },
                { "emoji": "🧀", "tags": ["cheese", "dairy"] },
                { "emoji": "🥚", "tags": ["egg", "breakfast"] },
                { "emoji": "🍳", "tags": ["fried egg", "breakfast"] },
                { "emoji": "🧈", "tags": ["butter", "dairy", "spread"] },
                { "emoji": "🥞", "tags": ["pancakes", "breakfast"] },
                { "emoji": "🧇", "tags": ["waffle", "breakfast"] },
                { "emoji": "🥓", "tags": ["bacon", "meat", "breakfast"] },
                { "emoji": "🥩", "tags": ["meat", "steak"] },
                { "emoji": "🍗", "tags": ["chicken leg", "meat"] },
                { "emoji": "🍖", "tags": ["meat on bone", "meat"] },
                { "emoji": "🦴", "tags": ["bone", "meat"] },
                { "emoji": "🌭", "tags": ["hot dog", "snack"] },
                { "emoji": "🍔", "tags": ["burger", "fast food"] },
                { "emoji": "🍟", "tags": ["fries", "fast food"] },
                { "emoji": "🍕", "tags": ["pizza", "Italian"] },
                { "emoji": "🫓", "tags": ["flatbread", "bread"] },
                { "emoji": "🥪", "tags": ["sandwich", "snack"] },
                { "emoji": "🥙", "tags": ["stuffed flatbread", "snack"] },
                { "emoji": "🧆", "tags": ["falafel", "vegetarian"] },
                { "emoji": "🌮", "tags": ["taco", "mexican"] },
                { "emoji": "🌯", "tags": ["burrito", "mexican"] },
                { "emoji": "🫔", "tags": ["tamale", "mexican"] },
                { "emoji": "🥗", "tags": ["salad"] },
                { "emoji": "🥘", "tags": ["paella", "spanish"] },
                { "emoji": "🫕", "tags": ["fondue", "cheese"] },
                { "emoji": "🥫", "tags": ["canned food", "preserved"] },
                { "emoji": "🫙", "tags": ["jar", "storage"] },
                { "emoji": "🍝", "tags": ["spaghetti", "italian"] },
                { "emoji": "🍜", "tags": ["noodles", "Asian"] },
                { "emoji": "🍲", "tags": ["hot pot", "soup"] },
                { "emoji": "🍛", "tags": ["curry", "spicy"] },
                { "emoji": "🍣", "tags": ["sushi", "japanese"] },
                { "emoji": "🍱", "tags": ["bento", "japanese"] },
                { "emoji": "🥟", "tags": ["dumpling", "asian"] },
                { "emoji": "🦪", "tags": ["oyster", "seafood"] },
                { "emoji": "🍤", "tags": ["fried shrimp", "seafood"] },
                { "emoji": "🍙", "tags": ["rice ball", "japanese"] },
                { "emoji": "🍚", "tags": ["cooked rice", "grain"] },
                { "emoji": "🍘", "tags": ["rice cracker", "snack"] },
                { "emoji": "🍥", "tags": ["fish cake", "japanese"] },
                { "emoji": "🥠", "tags": ["fortune cookie", "chinese"] },
                { "emoji": "🥮", "tags": ["moon cake", "chinese"] },
                { "emoji": "🍢", "tags": ["oden", "japanese"] },
                { "emoji": "🍡", "tags": ["dango", "japanese"] },
                { "emoji": "🍧", "tags": ["shaved ice", "dessert", "cold"] },
                { "emoji": "🍨", "tags": ["ice cream", "dessert", "cold"] },
                { "emoji": "🍦", "tags": ["soft serve", "dessert", "cold"] },
                { "emoji": "🥧", "tags": ["pie", "dessert", "baked"] },
                { "emoji": "🧁", "tags": ["cupcake", "dessert"] },
                { "emoji": "🍰", "tags": ["cake", "dessert"] },
                { "emoji": "🎂", "tags": ["birthday cake", "dessert", "celebration", "birthday"] },
                { "emoji": "🍮", "tags": ["flan", "dessert"] },
                { "emoji": "🍭", "tags": ["lollipop", "candy"] },
                { "emoji": "🍬", "tags": ["candy", "treat"] },
                { "emoji": "🍫", "tags": ["chocolate", "dessert"] },
                { "emoji": "🍿", "tags": ["popcorn", "snack", "movie"] },
                { "emoji": "🍩", "tags": ["doughnut", "dessert"] },
                { "emoji": "🍪", "tags": ["cookie", "dessert"] },
                { "emoji": "🌰", "tags": ["chestnut", "nut"] },
                { "emoji": "🥜", "tags": ["peanuts", "nut"] },
                { "emoji": "🫘", "tags": ["beans", "legume", "protein"] },
                { "emoji": "🍯", "tags": ["honey"] },
                { "emoji": "🥛", "tags": ["milk", "drink", "dairy"] },
                { "emoji": "🫗", "tags": ["pouring liquid", "drink", "liquid"] },
                { "emoji": "🍼", "tags": ["baby bottle", "drink", "baby"] },
                { "emoji": "🫖", "tags": ["teapot", "drink", "tea"] },
                { "emoji": "☕️", "tags": ["coffee", "drink", "hot"] },
                { "emoji": "🍵", "tags": ["tea", "drink", "hot"] },
                { "emoji": "🧃", "tags": ["juice", "drink", "beverage"] },
                { "emoji": "🥤", "tags": ["cup with straw", "drink", "beverage"] },
                { "emoji": "🧋", "tags": ["bubble tea", "drink", "beverage"] },
                { "emoji": "🍶", "tags": ["sake", "drink", "japanese"] },
                { "emoji": "🍺", "tags": ["beer", "drink", "alcohol"] },
                { "emoji": "🍻", "tags": ["clinking beer mugs", "drink", "celebration"] },
                { "emoji": "🥂", "tags": ["clinking glasses", "drink", "celebration"] },
                { "emoji": "🍷", "tags": ["wine", "drink", "alcohol"] },
                { "emoji": "🥃", "tags": ["whisky", "drink", "alcohol"] },
                { "emoji": "🍸", "tags": ["cocktail", "drink", "alcohol"] },
                { "emoji": "🍹", "tags": ["tropical drink", "drink", "alcohol"] },
                { "emoji": "🧉", "tags": ["mate", "drink", "herbal"] },
                { "emoji": "🍾", "tags": ["bottle with popping cork", "drink", "celebration"] },
                { "emoji": "🧊", "tags": ["ice", "cold", "drink"] },
                { "emoji": "🥄", "tags": ["spoon", "utensil", "kitchen"] },
                { "emoji": "🍴", "tags": ["fork and knife", "utensil", "kitchen"] },
                { "emoji": "🍽", "tags": ["plate with cutlery", "utensil", "dining"] },
                { "emoji": "🥣", "tags": ["bowl", "utensil", "kitchen"] },
                { "emoji": "🥡", "tags": ["takeout box", "restaurant"] },
                { "emoji": "🥢", "tags": ["chopsticks", "utensil", "asian"] },
                { "emoji": "🧂", "tags": ["salt", "seasoning", "spice"] }
            ],
            [
                { "emoji": "⚽️", "tags": ["soccer", "sports", "football"] },
                { "emoji": "🏀", "tags": ["basketball", "sports", "hoops"] },
                { "emoji": "🏈", "tags": ["football", "sports", "gridiron"] },
                { "emoji": "⚾️", "tags": ["baseball", "sports"] },
                { "emoji": "🥎", "tags": ["softball", "sports"] },
                { "emoji": "🎾", "tags": ["tennis ball", "sports", "racket"] },
                { "emoji": "🏐", "tags": ["volleyball", "sports"] },
                { "emoji": "🏉", "tags": ["rugby ball", "sports"] },
                { "emoji": "🥏", "tags": ["flying disc", "sports", "frisbee"] },
                { "emoji": "🎱", "tags": ["pool", "sports", "8-ball"] },
                { "emoji": "🪀", "tags": ["yo-yo", "toy", "fun"] },
                { "emoji": "🏓", "tags": ["ping pong", "sports", "table tennis"] },
                { "emoji": "🏸", "tags": ["badminton", "sports", "racket"] },
                { "emoji": "🏒", "tags": ["hockey disc", "sports", "ice"] },
                { "emoji": "🏑", "tags": ["field hockey ball", "sports", "stick"] },
                { "emoji": "🥍", "tags": ["lacrosse", "sports", "stick"] },
                { "emoji": "🏏", "tags": ["cricket ball", "sports", "bat"] },
                { "emoji": "🪃", "tags": ["boomerang", "sports", "throw"] },
                { "emoji": "🥅", "tags": ["goal net", "sports", "goal"] },
                { "emoji": "⛳️", "tags": ["golf", "sports", "hole"] },
                { "emoji": "🪁", "tags": ["kite", "sports", "flying"] },
                { "emoji": "🛝", "tags": ["slide", "playground", "fun"] },
                { "emoji": "🏹", "tags": ["archery", "sports", "bow"] },
                { "emoji": "🎣", "tags": ["fishing", "sports", "rod"] },
                { "emoji": "🤿", "tags": ["diving", "sports", "scuba"] },
                { "emoji": "🥊", "tags": ["boxing", "sports", "gloves"] },
                { "emoji": "🥋", "tags": ["martial arts", "sports", "uniform"] },
                { "emoji": "🎽", "tags": ["running shirt", "sports", "athletics"] },
                { "emoji": "🛹", "tags": ["skateboard", "sports", "skating"] },
                { "emoji": "🛼", "tags": ["roller skate", "sports", "skating"] },
                { "emoji": "🛷", "tags": ["sled", "sports", "snow"] },
                { "emoji": "⛸", "tags": ["ice skate", "sports", "skating"] },
                { "emoji": "🥌", "tags": ["curling", "sports", "ice"] },
                { "emoji": "🎿", "tags": ["skiing", "sports", "snow"] },
                { "emoji": "⛷", "tags": ["skier", "sports", "snow"] },
                { "emoji": "🏂", "tags": ["snowboarding", "sports", "snow"] },
                { "emoji": "🪂", "tags": ["parachute", "sports", "skydiving"] },
                { "emoji": "🏋️‍♀️", "tags": ["weightlifting", "sports", "female"] },
                { "emoji": "🏋", "tags": ["weightlifting", "sports", "neutral"] },
                { "emoji": "🏋️‍♂️", "tags": ["weightlifting", "sports", "male"] },
                { "emoji": "🤼‍♀️", "tags": ["wrestling", "sports", "female"] },
                { "emoji": "🤼", "tags": ["wrestling", "sports", "neutral"] },
                { "emoji": "🤼‍♂️", "tags": ["wrestling", "sports", "male"] },
                { "emoji": "🤸‍♀️", "tags": ["cartwheeling", "sports", "female"] },
                { "emoji": "🤸", "tags": ["cartwheeling", "sports", "neutral"] },
                { "emoji": "🤸‍♂️", "tags": ["cartwheeling", "sports", "male"] },
                { "emoji": "⛹️‍♀️", "tags": ["basketball", "sports", "female"] },
                { "emoji": "⛹", "tags": ["basketball", "sports", "neutral"] },
                { "emoji": "⛹️‍♂️", "tags": ["basketball", "sports", "male"] },
                { "emoji": "🤺", "tags": ["fencing", "sports", "sword"] },
                //{ "emoji": "🤾‍♀", "tags": ["handball", "sports", "female"] },
                { "emoji": "🤾", "tags": ["handball", "sports", "neutral"] },
                //{ "emoji": "🤾‍♂", "tags": ["handball", "sports", "male"] },
                //{ "emoji": "🏌‍♀", "tags": ["golf", "sports", "female"] },
                { "emoji": "🏌", "tags": ["golf", "sports", "neutral"] },
                //{ "emoji": "🏌‍♂", "tags": ["golf", "sports", "male"] },
                { "emoji": "🏇", "tags": ["horse racing", "sports", "jockey"] },
                //{ "emoji": "🧘‍♀", "tags": ["yoga", "sports", "female"] },
                { "emoji": "🧘", "tags": ["yoga", "sports", "neutral"] },
                //{ "emoji": "🧘‍♂", "tags": ["yoga", "sports", "male"] },
                //{ "emoji": "🏄‍♀", "tags": ["surfing", "sports", "female"] },
                { "emoji": "🏄", "tags": ["surfing", "sports", "neutral"] },
                //{ "emoji": "🏄‍♂", "tags": ["surfing", "sports", "male"] },
                //{ "emoji": "🏊‍♀", "tags": ["swimming", "sports", "female"] },
                { "emoji": "🏊", "tags": ["swimming", "sports", "neutral"] },
                //{ "emoji": "🏊‍♂", "tags": ["swimming", "sports", "male"] },
                //{ "emoji": "🤽‍♀", "tags": ["water polo", "sports", "female"] },
                { "emoji": "🤽", "tags": ["water polo", "sports", "neutral"] },
                //{ "emoji": "🤽‍♂", "tags": ["water polo", "sports", "male"] },
                //{ "emoji": "🚣‍♀", "tags": ["rowing", "sports", "female"] },
                { "emoji": "🚣", "tags": ["rowing", "sports", "neutral"] },
                //{ "emoji": "🚣‍♂", "tags": ["rowing", "sports", "male"] },
                //{ "emoji": "🧗‍♀", "tags": ["climbing", "sports", "female"] },
                { "emoji": "🧗", "tags": ["climbing", "sports", "neutral"] },
                //{ "emoji": "🧗‍♂", "tags": ["climbing", "sports", "male"] },
                //{ "emoji": "🚵‍♀", "tags": ["mountain biking", "sports", "female"] },
                { "emoji": "🚵", "tags": ["mountain biking", "sports", "neutral"] },
                //{ "emoji": "🚵‍♂", "tags": ["mountain biking", "sports", "male"] },
                //{ "emoji": "🚴‍♀", "tags": ["cycling", "sports", "female"] },
                { "emoji": "🚴", "tags": ["cycling", "sports", "neutral"] },
                //{ "emoji": "🚴‍♂", "tags": ["cycling", "sports", "male"] },
                { "emoji": "🏆", "tags": ["trophy", "winning", "award", "victory"] },
                { "emoji": "🥇", "tags": ["gold medal", "winning", "award", "first place"] },
                { "emoji": "🥈", "tags": ["silver medal", "winning", "award", "second place"] },
                { "emoji": "🥉", "tags": ["bronze medal", "winning", "award", "third place"] },
                { "emoji": "🏅", "tags": ["medal", "winning", "award", "achievement"] },
                { "emoji": "🎖", "tags": ["military medal", "award", "honor"] },
                { "emoji": "🏵", "tags": ["rosette", "award", "honor"] },
                { "emoji": "🎗", "tags": ["ribbon", "support", "awareness"] },
                { "emoji": "🎫", "tags": ["ticket", "entry", "event"] },
                { "emoji": "🎟", "tags": ["admission ticket", "entry", "event"] },
                { "emoji": "🎪", "tags": ["circus", "entertainment", "big top"] },
                //{ "emoji": "🤹‍♀", "tags": ["juggling", "entertainment", "female"] },
                { "emoji": "🤹", "tags": ["juggling", "entertainment", "neutral"] },
                //{ "emoji": "🤹‍♂", "tags": ["juggling", "entertainment", "male"] },
                { "emoji": "🎭", "tags": ["performing arts", "mask", "entertainment", "theater"] },
                { "emoji": "🩰", "tags": ["ballet shoes", "dance", "ballet"] },
                { "emoji": "🎨", "tags": ["art", "palette", "painting"] },
                { "emoji": "🎬", "tags": ["clapper board", "film", "movie", "cinema"] },
                { "emoji": "🎤", "tags": ["microphone", "music", "singing"] },
                { "emoji": "🎧", "tags": ["headphones", "music", "audio"] },
                { "emoji": "🎼", "tags": ["musical score", "music", "sheet music"] },
                { "emoji": "🎹", "tags": ["musical keyboard", "music", "piano"] },
                //{ "emoji": "🪇", "tags": ["maracas", "music", "instrument"] },
                { "emoji": "🥁", "tags": ["drum", "music", "instrument"] },
                { "emoji": "🪘", "tags": ["long drum", "music", "instrument"] },
                { "emoji": "🎷", "tags": ["saxophone", "music", "instrument"] },
                { "emoji": "🎺", "tags": ["trumpet", "music", "instrument"] },
                { "emoji": "🪗", "tags": ["accordion", "music", "instrument"] },
                { "emoji": "🎸", "tags": ["guitar", "music", "instrument"] },
                { "emoji": "🪕", "tags": ["banjo", "music", "instrument"] },
                { "emoji": "🎻", "tags": ["violin", "music", "instrument"] },
                //{ "emoji": "🪈", "tags": ["long drum", "music", "instrument"] },
                { "emoji": "🎲", "tags": ["game die", "game", "luck"] },
                { "emoji": "♟️", "tags": ["chess pawn", "game", "strategy"] },
                { "emoji": "🎯", "tags": ["bullseye", "target", "game"] },
                { "emoji": "🎳", "tags": ["bowling", "game", "sports"] },
                { "emoji": "🎮", "tags": ["video gamepad", "controller", "gaming"] },
                { "emoji": "🎰", "tags": ["slot machine", "game", "gambling"] },
                { "emoji": "🧩", "tags": ["puzzle piece", "game", "brain"] }
            ],
            [
                { "emoji": "🚗", "tags": ["car", "vehicle", "transportation"] },
                { "emoji": "🚕", "tags": ["taxi", "vehicle", "transportation"] },
                { "emoji": "🚙", "tags": ["SUV", "vehicle", "transportation"] },
                { "emoji": "🚌", "tags": ["bus", "vehicle", "transportation"] },
                { "emoji": "🚎", "tags": ["trolleybus", "vehicle", "transportation"] },
                { "emoji": "🏎", "tags": ["racing car", "vehicle", "sport"] },
                { "emoji": "🚓", "tags": ["police car", "vehicle", "law enforcement"] },
                { "emoji": "🚑", "tags": ["ambulance", "vehicle", "emergency"] },
                { "emoji": "🚒", "tags": ["fire engine", "vehicle", "emergency"] },
                { "emoji": "🚐", "tags": ["minibus", "vehicle", "transportation"] },
                { "emoji": "🛻", "tags": ["pickup truck", "vehicle", "transportation"] },
                { "emoji": "🚚", "tags": ["delivery truck", "vehicle", "transportation"] },
                { "emoji": "🚛", "tags": ["articulated lorry", "vehicle", "transportation"] },
                { "emoji": "🚜", "tags": ["tractor", "vehicle", "agriculture"] },
                { "emoji": "🦯", "tags": ["white cane", "blindness", "mobility", "accessibility"] },
                { "emoji": "🦽", "tags": ["manual wheelchair", "mobility", "accessibility"] },
                { "emoji": "🦼", "tags": ["motorized wheelchair", "mobility", "accessibility"] },
                { "emoji": "🩼", "tags": ["crutch", "mobility", "aid"] },
                { "emoji": "🛴", "tags": ["kick scooter", "vehicle", "transportation"] },
                { "emoji": "🚲", "tags": ["bicycle", "vehicle", "transportation"] },
                { "emoji": "🛵", "tags": ["motor scooter", "vehicle", "transportation"] },
                { "emoji": "🏍", "tags": ["motorcycle", "vehicle", "transportation"] },
                { "emoji": "🛺", "tags": ["auto rickshaw", "vehicle", "transportation"] },
                { "emoji": "🛞", "tags": ["wheel", "vehicle", "transportation"] },
                { "emoji": "🚨", "tags": ["rotating light", "emergency", "alert"] },
                { "emoji": "🚔", "tags": ["oncoming police car", "vehicle", "law enforcement"] },
                { "emoji": "🚍", "tags": ["oncoming bus", "vehicle", "transportation"] },
                { "emoji": "🚘", "tags": ["oncoming automobile", "vehicle", "transportation"] },
                { "emoji": "🚖", "tags": ["oncoming taxi", "vehicle", "transportation"] },
                { "emoji": "🚡", "tags": ["aerial tramway", "vehicle", "transportation"] },
                { "emoji": "🚠", "tags": ["mountain cableway", "vehicle", "transportation"] },
                { "emoji": "🚟", "tags": ["suspension railway", "vehicle", "transportation"] },
                { "emoji": "🚃", "tags": ["railway car", "vehicle", "transportation"] },
                { "emoji": "🚋", "tags": ["tram car", "vehicle", "transportation"] },
                { "emoji": "🚞", "tags": ["mountain railway", "vehicle", "transportation"] },
                { "emoji": "🚝", "tags": ["monorail", "vehicle", "transportation"] },
                { "emoji": "🚄", "tags": ["high-speed train", "vehicle", "transportation"] },
                { "emoji": "🚅", "tags": ["bullet train", "vehicle", "transportation"] },
                { "emoji": "🚈", "tags": ["light rail", "vehicle", "transportation"] },
                { "emoji": "🚂", "tags": ["locomotive", "vehicle", "transportation"] },
                { "emoji": "🚆", "tags": ["train", "vehicle", "transportation"] },
                { "emoji": "🚇", "tags": ["metro", "vehicle", "transportation"] },
                { "emoji": "🚊", "tags": ["tram", "vehicle", "transportation"] },
                { "emoji": "🚉", "tags": ["station", "vehicle", "transportation"] },
                { "emoji": "✈️", "tags": ["airplane", "vehicle", "transportation"] },
                { "emoji": "🛫", "tags": ["departure", "vehicle", "transportation"] },
                { "emoji": "🛬", "tags": ["arrival", "vehicle", "transportation"] },
                { "emoji": "🛩", "tags": ["small airplane", "vehicle", "transportation"] },
                { "emoji": "💺", "tags": ["seat", "vehicle", "transportation"] },
                { "emoji": "🛰", "tags": ["satellite", "vehicle", "space"] },
                { "emoji": "🚀", "tags": ["rocket", "vehicle", "space"] },
                { "emoji": "🛸", "tags": ["flying saucer", "ufo", "alien", "vehicle", "space"] },
                { "emoji": "🚁", "tags": ["helicopter", "vehicle", "transportation"] },
                { "emoji": "🛶", "tags": ["canoe", "vehicle", "water"] },
                { "emoji": "⛵️", "tags": ["sailboat", "vehicle", "water"] },
                { "emoji": "🚤", "tags": ["speedboat", "vehicle", "water"] },
                { "emoji": "🛥", "tags": ["motor boat", "vehicle", "water"] },
                { "emoji": "🛳", "tags": ["passenger ship", "vehicle", "water"] },
                { "emoji": "⛴", "tags": ["ferry", "vehicle", "water"] },
                { "emoji": "🚢", "tags": ["ship", "vehicle", "water"] },
                { "emoji": "🛟", "tags": ["ring buoy", "help", "sos", "s.o.s.", "safety", "rescue"] },
                { "emoji": "⚓️", "tags": ["anchor", "nautical", "water"] },
                { "emoji": "🏗", "tags": ["construction", "building", "site"] },
                { "emoji": "🪝", "tags": ["hook", "tool", "nautical"] },
                { "emoji": "⛽️", "tags": ["fuel pump", "gas", "station"] },
                { "emoji": "🚧", "tags": ["construction", "barrier", "road"] },
                { "emoji": "🚦", "tags": ["vertical traffic light", "signal", "road"] },
                { "emoji": "🚥", "tags": ["horizontal traffic light", "signal", "road"] },
                { "emoji": "🚏", "tags": ["bus stop", "transportation", "public"] }
            ],
            [
                { "emoji": "🗺", "tags": ["map", "navigation", "travel"] },
                { "emoji": "🗿", "tags": ["moai", "statue", "easter island", "face"] },
                { "emoji": "🗽", "tags": ["statue of liberty", "new york", "monument", "freedom", "democracy", "usa", "america"] },
                { "emoji": "🗼", "tags": ["tokyo tower", "japan", "monument"] },
                { "emoji": "🏰", "tags": ["castle", "building", "historic"] },
                { "emoji": "🏯", "tags": ["japanese castle", "building", "historic"] },
                { "emoji": "🏟", "tags": ["stadium", "sports", "venue"] },
                { "emoji": "🎡", "tags": ["ferris wheel", "amusement", "ride"] },
                { "emoji": "🎢", "tags": ["roller coaster", "amusement", "ride"] },
                { "emoji": "🎠", "tags": ["carousel", "amusement", "ride"] },
                { "emoji": "⛲️", "tags": ["fountain", "water", "park"] },
                { "emoji": "⛱", "tags": ["parasol", "umbrella", "beach"] },
                { "emoji": "🏖", "tags": ["beach", "umbrella", "vacation"] },
                { "emoji": "🏝", "tags": ["desert island", "tropical", "vacation"] },
                { "emoji": "🏜", "tags": ["desert", "sand", "arid"] },
                { "emoji": "🌋", "tags": ["volcano", "eruption", "lava"] },
                { "emoji": "⛰", "tags": ["mountain", "nature", "landscape"] },
                { "emoji": "🏔", "tags": ["snow-capped mountain", "nature", "landscape"] },
                { "emoji": "🗻", "tags": ["mount fuji", "japan", "nature"] },
                { "emoji": "🏕", "tags": ["camping", "tent", "outdoors"] },
                { "emoji": "⛺️", "tags": ["tent", "camping", "outdoors"] },
                { "emoji": "🛖", "tags": ["hut", "shelter", "primitive"] },
                { "emoji": "🏠", "tags": ["house", "home", "building"] },
                { "emoji": "🏡", "tags": ["house with garden", "home", "building"] },
                { "emoji": "🏘", "tags": ["housing", "neighborhood", "residential"] },
                { "emoji": "🏚", "tags": ["derelict house", "building", "abandoned"] },
                { "emoji": "🏭", "tags": ["factory", "building", "industrial"] },
                { "emoji": "🏢", "tags": ["office building", "business", "skyscraper"] },
                { "emoji": "🏬", "tags": ["department store", "shopping", "building"] },
                { "emoji": "🏣", "tags": ["japanese post office", "building", "postal"] },
                { "emoji": "🏤", "tags": ["post office", "building", "postal"] },
                { "emoji": "🏥", "tags": ["hospital", "building", "medical"] },
                { "emoji": "🏦", "tags": ["bank", "building", "financial"] },
                { "emoji": "🏨", "tags": ["hotel", "building", "accommodation"] },
                { "emoji": "🏪", "tags": ["convenience store", "shopping", "building"] },
                { "emoji": "🏫", "tags": ["high school", "college", "building", "education"] },
                { "emoji": "🏩", "tags": ["love hotel", "building", "romantic"] },
                { "emoji": "💒", "tags": ["wedding", "christianity", "chapel", "building"] },
                { "emoji": "🏛", "tags": ["classical building", "historic", "architecture"] },
                { "emoji": "⛪️", "tags": ["church", "christianity", "building", "religion"] },
                { "emoji": "🕌", "tags": ["mosque", "building", "religion"] },
                { "emoji": "🕍", "tags": ["synagogue", "judaism", "building", "religion"] },
                { "emoji": "🛕", "tags": ["hindu temple", "building", "religion"] },
                { "emoji": "🕋", "tags": ["kaaba", "islam", "building", "religion"] },
                { "emoji": "⛩", "tags": ["shinto shrine", "japan", "religion"] },
                { "emoji": "🛤", "tags": ["railway track", "transportation", "railroad"] },
                { "emoji": "🛣", "tags": ["motorway", "road", "transportation"] },
                { "emoji": "🗾", "tags": ["map of japan", "japan"] },
                { "emoji": "🎑", "tags": ["moon viewing ceremony", "festival", "japan"] },
                { "emoji": "🏞", "tags": ["national park", "nature", "landscape"] },
                { "emoji": "🌅", "tags": ["sunrise", "nature", "landscape"] },
                { "emoji": "🌄", "tags": ["sunrise over mountains", "nature", "landscape"] },
                { "emoji": "🌠", "tags": ["shooting star", "night", "wish"] },
                { "emoji": "🎇", "tags": ["sparkler", "celebration", "fireworks"] },
                { "emoji": "🎆", "tags": ["fireworks", "celebration", "event"] },
                { "emoji": "🌇", "tags": ["sunset", "city", "landscape"] },
                { "emoji": "🌆", "tags": ["cityscape at dusk", "city", "landscape"] },
                { "emoji": "🏙", "tags": ["cityscape", "city", "urban"] },
                { "emoji": "🌃", "tags": ["night with stars", "city", "night"] },
                { "emoji": "🌌", "tags": ["milky way", "space", "night"] },
                { "emoji": "🌉", "tags": ["bridge at night", "city", "landscape"] },
                { "emoji": "🌁", "tags": ["foggy", "city", "landscape"] }
            ],
            [
                { "emoji": "🪢", "tags": ["knot", "tie", "loop"] },
                { "emoji": "🧶", "tags": ["yarn", "knitting", "craft"] },
                { "emoji": "🧵", "tags": ["thread", "sewing", "needle"] },
                { "emoji": "🪡", "tags": ["needle", "sewing", "craft"] },
                { "emoji": "🧥", "tags": ["coat", "jacket", "clothing"] },
                { "emoji": "🥼", "tags": ["lab coat", "scientist", "clothing"] },
                { "emoji": "🦺", "tags": ["safety vest", "protection", "clothing"] },
                { "emoji": "👚", "tags": ["blouse", "shirt", "clothing"] },
                { "emoji": "👕", "tags": ["t-shirt", "shirt", "clothing"] },
                { "emoji": "👖", "tags": ["jeans", "pants", "clothing"] },
                { "emoji": "🩲", "tags": ["briefs", "underwear", "clothing"] },
                { "emoji": "🩳", "tags": ["shorts", "clothing", "summer"] },
                { "emoji": "👔", "tags": ["necktie", "tie", "clothing"] },
                { "emoji": "👗", "tags": ["dress", "clothing", "fashion"] },
                { "emoji": "👙", "tags": ["bikini", "swimsuit", "clothing"] },
                { "emoji": "🩱", "tags": ["one-piece swimsuit", "swimming", "clothing"] },
                { "emoji": "👘", "tags": ["kimono", "japan", "clothing"] },
                { "emoji": "🥻", "tags": ["sari", "india", "clothing"] },
                { "emoji": "🩴", "tags": ["shoe", "thong sandal", "flip-flop", "clothing"] },
                { "emoji": "🥿", "tags": ["shoe", "flat shoe", "ballet flat", "clothing"] },
                { "emoji": "👠", "tags": ["shoe", "high-heeled shoe", "fashion", "clothing"] },
                { "emoji": "👡", "tags": ["shoe", "sandal", "fashion", "clothing"] },
                { "emoji": "👢", "tags": ["shoe", "boot", "fashion", "clothing"] },
                { "emoji": "👞", "tags": ["shoe", "fashion", "clothing"] },
                { "emoji": "👟", "tags": ["shoe", "sneaker", "fashion", "clothing"] },
                { "emoji": "🥾", "tags": ["shoe", "hiking boot", "outdoor", "clothing"] },
                { "emoji": "🧦", "tags": ["socks", "clothing", "footwear"] },
                { "emoji": "🧤", "tags": ["gloves", "clothing", "winter"] },
                { "emoji": "🧣", "tags": ["scarf", "clothing", "winter"] },
                { "emoji": "🎩", "tags": ["top hat", "gentleman", "fashion", "clothing"] },
                { "emoji": "🧢", "tags": ["cap", "hat", "clothing"] },
                { "emoji": "👒", "tags": ["hat", "fashion", "clothing"] },
                { "emoji": "🎓", "tags": ["graduation cap", "student", "pupil", "school", "college", "university", "science", "education", "clothing"] },
                { "emoji": "⛑", "tags": ["helmet with white cross", "protection", "clothing"] },
                { "emoji": "🪖", "tags": ["military helmet", "army", "protection", "clothing"] },
                { "emoji": "👑", "tags": ["crown", "royalty", "king", "queen", "prince", "princess", "accessory"] },
                { "emoji": "💍", "tags": ["ring", "jewelry", "accessory"] },
                { "emoji": "👝", "tags": ["pouch", "bag", "accessory"] },
                { "emoji": "👛", "tags": ["purse", "bag", "accessory"] },
                { "emoji": "👜", "tags": ["handbag", "bag", "accessory"] },
                { "emoji": "💼", "tags": ["briefcase", "bag", "accessory"] },
                { "emoji": "🎒", "tags": ["backpack", "bag", "accessory"] },
                { "emoji": "🧳", "tags": ["luggage", "travel", "accessory"] },
                { "emoji": "👓", "tags": ["glasses", "accessory", "vision"] },
                { "emoji": "🕶", "tags": ["sunglasses", "accessory", "fashion"] },
                { "emoji": "🥽", "tags": ["goggles", "protection", "accessory"] },
                { "emoji": "🌂", "tags": ["umbrella", "accessory", "rain", "weather"] },
                { "emoji": "⌚️", "tags": ["watch", "time", "clock", "accessory"] },
                { "emoji": "📱", "tags": ["mobile phone", "smartphone", "communication"] },
                { "emoji": "📲", "tags": ["mobile phone with arrow", "smartphone", "communication"] },
                { "emoji": "💻", "tags": ["laptop", "computer", "technology"] },
                { "emoji": "⌨️", "tags": ["keyboard", "computer", "input"] },
                { "emoji": "🖥", "tags": ["desktop computer", "screen", "monitor", "technology"] },
                { "emoji": "🖨", "tags": ["printer", "fax", "scanner", "office", "technology"] },
                { "emoji": "🖱", "tags": ["computer mouse", "input", "accessory"] },
                { "emoji": "🖲", "tags": ["trackball", "input", "technology"] },
                { "emoji": "🕹️", "tags": ["joystick", "gaming", "controller", "button", "input"] },
                { "emoji": "🗜", "tags": ["clamp", "tool", "hold"] },
                { "emoji": "💽", "tags": ["mini disc", "media", "storage"] },
                { "emoji": "💾", "tags": ["floppy disk", "storage", "save"] },
                { "emoji": "💿", "tags": ["CD", "blu-ray", "media", "storage"] },
                { "emoji": "📀", "tags": ["DVD", "blu-ray", "media", "storage"] },
                { "emoji": "📼", "tags": ["VHS tape", "video", "media"] },
                { "emoji": "📷", "tags": ["camera", "photography", "device"] },
                { "emoji": "📸", "tags": ["camera with flash", "photography", "device"] },
                { "emoji": "📹", "tags": ["video camera", "film", "movie", "record", "cinema", "device"] },
                { "emoji": "🎥", "tags": ["movie camera", "film", "movie", "record", "cinema", "device"] },
                { "emoji": "📽", "tags": ["film projector", "film", "movie", "record", "cinema", "device"] },
                { "emoji": "🎞", "tags": ["film frames", "tape", "film", "movie", "record", "cinema", "negative"] },
                { "emoji": "📞", "tags": ["telephone", "communication", "call"] },
                { "emoji": "☎️", "tags": ["telephone", "communication", "call"] },
                { "emoji": "📟", "tags": ["pager", "communication", "device", "message"] },
                { "emoji": "📠", "tags": ["fax machine", "office", "communication"] },
                { "emoji": "📺", "tags": ["television", "tv", "screen", "device"] },
                { "emoji": "📻", "tags": ["radio", "music", "broadcast"] },
                { "emoji": "🎙", "tags": ["microphone", "music", "audio", "record"] },
                { "emoji": "🎚", "tags": ["level slider", "music", "audio", "mixing console"] },
                { "emoji": "🎛", "tags": ["control knobs", "music", "music", "technology", "mixing console"] },
                { "emoji": "🧭", "tags": ["compass", "navigation", "exploration", "direction", "north", "east", "south", "west"] },
                { "emoji": "⏱", "tags": ["stopwatch", "time", "measurement"] },
                { "emoji": "⏲️", "tags": ["timer", "time", "waiting", "countdown"] },
                { "emoji": "⏰", "tags": ["alarm clock", "time", "wake up", "waiting", "measurement", "countdown"] },
                { "emoji": "🕰", "tags": ["mantelpiece clock", "time", "decor", "waiting", "measurement", "countdown"] },
                { "emoji": "⌛️", "tags": ["hourglass", "sand", "time", "waiting", "waiting", "measurement", "countdown"] },
                { "emoji": "⏳", "tags": ["hourglass with flowing sand", "time", "waiting", "measurement", "countdown"] },
                { "emoji": "📡", "tags": ["satellite antenna", "signal", "communication"] },
                { "emoji": "🔋", "tags": ["full battery", "energy", "power", "charge", "voltage", "electricity"] },
                { "emoji": "🪫", "tags": ["low battery", "energy", "power", "charge", "voltage", "electricity"] },
                { "emoji": "🔌", "tags": ["electric plug", "power", "connection", "electricity"] },
                { "emoji": "💡", "tags": ["light bulb", "idea", "light"] },
                { "emoji": "🔦", "tags": ["flashlight", "tool", "light"] },
                { "emoji": "🕯", "tags": ["candle", "light", "fire", "burn"] },
                { "emoji": "🪔", "tags": ["lampshade", "light", "fire", "burn", "oil", "home"] },
                { "emoji": "🧯", "tags": ["fire extinguisher", "safety", "emergency", "fire", "burn"] },
                { "emoji": "🛢", "tags": ["oil drum", "container", "fuel"] },
                { "emoji": "💸", "tags": ["money with wings", "spending", "payment", "finance", "richness", "wealth"] },
                { "emoji": "💵", "tags": ["dollar banknote", "currency", "finance", "payment", "money", "richness", "wealth"] },
                { "emoji": "💴", "tags": ["yen banknote", "currency", "finance", "payment", "money", "richness", "wealth"] },
                { "emoji": "💶", "tags": ["euro banknote", "currency", "finance", "payment", "money", "richness", "wealth"] },
                { "emoji": "💷", "tags": ["pound banknote", "currency", "finance", "payment", "money", "richness", "wealth"] },
                { "emoji": "🪙", "tags": ["coin", "currency", "payment", "money", "richness", "wealth"] },
                { "emoji": "💰", "tags": ["money bag", "wealth", "payment", "finance", "richness", "wealth"] },
                { "emoji": "💳", "tags": ["credit card", "payment", "finance", "money", "richness", "wealth"] },
                { "emoji": "🪪", "tags": ["identification card", "ID", "document", "access"] },
                { "emoji": "💎", "tags": ["gem stone", "jewelry", "richness", "wealth"] },
                { "emoji": "⚖️", "tags": ["balance scale", "justice", "law"] },
                { "emoji": "🪜", "tags": ["ladder", "tool", "climb"] },
                { "emoji": "🧰", "tags": ["toolbox", "tools", "work"] },
                { "emoji": "🪛", "tags": ["screwdriver", "tool", "work"] },
                { "emoji": "🔧", "tags": ["wrench", "tool", "mechanic"] },
                { "emoji": "🔨", "tags": ["hammer", "tool", "construction"] },
                { "emoji": "⚒️", "tags": ["hammer and pick", "tool", "work"] },
                { "emoji": "🛠", "tags": ["hammer and wrench", "tool", "repair"] },
                { "emoji": "⛏", "tags": ["pick", "tool", "mining"] },
                { "emoji": "🪚", "tags": ["saw", "tool", "cutting"] },
                { "emoji": "🔩", "tags": ["nut and bolt", "hardware", "construction"] },
                { "emoji": "⚙️", "tags": ["gear", "mechanism", "engineering"] },
                { "emoji": "🪤", "tags": ["mouse trap", "trap", "catch"] },
                { "emoji": "🧱", "tags": ["brick", "construction", "building"] },
                { "emoji": "⛓", "tags": ["chain", "link", "connection"] },
                //{ "emoji": "⛓‍💥", "tags": ["chain with explosion", "damage", "danger"] },
                { "emoji": "🧲", "tags": ["magnet", "attraction", "science"] },
                { "emoji": "🔫", "tags": ["pistol", "gun", "weapon", "firearm"] },
                { "emoji": "💣", "tags": ["bomb", "explosion"] },
                { "emoji": "🧨", "tags": ["firecracker", "explosion"] },
                { "emoji": "🪓", "tags": ["axe", "tool", "cutting"] },
                { "emoji": "🔪", "tags": ["knife", "cooking", "cutting"] },
                { "emoji": "🗡️", "tags": ["dagger", "weapon", "knife"] },
                { "emoji": "⚔️", "tags": ["crossed swords", "battle", "weapon"] },
                { "emoji": "🛡", "tags": ["shield", "protection", "defense", "security"] },
                { "emoji": "🚬", "tags": ["cigarette", "smoking", "health"] },
                { "emoji": "⚰", "tags": ["coffin", "death", "dead", "corpse", "cemetery", "graveyard", "morgue", "mortuary"] },
                { "emoji": "🪦", "tags": ["headstone", "grave", "death", "dead", "corpse", "cemetery", "graveyard"] },
                { "emoji": "⚱", "tags": ["funeral urn", "ashes", "death", "dead", "corpse", "cemetery", "graveyard", "morgue", "mortuary"] },
                { "emoji": "🏺", "tags": ["pot", "ceramic", "history", "old"] },
                { "emoji": "🔮", "tags": ["crystal ball", "fortune", "magic", "pseudoscience"] },
                { "emoji": "📿", "tags": ["prayer beads", "religion", "faith"] },
                { "emoji": "🧿", "tags": ["nazar amulet", "protection", "luck"] },
                { "emoji": "🪬", "tags": ["hamsa", "protection", "amulet"] },
                { "emoji": "💈", "tags": ["barber pole", "hair cut", "grooming"] },
                { "emoji": "⚗️", "tags": ["alembic", "science", "chemistry"] },
                { "emoji": "🔭", "tags": ["telescope", "science", "space", "zoom", "star", "planet", "sun", "cosmos", "universe", "galaxy"] },
                { "emoji": "🔬", "tags": ["microscope", "science", "biology", "zoom"] },
                { "emoji": "🕳", "tags": ["hole", "empty", "space"] },
                { "emoji": "🩻", "tags": ["x-ray", "radiography", "medical", "diagnostic"] },
                { "emoji": "🩹", "tags": ["bandage", "medical", "injury"] },
                { "emoji": "🩺", "tags": ["stethoscope", "medical", "doctor"] },
                { "emoji": "💊", "tags": ["pill", "medicine", "health", "drug"] },
                { "emoji": "💉", "tags": ["syringe", "medical", "injection", "drug"] },
                { "emoji": "🩸", "tags": ["drop of blood", "health", "medicine"] },
                { "emoji": "🧬", "tags": ["dna", "genetics", "helix", "science"] },
                { "emoji": "🦠", "tags": ["microbe", "bacteria", "cell", "germ", "science", "biology"] },
                { "emoji": "🧫", "tags": ["petri dish", "microbe", "bacteria", "science", "biology"] },
                { "emoji": "🧪", "tags": ["test tube", "science", "chemistry"] },
                { "emoji": "🌡", "tags": ["thermometer", "temperature", "health"] },
                { "emoji": "🧹", "tags": ["broom", "cleaning", "household"] },
                { "emoji": "🪠", "tags": ["plunger", "cleaning", "plumbing", "wc", "water closet", "toilet"] },
                { "emoji": "🧺", "tags": ["basket", "container", "shopping"] },
                { "emoji": "🧻", "tags": ["toilet paper", "bathroom", "hygiene", "wc", "water closet", "toilet"] },
                { "emoji": "🚽", "tags": ["bathroom", "hygiene", "wc", "water closet", "toilet"] },
                { "emoji": "🚰", "tags": ["potable water", "health", "water", "thirsty"] },
                { "emoji": "🚿", "tags": ["shower", "bathroom", "hygiene", "water"] },
                { "emoji": "🛁", "tags": ["bathtub", "bathroom", "hygiene", "water", "relaxation"] },
                { "emoji": "🛀", "tags": ["person taking bath", "bathroom", "hygiene", "water"] },
                { "emoji": "🧼", "tags": ["soap", "cleaning", "hygiene", "water"] },
                { "emoji": "🪥", "tags": ["toothbrush", "hygiene", "cleaning"] },
                { "emoji": "🪒", "tags": ["razor", "shaving", "grooming", "hair"] },
                //{ "emoji": "🪮", "tags": ["comb", "grooming", "hair"] },
                { "emoji": "🧽", "tags": ["sponge", "cleaning", "household", "water"] },
                { "emoji": "🪣", "tags": ["bucket", "container", "cleaning", "water"] },
                { "emoji": "🧴", "tags": ["lotion", "cream", "bottle", "skin"] },
                { "emoji": "🛎", "tags": ["bell", "notification", "service"] },
                { "emoji": "🔑", "tags": ["key", "lock", "security", "access"] },
                { "emoji": "🗝", "tags": ["old key", "vintage", "security", "access"] },
                { "emoji": "🚪", "tags": ["door", "entrance", "exit"] },
                { "emoji": "🪑", "tags": ["chair", "furniture", "seating"] },
                { "emoji": "🛋", "tags": ["couch", "sofa", "furniture", "seating", "lie"] },
                { "emoji": "🛏", "tags": ["bed", "furniture", "sleep", "seating", "lie"] },
                { "emoji": "🛌", "tags": ["person in bed", "sleep", "seating", "lie"] },
                { "emoji": "🧸", "tags": ["teddy bear", "toy", "child"] },
                { "emoji": "🪆", "tags": ["nesting doll", "russian", "toy"] },
                { "emoji": "🖼", "tags": ["framed picture", "art", "painting", "decor"] },
                { "emoji": "🪞", "tags": ["mirror", "reflection", "decor"] },
                { "emoji": "🪟", "tags": ["window", "house", "glass", "view"] },
                { "emoji": "🛍", "tags": ["shopping bag", "shopping", "purchase"] },
                { "emoji": "🛒", "tags": ["shopping cart", "buy", "shop", "market"] },
                { "emoji": "🎁", "tags": ["gift", "present", "birthday", "xmas", "christmas", "celebration"] },
                { "emoji": "🎈", "tags": ["balloon", "celebration", "party", "air", "helium", "fly"] },
                { "emoji": "🎏", "tags": ["carp streamer", "celebration", "Japan"] },
                { "emoji": "🎀", "tags": ["ribbon", "gift", "decoration"] },
                { "emoji": "🪄", "tags": ["magic wand", "wizard", "fantasy"] },
                { "emoji": "🪅", "tags": ["piñata", "party", "celebration", "mexico"] },
                { "emoji": "🎊", "tags": ["confetti ball", "celebration", "party"] },
                { "emoji": "🎉", "tags": ["party popper", "celebration", "festivity"] },
                { "emoji": "🎎", "tags": ["japanese dolls", "celebration", "tradition"] },
                //{ "emoji": "🪭", "tags": ["folding fan", "japan", "decor"] },
                { "emoji": "🏮", "tags": ["lantern", "decor", "china", "light"] },
                { "emoji": "🎐", "tags": ["wind chime", "decor", "japan"] },
                { "emoji": "🪩", "tags": ["mirror ball", "party", "dance"] },
                { "emoji": "🧧", "tags": ["red envelope", "gift", "celebration"] },
                { "emoji": "✉️", "tags": ["envelope", "mail", "letter", "communication"] },
                { "emoji": "📩", "tags": ["envelope with arrow", "mail", "letter", "communication", "receive"] },
                { "emoji": "📨", "tags": ["incoming envelope", "mail", "letter", "communication", "send"] },
                { "emoji": "📧", "tags": ["e-mail", "communication", "letter", "message"] },
                { "emoji": "💌", "tags": ["love letter", "romance", "letter", "mail"] },
                { "emoji": "📥", "tags": ["inbox tray", "mail", "communication", "receive"] },
                { "emoji": "📤", "tags": ["outbox tray", "mail", "communication", "send"] },
                { "emoji": "📦", "tags": ["package", "shipping", "delivery"] },
                { "emoji": "🏷", "tags": ["label", "tag", "price"] },
                { "emoji": "🪧", "tags": ["placard", "sign", "announcement"] },
                { "emoji": "📪", "tags": ["mailbox with raised flag", "mail", "communication"] },
                { "emoji": "📫", "tags": ["mailbox", "mail", "communication"] },
                { "emoji": "📬", "tags": ["mailbox with lid", "mail", "communication"] },
                { "emoji": "📭", "tags": ["mailbox with lowered flag", "mail", "communication"] },
                { "emoji": "📮", "tags": ["postbox", "mail", "letter", "communication"] },
                { "emoji": "📯", "tags": ["postal horn", "mail", "letter", "announcement"] },
                { "emoji": "📜", "tags": ["scroll", "document", "ancient"] },
                { "emoji": "📃", "tags": ["page with curl", "document", "paper"] },
                { "emoji": "📄", "tags": ["page facing up", "document", "paper"] },
                { "emoji": "📑", "tags": ["bookmark tabs", "document", "organize"] },
                { "emoji": "🧾", "tags": ["receipt", "document", "shopping"] },
                { "emoji": "📊", "tags": ["bar chart", "data", "analytics", "office", "marketing", "statistics", "report", "presentation", "diagram"] },
                { "emoji": "📈", "tags": ["chart increasing", "growth", "data", "analytics", "office", "marketing", "statistics", "report", "presentation", "diagram"] },
                { "emoji": "📉", "tags": ["chart decreasing", "decline", "data", "analytics", "office", "marketing", "statistics", "report", "presentation", "diagram"] },
                { "emoji": "🗒️", "tags": ["spiral notepad", "notes", "pad", "writing"] },
                { "emoji": "🗓", "tags": ["spiral calendar", "date", "schedule"] },
                { "emoji": "📆", "tags": ["calendar", "date", "schedule"] },
                { "emoji": "📅", "tags": ["calendar", "date", "schedule"] },
                { "emoji": "🗑", "tags": ["wastebasket", "trash", "garbage", "delete", "remove"] },
                { "emoji": "📇", "tags": ["card index", "directory", "organize"] },
                { "emoji": "🗃", "tags": ["card file box", "storage", "office", "tabs", "organize"] },
                { "emoji": "🗳", "tags": ["ballot box", "election", "vote", "politics"] },
                { "emoji": "🗄", "tags": ["file cabinet", "storage", "organize"] },
                { "emoji": "📋", "tags": ["clipboard", "document", "notes"] },
                { "emoji": "📁", "tags": ["file folder", "storage", "office", "organize"] },
                { "emoji": "📂", "tags": ["open file folder", "storage", "office", "organize"] },
                { "emoji": "🗂", "tags": ["card index dividers", "storage", "office", "tabs", "organize"] },
                { "emoji": "🗞", "tags": ["rolled-up newspaper", "media", "print"] },
                { "emoji": "📰", "tags": ["newspaper", "media", "print"] },
                { "emoji": "📓", "tags": ["notebook", "writing", "school"] },
                { "emoji": "📔", "tags": ["brown notebook", "writing", "school"] },
                { "emoji": "📒", "tags": ["ledger", "writing", "finance"] },
                { "emoji": "📕", "tags": ["red book", "reading", "education"] },
                { "emoji": "📗", "tags": ["green book", "reading", "education"] },
                { "emoji": "📘", "tags": ["blue book", "reading", "education"] },
                { "emoji": "📙", "tags": ["orange book", "reading", "education"] },
                { "emoji": "📚", "tags": ["books", "reading", "education"] },
                { "emoji": "📖", "tags": ["open book", "reading", "education"] },
                { "emoji": "🔖", "tags": ["bookmark", "reading", "education"] },
                { "emoji": "🧷", "tags": ["safety pin", "accessory", "fastening", "binding"] },
                { "emoji": "🔗", "tags": ["link", "chain", "connection", "binding"] },
                { "emoji": "📎", "tags": ["paperclip", "stationery", "office", "binding"] },
                { "emoji": "🖇", "tags": ["linked paperclips", "stationery", "office", "binding"] },
                { "emoji": "📐", "tags": ["triangular ruler", "geometry", "measurement", "school"] },
                { "emoji": "📏", "tags": ["ruler", "measurement", "school"] },
                { "emoji": "🧮", "tags": ["abacus", "calculating", "math"] },
                { "emoji": "📌", "tags": ["pushpin", "stationery", "office"] },
                { "emoji": "📍", "tags": ["round pushpin", "stationery", "office"] },
                { "emoji": "✂️", "tags": ["scissors", "cutting", "craft"] },
                { "emoji": "🖊", "tags": ["pen", "writing", "stationery"] },
                { "emoji": "🖋", "tags": ["ink pen", "writing", "stationery"] },
                { "emoji": "✒️", "tags": ["fountain pen", "writing", "stationery"] },
                { "emoji": "🖌", "tags": ["paintbrush", "art", "craft"] },
                { "emoji": "🖍", "tags": ["crayon", "art", "drawing"] },
                { "emoji": "📝", "tags": ["memo", "pencil", "writing", "note"] },
                { "emoji": "✏️", "tags": ["pencil", "writing", "drawing"] },
                { "emoji": "🔍", "tags": ["magnifying glass", "search", "zoom"] },
                { "emoji": "🔎", "tags": ["magnifying glass tilted left", "search", "zoom"] },
                { "emoji": "🔏", "tags": ["locked with pen", "security", "protection"] },
                { "emoji": "🔐", "tags": ["locked", "security", "protection"] },
                { "emoji": "🔒", "tags": ["lock", "security", "protection"] },
                { "emoji": "🔓", "tags": ["unlocked", "security", "protection"] }
            ],
            [
                //{ "emoji": "🩷", "tags": ["light pink heart", "love", "affection"] },
                { "emoji": "❤️", "tags": ["red heart", "love", "romance"] },
                { "emoji": "🧡", "tags": ["orange heart", "friendship", "warmth"] },
                { "emoji": "💛", "tags": ["yellow heart", "happiness", "friendship"] },
                { "emoji": "💚", "tags": ["green heart", "nature", "growth"] },
                //{ "emoji": "🩵", "tags": ["blue heart", "trust", "calm"] },
                { "emoji": "💙", "tags": ["blue heart", "trust", "peace"] },
                { "emoji": "💜", "tags": ["purple heart", "luxury", "creativity"] },
                { "emoji": "🖤", "tags": ["black heart", "mourning", "darkness"] },
                //{ "emoji": "🩶", "tags": ["brown heart", "earth", "stability"] },
                { "emoji": "🤍", "tags": ["white heart", "purity", "peace"] },
                { "emoji": "🤎", "tags": ["brown heart", "comfort", "warmth"] },
                { "emoji": "💔", "tags": ["broken heart", "sadness", "loss"] },
                { "emoji": "❤️‍🔥", "tags": ["heart on fire", "passion", "intense love"] },
                { "emoji": "❤️‍🩹", "tags": ["mending heart", "healing", "recovery"] },
                { "emoji": "❣️", "tags": ["heavy heart exclamation", "importance", "emotion"] },
                { "emoji": "💕", "tags": ["two hearts", "love", "affection"] },
                { "emoji": "💞", "tags": ["revolving hearts", "romance", "love"] },
                { "emoji": "💓", "tags": ["beating heart", "love", "emotion"] },
                { "emoji": "💗", "tags": ["growing heart", "affection", "love"] },
                { "emoji": "💖", "tags": ["sparkling heart", "love", "joy"] },
                { "emoji": "💘", "tags": ["heart with arrow", "love", "romance"] },
                { "emoji": "💝", "tags": ["heart with ribbon", "gift", "love"] },
                { "emoji": "💟", "tags": ["heart decoration", "love", "beauty"] },
                { "emoji": "☮️", "tags": ["peace symbol", "peace", "non-violence"] },
                { "emoji": "✝️", "tags": ["cross", "christianity", "faith"] },
                { "emoji": "☪️", "tags": ["star and crescent", "islam", "faith"] },
                { "emoji": "🕉", "tags": ["om", "hinduism", "spirituality"] },
                { "emoji": "☸️", "tags": ["wheel of dharma", "buddhism", "spirituality"] },
                //{ "emoji": "🪯", "tags": ["shinto shrine", "japan", "culture"] },
                { "emoji": "✡️", "tags": ["star of david", "judaism", "faith"] },
                { "emoji": "🔯", "tags": ["six-pointed star", "symbol", "judaism"] },
                { "emoji": "🕎", "tags": ["menorah", "judaism", "hanukkah"] },
                { "emoji": "☯️", "tags": ["yin yang", "balance", "taoism"] },
                { "emoji": "☦️", "tags": ["orthodox cross", "christianity", "faith"] },
                { "emoji": "🛐", "tags": ["place of worship", "faith", "spirituality"] },
                { "emoji": "⛎", "tags": ["ophiuchus", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♈️", "tags": ["aries", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♉️", "tags": ["taurus", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♊️", "tags": ["gemini", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♋️", "tags": ["cancer", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♌️", "tags": ["leo", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♍️", "tags": ["virgo", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♎️", "tags": ["libra", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♏️", "tags": ["scorpio", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♐️", "tags": ["sagittarius", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♑️", "tags": ["capricorn", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♒️", "tags": ["aquarius", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "♓️", "tags": ["pisces", "zodiac", "astrology", "pseudoscience"] },
                { "emoji": "🆔", "tags": ["ID", "identification"] },
                { "emoji": "⚛️", "tags": ["atom symbol", "science", "nuclear"] },
                { "emoji": "🉑", "tags": ["japanese acceptable", "culture", "symbol"] },
                { "emoji": "☢️", "tags": ["radioactive", "nuclear", "atom", "danger"] },
                { "emoji": "☣️", "tags": ["biohazard", "danger", "warning"] },
                { "emoji": "📴", "tags": ["mobile phone off", "silent", "no signal"] },
                { "emoji": "📳", "tags": ["vibration mode", "phone", "notification"] },
                { "emoji": "🈶", "tags": ["japanese here", "symbol", "language"] },
                { "emoji": "🈚️", "tags": ["japanese free of charge", "symbol", "language"] },
                { "emoji": "🈸", "tags": ["japanese application", "form", "symbol"] },
                { "emoji": "🈺", "tags": ["japanese open for business", "symbol", "language"] },
                { "emoji": "🈷", "tags": ["japanese monthly", "symbol", "calendar"] },
                { "emoji": "✴️", "tags": ["eight-pointed star", "symbol", "design"] },
                { "emoji": "🆚", "tags": ["versus", "competition", "comparison", "letter", "alphabet"] },
                { "emoji": "💮", "tags": ["white flower", "symbol", "award"] },
                { "emoji": "🉐", "tags": ["japanese satisfactory", "culture", "symbol"] },
                { "emoji": "㊙️", "tags": ["japanese secret", "confidential", "symbol"] },
                { "emoji": "㊗️", "tags": ["japanese congratulations", "celebration", "symbol"] },
                { "emoji": "🈴", "tags": ["japanese application accepted", "symbol", "language"] },
                { "emoji": "🈵", "tags": ["japanese full", "symbol", "language"] },
                { "emoji": "🈹", "tags": ["japanese discount", "symbol", "language"] },
                { "emoji": "🈲", "tags": ["japanese prohibited", "symbol", "language"] },
                { "emoji": "🅰", "tags": ["blood type A", "letter", "alphabet", "symbol", "type"] },
                { "emoji": "🅱", "tags": ["blood type B", "letter", "alphabet", "symbol", "type"] },
                { "emoji": "🆎", "tags": ["blood type AB", "letter", "alphabet", "symbol", "type"] },
                { "emoji": "🆑", "tags": ["blood type L", "letter", "alphabet", "symbol", "type"] },
                { "emoji": "🅾", "tags": ["blood type O", "letter", "alphabet", "symbol", "type"] },
                { "emoji": "🆘", "tags": ["SOS", "emergency", "help", "text", "letter", "alphabet"] },
                { "emoji": "❌", "tags": ["cross mark", "error", "no", "remove", "delete"] },
                { "emoji": "⭕️", "tags": ["hollow red circle", "yes", "correct"] },
                { "emoji": "🛑", "tags": ["stop sign", "warning", "alert"] },
                { "emoji": "⛔️", "tags": ["no entry", "prohibition", "warning"] },
                { "emoji": "📛", "tags": ["name badge", "identification", "label"] },
                { "emoji": "🚫", "tags": ["prohibited", "no entry", "forbidden"] },
                { "emoji": "💯", "tags": ["hundred points", "perfection", "excellence"] },
                { "emoji": "💢", "tags": ["anger symbol", "frustration", "emotion"] },
                { "emoji": "♨️", "tags": ["hot springs", "relaxation", "spa"] },
                { "emoji": "🚷", "tags": ["no pedestrians", "restriction", "warning"] },
                { "emoji": "🚯", "tags": ["no littering", "clean", "environment"] },
                { "emoji": "🚳", "tags": ["no bicycles", "restriction", "warning"] },
                { "emoji": "🚱", "tags": ["no drinking", "restriction", "warning"] },
                { "emoji": "🔞", "tags": ["age restriction", "18+", "warning"] },
                { "emoji": "📵", "tags": ["no mobile phones", "restriction", "warning"] },
                { "emoji": "🚭", "tags": ["no smoking", "restriction", "warning"] },
                { "emoji": "❗️", "tags": ["exclamation mark", "attention", "warning"] },
                { "emoji": "❕", "tags": ["white exclamation mark", "attention", "warning"] },
                { "emoji": "❓", "tags": ["question mark", "inquiry", "curiosity"] },
                { "emoji": "❔", "tags": ["white question mark", "inquiry", "curiosity"] },
                { "emoji": "‼️", "tags": ["double exclamation mark", "emphasis", "attention"] },
                { "emoji": "⁉️", "tags": ["exclamation and question mark", "surprise", "curiosity"] },
                { "emoji": "🔅", "tags": ["dim button", "light", "brightness"] },
                { "emoji": "🔆", "tags": ["bright button", "light", "brightness"] },
                { "emoji": "〽️", "tags": ["part alternation mark", "music", "notation"] },
                { "emoji": "⚠️", "tags": ["warning", "caution", "alert"] },
                { "emoji": "🚸", "tags": ["children crossing", "warning", "alert"] },
                { "emoji": "🔱", "tags": ["trident emblem", "symbol", "power"] },
                { "emoji": "⚜️", "tags": ["fleur-de-lis", "symbol", "royalty"] },
                { "emoji": "🔰", "tags": ["Japanese mark of newcomers", "symbol", "language"] },
                { "emoji": "♻️", "tags": ["recycling symbol", "environment", "sustainability"] },
                { "emoji": "✅", "tags": ["check mark", "yes", "confirmation", "done"] },
                { "emoji": "🈯️", "tags": ["Japanese reserved", "symbol", "language"] },
                { "emoji": "💹", "tags": ["chart increasing with yen", "economy", "finance"] },
                { "emoji": "❇️", "tags": ["sparkle", "emphasis", "highlight"] },
                { "emoji": "✳️", "tags": ["eight-spoked asterisk", "symbol", "decoration"] },
                { "emoji": "❎", "tags": ["cross mark button", "error", "no"] },
                { "emoji": "🌐", "tags": ["globe with meridians", "world", "globalization"] },
                { "emoji": "💠", "tags": ["diamond shape with a dot", "design", "symbol"] },
                { "emoji": "Ⓜ️", "tags": ["circled M", "Metro", "transport", "letter", "alphabet"] },
                { "emoji": "🌀", "tags": ["cyclone", "weather", "swirl"] },
                { "emoji": "💤", "tags": ["zzz", "sleep", "rest"] },
                { "emoji": "🏧", "tags": ["ATM", "banking", "finance", "letter", "alphabet"] },
                { "emoji": "🚾", "tags": ["water closet", "restroom", "facility", "letter", "alphabet"] },
                { "emoji": "♿️", "tags": ["wheelchair symbol", "accessibility", "disability"] },
                { "emoji": "🅿️", "tags": ["parking", "sign", "symbol", "letter", "alphabet"] },
                { "emoji": "🛗", "tags": ["elevator", "lift", "transport"] },
                { "emoji": "🈳", "tags": ["japanese vacant", "symbol", "language"] },
                { "emoji": "🈂", "tags": ["japanese here", "location", "sign"] },
                { "emoji": "🛂", "tags": ["passport control", "border", "travel"] },
                { "emoji": "🛃", "tags": ["customs", "border", "travel"] },
                { "emoji": "🛄", "tags": ["baggage claim", "travel", "airport"] },
                { "emoji": "🛅", "tags": ["luggage", "travel", "airport"] },
                //{ "emoji": "🛜", "tags": ["airplane departure", "travel", "flight"] },
                { "emoji": "🚹", "tags": ["man symbol", "gender", "male"] },
                { "emoji": "🚺", "tags": ["woman symbol", "gender", "female"] },
                { "emoji": "🚼", "tags": ["baby symbol", "child", "family"] },
                { "emoji": "👨‍👩‍👦", "tags": ["family", "man woman boy", "parenting"] },
                { "emoji": "👨‍👩‍👧‍👦", "tags": ["family", "man woman girl boy", "parenting"] },
                { "emoji": "👩‍👦", "tags": ["family", "woman boy", "parenting"] },
                { "emoji": "👩‍👧‍👦", "tags": ["family", "woman girl boy", "parenting"] },
                { "emoji": "⚧️", "tags": ["transgender symbol", "identity"] },
                { "emoji": "🚻", "tags": ["restroom", "gender", "toilet"] },
                { "emoji": "🚮", "tags": ["litter in bin", "trash", "cleanliness"] },
                { "emoji": "🎦", "tags": ["cinema", "movie", "theater", "film"] },
                { "emoji": "📶", "tags": ["signal", "wifi", "connection"] },
                { "emoji": "🈁", "tags": ["Japanese service charge", "sign", "location"] },
                { "emoji": "🔣", "tags": ["symbols", "character", "set"] },
                { "emoji": "ℹ️", "tags": ["information", "info", "details", "letter", "alphabet"] },
                { "emoji": "🔤", "tags": ["input Latin letters", "text", "letter", "alphabet"] },
                { "emoji": "🔡", "tags": ["input lowercase Latin letters", "text", "letter", "alphabet"] },
                { "emoji": "🔠", "tags": ["input uppercase Latin letters", "text", "letter", "alphabet"] },
                { "emoji": "🆖", "tags": ["NG button", "negative", "symbol", "letter", "alphabet"] },
                { "emoji": "🆗", "tags": ["OK button", "positive", "symbol", "text", "letter", "alphabet"] },
                { "emoji": "🆙", "tags": ["UP button", "increase", "symbol", "text", "letter", "alphabet"] },
                { "emoji": "🆒", "tags": ["cool button", "status", "symbol", "text", "letter", "alphabet"] },
                { "emoji": "🆕", "tags": ["new button", "status", "symbol", "text", "letter", "alphabet"] },
                { "emoji": "🆓", "tags": ["free button", "status", "symbol", "text", "letter", "alphabet"] },
                { "emoji": "0️⃣", "tags": ["zero", "number", "numerical digit"] },
                { "emoji": "1️⃣", "tags": ["one", "number", "numerical digit"] },
                { "emoji": "2️⃣", "tags": ["two", "number", "numerical digit"] },
                { "emoji": "3️⃣", "tags": ["three", "number", "numerical digit"] },
                { "emoji": "4️⃣", "tags": ["four", "number", "numerical digit"] },
                { "emoji": "5️⃣", "tags": ["five", "number", "numerical digit"] },
                { "emoji": "6️⃣", "tags": ["six", "number", "numerical digit"] },
                { "emoji": "7️⃣", "tags": ["seven", "number", "numerical digit"] },
                { "emoji": "8️⃣", "tags": ["eight", "number", "numerical digit"] },
                { "emoji": "9️⃣", "tags": ["nine", "number", "numerical digit"] },
                { "emoji": "🔟", "tags": ["ten", "number", "numerical digit"] },
                { "emoji": "🔢", "tags": ["number", "numerical digit", "count"] },
                { "emoji": "#️⃣", "tags": ["hash", "number", "symbol"] },
                { "emoji": "*️⃣", "tags": ["asterisk", "number", "symbol"] },
                { "emoji": "⏏️", "tags": ["eject", "media", "control"] },
                { "emoji": "▶️", "tags": ["play", "media", "control"] },
                { "emoji": "⏸️", "tags": ["pause button", "media", "control"] },
                { "emoji": "⏯", "tags": ["play or pause", "media", "control"] },
                { "emoji": "⏹️", "tags": ["stop button", "media", "control"] },
                { "emoji": "⏺️", "tags": ["record", "media", "control"] },
                { "emoji": "⏭", "tags": ["next track", "media", "control"] },
                { "emoji": "⏮", "tags": ["previous track", "media", "control"] },
                { "emoji": "⏩", "tags": ["fast forward", "media", "control"] },
                { "emoji": "⏪", "tags": ["rewind", "media", "control"] },
                { "emoji": "⏫", "tags": ["up arrow", "media", "control"] },
                { "emoji": "⏬", "tags": ["down arrow", "media", "control"] },
                { "emoji": "◀️", "tags": ["left arrow", "direction", "navigation"] },
                { "emoji": "🔼", "tags": ["up arrow", "direction", "navigation"] },
                { "emoji": "🔽", "tags": ["down arrow", "direction", "navigation"] },
                { "emoji": "➡️", "tags": ["right arrow", "direction", "navigation"] },
                { "emoji": "⬅️", "tags": ["left arrow", "direction", "navigation"] },
                { "emoji": "⬆️", "tags": ["up arrow", "direction", "navigation"] },
                { "emoji": "⬇️", "tags": ["down arrow", "direction", "navigation"] },
                { "emoji": "↗️", "tags": ["up right arrow", "direction", "navigation"] },
                { "emoji": "↘️", "tags": ["down right arrow", "direction", "navigation"] },
                { "emoji": "↙️", "tags": ["down left arrow", "direction", "navigation"] },
                { "emoji": "↖️", "tags": ["up left arrow", "direction", "navigation"] },
                { "emoji": "↕️", "tags": ["up down arrow", "direction", "navigation"] },
                { "emoji": "↔️", "tags": ["left right arrow", "direction", "navigation"] },
                { "emoji": "↪️", "tags": ["right arrow curving left", "direction", "navigation"] },
                { "emoji": "↩️", "tags": ["left arrow curving right", "direction", "navigation"] },
                { "emoji": "⤴️", "tags": ["right arrow curving up", "direction", "navigation"] },
                { "emoji": "⤵️", "tags": ["right arrow curving down", "direction", "navigation"] },
                { "emoji": "🔀", "tags": ["shuffle tracks", "music", "control"] },
                { "emoji": "🔁", "tags": ["repeat button", "music", "control"] },
                { "emoji": "🔂", "tags": ["repeat single button", "music", "control"] },
                { "emoji": "🔄", "tags": ["counterclockwise arrows", "refresh", "update"] },
                { "emoji": "🔃", "tags": ["clockwise arrows", "refresh", "update"] },
                { "emoji": "🎵", "tags": ["musical note", "music", "sound"] },
                { "emoji": "🎶", "tags": ["multiple notes", "music", "sound"] },
                { "emoji": "➕", "tags": ["plus", "addition", "math"] },
                { "emoji": "➖", "tags": ["minus", "subtraction", "math"] },
                { "emoji": "➗", "tags": ["division", "math", "calculate"] },
                { "emoji": "✖️", "tags": ["multiply", "math", "calculate"] },
                { "emoji": "🟰", "tags": ["equals", "math", "calculate"] },
                { "emoji": "♾️", "tags": ["infinity", "limitless", "endless"] },
                { "emoji": "💲", "tags": ["dollar", "currency", "money"] },
                { "emoji": "💱", "tags": ["currency exchange", "money", "finance"] },
                { "emoji": "™️", "tags": ["trademark", "symbol", "legal"] },
                { "emoji": "©️", "tags": ["copyright", "legal", "protection"] },
                { "emoji": "®️", "tags": ["registered", "legal", "protection"] },
                { "emoji": "👁️‍🗨️", "tags": ["eye in speech bubble", "comment", "communication"] },
                { "emoji": "🔚", "tags": ["end", "finish", "stop", "text"] },
                { "emoji": "🔙", "tags": ["back", "return", "navigation", "text"] },
                { "emoji": "🔛", "tags": ["on", "status", "symbol", "text"] },
                { "emoji": "🔝", "tags": ["top", "position", "status", "text"] },
                { "emoji": "🔜", "tags": ["next", "forward", "navigation", "text"] },
                { "emoji": "〰️", "tags": ["wavy dash", "line", "decoration"] },
                { "emoji": "➰", "tags": ["curly loop", "line", "decoration"] },
                { "emoji": "➿", "tags": ["double curly loop", "line", "decoration"] },
                { "emoji": "✔️", "tags": ["check mark", "confirmation", "status"] },
                { "emoji": "☑️", "tags": ["check box", "confirmation", "status"] },
                { "emoji": "🔘", "tags": ["radio button", "selection", "status"] },
                { "emoji": "🔴", "tags": ["red circle", "color", "symbol"] },
                { "emoji": "🟠", "tags": ["orange circle", "color", "symbol"] },
                { "emoji": "🟡", "tags": ["yellow circle", "color", "symbol"] },
                { "emoji": "🟢", "tags": ["green circle", "color", "symbol"] },
                { "emoji": "🔵", "tags": ["blue circle", "color", "symbol"] },
                { "emoji": "🟣", "tags": ["purple circle", "color", "symbol"] },
                { "emoji": "⚫️", "tags": ["black circle", "color", "symbol"] },
                { "emoji": "⚪️", "tags": ["white circle", "color", "symbol"] },
                { "emoji": "🟤", "tags": ["brown circle", "color", "symbol"] },
                { "emoji": "🔺", "tags": ["red triangle", "color", "symbol"] },
                { "emoji": "🔻", "tags": ["down triangle", "color", "symbol"] },
                { "emoji": "🔸", "tags": ["small orange diamond", "color", "symbol"] },
                { "emoji": "🔹", "tags": ["small blue diamond", "color", "symbol"] },
                { "emoji": "🔶", "tags": ["large yellow diamond", "color", "symbol"] },
                { "emoji": "🔷", "tags": ["large blue diamond", "color", "symbol"] },
                { "emoji": "🔳", "tags": ["white square", "color", "symbol"] },
                { "emoji": "🔲", "tags": ["black square", "color", "symbol"] },
                { "emoji": "▪️", "tags": ["black small square", "color", "symbol"] },
                { "emoji": "▫️", "tags": ["white small square", "color", "symbol"] },
                { "emoji": "◾️", "tags": ["black medium square", "color", "symbol"] },
                { "emoji": "◽️", "tags": ["white medium square", "color", "symbol"] },
                { "emoji": "◼️", "tags": ["black medium black square", "color", "symbol"] },
                { "emoji": "◻️", "tags": ["white medium black square", "color", "symbol"] },
                { "emoji": "🟥", "tags": ["red square", "color", "symbol"] },
                { "emoji": "🟧", "tags": ["orange square", "color", "symbol"] },
                { "emoji": "🟨", "tags": ["yellow square", "color", "symbol"] },
                { "emoji": "🟩", "tags": ["green square", "color", "shape"] },
                { "emoji": "🟦", "tags": ["blue square", "color", "shape"] },
                { "emoji": "🟪", "tags": ["purple square", "color", "shape"] },
                { "emoji": "⬛️", "tags": ["black square", "color", "shape"] },
                { "emoji": "⬜️", "tags": ["white square", "color", "shape"] },
                { "emoji": "🟫", "tags": ["brown square", "color", "shape"] },
                { "emoji": "🔈", "tags": ["speaker", "sound", "audio"] },
                { "emoji": "🔇", "tags": ["muted speaker", "silent", "audio"] },
                { "emoji": "🔉", "tags": ["speaker low volume", "audio", "sound"] },
                { "emoji": "🔊", "tags": ["speaker high volume", "audio", "sound"] },
                { "emoji": "🔔", "tags": ["bell", "notification", "alert"] },
                { "emoji": "🔕", "tags": ["bell with slash", "mute", "silent"] },
                { "emoji": "📣", "tags": ["megaphone", "announcement", "loudspeaker"] },
                { "emoji": "📢", "tags": ["loudspeaker", "announcement", "audio"] },
                { "emoji": "💬", "tags": ["speech balloon", "talk", "communication"] },
                { "emoji": "💭", "tags": ["thought balloon", "thinking", "ideas"] },
                { "emoji": "🗯", "tags": ["right anger bubble", "speech", "communication"] },
                { "emoji": "♠️", "tags": ["spade", "card", "suit"] },
                { "emoji": "♣️", "tags": ["club", "card", "suit"] },
                { "emoji": "♥️", "tags": ["heart", "card", "suit"] },
                { "emoji": "♦️", "tags": ["diamond", "card", "suit"] },
                { "emoji": "🃏", "tags": ["joker", "card", "game"] },
                { "emoji": "🎴", "tags": ["playing card", "game", "cards"] },
                { "emoji": "🀄️", "tags": ["mahjong red dragon", "game", "tiles"] },
                { "emoji": "🕐", "tags": ["clock one o'clock", "time", "watch"] },
                { "emoji": "🕑", "tags": ["clock two o'clock", "time", "watch"] },
                { "emoji": "🕒", "tags": ["clock three o'clock", "time", "watch"] },
                { "emoji": "🕓", "tags": ["clock four o'clock", "time", "watch"] },
                { "emoji": "🕔", "tags": ["clock five o'clock", "time", "watch"] },
                { "emoji": "🕕", "tags": ["clock six o'clock", "time", "watch"] },
                { "emoji": "🕖", "tags": ["clock seven o'clock", "time", "watch"] },
                { "emoji": "🕗", "tags": ["clock eight o'clock", "time", "watch"] },
                { "emoji": "🕘", "tags": ["clock nine o'clock", "time", "watch"] },
                { "emoji": "🕙", "tags": ["clock ten o'clock", "time", "watch"] },
                { "emoji": "🕚", "tags": ["clock eleven o'clock", "time", "watch"] },
                { "emoji": "🕛", "tags": ["clock twelve o'clock", "time", "watch"] },
                { "emoji": "🕜", "tags": ["clock one-thirty", "time", "watch"] },
                { "emoji": "🕝", "tags": ["clock two-thirty", "time", "watch"] },
                { "emoji": "🕞", "tags": ["clock three-thirty", "time", "watch"] },
                { "emoji": "🕟", "tags": ["clock four-thirty", "time", "watch"] },
                { "emoji": "🕠", "tags": ["clock five-thirty", "time", "watch"] },
                { "emoji": "🕡", "tags": ["clock six-thirty", "time", "watch"] },
                { "emoji": "🕢", "tags": ["clock seven-thirty", "time", "watch"] },
                { "emoji": "🕣", "tags": ["clock eight-thirty", "time", "watch"] },
                { "emoji": "🕤", "tags": ["clock nine-thirty", "time", "watch"] },
                { "emoji": "🕥", "tags": ["clock ten-thirty", "time", "watch"] },
                { "emoji": "🕦", "tags": ["clock eleven-thirty", "time", "watch"] },
                { "emoji": "🕧", "tags": ["clock twelve-thirty", "time", "watch"] }
            ],
            [
                { "emoji": "🏳", "tags": ["white flag", "surrender", "peace"] },
                { "emoji": "🏴", "tags": ["black flag", "anarchy", "pirate"] },
                { "emoji": "🏴‍☠️", "tags": ["pirate flag", "skull", "crossbones", "bones", "skull", "dead", "death"] },
                { "emoji": "🏁", "tags": ["chequered flag", "finish line", "cross racing"] },
                { "emoji": "🚩", "tags": ["triangular flag", "warning", "red"] },
                { "emoji": "🏳️‍🌈", "tags": ["rainbow flag", "lgbtq", "pride", "love", "gender", "sex"] },
                { "emoji": "🏳️‍⚧️", "tags": ["transgender flag", "transgender", "pride", "love", "gender", "sex"] },
                { "emoji": "🇺🇳", "tags": ["united nations"] },
                { "emoji": "🇦🇫", "tags": ["afghanistan"] },
                { "emoji": "🇦🇽", "tags": ["aland islands"] },
                { "emoji": "🇦🇱", "tags": ["albania"] },
                { "emoji": "🇩🇿", "tags": ["algeria"] },
                { "emoji": "🇦🇸", "tags": ["american samoa"] },
                { "emoji": "🇦🇩", "tags": ["andorra"] },
                { "emoji": "🇦🇴", "tags": ["angola"] },
                { "emoji": "🇦🇮", "tags": ["anguilla"] },
                { "emoji": "🇦🇶", "tags": ["antarctica", "continent"] },
                { "emoji": "🇦🇬", "tags": ["antigua and barbuda"] },
                { "emoji": "🇦🇷", "tags": ["argentina"] },
                { "emoji": "🇦🇲", "tags": ["armenia"] },
                { "emoji": "🇦🇼", "tags": ["aruba"] },
                { "emoji": "🇦🇺", "tags": ["australia"] },
                { "emoji": "🇦🇹", "tags": ["austria"] },
                { "emoji": "🇦🇿", "tags": ["azerbaijan"] },
                { "emoji": "🇧🇸", "tags": ["bahamas"] },
                { "emoji": "🇧🇭", "tags": ["bahrain"] },
                { "emoji": "🇧🇩", "tags": ["bangladesh"] },
                { "emoji": "🇧🇧", "tags": ["barbados"] },
                { "emoji": "🇧🇾", "tags": ["belarus"] },
                { "emoji": "🇧🇪", "tags": ["belgium"] },
                { "emoji": "🇧🇿", "tags": ["belize"] },
                { "emoji": "🇧🇯", "tags": ["benin"] },
                { "emoji": "🇧🇲", "tags": ["bermuda"] },
                { "emoji": "🇧🇹", "tags": ["bhutan"] },
                { "emoji": "🇧🇴", "tags": ["bolivia"] },
                { "emoji": "🇧🇦", "tags": ["bosnia and herzegovina"] },
                { "emoji": "🇧🇼", "tags": ["botswana"] },
                { "emoji": "🇧🇷", "tags": ["brazil"] },
                { "emoji": "🇻🇬", "tags": ["british virgin islands"] },
                { "emoji": "🇧🇳", "tags": ["brunei"] },
                { "emoji": "🇧🇬", "tags": ["bulgaria"] },
                { "emoji": "🇧🇫", "tags": ["burkina faso"] },
                { "emoji": "🇧🇮", "tags": ["burundi"] },
                { "emoji": "🇰🇭", "tags": ["cambodia"] },
                { "emoji": "🇨🇲", "tags": ["cameroon"] },
                { "emoji": "🇨🇦", "tags": ["canada"] },
                { "emoji": "🇮🇨", "tags": ["canary islands", "region"] },
                { "emoji": "🇨🇻", "tags": ["cape verde"] },
                { "emoji": "🇧🇶", "tags": ["caribbean netherlands"] },
                { "emoji": "🇰🇾", "tags": ["cayman islands"] },
                { "emoji": "🇨🇫", "tags": ["central african republic"] },
                { "emoji": "🇹🇩", "tags": ["chad"] },
                { "emoji": "🇮🇴", "tags": ["british indian ocean territory"] },
                { "emoji": "🇨🇱", "tags": ["chile"] },
                { "emoji": "🇨🇳", "tags": ["china"] },
                { "emoji": "🇨🇽", "tags": ["christmas island"] },
                { "emoji": "🇨🇨", "tags": ["cocos islands"] },
                { "emoji": "🇨🇴", "tags": ["colombia"] },
                { "emoji": "🇰🇲", "tags": ["comoros"] },
                { "emoji": "🇨🇬", "tags": ["congo - brazzaville"] },
                { "emoji": "🇨🇩", "tags": ["congo - kinshasa"] },
                { "emoji": "🇨🇰", "tags": ["cook islands"] },
                { "emoji": "🇨🇷", "tags": ["costa rica"] },
                { "emoji": "🇨🇮", "tags": ["côte d’ivoire"] },
                { "emoji": "🇭🇷", "tags": ["croatia"] },
                { "emoji": "🇨🇺", "tags": ["cuba"] },
                { "emoji": "🇨🇼", "tags": ["curaçao"] },
                { "emoji": "🇨🇾", "tags": ["cyprus"] },
                { "emoji": "🇨🇿", "tags": ["czechia"] },
                { "emoji": "🇩🇰", "tags": ["denmark"] },
                { "emoji": "🇩🇯", "tags": ["djibouti"] },
                { "emoji": "🇩🇲", "tags": ["dominica"] },
                { "emoji": "🇩🇴", "tags": ["dominican republic"] },
                { "emoji": "🇪🇨", "tags": ["ecuador"] },
                { "emoji": "🇪🇬", "tags": ["egypt"] },
                { "emoji": "🇸🇻", "tags": ["el salvador"] },
                { "emoji": "🇬🇶", "tags": ["equatorial guinea"] },
                { "emoji": "🇪🇷", "tags": ["eritrea"] },
                { "emoji": "🇪🇪", "tags": ["estonia"] },
                { "emoji": "🇸🇿", "tags": ["eswatini"] },
                { "emoji": "🇪🇹", "tags": ["ethiopia"] },
                { "emoji": "🇪🇺", "tags": ["european union"] },
                { "emoji": "🇫🇰", "tags": ["falkland islands"] },
                { "emoji": "🇫🇴", "tags": ["faroe islands"] },
                { "emoji": "🇫🇯", "tags": ["fiji"] },
                { "emoji": "🇫🇮", "tags": ["finland"] },
                { "emoji": "🇫🇷", "tags": ["france"] },
                { "emoji": "🇬🇫", "tags": ["french guiana"] },
                { "emoji": "🇵🇫", "tags": ["french polynesia"] },
                { "emoji": "🇹🇫", "tags": ["french southern territories"] },
                { "emoji": "🇬🇦", "tags": ["gabon"] },
                { "emoji": "🇬🇲", "tags": ["gambia"] },
                { "emoji": "🇬🇪", "tags": ["georgia"] },
                { "emoji": "🇩🇪", "tags": ["germany"] },
                { "emoji": "🇬🇭", "tags": ["ghana"] },
                { "emoji": "🇬🇮", "tags": ["gibraltar"] },
                { "emoji": "🇬🇷", "tags": ["greece"] },
                { "emoji": "🇬🇱", "tags": ["greenland"] },
                { "emoji": "🇬🇩", "tags": ["grenada"] },
                { "emoji": "🇬🇵", "tags": ["guadeloupe"] },
                { "emoji": "🇬🇺", "tags": ["guam"] },
                { "emoji": "🇬🇹", "tags": ["guatemala"] },
                { "emoji": "🇬🇬", "tags": ["guernsey"] },
                { "emoji": "🇬🇳", "tags": ["guinea"] },
                { "emoji": "🇬🇼", "tags": ["guinea-Bissau"] },
                { "emoji": "🇬🇾", "tags": ["guyana"] },
                { "emoji": "🇭🇹", "tags": ["haiti"] },
                { "emoji": "🇭🇳", "tags": ["honduras"] },
                { "emoji": "🇭🇰", "tags": ["hong kong sar china"] },
                { "emoji": "🇭🇺", "tags": ["hungary"] },
                { "emoji": "🇮🇸", "tags": ["iceland"] },
                { "emoji": "🇮🇳", "tags": ["india"] },
                { "emoji": "🇮🇩", "tags": ["indonesia"] },
                { "emoji": "🇮🇷", "tags": ["iran"] },
                { "emoji": "🇮🇶", "tags": ["iraq"] },
                { "emoji": "🇮🇪", "tags": ["ireland"] },
                { "emoji": "🇮🇲", "tags": ["isle of man"] },
                { "emoji": "🇮🇱", "tags": ["israel"] },
                { "emoji": "🇮🇹", "tags": ["italy"] },
                { "emoji": "🇯🇲", "tags": ["jamaica"] },
                { "emoji": "🇯🇵", "tags": ["japan"] },
                { "emoji": "🎌", "tags": ["japan"] },
                { "emoji": "🇯🇪", "tags": ["jersey"] },
                { "emoji": "🇯🇴", "tags": ["jordan"] },
                { "emoji": "🇰🇿", "tags": ["kazakhstan"] },
                { "emoji": "🇰🇪", "tags": ["kenya"] },
                { "emoji": "🇰🇮", "tags": ["kiribati"] },
                { "emoji": "🇽🇰", "tags": ["kosovo"] },
                { "emoji": "🇰🇼", "tags": ["kuwait"] },
                { "emoji": "🇰🇬", "tags": ["kyrgyzstan"] },
                { "emoji": "🇱🇦", "tags": ["laos"] },
                { "emoji": "🇱🇻", "tags": ["latvia"] },
                { "emoji": "🇱🇧", "tags": ["lebanon"] },
                { "emoji": "🇱🇸", "tags": ["lesotho"] },
                { "emoji": "🇱🇷", "tags": ["liberia"] },
                { "emoji": "🇱🇾", "tags": ["libya"] },
                { "emoji": "🇱🇮", "tags": ["liechtenstein"] },
                { "emoji": "🇱🇹", "tags": ["lithuania"] },
                { "emoji": "🇱🇺", "tags": ["luxembourg"] },
                { "emoji": "🇲🇴", "tags": ["macau"] },
                { "emoji": "🇲🇬", "tags": ["madagascar"] },
                { "emoji": "🇲🇼", "tags": ["malawi"] },
                { "emoji": "🇲🇾", "tags": ["malaysia"] },
                { "emoji": "🇲🇻", "tags": ["maldives"] },
                { "emoji": "🇲🇱", "tags": ["mali"] },
                { "emoji": "🇲🇹", "tags": ["malta"] },
                { "emoji": "🇲🇭", "tags": ["marshall islands"] },
                { "emoji": "🇲🇶", "tags": ["martinique"] },
                { "emoji": "🇲🇷", "tags": ["mauritania"] },
                { "emoji": "🇲🇺", "tags": ["mauritius"] },
                { "emoji": "🇾🇹", "tags": ["mayotte"] },
                { "emoji": "🇲🇽", "tags": ["mexico"] },
                { "emoji": "🇫🇲", "tags": ["micronesia"] },
                { "emoji": "🇲🇩", "tags": ["moldova"] },
                { "emoji": "🇲🇨", "tags": ["monaco"] },
                { "emoji": "🇲🇳", "tags": ["mongolia"] },
                { "emoji": "🇲🇪", "tags": ["montenegro"] },
                { "emoji": "🇲🇸", "tags": ["montserrat"] },
                { "emoji": "🇲🇦", "tags": ["morocco"] },
                { "emoji": "🇲🇿", "tags": ["mozambique"] },
                { "emoji": "🇲🇲", "tags": ["myanmar"] },
                { "emoji": "🇳🇦", "tags": ["namibia"] },
                { "emoji": "🇳🇷", "tags": ["nauru"] },
                { "emoji": "🇳🇵", "tags": ["nepal"] },
                { "emoji": "🇳🇱", "tags": ["netherlands"] },
                { "emoji": "🇳🇨", "tags": ["new caledonia"] },
                { "emoji": "🇳🇿", "tags": ["new zealand"] },
                { "emoji": "🇳🇮", "tags": ["nicaragua"] },
                { "emoji": "🇳🇪", "tags": ["niger"] },
                { "emoji": "🇳🇬", "tags": ["nigeria"] },
                { "emoji": "🇳🇺", "tags": ["niue"] },
                { "emoji": "🇳🇫", "tags": ["norfolk island"] },
                { "emoji": "🇰🇵", "tags": ["north korea"] },
                { "emoji": "🇲🇰", "tags": ["north macedonia"] },
                { "emoji": "🇲🇵", "tags": ["northern mariana islands"] },
                { "emoji": "🇳🇴", "tags": ["norway"] },
                { "emoji": "🇴🇲", "tags": ["oman"] },
                { "emoji": "🇵🇰", "tags": ["pakistan"] },
                { "emoji": "🇵🇼", "tags": ["palau"] },
                { "emoji": "🇵🇸", "tags": ["palestine"] },
                { "emoji": "🇵🇦", "tags": ["panama"] },
                { "emoji": "🇵🇬", "tags": ["papua new guinea"] },
                { "emoji": "🇵🇾", "tags": ["paraguay"] },
                { "emoji": "🇵🇪", "tags": ["peru"] },
                { "emoji": "🇵🇭", "tags": ["philippines"] },
                { "emoji": "🇵🇳", "tags": ["pitcairn islands"] },
                { "emoji": "🇵🇱", "tags": ["poland"] },
                { "emoji": "🇵🇹", "tags": ["portugal"] },
                { "emoji": "🇵🇷", "tags": ["puerto rico"] },
                { "emoji": "🇶🇦", "tags": ["qatar"] },
                { "emoji": "🇷🇪", "tags": ["réunion"] },
                { "emoji": "🇷🇴", "tags": ["romania"] },
                { "emoji": "🇷🇺", "tags": ["russia"] },
                { "emoji": "🇷🇼", "tags": ["rwanda"] },
                { "emoji": "🇼🇸", "tags": ["samoa"] },
                { "emoji": "🇸🇲", "tags": ["san marino"] },
                { "emoji": "🇸🇹", "tags": ["são tomé and príncipe"] },
                { "emoji": "🇸🇦", "tags": ["saudi arabia"] },
                { "emoji": "🇸🇳", "tags": ["senegal"] },
                { "emoji": "🇷🇸", "tags": ["serbia"] },
                { "emoji": "🇸🇨", "tags": ["seychelles"] },
                { "emoji": "🇸🇱", "tags": ["sierra leone"] },
                { "emoji": "🇸🇬", "tags": ["singapore"] },
                { "emoji": "🇸🇽", "tags": ["sint maarten"] },
                { "emoji": "🇸🇰", "tags": ["slovakia"] },
                { "emoji": "🇸🇮", "tags": ["slovenia"] },
                { "emoji": "🇬🇸", "tags": ["south georgia & south sandwich islands"] },
                { "emoji": "🇸🇧", "tags": ["solomon islands"] },
                { "emoji": "🇸🇴", "tags": ["somalia"] },
                { "emoji": "🇿🇦", "tags": ["south Africa"] },
                { "emoji": "🇰🇷", "tags": ["south Korea"] },
                { "emoji": "🇸🇸", "tags": ["south Sudan"] },
                { "emoji": "🇪🇸", "tags": ["spain"] },
                { "emoji": "🇱🇰", "tags": ["sri Lanka"] },
                { "emoji": "🇧🇱", "tags": ["st. barthélemy"] },
                { "emoji": "🇸🇭", "tags": ["st. helena"] },
                { "emoji": "🇰🇳", "tags": ["st. kitts & nevis"] },
                { "emoji": "🇱🇨", "tags": ["st. lucia"] },
                { "emoji": "🇵🇲", "tags": ["st. pierre & miquelon"] },
                { "emoji": "🇻🇨", "tags": ["st. vincent & grenadines"] },
                { "emoji": "🇸🇩", "tags": ["sudan"] },
                { "emoji": "🇸🇷", "tags": ["suriname"] },
                { "emoji": "🇸🇪", "tags": ["sweden"] },
                { "emoji": "🇨🇭", "tags": ["switzerland"] },
                { "emoji": "🇸🇾", "tags": ["syria"] },
                { "emoji": "🇹🇼", "tags": ["taiwan"] },
                { "emoji": "🇹🇯", "tags": ["tajikistan"] },
                { "emoji": "🇹🇿", "tags": ["tanzania"] },
                { "emoji": "🇹🇭", "tags": ["thailand"] },
                { "emoji": "🇹🇱", "tags": ["timor-leste"] },
                { "emoji": "🇹🇬", "tags": ["togo"] },
                { "emoji": "🇹🇰", "tags": ["tokelau"] },
                { "emoji": "🇹🇴", "tags": ["tonga"] },
                { "emoji": "🇹🇹", "tags": ["trinidad & tobago"] },
                { "emoji": "🇹🇳", "tags": ["tunisia"] },
                { "emoji": "🇹🇷", "tags": ["turkey"] },
                { "emoji": "🇹🇲", "tags": ["turkmenistan"] },
                { "emoji": "🇹🇨", "tags": ["turks & taicos islands"] },
                { "emoji": "🇹🇻", "tags": ["tuvalu"] },
                { "emoji": "🇺🇬", "tags": ["uganda"] },
                { "emoji": "🇺🇦", "tags": ["ukraine"] },
                { "emoji": "🇦🇪", "tags": ["united arab emirates"] },
                { "emoji": "🇬🇧", "tags": ["united kingdom"] },
                { "emoji": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", "tags": ["wales"] },
                { "emoji": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", "tags": ["scotland"] },
                { "emoji": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", "tags": ["england"] },
                { "emoji": "🇺🇸", "tags": ["united states", "usa", "america"] },
                { "emoji": "🇺🇾", "tags": ["uruguay"] },
                { "emoji": "🇻🇮", "tags": ["u.s. virgin islands"] },
                { "emoji": "🇺🇿", "tags": ["uzbekistan"] },
                { "emoji": "🇻🇺", "tags": ["vanuatu"] },
                { "emoji": "🇻🇦", "tags": ["vatican city"] },
                { "emoji": "🇻🇪", "tags": ["venezuela"] },
                { "emoji": "🇻🇳", "tags": ["vietnam"] },
                { "emoji": "🇼🇫", "tags": ["wallis & futuna"] },
                { "emoji": "🇪🇭", "tags": ["western sahara"] },
                { "emoji": "🇾🇪", "tags": ["yemen"] },
                { "emoji": "🇿🇲", "tags": ["zambia"] },
                { "emoji": "🇿🇼", "tags": ["zimbabwe"] }
            ]
        ];

        //------------------------------------- Create a container for the tabs and buttons
        const tabContainer = document.createElement('div');
        tabContainer.style.position = 'fixed';
        tabContainer.style.top = '50px';
        tabContainer.style.right = '10px';
        tabContainer.style.zIndex = '9999'; // Ensure it is the topmost element after the main button
        tabContainer.style.display = 'none';
        tabContainer.style.backgroundColor = 'white'; // White background color
        tabContainer.style.border = '1px solid #ccc'; // Adding border for better visibility
        tabContainer.style.borderRadius = '8px'; // Rounded corners
        tabContainer.style.padding = '10px'; // Adding padding for better spacing
        tabContainer.style.width = '360px'; // Fixed width
        tabContainer.style.maxHeight = '500px'; // Maximum height of the container
        tabContainer.style.overflowY = 'auto'; // Enable vertical scroll bar
        document.body.appendChild(tabContainer);

        //------------------------------------- Create the tab buttons
        const tabButtonsContainer = document.createElement('div');
        tabButtonsContainer.style.display = 'flex';
        tabButtonsContainer.style.marginBottom = '10px';
        tabContainer.appendChild(tabButtonsContainer);

        //------------------------------------- Create a text field for filtering emojis
        const filterInput = document.createElement('input');
        filterInput.type = 'text';
        filterInput.placeholder = 'Type tags to filter... | Double-click to reset...';
        filterInput.style.width = 'calc(100% - 20px)'; // Change this to a fixed width value
        filterInput.style.marginBottom = '10px';
        filterInput.style.padding = '5px';
        filterInput.style.border = '1px solid #ccc';
        filterInput.style.borderRadius = '5px';
        tabContainer.appendChild(filterInput);

        //------------------------------------- Keep track of the currently active tab index
        let activeTabIndex = 0;

        //------------------------------------- Clear the filter input and reset filter
        filterInput.addEventListener('dblclick', () => {
            filterInput.value = ''; // Clear the filter text field
            const currentTabContent = tabsContentContainer.children[activeTabIndex];
            Array.from(currentTabContent.children).forEach(button => {
                button.style.display = 'inline-block'; // Show all buttons in the current tab
            });
        });

        //------------------------------------- Create tabs content container
        const tabsContentContainer = document.createElement('div');
        tabsContentContainer.style.width = '100%'; // Ensure it takes full width of the container
        tabContainer.appendChild(tabsContentContainer);

        //------------------------------------- Function to create an emoji buttons
        function createEmojiButton(emoji) {
            const button = document.createElement('button');
            button.innerHTML = emoji;
            button.style.margin = '1px'; // Small distance between buttons
            button.style.display = 'inline-block'; // Display buttons inline
            button.style.backgroundColor = 'white'; // White background color
            button.style.border = '1px solid white'; // 1px white border initially
            button.style.borderRadius = '5px'; // Rounded corners for buttons
            button.style.padding = '5px'; // Padding for buttons
            button.style.cursor = 'pointer'; // Pointer cursor
            button.style.fontSize = '24px'; // Increase font size for bigger emojis
            button.style.width = '40px'; // Set width
            button.style.height = '40px'; // Set height

            // Hover effect
            button.addEventListener('mouseenter', () => {
                button.style.backgroundColor = '#f0f0f0'; // Light gray background on hover
            });

            button.addEventListener('mouseleave', () => {
                button.style.backgroundColor = 'white'; // Restore white background on mouse leave
            });

            // Click event to copy emoji to clipboard and add blue border
            button.addEventListener('click', async () => {
                await navigator.clipboard.writeText(emoji);
                button.style.border = '1px solid #66d9ef'; // Add 1px blue border on click
                //filterInput.focus(); // Set the focus to the filter text field
                //filterInput.select(); // Select the tags in filter text field
                setTimeout(() => {
                    button.style.border = '1px solid white'; // Restore 1px white border after 300ms
                }, 300);
            });

            return button;
        }

        //------------------------------------- Function to create a tab with emoji buttons
        function createTabContent(emojis) {
            const tabContent = document.createElement('div');
            tabContent.style.display = 'none'; // Hide by default
            tabContent.style.width = '100%'; // Ensure it takes full width of the container
            tabContent.style.boxSizing = 'border-box'; // Include padding in width calculation

            emojis.forEach(({ emoji }) => {
                const button = createEmojiButton(emoji);
                tabContent.appendChild(button);
            });

            return tabContent;
        }

        //------------------------------------- Create tabs and add them to the container
        emojiTabs.forEach((tabEmojis, index) => {
            // Create tab button
            const tabButton = document.createElement('button');
            tabButton.innerHTML = index === 0 ? '🙂' : index === 1 ? '👏' : index === 2 ? '👶' : index === 3 ? '😺' : index === 4 ? '🍀' : index === 5 ? '🍏' : index === 6 ? '🏀' : index === 7 ? '🚘' : index === 8 ? '🏡' : index === 9 ? '💡' : index === 10 ? '🔢' : index === 11 ? '🏳' : `Tab ${index + 1}`;
            tabButton.style.marginRight = '5px';
            tabButton.style.backgroundColor = 'white'; // Set background color
            tabButton.style.border = '1px solid #66d9ef'; // 1px white border initially
            tabButton.style.borderRadius = '5px'; // Rounded corners for buttons
            tabButton.style.width = '24px';

            tabButton.addEventListener('click', () => {
                // Set all tab buttons to white and the clicked one to blue
                Array.from(tabButtonsContainer.children).forEach((btn, btnIndex) => {
                    btn.style.backgroundColor = btnIndex === index ? '#66d9ef' : 'white'; // Set active tab to blue
                });

                // Hide all tab contents
                Array.from(tabsContentContainer.children).forEach(child => {
                    child.style.display = 'none';
                });
                // Show the clicked tab content
                tabsContentContainer.children[index].style.display = 'block';
                activeTabIndex = index; // Update the active tab index
                filterInput.focus(); // Set the focus to the filter text field
                filterInput.select(); // Select the tags in filter text field

                // Apply filter to the clicked tab
                const filterText = filterInput.value.trim().toLowerCase();
                if (filterText) {
                    Array.from(tabContent.children).forEach(button => {
                        const emojiTags = tabEmojis.find(emoji => emoji.emoji === button.innerHTML).tags;
                        if (!emojiTags.some(tag => tag.includes(filterText))) {
                            button.style.display = 'none';
                        } else {
                            button.style.display = 'inline-block';
                        }
                    });
                } else {
                    Array.from(tabContent.children).forEach(button => {
                        button.style.display = 'inline-block';
                    });
                }


            });
            tabButtonsContainer.appendChild(tabButton);

            // Create tab content
            const tabContent = createTabContent(tabEmojis);
            tabsContentContainer.appendChild(tabContent);
        });

        //------------------------------------- Show or hide the tab container when the main button is clicked
        let tabsVisible = false;
        mainButton.addEventListener('click', () => {
            tabsVisible = !tabsVisible;
            tabContainer.style.display = tabsVisible ? 'block' : 'none';
            tabContainer.scrollTop = 0; // Scroll to the top
            if (tabsVisible) {
                // Show the content of the first tab by default
                tabsContentContainer.children[0].style.display = 'block';
                tabButtonsContainer.children[0].click(); // Simulate click on the first tab button to change a background color
            }
        });

        //------------------------------------- Set the focus to the filter text field
        mainButton.addEventListener('click', function() {
            filterInput.focus();
        });

        //------------------------------------- Hide / Close everything

        // Event handler for click and contextmenu events
        function handleOutsideClick(event) {
            if (!mainButton.contains(event.target) && !tabContainer.contains(event.target)) {
                tabContainer.scrollTop = 0; // Scroll to the top
                tabContainer.style.display = 'none';
                tabsVisible = false;

                filterInput.value = ''; // Clear the filter text field
                emojiTabs.forEach((tabEmojis, tabIndex) => {
                    const tabContent = tabsContentContainer.children[tabIndex];
                    Array.from(tabContent.children).forEach(button => {
                        button.style.display = 'inline-block'; // Show all buttons
                    });
                });
            }
        }

        // Attach the handler to both click and contextmenu events
        document.addEventListener('click', handleOutsideClick);
        document.addEventListener('contextmenu', handleOutsideClick);

        //------------------------------------- Filter function

        filterInput.addEventListener('input', () => {
            const filterValue = filterInput.value.toLowerCase();
            const activeTabEmojis = emojiTabs[activeTabIndex]; // Get the emojis of the currently active tab
            const activeTabContent = tabsContentContainer.children[activeTabIndex]; // Get the content of the currently active tab
            Array.from(activeTabContent.children).forEach(button => {
                const emojiData = activeTabEmojis.find(e => e.emoji === button.innerHTML);
                if (emojiData.tags.some(tag => tag.includes(filterValue))) {
                    button.style.display = 'inline-block';
                } else {
                    button.style.display = 'none';
                }
            });
        });
    };
})();