diff --git a/static/config.json b/static/config.json index b4f8feb7..19a8f4ff 100644 --- a/static/config.json +++ b/static/config.json @@ -1,7 +1,8 @@ { "alwaysShowSubjectInput": true, - "background": "/static/wdwskyboxbanner.png", + "background": "/static/bg.webp", "collapseMessageWithSubject": false, + "conversationTreeAdvanced": true, "greentext": false, "hideFilteredStatuses": false, "hideMutedPosts": false, @@ -9,18 +10,21 @@ "hideSitename": false, "hideUserStats": false, "loginMethod": "token", - "logo": "/static/logo.png", + "logo": "/static/logo-512.png", + "logoLeft": false, "logoMargin": ".1em", "logoMask": false, - "logoLeft": false, "nsfwCensorImage": "", "postContentType": "text/plain", "redirectRootLogin": "/main/friends", "redirectRootNoLogin": "/main/public", "showFeaturesPanel": true, "showInstanceSpecificPanel": false, + "showPanelNavShortcuts": true, "sidebarRight": false, + "streaming": true, "subjectLineBehavior": "email", - "theme": "ihatebeingalive", + "theme": "catppuccin-mocha-yellow", + "useStreamingApi": true, "webPushNotifications": false } diff --git a/static/custom.css b/static/custom.css index 1d767b33..0a72b25e 100644 --- a/static/custom.css +++ b/static/custom.css @@ -1,75 +1,270 @@ -<<<<<<< HEAD -/* THIS IS A PLACEHOLDER FILE - place a css file at $static_dir/static/custom.css - to apply custom styles to your frontend -*/ -======= -/* akkoma synth.download edition */ +/* -/* notification gradient change */ -.Notifications .notification.unseen .notification-overlay { - background-image: unset !important; - background: var(--badgeNotification, #f00); - margin-top: 0.15rem; - margin-left: 0.15rem; - width: 1rem; - height: 1rem; - border: solid 0.25rem var(--bg); - border-radius: 99px; /* uniform with the badge, default hardcoded value */ - z-index: 1; +akkoma frontend - synth.download edition +this is the file you should edit - minify it and move that to custom.min.css to be used in the frontend) + +yes, we COULD just modify the styling for elements directly since we fork it - +but doing so removes the original styling, and we aren't sure if everyone would like our tweaks (therefore could be disabled/reverted if preferred) +and doing would probably be less of a hassle to maintain with future upstream merges, even if the akkoma components are like. never ever touched again by upstream lol + +plus, other admins could steal our changes too more easily without forking :]] + +note that our fork of the akkoma-fe implements cohost styled posts so the classes are changed. so if you are someone who wants to steal this keep that in mind, may need to change some stuff around + +*/ + +/* selection arrow is misaligned */ +label.Select svg { + margin-bottom: auto; + margin-top: auto; +} + +/* active selection on navbar don't work well with phosphor icons */ +.router-link-active { + font-size: unset !important; + margin-top: unset !important; +} + +/* notifications */ +.Notifications { + /* replace gradient with dot */ + .notification.unseen .notification-overlay { + background-image: unset !important; + background: var(--badgeNotification, #f00); + border-radius: 99px; /* uniform with the badge, default hardcoded value */ + border: solid 0.25rem var(--bg); + height: 1rem; + margin-left: 0.15rem; + margin-top: 0.15rem; + width: 1rem; + z-index: 1; + } + + /* cohost styled posts */ + .chostlike { + .status-container { + /* enforce normalized padding */ + padding: var(--status-margin, 0.75em) !important; + } + } } /* posting form changes */ .form-group { .form-control { .form-post-subject { - border: solid 0.1rem var(--cOrange) !important; - border-radius: var(--inputRadius) !important; - margin-bottom: 0.8rem; background: color-mix(in srgb, var(--cOrange) 10%, transparent); + border-radius: var(--inputRadius) !important; + border: solid 0.1rem var(--cOrange) !important; + margin-bottom: 0.8rem; } .form-post-body { border-radius: var(--inputRadius) !important; } } + + /* visibility on statuses - selector when posting */ + .visibility-tray .ScopeSelector button.selected { + /* followers only */ + svg.fa-lock { + color: var(--cOrange) !important; + } + + /* direct message */ + svg.fa-envelope { + color: var(--accent) !important; + } + } } -/* less obnoxious username */ -.account-name { - color: var(--faint); +/* visibility on statuses - posts */ +.status-heading .heading-name-row .heading-right .visibility-icon { + /* followers only */ + svg.fa-lock { + color: var(--cOrange) !important; + } + + /* direct message */ + svg.fa-envelope { + color: var(--accent) !important; + } } -/* more visible replies header thingies */ +/* posts that are direct messages */ +.Status:has(.visibility-icon .fa-envelope) { + border-left: .2rem solid var(--accent); +} + +/* nicer mentioned users links */ +.MentionsLine .MentionLink { + background-color: color-mix(in srgb, var(--accent) 10%, transparent) !important; + border-radius: 5px; + color: var(--accent); + margin-right: .4rem; + padding: .2rem; + + &:last-child { + margin-right: unset !important; + } + + &::before { + content: unset !important; + } +} + +/* "selected" post changes */ +.Status.-focused { + background-color: color-mix(in srgb, var(--selectedPost) 50%, transparent) !important; + border-radius: var(--panelRadius, 10px) !important; +} + +/* more visible replies footer */ .status-container { .replies { - background-color: var(--selectedPost); - color: var(--text); - padding: 0.3rem 0.3rem 0.3rem 0.5rem; - margin-top: 0.4rem !important; + background-color: var(--selectedPost) !important; border-radius: var(--tooltipRadius); + color: var(--text) !important; + margin-top: 0.4rem !important; + padding: 0.3rem 0.3rem 0.3rem 0.5rem; width: fit-content !important; } } -.heading-reply-row { - .reply-glued-label { - background-color: var(--selectedPost); - color: var(--text); - padding: 0.3rem; - border-radius: var(--tooltipRadius); +/* edited timestamp changes */ +.heading-edited-row { + color: var(--faint) !important; +} - .shortName { - color: var(--accent); +/* global "reply to" header changes */ +.heading-reply-row .reply-glued-label .shortName { + color: var(--accent) !important; +} + +/* regular posts style changes */ +.Status.classic { + /* more visible "reply to" header */ + .heading-reply-row { + .reply-glued-label { + background-color: var(--selectedPost); + border-radius: var(--tooltipRadius); + color: var(--text) !important; + padding: 0.3rem !important; } } } +/* cohost styled post changes */ +.Status.chostlike { + /* + * so: + * - the backgrounds aren't styled properly, so we redo that ourselves + * - a lot of elements are kinda just weirdly fucked here for some reason + * - this implementation is entirely jank, just like the rest of akkoma + * + * ...in the end a lot of their styling ends up breaking so we practically just end up restyling everything ourselves :p + * great! welcome to the *omas + */ + .status-container { + .right-side { + background-color: var(--bg) !important; + border-radius: 10px !important; + box-shadow: var(--panelShadow) !important; + padding: unset !important; /* conflicts weirdly */ + + .status-heading, .status-actions { + background-color: var(--selectedPost) !important; /* set background color back to elements */ + } + + .status-heading { + border-radius: var(--panelRadius, 10px) var(--panelRadius, 10px) 0 0 !important; + padding: var(--status-margin, 0.75em) var(--status-margin, 0.75em) .3rem var(--status-margin, 0.75em) !important; + + .reply-glued-label { + padding-bottom: .3rem !important; + } + } + + .content { + /* different/better padding */ + padding: .8rem .7rem !important; + } + + .replies { + margin-bottom: .5rem !important; + margin-left: .5rem !important; + margin-right: .5rem !important; /* in case of overflow */ + margin-top: unset !important; + } + + .favs-repeated-users { + margin-bottom: .5rem !important; + margin-left: .5rem !important; + margin-right: .5rem !important; /* in case of overflow */ + } + + .emoji-reactions { + display: none; /* what the fuck */ + + &:has(button) { + border-bottom: unset !important; + display: flex !important; + margin-bottom: .3rem !important; + margin-top: -.3rem !important; + } + } + + .status-actions { + border-radius: 0 0 var(--panelRadius, 10px) var(--panelRadius, 10px) !important; + border-top: 1px solid var(--faint) !important; + margin-top: unset !important; + padding: var(--status-margin, 0.75em) !important; + width: unset !important; /* width 100% breaks it here */ + + .ExtraButtons { + flex: 0 !important; + } + } + } + } +} + +/* cohost styled posts, if it's a boost */ +.Status.chostlike:has(.repeat-info) { + .status-container { + .right-side { + .status-heading { + border-radius: unset !important; + } + } + } + + /* boost info */ + .repeat-info { + .left-side { + /* profile picture */ + margin-top: .6rem !important; + } + + .right-side { + background-color: var(--selectedPost) !important; + border-bottom: 1px solid rgba(0, 0, 0, .2) !important; + border-radius: var(--panelRadius, 10px) var(--panelRadius, 10px) 0 0 !important; + padding: var(--status-margin) !important; /* "starting to notice a trend where this var is fixing everything" */ + } + } +} + +/* less obnoxious username */ +.account-name { + color: var(--faint) !important; +} + /* sidebar changes (why do they all use the ugly link color) */ .NavPanel { li .menu-item { border-radius: unset !important; - color: var(--text); + color: var(--text) !important; } } @@ -79,20 +274,22 @@ svg path { fill: var(--btnText, #b9b9ba); } - vertical-align: middle !important; + background-color: var(--btn, #182230) !important; - border: 0.1rem solid var(--border) !important; border-radius: var(--btnRadius, 4px) !important; + border: 0.1rem solid var(--border) !important; font-size: 1rem !important; - width: 2em !important; height: 1.6em !important; + vertical-align: middle !important; + width: 2em !important; } /* alt text button */ .attachment-button:has(.fa-align-right) { svg { - display: none; + display: none !important; } + color: var(--btnText, #b9b9ba); font-weight: bold; padding-left: 0.2rem; @@ -116,14 +313,14 @@ } } -/* emoji reactions changes */ +/* give emoji reactions a more normalized/better styling */ .emoji-reactions { button { - min-height: 1.8rem; - max-height: 1.8rem; - margin-top: 0.2rem; - margin-bottom: 0.3rem; box-shadow: unset !important; + margin-bottom: 0.3rem; + margin-top: 0.2rem; + max-height: 1.8rem; + min-height: 1.8rem; span { vertical-align: middle; @@ -139,11 +336,7 @@ } .picked-reaction { - background-color: color-mix( - in srgb, - var(--accent) 10%, - transparent - ) !important; + background-color: color-mix(in srgb, var(--accent) 10%, transparent) !important; } } } @@ -157,777 +350,176 @@ width: unset !important; } -/* ------------------------------------------- ----------------------------------------------- -- everything below this is icon replacements - ----------------------------------------------- -------------------------------------------- */ +/* --------------------------------------------------------------------------- */ +/* -- everything below this is icon replacements -- */ +/* -- font awesome icons -> phosphor icons -- */ +/* -- all icons are bold varient -- */ +/* -- see https://icon-sets.iconify.design/ph/?suffixes=Bold&keyword=ph -- */ +/* --------------------------------------------------------------------------- */ -/* -- user profile / posting card fixes -- */ -.user-panel { - .user-info { - .edit-profile-button { - .fa-pen-to-square { - transform: scale(1.6) !important; - } +/* bottom set of icons in posting field */ +.post-status-form .media-upload-icon, +.post-status-form .poll-icon, +.post-status-form .emoji-icon, +.post-status-form .spoiler-icon { + font-size: unset !important; + justify-content: center !important; + transform: scale(1.2) !important; +} + +/* icon used in reply tag */ +.reply-to svg { + vertical-align: text-bottom !important; +} + +/* filter buttons are a bit small */ +.fa-filter { + transform: scale(1.8) !important; +} + +/* buttons on other profiles are just really weird */ +.main .panel-default .user-card .user-buttons, +.user-card .panel-heading .user-info .container .user-buttons { + display: flex; + flex-direction: row; + + .button-unstyled { + height: 2rem !important; + margin: unset !important; + padding: unset !important; + text-align: center !important; + vertical-align: middle !important; + width: 2rem !important; + + /* there's definetly a better way to fix this but this is so fucking jank. luke how do you even like this fe */ + .fa-up-right-from-square { + transform: translateY(.4rem) scale(1.4) !important; + } + + .fa-rss { + transform: translateY(.5rem) scale(1.7) !important; + } + + .fa-ellipsis-vertical { + transform: scale(5) !important; } } } -/* -- timeline settings fixes -- */ -.TimelineQuickSettings > button svg, -.NotificationFilters > button svg { +/* favorited/active star */ +.-favorited .fa-star, +.-type--like .fa-star { + --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m234.29 114.85l-45 38.83L203 211.75a16.4 16.4 0 0 1-24.5 17.82L128 198.49l-50.53 31.08A16.4 16.4 0 0 1 53 211.75l13.76-58.07l-45-38.83A16.46 16.46 0 0 1 31.08 86l59-4.76l22.76-55.08a16.36 16.36 0 0 1 30.27 0l22.75 55.08l59 4.76a16.46 16.46 0 0 1 9.37 28.86Z'/%3E%3C/svg%3E") !important; /* star (filled varient) */ +} + +/* play button on attatchments */ +.Attachment .play-icon { + transform: scale(3.5) !important; + top: calc(50% - 10px); + left: calc(50% - 10px); +} + +/* readd some original functionality back */ +.fa-2x { + transform: scale(1.5) !important; +} + +.fa-5x { + transform: scale(5) !important; +} + +/* =========================================================================== */ + +/* messes with some values + we only just use svg */ +[class^="fa-"] { + font-size: unset !important; +} + +/* general/new reused icon styling */ +.svg-inline--fa, +.icon { + -webkit-mask-image: var(--svg); + -webkit-mask-repeat: no-repeat; + -webkit-mask-size: 100% 100%; + background-color: currentColor; + display: inline-block; + height: 1rem !important; + mask-image: var(--svg); + mask-repeat: no-repeat; + mask-size: 100% 100%; transform: scale(1.4); } -/* -- profile button sizing -- */ -.user-summary .top-line > a svg { - transform: scale(1.5); -} - -.user-summary .top-line > div:last-child svg { - transform: scale(4.9); -} - -.user-info { - .user-buttons svg { - transform: scale(1.5); - } - - .AccountActions svg { - transform: scale(4); - } -} - -/* -- pin lol -- */ -.pin > svg { - transform: scale(1.4); - padding-right: 1em; -} - -/* -- gyat text -- */ -.attachment-buttons svg { - transform: scale(1.4); -} - -/* -- dropdown menu icons -- */ -.popover .dropdown-menu svg { - transform: scale(1.5); -} - -/* ------------------------------------------------ */ -/* -- everything below this is icon replacements -- */ -/* -- font awesome icons -> tabler icons -- */ -/* ------------------------------------------------ */ -.fa-scale-110 { - transform: scale(1.3); -} -.lock-icon { - transform: scale(1.6); - padding-left: 0.4em; -} -.repeat-icon { - transform: scale(1.3); -} -.reply-to svg { - transform: scale(1.6); -} -.ModifiedIndicator svg, -.ServerSideIndicator svg { - transform: scale(1.5); -} -.notification-details .name-and-action .fa-user { - transform: scale(1.5); -} -.notification-details .name-and-action .fa-user-plus { - transform: scale(1.3); -} -/* ti-upload */ -.fa-upload { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2M7 9l5-5l5 5m-5-5v12'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-mood-smile */ -.fa-face-smile-beam { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 1 0-18 0m6-2h.01M15 10h.01'/%3E%3Cpath d='M9.5 15a3.5 3.5 0 0 0 5 0'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-chart-bar */ -.fa-square-poll-horizontal { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 13a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1zm12-4a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zM9 5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1zM4 20h14'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-eye-off */ -.fa-eye-slash { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.585 10.587a2 2 0 0 0 2.829 2.828'/%3E%3Cpath d='M16.681 16.673A8.7 8.7 0 0 1 12 18q-5.4 0-9-6q1.908-3.18 4.32-4.674m2.86-1.146A9 9 0 0 1 12 6q5.4 0 9 6q-1 1.665-2.138 2.87M3 3l18 18'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-mail */ -.fa-envelope { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 7a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath d='m3 7l9 6l9-6'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-lock */ -.fa-lock { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M5 13a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2z'/%3E%3Cpath d='M11 16a1 1 0 1 0 2 0a1 1 0 0 0-2 0m-3-5V7a4 4 0 1 1 8 0v4'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-home */ -.fa-lock-open, -.fa-house { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M5 12H3l9-9l9 9h-2M5 12v7a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-7'/%3E%3Cpath d='M9 21v-6a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v6'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-world */ -.fa-globe { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 0 0-18 0m.6-3h16.8M3.6 15h16.8'/%3E%3Cpath d='M11.5 3a17 17 0 0 0 0 18m1-18a17 17 0 0 1 0 18'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-chart-bubble */ -.fa-circle { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 16a3 3 0 1 0 6 0a3 3 0 1 0-6 0m11 3a2 2 0 1 0 4 0a2 2 0 1 0-4 0M10 7.5a4.5 4.5 0 1 0 9 0a4.5 4.5 0 1 0-9 0'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-users-group */ -.fa-users { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 13a2 2 0 1 0 4 0a2 2 0 0 0-4 0m-2 8v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1M15 5a2 2 0 1 0 4 0a2 2 0 0 0-4 0m2 5h2a2 2 0 0 1 2 2v1M5 5a2 2 0 1 0 4 0a2 2 0 0 0-4 0m-2 8v-1a2 2 0 0 1 2-2h2'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-user-edit */ -.fa-pen-to-square { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h3.5m4.92.61a2.1 2.1 0 0 1 2.97 2.97L18 22h-3v-3z'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-arrow-back-up */ -.fa-reply { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m9 14l-4-4l4-4'/%3E%3Cpath d='M5 10h11a4 4 0 1 1 0 8h-1'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-quote */ -.fa-quote-left { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 11H6a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v6q0 4-4 5m13-7h-4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v6q0 4-4 5'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-repeat */ -.fa-retweet { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 12V9a3 3 0 0 1 3-3h13m-3-3l3 3l-3 3m3 3v3a3 3 0 0 1-3 3H4m3 3l-3-3l3-3'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-star */ -.fa-star { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m12 17.75l-6.172 3.245l1.179-6.873l-5-4.867l6.9-1l3.086-6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-star-filled - fills the star when favorited */ -.-favorited .fa-star { - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m8.243 7.34l-6.38.925l-.113.023a1 1 0 0 0-.44 1.684l4.622 4.499l-1.09 6.355l-.013.11a1 1 0 0 0 1.464.944l5.706-3l5.693 3l.1.046a1 1 0 0 0 1.352-1.1l-1.091-6.355l4.624-4.5l.078-.085a1 1 0 0 0-.633-1.62l-6.38-.926l-2.852-5.78a1 1 0 0 0-1.794 0z'/%3E%3C/svg%3E") !important; -} -/* ti-mood-plus */ -.fa-face-smile-beam { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M20.985 12.528a9 9 0 1 0-8.45 8.456M16 19h6m-3-3v6M9 10h.01M15 10h.01'/%3E%3Cpath d='M9.5 15c.658.64 1.56 1 2.5 1s1.842-.36 2.5-1'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-dots */ -.fa-ellipsis { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 12a1 1 0 1 0 2 0a1 1 0 1 0-2 0m7 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0m7 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-filter */ -.fa-filter { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 4h16v2.172a2 2 0 0 1-.586 1.414L15 12v7l-6 2v-8.5L4.52 7.572A2 2 0 0 1 4 6.227z'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-chevron-down */ -.fa-chevron-down { - display: inline-block; - height: 1em; - transform: scale(1.5); - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-square-plus */ -.fa-square-plus { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12h6m-3-3v6M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-bookmark */ -.fa-bookmark { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 7v14l-6-4l-6 4V7a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-list */ -.fa-list { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 6h11M9 12h11M9 18h11M5 6v.01M5 12v.01M5 18v.01'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-list-tree */ -.fa-bars-staggered { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 6h11m-8 6h8m-5 6h5M5 6v.01M8 12v.01M11 18v.01'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-user-bolt */ -.fa-bolt { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h4q.402 0 .781.076M19 16l-2 3h4l-2 3'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-user-plus */ -.fa-user-plus { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0m8 12h6m-3-3v6M6 21v-2a4 4 0 0 1 4-4h4'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-search */ -.fa-magnifying-glass, -.fa-magnifying-glass-plus { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 10a7 7 0 1 0 14 0a7 7 0 1 0-14 0m18 11l-6-6'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-settings */ -.fa-gear { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10.325 4.317c.426-1.756 2.924-1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543-.94 3.31.826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756.426 1.756 2.924 0 3.35a1.724 1.724 0 0 0-1.066 2.573c.94 1.543-.826 3.31-2.37 2.37a1.724 1.724 0 0 0-2.572 1.065c-.426 1.756-2.924 1.756-3.35 0a1.724 1.724 0 0 0-2.573-1.066c-1.543.94-3.31-.826-2.37-2.37a1.724 1.724 0 0 0-1.065-2.572c-1.756-.426-1.756-2.924 0-3.35a1.724 1.724 0 0 0 1.066-2.573c-.94-1.543.826-3.31 2.37-2.37c1 .608 2.296.07 2.572-1.065'/%3E%3Cpath d='M9 12a3 3 0 1 0 6 0a3 3 0 0 0-6 0'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-speakerphone */ -.fa-bullhorn { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M18 8a3 3 0 0 1 0 6m-8-6v11a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-5'/%3E%3Cpath d='m12 8l4.524-3.77A.9.9 0 0 1 18 4.922v12.156a.9.9 0 0 1-1.476.692L12 14H4a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-info-circle */ -.fa-info, -.fa-circle-info { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 12a9 9 0 1 0 18 0a9 9 0 0 0-18 0m9-3h.01'/%3E%3Cpath d='M11 12h1v4h1'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-adjustments */ -.fa-wrench { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 10a2 2 0 1 0 4 0a2 2 0 0 0-4 0m2-6v4m0 4v8m4-4a2 2 0 1 0 4 0a2 2 0 0 0-4 0m2-12v10m0 4v2m4-13a2 2 0 1 0 4 0a2 2 0 0 0-4 0m2-3v1m0 4v11'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-server */ -.fa-server { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 7a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm0 8a3 3 0 0 1 3-3h12a3 3 0 0 1 3 3v2a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3zm4-7v.01M7 16v.01'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-user */ -.fa-user { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M8 7a4 4 0 1 0 8 0a4 4 0 0 0-8 0M6 21v-2a4 4 0 0 1 4-4h4a4 4 0 0 1 4 4v2'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-brush */ -.fa-paintbrush { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M3 21v-4a4 4 0 1 1 4 4z'/%3E%3Cpath d='M21 3A16 16 0 0 0 8.2 13.2M21 3a16 16 0 0 1-10.2 12.8'/%3E%3Cpath d='M10.6 9a9 9 0 0 1 4.4 4.4'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-bell */ -.fa-bell { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 5a2 2 0 1 1 4 0a7 7 0 0 1 4 6v3a4 4 0 0 0 2 3H4a4 4 0 0 0 2-3v-3a7 7 0 0 1 4-6M9 17v1a3 3 0 0 0 6 0v-1'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-download */ -.fa-download { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 17v2a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2M7 11l5 5l5-5m-5-7v12'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-logout */ -.fa-right-from-bracket { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M14 8V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h7a2 2 0 0 0 2-2v-2'/%3E%3Cpath d='M9 12h12l-3-3m0 6l3-3'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-x */ -.fa-xmark { - display: inline-block; - height: 1em; - transform: scale(1.6); - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-arrows-diagonal-minimize-2 */ -.fa-window-minimize { - display: inline-block; - height: 1em; - transform: scale(1.6); - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M18 10h-4V6m6-2l-6 6m-8 4h4v4m0-4l-6 6'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-plane-tilt */ -.fa-suitcase-rolling { - display: inline-block; - height: 1em; - transform: scale(1.6); - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14.5 6.5l3-2.9a2.05 2.05 0 0 1 2.9 2.9l-2.9 3L20 17l-2.5 2.55L14 13l-3 3v3l-2 2l-1.5-4.5L3 15l2-2h3l3-3l-6.5-3.5L7 4z'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-external-link */ -.fa-up-right-from-square { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6H6a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-6m-7 1l9-9m-5 0h5v5'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-rss */ -.fa-rss { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 19a1 1 0 1 0 2 0a1 1 0 1 0-2 0M4 4a16 16 0 0 1 16 16M4 11a9 9 0 0 1 9 9'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-dots-vertical */ -.fa-ellipsis-vertical { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M11 12a1 1 0 1 0 2 0a1 1 0 1 0-2 0m0 7a1 1 0 1 0 2 0a1 1 0 1 0-2 0m0-14a1 1 0 1 0 2 0a1 1 0 1 0-2 0'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-pin */ -.fa-thumbtack { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m15 4.5l-4 4L7 10l-1.5 1.5l7 7L14 17l1.5-4l4-4M9 15l-4.5 4.5M14.5 4L20 9.5'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-align-right */ -.fa-align-right { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6h16m-10 6h10M6 18h14'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-share */ -.fa-share-nodes { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 12a3 3 0 1 0 6 0a3 3 0 1 0-6 0m12-6a3 3 0 1 0 6 0a3 3 0 1 0-6 0m0 12a3 3 0 1 0 6 0a3 3 0 1 0-6 0m-6.3-7.3l6.6-3.4m-6.6 6l6.6 3.4'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-flag */ -.fa-flag { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 5a5 5 0 0 1 7 0a5 5 0 0 0 7 0v9a5 5 0 0 1-7 0a5 5 0 0 0-7 0zm0 16v-7'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-alert-triangle */ -.fa-triangle-exclamation { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 9v4m-1.637-9.409L2.257 17.125a1.914 1.914 0 0 0 1.636 2.871h16.214a1.914 1.914 0 0 0 1.636-2.87L13.637 3.59a1.914 1.914 0 0 0-3.274 0zM12 16h.01'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-pencil */ -.fa-pen { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 20h4L18.5 9.5a2.828 2.828 0 1 0-4-4L4 16zm9.5-13.5l4 4'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-file-pencil */ -.fa-file-pen { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M14 3v4a1 1 0 0 0 1 1h4'/%3E%3Cpath d='M17 21H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7l5 5v11a2 2 0 0 1-2 2'/%3E%3Cpath d='m10 18l5-5a1.414 1.414 0 0 0-2-2l-5 5v2z'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-arrow-back-up-double */ -.fa-angles-right, -.fa-angles-down { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m13 14l-4-4l4-4m-5 8l-4-4l4-4'/%3E%3Cpath d='M9 10h7a4 4 0 1 1 0 8h-1'/%3E%3C/g%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-chevron-up */ -.fa-chevron-up { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 15l6-6l6 6'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} -/* ti-chevron-down */ -.fa-chevron-down { - display: inline-block; - height: 1em; - --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 9l6 6l6-6'/%3E%3C/svg%3E"); - background-color: currentColor; - -webkit-mask-image: var(--svg); - mask-image: var(--svg); - -webkit-mask-repeat: no-repeat; - mask-repeat: no-repeat; - -webkit-mask-size: 100% 100%; - mask-size: 100% 100%; -} ->>>>>>> d5c82f68 (replace assets with new ones) +.fa-angles-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m144.49 136.49l-80 80a12 12 0 0 1-17-17L119 128L47.51 56.49a12 12 0 0 1 17-17l80 80a12 12 0 0 1-.02 17m80-17l-80-80a12 12 0 1 0-17 17L199 128l-71.52 71.51a12 12 0 0 0 17 17l80-80a12 12 0 0 0 .01-17Z'/%3E%3C/svg%3E"); } /* caret-double-right */ +.fa-bars { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12H40a12 12 0 0 1 0-24h176a12 12 0 0 1 12 12M40 76h176a12 12 0 0 0 0-24H40a12 12 0 0 0 0 24m176 104H40a12 12 0 0 0 0 24h176a12 12 0 0 0 0-24'/%3E%3C/svg%3E"); } /* list */ +.fa-bars-staggered { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M84 64a12 12 0 0 1 12-12h120a12 12 0 0 1 0 24H96a12 12 0 0 1-12-12m132 52H96a12 12 0 0 0 0 24h120a12 12 0 0 0 0-24m0 64H96a12 12 0 0 0 0 24h120a12 12 0 0 0 0-24M56 52H40a12 12 0 0 0 0 24h16a12 12 0 0 0 0-24m0 64H40a12 12 0 0 0 0 24h16a12 12 0 0 0 0-24m0 64H40a12 12 0 0 0 0 24h16a12 12 0 0 0 0-24'/%3E%3C/svg%3E"); } /* list-dashes */ +.fa-bell { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M225.29 165.93C216.61 151 212 129.57 212 104a84 84 0 0 0-168 0c0 25.58-4.59 47-13.27 61.93a20.08 20.08 0 0 0-.07 20.07A19.77 19.77 0 0 0 48 196h36.18a44 44 0 0 0 87.64 0H208a19.77 19.77 0 0 0 17.31-10a20.08 20.08 0 0 0-.02-20.07M128 212a20 20 0 0 1-19.6-16h39.2a20 20 0 0 1-19.6 16m-73.34-40C63.51 154 68 131.14 68 104a60 60 0 0 1 120 0c0 27.13 4.48 50 13.33 68Z'/%3E%3C/svg%3E"); } /* bell */ +.fa-bolt { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M219.71 117.38a12 12 0 0 0-7.25-8.52l-51.18-20.47l10.59-70.61a12 12 0 0 0-20.64-10l-112 120a12 12 0 0 0 4.31 19.33l51.18 20.47l-10.59 70.64a12 12 0 0 0 20.64 10l112-120a12 12 0 0 0 2.94-10.84M113.6 203.55l6.27-41.77a12 12 0 0 0-7.41-12.92l-43.72-17.49l73.66-78.92l-6.27 41.77a12 12 0 0 0 7.41 12.92l43.72 17.49Z'/%3E%3C/svg%3E"); } /* lightning */ +.fa-bookmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M184 28H72a20 20 0 0 0-20 20v176a12 12 0 0 0 18.36 10.18l57.63-36l57.65 36A12 12 0 0 0 204 224V48a20 20 0 0 0-20-20m-4 174.35l-45.65-28.53a12 12 0 0 0-12.72 0L76 202.35V52h104Z'/%3E%3C/svg%3E"); } /* bookmark-simple */ +.fa-bullhorn { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M252 120a52.06 52.06 0 0 0-52-52h-39.68c-3.44-.21-52.6-4-99.46-43.3A20 20 0 0 0 28 40v160a19.8 19.8 0 0 0 11.54 18.12a19.86 19.86 0 0 0 21.32-2.81A192.9 192.9 0 0 1 144 174.47v26.2a20 20 0 0 0 8.9 16.64a11 11 0 0 0 1.39.8l14.44 7.06A20 20 0 0 0 198.37 213l11.09-41.82A52.07 52.07 0 0 0 252 120M52 191.63V48.4c36.17 28.07 72.17 38.1 92 41.66V150c-19.83 3.52-55.83 13.55-92 41.63m124.39 10.57l-8.39-4.1V172h16.4ZM200 148h-32V92h32a28 28 0 1 1 0 56'/%3E%3C/svg%3E"); } /* megaphone */ +.fa-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m232.49 80.49l-128 128a12 12 0 0 1-17 0l-56-56a12 12 0 1 1 17-17L96 183L215.51 63.51a12 12 0 0 1 17 17Z'/%3E%3C/svg%3E"); } /* check */ +.fa-chevron-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m216.49 104.49l-80 80a12 12 0 0 1-17 0l-80-80a12 12 0 0 1 17-17L128 159l71.51-71.52a12 12 0 0 1 17 17Z'/%3E%3C/svg%3E"); } /* caret-down */ +.fa-chevron-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M168.49 199.51a12 12 0 0 1-17 17l-80-80a12 12 0 0 1 0-17l80-80a12 12 0 0 1 17 17L97 128Z'/%3E%3C/svg%3E"); } /* caret-left */ +.fa-chevron-right { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m184.49 136.49l-80 80a12 12 0 0 1-17-17L159 128L87.51 56.49a12 12 0 1 1 17-17l80 80a12 12 0 0 1-.02 17'/%3E%3C/svg%3E"); } /* caret-right */ +.fa-chevron-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M216.49 168.49a12 12 0 0 1-17 0L128 97l-71.51 71.49a12 12 0 0 1-17-17l80-80a12 12 0 0 1 17 0l80 80a12 12 0 0 1 0 17'/%3E%3C/svg%3E"); } /* caret-up */ +.fa-circle { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M176 76a48 48 0 1 0-48 48a48.05 48.05 0 0 0 48-48m-48 24a24 24 0 1 1 24-24a24 24 0 0 1-24 24m60 24a48 48 0 1 0 48 48a48.05 48.05 0 0 0-48-48m0 72a24 24 0 1 1 24-24a24 24 0 0 1-24 24M68 124a48 48 0 1 0 48 48a48.05 48.05 0 0 0-48-48m0 72a24 24 0 1 1 24-24a24 24 0 0 1-24 24'/%3E%3C/svg%3E"); } /* circles-three-bold */ +.fa-circle-check { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228.75 100.05c-3.52-3.67-7.15-7.46-8.34-10.33c-1.06-2.56-1.14-7.83-1.21-12.47c-.15-10-.34-22.44-9.18-31.27s-21.27-9-31.27-9.18c-4.64-.07-9.91-.15-12.47-1.21c-2.87-1.19-6.66-4.82-10.33-8.34C148.87 20.46 140.05 12 128 12s-20.87 8.46-27.95 15.25c-3.67 3.52-7.46 7.15-10.33 8.34c-2.56 1.06-7.83 1.14-12.47 1.21c-10 .2-22.44.34-31.25 9.2s-9 21.25-9.2 31.25c-.07 4.64-.15 9.91-1.21 12.47c-1.19 2.87-4.82 6.66-8.34 10.33C20.46 107.13 12 116 12 128s8.46 20.87 15.25 28c3.52 3.67 7.15 7.46 8.34 10.33c1.06 2.56 1.14 7.83 1.21 12.47c.15 10 .34 22.44 9.18 31.27s21.27 9 31.27 9.18c4.64.07 9.91.15 12.47 1.21c2.87 1.19 6.66 4.82 10.33 8.34C107.13 235.54 116 244 128 244s20.87-8.46 27.95-15.25c3.67-3.52 7.46-7.15 10.33-8.34c2.56-1.06 7.83-1.14 12.47-1.21c10-.15 22.44-.34 31.27-9.18s9-21.27 9.18-31.27c.07-4.64.15-9.91 1.21-12.47c1.19-2.87 4.82-6.66 8.34-10.33c6.79-7.08 15.25-15.9 15.25-27.95s-8.46-20.87-15.25-27.95m-17.32 39.29c-4.82 5-10.28 10.72-13.19 17.76c-2.82 6.8-2.93 14.16-3 21.29c-.08 5.36-.19 12.71-2.15 14.66s-9.3 2.07-14.66 2.15c-7.13.11-14.49.22-21.29 3c-7 2.91-12.73 8.37-17.76 13.19c-3.6 3.45-8.98 8.61-11.38 8.61s-7.78-5.16-11.34-8.57c-5-4.82-10.72-10.28-17.76-13.19c-6.8-2.82-14.16-2.93-21.29-3c-5.36-.08-12.71-.19-14.66-2.15s-2.07-9.3-2.15-14.66c-.11-7.13-.22-14.49-3-21.29c-2.91-7-8.37-12.73-13.19-17.76C41.16 135.78 36 130.4 36 128s5.16-7.78 8.57-11.34c4.82-5 10.28-10.72 13.19-17.76c2.82-6.8 2.93-14.16 3-21.29C60.88 72.25 61 64.9 63 63s9.3-2.07 14.66-2.15c7.13-.11 14.49-.22 21.29-3c7-2.91 12.73-8.37 17.76-13.19C120.22 41.16 125.6 36 128 36s7.78 5.16 11.34 8.57c5 4.82 10.72 10.28 17.76 13.19c6.8 2.82 14.16 2.93 21.29 3c5.36.08 12.71.19 14.66 2.15s2.07 9.3 2.15 14.66c.11 7.13.22 14.49 3 21.29c2.91 7 8.37 12.73 13.19 17.76c3.41 3.56 8.57 8.94 8.57 11.34s-5.12 7.82-8.53 11.38m-34.94-43.83a12 12 0 0 1 0 17l-56 56a12 12 0 0 1-17 0l-24-24a12 12 0 1 1 17-17L112 143l47.51-47.52a12 12 0 0 1 16.98.03'/%3E%3C/svg%3E"); } /* seal-check */ +.fa-circle-half-stroke { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M128 20a108 108 0 1 0 108 108A108.12 108.12 0 0 0 128 20m12 24.87a83.5 83.5 0 0 1 24 7.25v151.76a83.5 83.5 0 0 1-24 7.25ZM44 128a84.12 84.12 0 0 1 72-83.13v166.26A84.12 84.12 0 0 1 44 128m144 58.71V69.29a83.81 83.81 0 0 1 0 117.42'/%3E%3C/svg%3E"); } /* circle-half */ +.fa-circle-info { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M108 84a16 16 0 1 1 16 16a16 16 0 0 1-16-16m128 44A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84a84.09 84.09 0 0 0 84-84m-72 36.68V132a20 20 0 0 0-20-20a12 12 0 0 0-4 23.32V168a20 20 0 0 0 20 20a12 12 0 0 0 4-23.32'/%3E%3C/svg%3E"); } /* info */ +.fa-circle-notch { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M236 128a108 108 0 0 1-216 0c0-42.52 24.73-81.34 63-98.9a12 12 0 1 1 10 21.81C63.24 64.57 44 94.83 44 128a84 84 0 0 0 168 0c0-33.17-19.24-63.43-49-77.09a12 12 0 1 1 10-21.81c38.27 17.56 63 56.38 63 98.9'/%3E%3C/svg%3E"); } /* circle-notch */ +.fa-circle-play { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M234.49 111.07L90.41 22.94A20 20 0 0 0 60 39.87v176.26a20 20 0 0 0 30.41 16.93l144.08-88.13a19.82 19.82 0 0 0 0-33.86M84 208.85V47.15L216.16 128Z'/%3E%3C/svg%3E"); } /* play */ +.fa-clock-rotate-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M140 80v41.21l34.17 20.5a12 12 0 1 1-12.34 20.58l-40-24A12 12 0 0 1 116 128V80a12 12 0 0 1 24 0m-12-52a99.38 99.38 0 0 0-70.76 29.34c-4.69 4.74-9 9.37-13.24 14V64a12 12 0 0 0-24 0v40a12 12 0 0 0 12 12h40a12 12 0 0 0 0-24H57.77c5.23-6 10.6-11.78 16.49-17.74a76 76 0 1 1 1.58 109a12 12 0 0 0-16.48 17.46A100 100 0 1 0 128 28'/%3E%3C/svg%3E"); } /* clock-counter-clockwise */ +.fa-download { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M71.51 88.49a12 12 0 0 1 17-17L116 99V24a12 12 0 0 1 24 0v75l27.51-27.52a12 12 0 0 1 17 17l-48 48a12 12 0 0 1-17 0ZM224 116h-36a12 12 0 0 0 0 24h32v56H36v-56h32a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20m-20 52a16 16 0 1 0-16 16a16 16 0 0 0 16-16'/%3E%3C/svg%3E"); } /* download */ +.fa-ellipsis { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M144 128a16 16 0 1 1-16-16a16 16 0 0 1 16 16m-84-16a16 16 0 1 0 16 16a16 16 0 0 0-16-16m136 0a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E"); } /* dots-three */ +.fa-ellipsis-vertical { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M112 60a16 16 0 1 1 16 16a16 16 0 0 1-16-16m16 52a16 16 0 1 0 16 16a16 16 0 0 0-16-16m0 68a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E"); } /* dots-three-vertical */ +.fa-envelope { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M224 44H32a12 12 0 0 0-12 12v136a20 20 0 0 0 20 20h176a20 20 0 0 0 20-20V56a12 12 0 0 0-12-12m-96 83.72L62.85 68h130.3Zm-35.21.28L44 172.72V83.28Zm17.76 16.28l9.34 8.57a12 12 0 0 0 16.22 0l9.34-8.57l47.7 43.72H62.85ZM163.21 128L212 83.28v89.44Z'/%3E%3C/svg%3E"); } /* envelope */ +.fa-eye-slash { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M56.88 31.93a12 12 0 1 0-17.76 16.14l16 17.65C20.67 88.66 5.72 121.58 5 123.13a12.08 12.08 0 0 0 0 9.75c.37.82 9.13 20.26 28.49 39.61C59.37 198.34 92 212 128 212a131.3 131.3 0 0 0 51-10l20.09 22.1a12 12 0 0 0 17.76-16.14ZM128 188c-29.59 0-55.47-10.73-76.91-31.88A130.7 130.7 0 0 1 29.52 128c5.27-9.31 18.79-29.9 42-44.29l90.09 99.11A109.3 109.3 0 0 1 128 188m123-55.12c-.36.81-9 20-28 39.16a12 12 0 1 1-17-16.9A130.5 130.5 0 0 0 226.48 128a130.4 130.4 0 0 0-21.57-28.12C183.46 78.73 157.59 68 128 68c-3.35 0-6.7.14-10 .42a12 12 0 1 1-2-23.91c3.93-.34 8-.51 12-.51c36 0 68.63 13.67 94.49 39.52c19.35 19.35 28.11 38.8 28.48 39.61a12.08 12.08 0 0 1 .03 9.75'/%3E%3C/svg%3E"); } /* eye-slash */ +.fa-face-smile-beam { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M178.39 158c-11 19.06-29.39 30-50.39 30s-39.36-10.93-50.39-30a12 12 0 0 1 20.78-12c3.89 6.73 12.91 18 29.61 18s25.72-11.28 29.61-18a12 12 0 1 1 20.78 12M236 128A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84a84.09 84.09 0 0 0 84-84m-120-4a16 16 0 1 0-16-16a16 16 0 0 0 16 16m72-32a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E"); } /* smiley */ +.fa-file { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m216.49 79.52l-56-56A12 12 0 0 0 152 20H56a20 20 0 0 0-20 20v176a20 20 0 0 0 20 20h144a20 20 0 0 0 20-20V88a12 12 0 0 0-3.51-8.48M160 57l23 23h-23ZM60 212V44h76v48a12 12 0 0 0 12 12h48v108Z'/%3E%3C/svg%3E"); } /* file */ +.fa-file-arrow-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M71.51 88.49a12 12 0 0 1 17-17L116 99V24a12 12 0 0 1 24 0v75l27.51-27.52a12 12 0 0 1 17 17l-48 48a12 12 0 0 1-17 0ZM224 116h-36a12 12 0 0 0 0 24h32v56H36v-56h32a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20m-20 52a16 16 0 1 0-16 16a16 16 0 0 0 16-16'/%3E%3C/svg%3E"); } /* download */ +.fa-file-arrow-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M188 184a16 16 0 1 1 16-16a16 16 0 0 1-16 16m36-68h-44a12 12 0 0 0 0 24h40v56H36v-56h40a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20M88.49 80.49L116 53v75a12 12 0 0 0 24 0V53l27.51 27.52a12 12 0 1 0 17-17l-48-48a12 12 0 0 0-17 0l-48 48a12 12 0 1 0 17 17Z'/%3E%3C/svg%3E"); } /* upload */ +.fa-file-pen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m232.49 55.51l-32-32a12 12 0 0 0-17 0l-96 96A12 12 0 0 0 84 128v32a12 12 0 0 0 12 12h32a12 12 0 0 0 8.49-3.51l96-96a12 12 0 0 0 0-16.98M192 49l15 15l-11 11l-15-15Zm-69 99h-15v-15l56-56l15 15Zm105-7.43V208a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20V48a20 20 0 0 1 20-20h67.43a12 12 0 0 1 0 24H52v152h152v-63.43a12 12 0 0 1 24 0'/%3E%3C/svg%3E"); } /* note-pencil */ +.fa-filter { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M144 128a16 16 0 1 1-16-16a16 16 0 0 1 16 16m-84-16a16 16 0 1 0 16 16a16 16 0 0 0-16-16m136 0a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E"); } /* dots-three */ +.fa-flag { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M40.14 46.88A12 12 0 0 0 36 56v168a12 12 0 0 0 24 0v-42.28c22.84-17.12 42.1-9.12 70.68 5c16.23 8 34.74 17.2 54.8 17.2c14.72 0 30.28-4.94 46.38-18.88A12 12 0 0 0 236 176V56a12 12 0 0 0-19.86-9.07c-24.71 21.41-44.53 13.31-74.82-1.68c-28.13-13.98-63.15-31.31-101.18 1.63M212 170.26c-22.84 17.13-42.1 9.11-70.68-5C118.16 153.76 90.33 140 60 153.87V61.69c22.84-17.12 42.1-9.12 70.68 5c16.23 8 34.74 17.2 54.8 17.2A63 63 0 0 0 212 78.08Z'/%3E%3C/svg%3E"); } /* flag */ +.fa-font { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M212 56v32a12 12 0 0 1-24 0V68h-48v120h20a12 12 0 0 1 0 24H96a12 12 0 0 1 0-24h20V68H68v20a12 12 0 0 1-24 0V56a12 12 0 0 1 12-12h144a12 12 0 0 1 12 12'/%3E%3C/svg%3E"); } /* text-t */ +.fa-gear { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M128 76a52 52 0 1 0 52 52a52.06 52.06 0 0 0-52-52m0 80a28 28 0 1 1 28-28a28 28 0 0 1-28 28m92-27.21v-1.58l14-17.51a12 12 0 0 0 2.23-10.59A111.8 111.8 0 0 0 225 71.89a12 12 0 0 0-9.11-5.89l-22.28-2.5l-1.11-1.11L190 40.1a12 12 0 0 0-5.89-9.1a111.7 111.7 0 0 0-27.23-11.27A12 12 0 0 0 146.3 22l-17.51 14h-1.58L109.7 22a12 12 0 0 0-10.59-2.23a111.8 111.8 0 0 0-27.22 11.28A12 12 0 0 0 66 40.11l-2.5 22.28l-1.11 1.11L40.1 66a12 12 0 0 0-9.1 5.89a111.7 111.7 0 0 0-11.23 27.23A12 12 0 0 0 22 109.7l14 17.51v1.58L22 146.3a12 12 0 0 0-2.23 10.59a111.8 111.8 0 0 0 11.29 27.22a12 12 0 0 0 9.05 5.89l22.28 2.48l1.11 1.11L66 215.9a12 12 0 0 0 5.89 9.1a111.7 111.7 0 0 0 27.23 11.27A12 12 0 0 0 109.7 234l17.51-14h1.58l17.51 14a12 12 0 0 0 10.59 2.23A111.8 111.8 0 0 0 184.11 225a12 12 0 0 0 5.91-9.06l2.48-22.28l1.11-1.11L215.9 190a12 12 0 0 0 9.06-5.91a111.7 111.7 0 0 0 11.27-27.23A12 12 0 0 0 234 146.3Zm-24.12-4.89a70 70 0 0 1 0 8.2a12 12 0 0 0 2.61 8.22l12.84 16.05a86.5 86.5 0 0 1-4.33 10.49l-20.43 2.27a12 12 0 0 0-7.65 4a69 69 0 0 1-5.8 5.8a12 12 0 0 0-4 7.65L166.86 207a86.5 86.5 0 0 1-10.49 4.35l-16.05-12.85a12 12 0 0 0-7.5-2.62h-.72a70 70 0 0 1-8.2 0a12.06 12.06 0 0 0-8.22 2.6l-16.05 12.85A86.5 86.5 0 0 1 89.14 207l-2.27-20.43a12 12 0 0 0-4-7.65a69 69 0 0 1-5.8-5.8a12 12 0 0 0-7.65-4L49 166.86a86.5 86.5 0 0 1-4.35-10.49l12.84-16.05a12 12 0 0 0 2.61-8.22a70 70 0 0 1 0-8.2a12 12 0 0 0-2.61-8.22L44.67 99.63A86.5 86.5 0 0 1 49 89.14l20.43-2.27a12 12 0 0 0 7.65-4a69 69 0 0 1 5.8-5.8a12 12 0 0 0 4-7.65L89.14 49a86.5 86.5 0 0 1 10.49-4.35l16.05 12.85a12.06 12.06 0 0 0 8.22 2.6a70 70 0 0 1 8.2 0a12 12 0 0 0 8.22-2.6l16.05-12.85A86.5 86.5 0 0 1 166.86 49l2.27 20.43a12 12 0 0 0 4 7.65a69 69 0 0 1 5.8 5.8a12 12 0 0 0 7.65 4L207 89.14a86.5 86.5 0 0 1 4.35 10.49l-12.84 16.05a12 12 0 0 0-2.63 8.22'/%3E%3C/svg%3E"); } /* gear */ +.fa-globe { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M128 20a108 108 0 1 0 108 108A108.12 108.12 0 0 0 128 20m84 108a83.6 83.6 0 0 1-4.47 27L167 130a19.65 19.65 0 0 0-7.8-2.78l-22.82-3.08a20.14 20.14 0 0 0-18.66 7.86h-4.07l-2.71-5.6a19.88 19.88 0 0 0-13.8-10.84l-2.68-.56l4-7h14.39a20 20 0 0 0 9.66-2.49l12.25-6.76a20.6 20.6 0 0 0 3.74-2.68l26.92-24.33A20 20 0 0 0 172 56.49A84 84 0 0 1 212 128m-71.24-83l6.2 11.1L122.75 78l-10.93 6H96.14a20.05 20.05 0 0 0-17.36 10.06l-4.49 7.85l-6.61-17.63l9.91-23.42A83.9 83.9 0 0 1 140.76 45M44 128a83.5 83.5 0 0 1 4.4-26.77l7.74 20.65a19.89 19.89 0 0 0 14.52 12.53l19.53 4.2l3 6.1a20.11 20.11 0 0 0 13.55 10.77l-5 11.12a20 20 0 0 0 3.58 21.71l.21.22l18.16 18.7l-.89 4.59A84.09 84.09 0 0 1 44 128m103.65 81.66a20.11 20.11 0 0 0-5-17.3l-.21-.22l-17.72-18.25l11.37-25.52l19 2.56l41.43 25.48a84.2 84.2 0 0 1-48.87 33.25'/%3E%3C/svg%3E"); } /* globe-hemisphere-west */ +.fa-house { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m222.14 105.85l-80-80a20 20 0 0 0-28.28 0l-80 80A19.86 19.86 0 0 0 28 120v96a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-52h24v52a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-96a19.86 19.86 0 0 0-5.86-14.15M204 204h-40v-52a12 12 0 0 0-12-12h-48a12 12 0 0 0-12 12v52H52v-82.35l76-76l76 76Z'/%3E%3C/svg%3E"); } /* house */ +.fa-image { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M144 96a16 16 0 1 1 16 16a16 16 0 0 1-16-16m92-40v144a20 20 0 0 1-20 20H40a20 20 0 0 1-20-20V56a20 20 0 0 1 20-20h176a20 20 0 0 1 20 20M44 60v79.72l33.86-33.86a20 20 0 0 1 28.28 0L147.31 147l17.18-17.17a20 20 0 0 1 28.28 0L212 149.09V60Zm0 136h118.34L92 125.66l-48 48Zm168 0v-13l-33.37-33.37L164.28 164l32 32Z'/%3E%3C/svg%3E"); } /* image */ +.fa-info { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M108 84a16 16 0 1 1 16 16a16 16 0 0 1-16-16m128 44A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84a84.09 84.09 0 0 0 84-84m-72 36.68V132a20 20 0 0 0-20-20a12 12 0 0 0-4 23.32V168a20 20 0 0 0 20 20a12 12 0 0 0 4-23.32'/%3E%3C/svg%3E"); } /* info */ +.fa-list { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12H40a12 12 0 0 1 0-24h176a12 12 0 0 1 12 12M40 76h176a12 12 0 0 0 0-24H40a12 12 0 0 0 0 24m176 104H40a12 12 0 0 0 0 24h176a12 12 0 0 0 0-24'/%3E%3C/svg%3E"); } /* list */ +.fa-lock { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 76h-28V56a52 52 0 0 0-104 0v20H48a20 20 0 0 0-20 20v112a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20V96a20 20 0 0 0-20-20M100 56a28 28 0 0 1 56 0v20h-56Zm104 148H52V100h152Zm-60-52a16 16 0 1 1-16-16a16 16 0 0 1 16 16'/%3E%3C/svg%3E"); } /* lock */ +.fa-lock-open { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m222.14 105.85l-80-80a20 20 0 0 0-28.28 0l-80 80A19.86 19.86 0 0 0 28 120v96a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-52h24v52a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-96a19.86 19.86 0 0 0-5.86-14.15M204 204h-40v-52a12 12 0 0 0-12-12h-48a12 12 0 0 0-12 12v52H52v-82.35l76-76l76 76Z'/%3E%3C/svg%3E"); } /* house (seemingly only used for unlisted posts) */ +.fa-magnifying-glass { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M232.49 215.51L185 168a92.12 92.12 0 1 0-17 17l47.53 47.54a12 12 0 0 0 17-17ZM44 112a68 68 0 1 1 68 68a68.07 68.07 0 0 1-68-68'/%3E%3C/svg%3E"); } /* magnifying-glass */ +.fa-magnifying-glass-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M232.49 215.51L185 168a92.12 92.12 0 1 0-17 17l47.53 47.54a12 12 0 0 0 17-17ZM44 112a68 68 0 1 1 68 68a68.07 68.07 0 0 1-68-68'/%3E%3C/svg%3E"); } /* magnifying-glass */ +.fa-music { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M215.38 14.54a12 12 0 0 0-10.29-2.18l-128 32A12 12 0 0 0 68 56v103.35A40 40 0 1 0 92 196V65.37l104-26v88A40 40 0 1 0 220 164V24a12 12 0 0 0-4.62-9.46M52 212a16 16 0 1 1 16-16a16 16 0 0 1-16 16m128-32a16 16 0 1 1 16-16a16 16 0 0 1-16 16'/%3E%3C/svg%3E"); } /* music-notes-simple */ +.fa-paintbrush { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M203.57 51A107.9 107.9 0 0 0 20 128c0 44.72 27.6 82.25 72 97.94A36 36 0 0 0 140 192a12 12 0 0 1 12-12h46.21a35.79 35.79 0 0 0 35.1-28a108.6 108.6 0 0 0 2.69-24.91A107.23 107.23 0 0 0 203.57 51m6.34 95.67a11.91 11.91 0 0 1-11.7 9.3H152a36 36 0 0 0-36 36a12 12 0 0 1-16 11.3c-16.65-5.88-30.65-15.76-40.48-28.56A76 76 0 0 1 44 128a84 84 0 0 1 83.13-84h.87a84.35 84.35 0 0 1 84 83.29a84.7 84.7 0 0 1-2.09 19.42ZM144 76a16 16 0 1 1-16-16a16 16 0 0 1 16 16m-44 24a16 16 0 1 1-16-16a16 16 0 0 1 16 16m0 56a16 16 0 1 1-16-16a16 16 0 0 1 16 16m88-56a16 16 0 1 1-16-16a16 16 0 0 1 16 16'/%3E%3C/svg%3E"); } /* palette */ +.fa-pen { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m230.14 70.54l-44.68-44.69a20 20 0 0 0-28.29 0L33.86 149.17A19.85 19.85 0 0 0 28 163.31V208a20 20 0 0 0 20 20h44.69a19.86 19.86 0 0 0 14.14-5.86L230.14 98.82a20 20 0 0 0 0-28.28M91 204H52v-39l84-84l39 39Zm101-101l-39-39l18.34-18.34l39 39Z'/%3E%3C/svg%3E"); } /* pencil-simple */ +.fa-pen-to-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m232.49 55.51l-32-32a12 12 0 0 0-17 0l-96 96A12 12 0 0 0 84 128v32a12 12 0 0 0 12 12h32a12 12 0 0 0 8.49-3.51l96-96a12 12 0 0 0 0-16.98M192 49l15 15l-11 11l-15-15Zm-69 99h-15v-15l56-56l15 15Zm105-7.43V208a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20V48a20 20 0 0 1 20-20h67.43a12 12 0 0 1 0 24H52v152h152v-63.43a12 12 0 0 1 24 0'/%3E%3C/svg%3E"); } /* note-pencil */ +.fa-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12h-76v76a12 12 0 0 1-24 0v-76H40a12 12 0 0 1 0-24h76V40a12 12 0 0 1 24 0v76h76a12 12 0 0 1 12 12'/%3E%3C/svg%3E"); } /* plus */ +.fa-quote-left { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M100 52H40a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h56v4a28 28 0 0 1-28 28a12 12 0 0 0 0 24a52.06 52.06 0 0 0 52-52V72a20 20 0 0 0-20-20m-4 80H44V76h52Zm120-80h-60a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h56v4a28 28 0 0 1-28 28a12 12 0 0 0 0 24a52.06 52.06 0 0 0 52-52V72a20 20 0 0 0-20-20m-4 80h-52V76h52Z'/%3E%3C/svg%3E"); } /* quotes */ +.fa-reply { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M236 144a68.07 68.07 0 0 1-68 68H80a12 12 0 0 1 0-24h88a44 44 0 0 0 0-88H61l27.52 27.51a12 12 0 0 1-17 17l-48-48a12 12 0 0 1 0-17l48-48a12 12 0 1 1 17 17L61 76h107a68.08 68.08 0 0 1 68 68'/%3E%3C/svg%3E"); } /* arrow-u-up-left */ +.fa-retweet { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M20 128a76.08 76.08 0 0 1 76-76h99l-3.52-3.51a12 12 0 1 1 17-17l24 24a12 12 0 0 1 0 17l-24 24a12 12 0 0 1-17-17L195 76H96a52.06 52.06 0 0 0-52 52a12 12 0 0 1-24 0m204-12a12 12 0 0 0-12 12a52.06 52.06 0 0 1-52 52H61l3.52-3.51a12 12 0 1 0-17-17l-24 24a12 12 0 0 0 0 17l24 24a12 12 0 1 0 17-17L61 204h99a76.08 76.08 0 0 0 76-76a12 12 0 0 0-12-12'/%3E%3C/svg%3E"); } /* repeat */ +.fa-right-from-bracket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M124 216a12 12 0 0 1-12 12H48a12 12 0 0 1-12-12V40a12 12 0 0 1 12-12h64a12 12 0 0 1 0 24H60v152h52a12 12 0 0 1 12 12m108.49-96.49l-40-40a12 12 0 0 0-17 17L195 116h-83a12 12 0 0 0 0 24h83l-19.52 19.51a12 12 0 0 0 17 17l40-40a12 12 0 0 0 .01-17'/%3E%3C/svg%3E"); } /* sign-out */ +.fa-right-to-bracket { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m144.49 136.49l-40 40a12 12 0 0 1-17-17L107 140H24a12 12 0 0 1 0-24h83L87.51 96.49a12 12 0 0 1 17-17l40 40a12 12 0 0 1-.02 17M200 28h-64a12 12 0 0 0 0 24h52v152h-52a12 12 0 0 0 0 24h64a12 12 0 0 0 12-12V40a12 12 0 0 0-12-12'/%3E%3C/svg%3E"); } /* sign-in */ +.fa-robot { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M72 104a16 16 0 1 1 16 16a16 16 0 0 1-16-16m96 16a16 16 0 1 0-16-16a16 16 0 0 0 16 16m68-40v112a36 36 0 0 1-36 36H56a36 36 0 0 1-36-36V80a36 36 0 0 1 36-36h60V16a12 12 0 0 1 24 0v28h60a36 36 0 0 1 36 36m-24 0a12 12 0 0 0-12-12H56a12 12 0 0 0-12 12v112a12 12 0 0 0 12 12h144a12 12 0 0 0 12-12Zm-12 82a30 30 0 0 1-30 30H86a30 30 0 0 1 0-60h84a30 30 0 0 1 30 30m-80-6v12h16v-12Zm-34 12h10v-12H86a6 6 0 0 0 0 12m90-6a6 6 0 0 0-6-6h-10v12h10a6 6 0 0 0 6-6'/%3E%3C/svg%3E"); } /* robot */ +.fa-rss { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 192a12 12 0 0 1-24 0c0-77.2-62.8-140-140-140a12 12 0 0 1 0-24c90.43 0 164 73.57 164 164M64 100a12 12 0 0 0 0 24a68.07 68.07 0 0 1 68 68a12 12 0 0 0 24 0a92.1 92.1 0 0 0-92-92m4 72a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E"); } /* rss-simple */ +.fa-server { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 36H48a20 20 0 0 0-20 20v144a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20V56a20 20 0 0 0-20-20m-4 24v56H52V60ZM52 196v-56h152v56ZM160 88a16 16 0 1 1 16 16a16 16 0 0 1-16-16m32 80a16 16 0 1 1-16-16a16 16 0 0 1 16 16'/%3E%3C/svg%3E"); } /* hard-drives */ +.fa-share-nodes { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M176 156a43.78 43.78 0 0 0-29.09 11l-40.81-26.2a44.07 44.07 0 0 0 0-25.6L146.91 89a43.83 43.83 0 1 0-13-20.17L93.09 95a44 44 0 1 0 0 65.94l40.81 26.26A44 44 0 1 0 176 156m0-120a20 20 0 1 1-20 20a20 20 0 0 1 20-20M64 148a20 20 0 1 1 20-20a20 20 0 0 1-20 20m112 72a20 20 0 1 1 20-20a20 20 0 0 1-20 20'/%3E%3C/svg%3E"); } /* share-network */ +.fa-square-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 28H48a20 20 0 0 0-20 20v160a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20V48a20 20 0 0 0-20-20m-4 176H52V52h152ZM76 128a12 12 0 0 1 12-12h28V88a12 12 0 0 1 24 0v28h28a12 12 0 0 1 0 24h-28v28a12 12 0 0 1-24 0v-28H88a12 12 0 0 1-12-12'/%3E%3C/svg%3E"); } /* plus-square */ +.fa-square-poll-horizontal { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M224 92h-36V56a12 12 0 0 0-12-12H60v-4a12 12 0 0 0-24 0v176a12 12 0 0 0 24 0v-4h84a12 12 0 0 0 12-12v-36h68a12 12 0 0 0 12-12v-48a12 12 0 0 0-12-12m-60-24v24H60V68Zm-32 120H60v-24h72Zm80-48H60v-24h152Z'/%3E%3C/svg%3E"); } /* chart-bar-horizontal */ +.fa-star { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M243 96a20.33 20.33 0 0 0-17.74-14l-56.59-4.57l-21.84-52.81a20.36 20.36 0 0 0-37.66 0L87.35 77.44L30.76 82a20.45 20.45 0 0 0-11.66 35.88l43.18 37.24l-13.2 55.7A20.37 20.37 0 0 0 79.57 233L128 203.19L176.43 233a20.39 20.39 0 0 0 30.49-22.15l-13.2-55.7l43.18-37.24A20.43 20.43 0 0 0 243 96m-70.47 45.7a12 12 0 0 0-3.84 11.86L181.58 208l-47.29-29.08a12 12 0 0 0-12.58 0L74.42 208l12.89-54.4a12 12 0 0 0-3.84-11.86l-42.27-36.5l55.4-4.47a12 12 0 0 0 10.13-7.38L128 41.89l21.27 51.5a12 12 0 0 0 10.13 7.38l55.4 4.47Z'/%3E%3C/svg%3E"); } /* star */ +.fa-suitcase-rolling { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M180 216a12 12 0 0 1-12 12H24a12 12 0 1 1 0-24h144a12 12 0 0 1 12 12m71.79-126.12a12 12 0 0 1-5.64 8.1L98.75 186l-.13.07a43.74 43.74 0 0 1-52.2-5.94l-.19-.18l-36-35.25a20 20 0 0 1 5.55-32.7l2.94-1.44a12 12 0 0 1 9.12-.59l26.5 8.94l14.15-8.56l-18.07-17.57a20 20 0 0 1 5.7-33.05l.48-.2l7.15-2.7a12 12 0 0 1 8.4 0L124.29 76l49.93-29.8a43.8 43.8 0 0 1 56.43 10a2 2 0 0 1 .17.22l18.64 23.88a11.94 11.94 0 0 1 2.33 9.58m-29.61-5.54L212 71.29a19.89 19.89 0 0 0-25.54-4.48l-54.77 32.7a12 12 0 0 1-10.3 1l-46-16.94l21 20.4a12 12 0 0 1-2.15 18.87L62 142.29a12 12 0 0 1-10 1.1l-13.35-4.5l24.31 23.8a19.89 19.89 0 0 0 23.6 2.65Z'/%3E%3C/svg%3E"); } /* airplane-takeoff */ +.fa-thumbs-down { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m243.78 156.53l-12-96A28 28 0 0 0 204 36H32a20 20 0 0 0-20 20v88a20 20 0 0 0 20 20h40.58l36.69 73.37A12 12 0 0 0 120 244a44.05 44.05 0 0 0 44-44v-12h52a28 28 0 0 0 27.78-31.47M68 140H36V60h32Zm151 22.65a4 4 0 0 1-3 1.35h-64a12 12 0 0 0-12 12v24a20 20 0 0 1-13.18 18.8L92 149.17V60h112a4 4 0 0 1 4 3.5l12 96a4 4 0 0 1-1 3.15'/%3E%3C/svg%3E"); } /* thumbs-down */ +.fa-thumbs-up { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M237 77.47A28 28 0 0 0 216 68h-52V56a44.05 44.05 0 0 0-44-44a12 12 0 0 0-10.73 6.63L72.58 92H32a20 20 0 0 0-20 20v88a20 20 0 0 0 20 20h172a28 28 0 0 0 27.78-24.53l12-96a28 28 0 0 0-6.78-22M36 116h32v80H36Zm184-19.5l-12 96a4 4 0 0 1-4 3.5H92v-89.17l34.82-69.63A20 20 0 0 1 140 56v24a12 12 0 0 0 12 12h64a4 4 0 0 1 4 4.5'/%3E%3C/svg%3E"); } /* thumbs-up */ +.fa-tooth { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M172.46 83.15L160.31 88l12.15 4.85a12 12 0 1 1-8.92 22.29L128 100.93l-35.54 14.22a12 12 0 0 1-8.92-22.29L95.69 88l-12.15-4.85a12 12 0 0 1 8.92-22.29L128 75.08l35.54-14.22a12 12 0 0 1 8.92 22.29m55.54-3.4c.08 76.45-25.2 135.68-49 152.59a20 20 0 0 1-31.44-14.92c-.67-9.06-2.33-22-6.46-32.23C135.76 172 129.92 172 128 172c-7.76 0-11.77 9.92-13.08 13.18c-4.13 10.22-5.79 23.17-6.46 32.23A20 20 0 0 1 88.51 236A19.86 19.86 0 0 1 77 232.34C53.2 215.43 27.92 156.2 28 79.75A60 60 0 0 1 88 20h80a60 60 0 0 1 60 59.75m-24 0A36 36 0 0 0 168 44H88a36 36 0 0 0-36 35.78c-.06 61.09 17.83 109.52 33.3 127.66C91.24 156 114.32 148 128 148s36.76 8 42.7 59.43c15.47-18.12 33.36-66.55 33.3-127.65Z'/%3E%3C/svg%3E"); } /* tooth */ +.fa-trash-can { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M216 48h-36V36a28 28 0 0 0-28-28h-48a28 28 0 0 0-28 28v12H40a12 12 0 0 0 0 24h4v136a20 20 0 0 0 20 20h128a20 20 0 0 0 20-20V72h4a12 12 0 0 0 0-24M100 36a4 4 0 0 1 4-4h48a4 4 0 0 1 4 4v12h-56Zm88 168H68V72h120Zm-72-100v64a12 12 0 0 1-24 0v-64a12 12 0 0 1 24 0m48 0v64a12 12 0 0 1-24 0v-64a12 12 0 0 1 24 0'/%3E%3C/svg%3E"); } /* trash */ +.fa-up-right-from-square { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 104a12 12 0 0 1-24 0V69l-59.51 59.51a12 12 0 0 1-17-17L187 52h-35a12 12 0 0 1 0-24h64a12 12 0 0 1 12 12Zm-44 24a12 12 0 0 0-12 12v64H52V84h64a12 12 0 0 0 0-24H48a20 20 0 0 0-20 20v128a20 20 0 0 0 20 20h128a20 20 0 0 0 20-20v-68a12 12 0 0 0-12-12'/%3E%3C/svg%3E"); } /* arrow-square-out */ +.fa-upload { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M188 184a16 16 0 1 1 16-16a16 16 0 0 1-16 16m36-68h-44a12 12 0 0 0 0 24h40v56H36v-56h40a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20M88.49 80.49L116 53v75a12 12 0 0 0 24 0V53l27.51 27.52a12 12 0 1 0 17-17l-48-48a12 12 0 0 0-17 0l-48 48a12 12 0 1 0 17 17Z'/%3E%3C/svg%3E"); } /* upload */ +.fa-user { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M234.38 210a123.36 123.36 0 0 0-60.78-53.23a76 76 0 1 0-91.2 0A123.36 123.36 0 0 0 21.62 210a12 12 0 1 0 20.77 12c18.12-31.32 50.12-50 85.61-50s67.49 18.69 85.61 50a12 12 0 0 0 20.77-12M76 96a52 52 0 1 1 52 52a52.06 52.06 0 0 1-52-52'/%3E%3C/svg%3E"); } /* user */ +.fa-user-plus { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M256 136a12 12 0 0 1-12 12h-8v8a12 12 0 0 1-24 0v-8h-8a12 12 0 0 1 0-24h8v-8a12 12 0 0 1 24 0v8h8a12 12 0 0 1 12 12m-54.81 56.28a12 12 0 1 1-18.38 15.44C169.12 191.42 145 172 108 172c-28.89 0-55.46 12.68-74.81 35.72a12 12 0 0 1-18.38-15.44a124.1 124.1 0 0 1 48.69-35.75a72 72 0 1 1 89 0a124 124 0 0 1 48.69 35.75M108 148a48 48 0 1 0-48-48a48.05 48.05 0 0 0 48 48'/%3E%3C/svg%3E"); } /* user-plus */ +.fa-users { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M164.38 181.1a52 52 0 1 0-72.76 0a75.9 75.9 0 0 0-30 28.89a12 12 0 0 0 20.78 12a53 53 0 0 1 91.22 0a12 12 0 1 0 20.78-12a75.9 75.9 0 0 0-30.02-28.89M100 144a28 28 0 1 1 28 28a28 28 0 0 1-28-28m147.21 9.59a12 12 0 0 1-16.81-2.39c-8.33-11.09-19.85-19.59-29.33-21.64a12 12 0 0 1-1.82-22.91a20 20 0 1 0-24.78-28.3a12 12 0 1 1-21-11.6a44 44 0 1 1 73.28 48.35a92.2 92.2 0 0 1 22.85 21.69a12 12 0 0 1-2.39 16.8m-192.28-24c-9.48 2.05-21 10.55-29.33 21.65a12 12 0 0 1-19.19-14.45a92.4 92.4 0 0 1 22.85-21.69a44 44 0 1 1 73.28-48.35a12 12 0 1 1-21 11.6a20 20 0 1 0-24.78 28.3a12 12 0 0 1-1.82 22.91Z'/%3E%3C/svg%3E"); } /* users-three */ +.fa-video { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M249.45 69.31a12 12 0 0 0-12.51 1L212 88.43V72a20 20 0 0 0-20-20H32a20 20 0 0 0-20 20v112a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20v-16.43l24.94 18.14A12 12 0 0 0 256 176V80a12 12 0 0 0-6.55-10.69M188 180H36V76h152Zm44-27.57l-20-14.54v-19.78l20-14.54Z'/%3E%3C/svg%3E"); } /* video-camera */ +.fa-window-minimize { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M39.51 80.49a12 12 0 0 1 17-17L128 135l71.51-71.52a12 12 0 0 1 17 17l-80 80a12 12 0 0 1-17 0ZM208 180H48a12 12 0 0 0 0 24h160a12 12 0 0 0 0-24'/%3E%3C/svg%3E"); } /* caret-line-down */ +.fa-wrench { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M230.47 67.5a12 12 0 0 0-19.26-4.32L172.43 99l-12.68-2.72L157 83.57l35.79-38.78a12 12 0 0 0-4.32-19.26a76.07 76.07 0 0 0-100.06 96.11l-57.49 52.54a5 5 0 0 0-.39.38a36 36 0 0 0 50.91 50.91l.38-.39l52.54-57.49A76.05 76.05 0 0 0 230.47 67.5M160 148a51.5 51.5 0 0 1-23.35-5.52a12 12 0 0 0-14.26 2.62l-58.08 63.56a12 12 0 0 1-17-17l63.55-58.07a12 12 0 0 0 2.62-14.26A51.5 51.5 0 0 1 108 96a52.06 52.06 0 0 1 52-52h.89l-25.72 27.87a12 12 0 0 0-2.91 10.65l5.66 26.35a12 12 0 0 0 9.21 9.21l26.35 5.66a12 12 0 0 0 10.65-2.91L212 95.12v.89A52.06 52.06 0 0 1 160 148'/%3E%3C/svg%3E"); } /* wrench */ +.fa-xmark { --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208.49 191.51a12 12 0 0 1-17 17L128 145l-63.51 63.49a12 12 0 0 1-17-17L111 128L47.51 64.49a12 12 0 0 1 17-17L128 111l63.51-63.52a12 12 0 0 1 17 17L145 128Z'/%3E%3C/svg%3E"); } /* x */ \ No newline at end of file diff --git a/static/custom.min.css b/static/custom.min.css new file mode 100644 index 00000000..1eb5667a --- /dev/null +++ b/static/custom.min.css @@ -0,0 +1 @@ +label.Select svg{margin-top:auto;margin-bottom:auto}.router-link-active{font-size:unset!important;margin-top:unset!important}.Notifications{& .notification.unseen .notification-overlay{background:var(--badgeNotification,red);border:solid .25rem var(--bg);z-index:1;border-radius:99px;width:1rem;height:1rem;margin-top:.15rem;margin-left:.15rem;background-image:unset!important}& .chostlike{& .status-container{padding:var(--status-margin,.75em)!important}}}.form-group{& .form-control{& .form-post-subject{background:color-mix(in srgb,var(--cOrange)10%,transparent);margin-bottom:.8rem;border-radius:var(--inputRadius)!important;border:solid .1rem var(--cOrange)!important}& .form-post-body{border-radius:var(--inputRadius)!important}}& .visibility-tray .ScopeSelector button.selected{& svg.fa-lock{color:var(--cOrange)!important}& svg.fa-envelope{color:var(--accent)!important}}}.status-heading .heading-name-row .heading-right .visibility-icon{& svg.fa-lock{color:var(--cOrange)!important}& svg.fa-envelope{color:var(--accent)!important}}.Status:has(.visibility-icon .fa-envelope){border-left:.2rem solid var(--accent)}.MentionsLine .MentionLink{color:var(--accent);border-radius:5px;margin-right:.4rem;padding:.2rem;background-color:color-mix(in srgb,var(--accent)10%,transparent)!important;&:last-child{margin-right:unset!important}&:before{content:unset!important}}.Status.-focused{background-color:color-mix(in srgb,var(--selectedPost)50%,transparent)!important;border-radius:var(--panelRadius,10px)!important}.status-container{& .replies{border-radius:var(--tooltipRadius);padding:.3rem .3rem .3rem .5rem;background-color:var(--selectedPost)!important;color:var(--text)!important;width:fit-content!important;margin-top:.4rem!important}}.heading-edited-row{color:var(--faint)!important}.heading-reply-row .reply-glued-label .shortName{color:var(--accent)!important}.Status.classic{& .heading-reply-row{& .reply-glued-label{background-color:var(--selectedPost);border-radius:var(--tooltipRadius);color:var(--text)!important;padding:.3rem!important}}}.Status.chostlike{& .status-container{& .right-side{background-color:var(--bg)!important;box-shadow:var(--panelShadow)!important;padding:unset!important;border-radius:10px!important;& .status-heading,& .status-actions{background-color:var(--selectedPost)!important}& .status-heading{border-radius:var(--panelRadius,10px)var(--panelRadius,10px)0 0!important;padding:var(--status-margin,.75em)var(--status-margin,.75em).3rem var(--status-margin,.75em)!important;& .reply-glued-label{padding-bottom:.3rem!important}}& .content{padding:.8rem .7rem!important}& .replies{margin-bottom:.5rem!important;margin-left:.5rem!important;margin-right:.5rem!important;margin-top:unset!important}& .favs-repeated-users{margin-bottom:.5rem!important;margin-left:.5rem!important;margin-right:.5rem!important}& .emoji-reactions{display:none;&:has(button){border-bottom:unset!important;margin-top:-.3rem!important;margin-bottom:.3rem!important;display:flex!important}}& .status-actions{border-radius:0 0 var(--panelRadius,10px)var(--panelRadius,10px)!important;border-top:1px solid var(--faint)!important;margin-top:unset!important;padding:var(--status-margin,.75em)!important;width:unset!important;& .ExtraButtons{flex:0!important}}}}}.Status.chostlike:has(.repeat-info){& .status-container{& .right-side{& .status-heading{border-radius:unset!important}}}& .repeat-info{& .left-side{margin-top:.6rem!important}& .right-side{background-color:var(--selectedPost)!important;border-radius:var(--panelRadius,10px)var(--panelRadius,10px)0 0!important;padding:var(--status-margin)!important;border-bottom:1px solid #0003!important}}}.account-name{color:var(--faint)!important}.NavPanel{& li .menu-item{border-radius:unset!important;color:var(--text)!important}}.Attachment .attachment-buttons{& .attachment-button{& svg path{fill:var(--btnText,#b9b9ba)}background-color:var(--btn,#182230)!important;border-radius:var(--btnRadius,4px)!important;border:.1rem solid var(--border)!important;vertical-align:middle!important;width:2em!important;height:1.6em!important;font-size:1rem!important}& .attachment-button:has(.fa-align-right){& svg{display:none!important}color:var(--btnText,#b9b9ba);padding-left:.2rem;padding-right:.2rem;font-weight:700}& .attachment-button:has(.fa-align-right):after{content:"ALT"}& .attachment-button:has(.fa-magnifying-glass-plus),& .attachment-button:has(.fa-xmark){padding-left:.1rem;padding-right:.1rem}}.emoji-reactions{& button{min-height:1.8rem;max-height:1.8rem;margin-top:.2rem;margin-bottom:.3rem;box-shadow:unset!important;& span{vertical-align:middle}& .reaction-emoji{vertical-align:middle;height:1.6rem!important}& .unicode-emoji{font-size:1.4rem!important}& .picked-reaction{background-color:color-mix(in srgb,var(--accent)10%,transparent)!important}}}.Status .heading-left img{aspect-ratio:unset!important}.Status .repeater-name .emoji{width:unset!important}.post-status-form .media-upload-icon,.post-status-form .poll-icon,.post-status-form .emoji-icon,.post-status-form .spoiler-icon{font-size:unset!important;justify-content:center!important;transform:scale(1.2)!important}.reply-to svg{vertical-align:text-bottom!important}.fa-filter{transform:scale(1.8)!important}.main .panel-default .user-card .user-buttons,.user-card .panel-heading .user-info .container .user-buttons{flex-direction:row;display:flex;& .button-unstyled{height:2rem!important;margin:unset!important;padding:unset!important;text-align:center!important;vertical-align:middle!important;width:2rem!important;& .fa-up-right-from-square{transform:translateY(.4rem)scale(1.4)!important}& .fa-rss{transform:translateY(.5rem)scale(1.7)!important}& .fa-ellipsis-vertical{transform:scale(5)!important}}}.-favorited .fa-star,.-type--like .fa-star{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m234.29 114.85l-45 38.83L203 211.75a16.4 16.4 0 0 1-24.5 17.82L128 198.49l-50.53 31.08A16.4 16.4 0 0 1 53 211.75l13.76-58.07l-45-38.83A16.46 16.46 0 0 1 31.08 86l59-4.76l22.76-55.08a16.36 16.36 0 0 1 30.27 0l22.75 55.08l59 4.76a16.46 16.46 0 0 1 9.37 28.86Z'/%3E%3C/svg%3E")!important}.Attachment .play-icon{top:calc(50% - 10px);left:calc(50% - 10px);transform:scale(3.5)!important}.fa-2x{transform:scale(1.5)!important}.fa-5x{transform:scale(5)!important}[class^=fa-]{font-size:unset!important}.svg-inline--fa,.icon{-webkit-mask-image:var(--svg);-webkit-mask-size:100% 100%;-webkit-mask-repeat:no-repeat;mask-image:var(--svg);background-color:currentColor;display:inline-block;transform:scale(1.4);mask-size:100% 100%;mask-repeat:no-repeat;height:1rem!important}.fa-angles-right{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m144.49 136.49l-80 80a12 12 0 0 1-17-17L119 128L47.51 56.49a12 12 0 0 1 17-17l80 80a12 12 0 0 1-.02 17m80-17l-80-80a12 12 0 1 0-17 17L199 128l-71.52 71.51a12 12 0 0 0 17 17l80-80a12 12 0 0 0 .01-17Z'/%3E%3C/svg%3E")}.fa-bars{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12H40a12 12 0 0 1 0-24h176a12 12 0 0 1 12 12M40 76h176a12 12 0 0 0 0-24H40a12 12 0 0 0 0 24m176 104H40a12 12 0 0 0 0 24h176a12 12 0 0 0 0-24'/%3E%3C/svg%3E")}.fa-bars-staggered{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M84 64a12 12 0 0 1 12-12h120a12 12 0 0 1 0 24H96a12 12 0 0 1-12-12m132 52H96a12 12 0 0 0 0 24h120a12 12 0 0 0 0-24m0 64H96a12 12 0 0 0 0 24h120a12 12 0 0 0 0-24M56 52H40a12 12 0 0 0 0 24h16a12 12 0 0 0 0-24m0 64H40a12 12 0 0 0 0 24h16a12 12 0 0 0 0-24m0 64H40a12 12 0 0 0 0 24h16a12 12 0 0 0 0-24'/%3E%3C/svg%3E")}.fa-bell{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M225.29 165.93C216.61 151 212 129.57 212 104a84 84 0 0 0-168 0c0 25.58-4.59 47-13.27 61.93a20.08 20.08 0 0 0-.07 20.07A19.77 19.77 0 0 0 48 196h36.18a44 44 0 0 0 87.64 0H208a19.77 19.77 0 0 0 17.31-10a20.08 20.08 0 0 0-.02-20.07M128 212a20 20 0 0 1-19.6-16h39.2a20 20 0 0 1-19.6 16m-73.34-40C63.51 154 68 131.14 68 104a60 60 0 0 1 120 0c0 27.13 4.48 50 13.33 68Z'/%3E%3C/svg%3E")}.fa-bolt{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M219.71 117.38a12 12 0 0 0-7.25-8.52l-51.18-20.47l10.59-70.61a12 12 0 0 0-20.64-10l-112 120a12 12 0 0 0 4.31 19.33l51.18 20.47l-10.59 70.64a12 12 0 0 0 20.64 10l112-120a12 12 0 0 0 2.94-10.84M113.6 203.55l6.27-41.77a12 12 0 0 0-7.41-12.92l-43.72-17.49l73.66-78.92l-6.27 41.77a12 12 0 0 0 7.41 12.92l43.72 17.49Z'/%3E%3C/svg%3E")}.fa-bookmark{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M184 28H72a20 20 0 0 0-20 20v176a12 12 0 0 0 18.36 10.18l57.63-36l57.65 36A12 12 0 0 0 204 224V48a20 20 0 0 0-20-20m-4 174.35l-45.65-28.53a12 12 0 0 0-12.72 0L76 202.35V52h104Z'/%3E%3C/svg%3E")}.fa-bullhorn{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M252 120a52.06 52.06 0 0 0-52-52h-39.68c-3.44-.21-52.6-4-99.46-43.3A20 20 0 0 0 28 40v160a19.8 19.8 0 0 0 11.54 18.12a19.86 19.86 0 0 0 21.32-2.81A192.9 192.9 0 0 1 144 174.47v26.2a20 20 0 0 0 8.9 16.64a11 11 0 0 0 1.39.8l14.44 7.06A20 20 0 0 0 198.37 213l11.09-41.82A52.07 52.07 0 0 0 252 120M52 191.63V48.4c36.17 28.07 72.17 38.1 92 41.66V150c-19.83 3.52-55.83 13.55-92 41.63m124.39 10.57l-8.39-4.1V172h16.4ZM200 148h-32V92h32a28 28 0 1 1 0 56'/%3E%3C/svg%3E")}.fa-check{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m232.49 80.49l-128 128a12 12 0 0 1-17 0l-56-56a12 12 0 1 1 17-17L96 183L215.51 63.51a12 12 0 0 1 17 17Z'/%3E%3C/svg%3E")}.fa-chevron-down{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m216.49 104.49l-80 80a12 12 0 0 1-17 0l-80-80a12 12 0 0 1 17-17L128 159l71.51-71.52a12 12 0 0 1 17 17Z'/%3E%3C/svg%3E")}.fa-chevron-left{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M168.49 199.51a12 12 0 0 1-17 17l-80-80a12 12 0 0 1 0-17l80-80a12 12 0 0 1 17 17L97 128Z'/%3E%3C/svg%3E")}.fa-chevron-right{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m184.49 136.49l-80 80a12 12 0 0 1-17-17L159 128L87.51 56.49a12 12 0 1 1 17-17l80 80a12 12 0 0 1-.02 17'/%3E%3C/svg%3E")}.fa-chevron-up{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M216.49 168.49a12 12 0 0 1-17 0L128 97l-71.51 71.49a12 12 0 0 1-17-17l80-80a12 12 0 0 1 17 0l80 80a12 12 0 0 1 0 17'/%3E%3C/svg%3E")}.fa-circle{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M176 76a48 48 0 1 0-48 48a48.05 48.05 0 0 0 48-48m-48 24a24 24 0 1 1 24-24a24 24 0 0 1-24 24m60 24a48 48 0 1 0 48 48a48.05 48.05 0 0 0-48-48m0 72a24 24 0 1 1 24-24a24 24 0 0 1-24 24M68 124a48 48 0 1 0 48 48a48.05 48.05 0 0 0-48-48m0 72a24 24 0 1 1 24-24a24 24 0 0 1-24 24'/%3E%3C/svg%3E")}.fa-circle-check{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228.75 100.05c-3.52-3.67-7.15-7.46-8.34-10.33c-1.06-2.56-1.14-7.83-1.21-12.47c-.15-10-.34-22.44-9.18-31.27s-21.27-9-31.27-9.18c-4.64-.07-9.91-.15-12.47-1.21c-2.87-1.19-6.66-4.82-10.33-8.34C148.87 20.46 140.05 12 128 12s-20.87 8.46-27.95 15.25c-3.67 3.52-7.46 7.15-10.33 8.34c-2.56 1.06-7.83 1.14-12.47 1.21c-10 .2-22.44.34-31.25 9.2s-9 21.25-9.2 31.25c-.07 4.64-.15 9.91-1.21 12.47c-1.19 2.87-4.82 6.66-8.34 10.33C20.46 107.13 12 116 12 128s8.46 20.87 15.25 28c3.52 3.67 7.15 7.46 8.34 10.33c1.06 2.56 1.14 7.83 1.21 12.47c.15 10 .34 22.44 9.18 31.27s21.27 9 31.27 9.18c4.64.07 9.91.15 12.47 1.21c2.87 1.19 6.66 4.82 10.33 8.34C107.13 235.54 116 244 128 244s20.87-8.46 27.95-15.25c3.67-3.52 7.46-7.15 10.33-8.34c2.56-1.06 7.83-1.14 12.47-1.21c10-.15 22.44-.34 31.27-9.18s9-21.27 9.18-31.27c.07-4.64.15-9.91 1.21-12.47c1.19-2.87 4.82-6.66 8.34-10.33c6.79-7.08 15.25-15.9 15.25-27.95s-8.46-20.87-15.25-27.95m-17.32 39.29c-4.82 5-10.28 10.72-13.19 17.76c-2.82 6.8-2.93 14.16-3 21.29c-.08 5.36-.19 12.71-2.15 14.66s-9.3 2.07-14.66 2.15c-7.13.11-14.49.22-21.29 3c-7 2.91-12.73 8.37-17.76 13.19c-3.6 3.45-8.98 8.61-11.38 8.61s-7.78-5.16-11.34-8.57c-5-4.82-10.72-10.28-17.76-13.19c-6.8-2.82-14.16-2.93-21.29-3c-5.36-.08-12.71-.19-14.66-2.15s-2.07-9.3-2.15-14.66c-.11-7.13-.22-14.49-3-21.29c-2.91-7-8.37-12.73-13.19-17.76C41.16 135.78 36 130.4 36 128s5.16-7.78 8.57-11.34c4.82-5 10.28-10.72 13.19-17.76c2.82-6.8 2.93-14.16 3-21.29C60.88 72.25 61 64.9 63 63s9.3-2.07 14.66-2.15c7.13-.11 14.49-.22 21.29-3c7-2.91 12.73-8.37 17.76-13.19C120.22 41.16 125.6 36 128 36s7.78 5.16 11.34 8.57c5 4.82 10.72 10.28 17.76 13.19c6.8 2.82 14.16 2.93 21.29 3c5.36.08 12.71.19 14.66 2.15s2.07 9.3 2.15 14.66c.11 7.13.22 14.49 3 21.29c2.91 7 8.37 12.73 13.19 17.76c3.41 3.56 8.57 8.94 8.57 11.34s-5.12 7.82-8.53 11.38m-34.94-43.83a12 12 0 0 1 0 17l-56 56a12 12 0 0 1-17 0l-24-24a12 12 0 1 1 17-17L112 143l47.51-47.52a12 12 0 0 1 16.98.03'/%3E%3C/svg%3E")}.fa-circle-half-stroke{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M128 20a108 108 0 1 0 108 108A108.12 108.12 0 0 0 128 20m12 24.87a83.5 83.5 0 0 1 24 7.25v151.76a83.5 83.5 0 0 1-24 7.25ZM44 128a84.12 84.12 0 0 1 72-83.13v166.26A84.12 84.12 0 0 1 44 128m144 58.71V69.29a83.81 83.81 0 0 1 0 117.42'/%3E%3C/svg%3E")}.fa-circle-info{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M108 84a16 16 0 1 1 16 16a16 16 0 0 1-16-16m128 44A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84a84.09 84.09 0 0 0 84-84m-72 36.68V132a20 20 0 0 0-20-20a12 12 0 0 0-4 23.32V168a20 20 0 0 0 20 20a12 12 0 0 0 4-23.32'/%3E%3C/svg%3E")}.fa-circle-notch{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M236 128a108 108 0 0 1-216 0c0-42.52 24.73-81.34 63-98.9a12 12 0 1 1 10 21.81C63.24 64.57 44 94.83 44 128a84 84 0 0 0 168 0c0-33.17-19.24-63.43-49-77.09a12 12 0 1 1 10-21.81c38.27 17.56 63 56.38 63 98.9'/%3E%3C/svg%3E")}.fa-circle-play{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M234.49 111.07L90.41 22.94A20 20 0 0 0 60 39.87v176.26a20 20 0 0 0 30.41 16.93l144.08-88.13a19.82 19.82 0 0 0 0-33.86M84 208.85V47.15L216.16 128Z'/%3E%3C/svg%3E")}.fa-clock-rotate-left{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M140 80v41.21l34.17 20.5a12 12 0 1 1-12.34 20.58l-40-24A12 12 0 0 1 116 128V80a12 12 0 0 1 24 0m-12-52a99.38 99.38 0 0 0-70.76 29.34c-4.69 4.74-9 9.37-13.24 14V64a12 12 0 0 0-24 0v40a12 12 0 0 0 12 12h40a12 12 0 0 0 0-24H57.77c5.23-6 10.6-11.78 16.49-17.74a76 76 0 1 1 1.58 109a12 12 0 0 0-16.48 17.46A100 100 0 1 0 128 28'/%3E%3C/svg%3E")}.fa-download{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M71.51 88.49a12 12 0 0 1 17-17L116 99V24a12 12 0 0 1 24 0v75l27.51-27.52a12 12 0 0 1 17 17l-48 48a12 12 0 0 1-17 0ZM224 116h-36a12 12 0 0 0 0 24h32v56H36v-56h32a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20m-20 52a16 16 0 1 0-16 16a16 16 0 0 0 16-16'/%3E%3C/svg%3E")}.fa-ellipsis{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M144 128a16 16 0 1 1-16-16a16 16 0 0 1 16 16m-84-16a16 16 0 1 0 16 16a16 16 0 0 0-16-16m136 0a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E")}.fa-ellipsis-vertical{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M112 60a16 16 0 1 1 16 16a16 16 0 0 1-16-16m16 52a16 16 0 1 0 16 16a16 16 0 0 0-16-16m0 68a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E")}.fa-envelope{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M224 44H32a12 12 0 0 0-12 12v136a20 20 0 0 0 20 20h176a20 20 0 0 0 20-20V56a12 12 0 0 0-12-12m-96 83.72L62.85 68h130.3Zm-35.21.28L44 172.72V83.28Zm17.76 16.28l9.34 8.57a12 12 0 0 0 16.22 0l9.34-8.57l47.7 43.72H62.85ZM163.21 128L212 83.28v89.44Z'/%3E%3C/svg%3E")}.fa-eye-slash{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M56.88 31.93a12 12 0 1 0-17.76 16.14l16 17.65C20.67 88.66 5.72 121.58 5 123.13a12.08 12.08 0 0 0 0 9.75c.37.82 9.13 20.26 28.49 39.61C59.37 198.34 92 212 128 212a131.3 131.3 0 0 0 51-10l20.09 22.1a12 12 0 0 0 17.76-16.14ZM128 188c-29.59 0-55.47-10.73-76.91-31.88A130.7 130.7 0 0 1 29.52 128c5.27-9.31 18.79-29.9 42-44.29l90.09 99.11A109.3 109.3 0 0 1 128 188m123-55.12c-.36.81-9 20-28 39.16a12 12 0 1 1-17-16.9A130.5 130.5 0 0 0 226.48 128a130.4 130.4 0 0 0-21.57-28.12C183.46 78.73 157.59 68 128 68c-3.35 0-6.7.14-10 .42a12 12 0 1 1-2-23.91c3.93-.34 8-.51 12-.51c36 0 68.63 13.67 94.49 39.52c19.35 19.35 28.11 38.8 28.48 39.61a12.08 12.08 0 0 1 .03 9.75'/%3E%3C/svg%3E")}.fa-face-smile-beam{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M178.39 158c-11 19.06-29.39 30-50.39 30s-39.36-10.93-50.39-30a12 12 0 0 1 20.78-12c3.89 6.73 12.91 18 29.61 18s25.72-11.28 29.61-18a12 12 0 1 1 20.78 12M236 128A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84a84.09 84.09 0 0 0 84-84m-120-4a16 16 0 1 0-16-16a16 16 0 0 0 16 16m72-32a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E")}.fa-file{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m216.49 79.52l-56-56A12 12 0 0 0 152 20H56a20 20 0 0 0-20 20v176a20 20 0 0 0 20 20h144a20 20 0 0 0 20-20V88a12 12 0 0 0-3.51-8.48M160 57l23 23h-23ZM60 212V44h76v48a12 12 0 0 0 12 12h48v108Z'/%3E%3C/svg%3E")}.fa-file-arrow-down{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M71.51 88.49a12 12 0 0 1 17-17L116 99V24a12 12 0 0 1 24 0v75l27.51-27.52a12 12 0 0 1 17 17l-48 48a12 12 0 0 1-17 0ZM224 116h-36a12 12 0 0 0 0 24h32v56H36v-56h32a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20m-20 52a16 16 0 1 0-16 16a16 16 0 0 0 16-16'/%3E%3C/svg%3E")}.fa-file-arrow-up{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M188 184a16 16 0 1 1 16-16a16 16 0 0 1-16 16m36-68h-44a12 12 0 0 0 0 24h40v56H36v-56h40a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20M88.49 80.49L116 53v75a12 12 0 0 0 24 0V53l27.51 27.52a12 12 0 1 0 17-17l-48-48a12 12 0 0 0-17 0l-48 48a12 12 0 1 0 17 17Z'/%3E%3C/svg%3E")}.fa-file-pen{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m232.49 55.51l-32-32a12 12 0 0 0-17 0l-96 96A12 12 0 0 0 84 128v32a12 12 0 0 0 12 12h32a12 12 0 0 0 8.49-3.51l96-96a12 12 0 0 0 0-16.98M192 49l15 15l-11 11l-15-15Zm-69 99h-15v-15l56-56l15 15Zm105-7.43V208a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20V48a20 20 0 0 1 20-20h67.43a12 12 0 0 1 0 24H52v152h152v-63.43a12 12 0 0 1 24 0'/%3E%3C/svg%3E")}.fa-filter{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M144 128a16 16 0 1 1-16-16a16 16 0 0 1 16 16m-84-16a16 16 0 1 0 16 16a16 16 0 0 0-16-16m136 0a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E")}.fa-flag{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M40.14 46.88A12 12 0 0 0 36 56v168a12 12 0 0 0 24 0v-42.28c22.84-17.12 42.1-9.12 70.68 5c16.23 8 34.74 17.2 54.8 17.2c14.72 0 30.28-4.94 46.38-18.88A12 12 0 0 0 236 176V56a12 12 0 0 0-19.86-9.07c-24.71 21.41-44.53 13.31-74.82-1.68c-28.13-13.98-63.15-31.31-101.18 1.63M212 170.26c-22.84 17.13-42.1 9.11-70.68-5C118.16 153.76 90.33 140 60 153.87V61.69c22.84-17.12 42.1-9.12 70.68 5c16.23 8 34.74 17.2 54.8 17.2A63 63 0 0 0 212 78.08Z'/%3E%3C/svg%3E")}.fa-font{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M212 56v32a12 12 0 0 1-24 0V68h-48v120h20a12 12 0 0 1 0 24H96a12 12 0 0 1 0-24h20V68H68v20a12 12 0 0 1-24 0V56a12 12 0 0 1 12-12h144a12 12 0 0 1 12 12'/%3E%3C/svg%3E")}.fa-gear{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M128 76a52 52 0 1 0 52 52a52.06 52.06 0 0 0-52-52m0 80a28 28 0 1 1 28-28a28 28 0 0 1-28 28m92-27.21v-1.58l14-17.51a12 12 0 0 0 2.23-10.59A111.8 111.8 0 0 0 225 71.89a12 12 0 0 0-9.11-5.89l-22.28-2.5l-1.11-1.11L190 40.1a12 12 0 0 0-5.89-9.1a111.7 111.7 0 0 0-27.23-11.27A12 12 0 0 0 146.3 22l-17.51 14h-1.58L109.7 22a12 12 0 0 0-10.59-2.23a111.8 111.8 0 0 0-27.22 11.28A12 12 0 0 0 66 40.11l-2.5 22.28l-1.11 1.11L40.1 66a12 12 0 0 0-9.1 5.89a111.7 111.7 0 0 0-11.23 27.23A12 12 0 0 0 22 109.7l14 17.51v1.58L22 146.3a12 12 0 0 0-2.23 10.59a111.8 111.8 0 0 0 11.29 27.22a12 12 0 0 0 9.05 5.89l22.28 2.48l1.11 1.11L66 215.9a12 12 0 0 0 5.89 9.1a111.7 111.7 0 0 0 27.23 11.27A12 12 0 0 0 109.7 234l17.51-14h1.58l17.51 14a12 12 0 0 0 10.59 2.23A111.8 111.8 0 0 0 184.11 225a12 12 0 0 0 5.91-9.06l2.48-22.28l1.11-1.11L215.9 190a12 12 0 0 0 9.06-5.91a111.7 111.7 0 0 0 11.27-27.23A12 12 0 0 0 234 146.3Zm-24.12-4.89a70 70 0 0 1 0 8.2a12 12 0 0 0 2.61 8.22l12.84 16.05a86.5 86.5 0 0 1-4.33 10.49l-20.43 2.27a12 12 0 0 0-7.65 4a69 69 0 0 1-5.8 5.8a12 12 0 0 0-4 7.65L166.86 207a86.5 86.5 0 0 1-10.49 4.35l-16.05-12.85a12 12 0 0 0-7.5-2.62h-.72a70 70 0 0 1-8.2 0a12.06 12.06 0 0 0-8.22 2.6l-16.05 12.85A86.5 86.5 0 0 1 89.14 207l-2.27-20.43a12 12 0 0 0-4-7.65a69 69 0 0 1-5.8-5.8a12 12 0 0 0-7.65-4L49 166.86a86.5 86.5 0 0 1-4.35-10.49l12.84-16.05a12 12 0 0 0 2.61-8.22a70 70 0 0 1 0-8.2a12 12 0 0 0-2.61-8.22L44.67 99.63A86.5 86.5 0 0 1 49 89.14l20.43-2.27a12 12 0 0 0 7.65-4a69 69 0 0 1 5.8-5.8a12 12 0 0 0 4-7.65L89.14 49a86.5 86.5 0 0 1 10.49-4.35l16.05 12.85a12.06 12.06 0 0 0 8.22 2.6a70 70 0 0 1 8.2 0a12 12 0 0 0 8.22-2.6l16.05-12.85A86.5 86.5 0 0 1 166.86 49l2.27 20.43a12 12 0 0 0 4 7.65a69 69 0 0 1 5.8 5.8a12 12 0 0 0 7.65 4L207 89.14a86.5 86.5 0 0 1 4.35 10.49l-12.84 16.05a12 12 0 0 0-2.63 8.22'/%3E%3C/svg%3E")}.fa-globe{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M128 20a108 108 0 1 0 108 108A108.12 108.12 0 0 0 128 20m84 108a83.6 83.6 0 0 1-4.47 27L167 130a19.65 19.65 0 0 0-7.8-2.78l-22.82-3.08a20.14 20.14 0 0 0-18.66 7.86h-4.07l-2.71-5.6a19.88 19.88 0 0 0-13.8-10.84l-2.68-.56l4-7h14.39a20 20 0 0 0 9.66-2.49l12.25-6.76a20.6 20.6 0 0 0 3.74-2.68l26.92-24.33A20 20 0 0 0 172 56.49A84 84 0 0 1 212 128m-71.24-83l6.2 11.1L122.75 78l-10.93 6H96.14a20.05 20.05 0 0 0-17.36 10.06l-4.49 7.85l-6.61-17.63l9.91-23.42A83.9 83.9 0 0 1 140.76 45M44 128a83.5 83.5 0 0 1 4.4-26.77l7.74 20.65a19.89 19.89 0 0 0 14.52 12.53l19.53 4.2l3 6.1a20.11 20.11 0 0 0 13.55 10.77l-5 11.12a20 20 0 0 0 3.58 21.71l.21.22l18.16 18.7l-.89 4.59A84.09 84.09 0 0 1 44 128m103.65 81.66a20.11 20.11 0 0 0-5-17.3l-.21-.22l-17.72-18.25l11.37-25.52l19 2.56l41.43 25.48a84.2 84.2 0 0 1-48.87 33.25'/%3E%3C/svg%3E")}.fa-house{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m222.14 105.85l-80-80a20 20 0 0 0-28.28 0l-80 80A19.86 19.86 0 0 0 28 120v96a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-52h24v52a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-96a19.86 19.86 0 0 0-5.86-14.15M204 204h-40v-52a12 12 0 0 0-12-12h-48a12 12 0 0 0-12 12v52H52v-82.35l76-76l76 76Z'/%3E%3C/svg%3E")}.fa-image{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M144 96a16 16 0 1 1 16 16a16 16 0 0 1-16-16m92-40v144a20 20 0 0 1-20 20H40a20 20 0 0 1-20-20V56a20 20 0 0 1 20-20h176a20 20 0 0 1 20 20M44 60v79.72l33.86-33.86a20 20 0 0 1 28.28 0L147.31 147l17.18-17.17a20 20 0 0 1 28.28 0L212 149.09V60Zm0 136h118.34L92 125.66l-48 48Zm168 0v-13l-33.37-33.37L164.28 164l32 32Z'/%3E%3C/svg%3E")}.fa-info{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M108 84a16 16 0 1 1 16 16a16 16 0 0 1-16-16m128 44A108 108 0 1 1 128 20a108.12 108.12 0 0 1 108 108m-24 0a84 84 0 1 0-84 84a84.09 84.09 0 0 0 84-84m-72 36.68V132a20 20 0 0 0-20-20a12 12 0 0 0-4 23.32V168a20 20 0 0 0 20 20a12 12 0 0 0 4-23.32'/%3E%3C/svg%3E")}.fa-list{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12H40a12 12 0 0 1 0-24h176a12 12 0 0 1 12 12M40 76h176a12 12 0 0 0 0-24H40a12 12 0 0 0 0 24m176 104H40a12 12 0 0 0 0 24h176a12 12 0 0 0 0-24'/%3E%3C/svg%3E")}.fa-lock{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 76h-28V56a52 52 0 0 0-104 0v20H48a20 20 0 0 0-20 20v112a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20V96a20 20 0 0 0-20-20M100 56a28 28 0 0 1 56 0v20h-56Zm104 148H52V100h152Zm-60-52a16 16 0 1 1-16-16a16 16 0 0 1 16 16'/%3E%3C/svg%3E")}.fa-lock-open{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m222.14 105.85l-80-80a20 20 0 0 0-28.28 0l-80 80A19.86 19.86 0 0 0 28 120v96a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-52h24v52a12 12 0 0 0 12 12h64a12 12 0 0 0 12-12v-96a19.86 19.86 0 0 0-5.86-14.15M204 204h-40v-52a12 12 0 0 0-12-12h-48a12 12 0 0 0-12 12v52H52v-82.35l76-76l76 76Z'/%3E%3C/svg%3E")}.fa-magnifying-glass,.fa-magnifying-glass-plus{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M232.49 215.51L185 168a92.12 92.12 0 1 0-17 17l47.53 47.54a12 12 0 0 0 17-17ZM44 112a68 68 0 1 1 68 68a68.07 68.07 0 0 1-68-68'/%3E%3C/svg%3E")}.fa-music{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M215.38 14.54a12 12 0 0 0-10.29-2.18l-128 32A12 12 0 0 0 68 56v103.35A40 40 0 1 0 92 196V65.37l104-26v88A40 40 0 1 0 220 164V24a12 12 0 0 0-4.62-9.46M52 212a16 16 0 1 1 16-16a16 16 0 0 1-16 16m128-32a16 16 0 1 1 16-16a16 16 0 0 1-16 16'/%3E%3C/svg%3E")}.fa-paintbrush{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M203.57 51A107.9 107.9 0 0 0 20 128c0 44.72 27.6 82.25 72 97.94A36 36 0 0 0 140 192a12 12 0 0 1 12-12h46.21a35.79 35.79 0 0 0 35.1-28a108.6 108.6 0 0 0 2.69-24.91A107.23 107.23 0 0 0 203.57 51m6.34 95.67a11.91 11.91 0 0 1-11.7 9.3H152a36 36 0 0 0-36 36a12 12 0 0 1-16 11.3c-16.65-5.88-30.65-15.76-40.48-28.56A76 76 0 0 1 44 128a84 84 0 0 1 83.13-84h.87a84.35 84.35 0 0 1 84 83.29a84.7 84.7 0 0 1-2.09 19.42ZM144 76a16 16 0 1 1-16-16a16 16 0 0 1 16 16m-44 24a16 16 0 1 1-16-16a16 16 0 0 1 16 16m0 56a16 16 0 1 1-16-16a16 16 0 0 1 16 16m88-56a16 16 0 1 1-16-16a16 16 0 0 1 16 16'/%3E%3C/svg%3E")}.fa-pen{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m230.14 70.54l-44.68-44.69a20 20 0 0 0-28.29 0L33.86 149.17A19.85 19.85 0 0 0 28 163.31V208a20 20 0 0 0 20 20h44.69a19.86 19.86 0 0 0 14.14-5.86L230.14 98.82a20 20 0 0 0 0-28.28M91 204H52v-39l84-84l39 39Zm101-101l-39-39l18.34-18.34l39 39Z'/%3E%3C/svg%3E")}.fa-pen-to-square{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m232.49 55.51l-32-32a12 12 0 0 0-17 0l-96 96A12 12 0 0 0 84 128v32a12 12 0 0 0 12 12h32a12 12 0 0 0 8.49-3.51l96-96a12 12 0 0 0 0-16.98M192 49l15 15l-11 11l-15-15Zm-69 99h-15v-15l56-56l15 15Zm105-7.43V208a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20V48a20 20 0 0 1 20-20h67.43a12 12 0 0 1 0 24H52v152h152v-63.43a12 12 0 0 1 24 0'/%3E%3C/svg%3E")}.fa-plus{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 128a12 12 0 0 1-12 12h-76v76a12 12 0 0 1-24 0v-76H40a12 12 0 0 1 0-24h76V40a12 12 0 0 1 24 0v76h76a12 12 0 0 1 12 12'/%3E%3C/svg%3E")}.fa-quote-left{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M100 52H40a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h56v4a28 28 0 0 1-28 28a12 12 0 0 0 0 24a52.06 52.06 0 0 0 52-52V72a20 20 0 0 0-20-20m-4 80H44V76h52Zm120-80h-60a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h56v4a28 28 0 0 1-28 28a12 12 0 0 0 0 24a52.06 52.06 0 0 0 52-52V72a20 20 0 0 0-20-20m-4 80h-52V76h52Z'/%3E%3C/svg%3E")}.fa-reply{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M236 144a68.07 68.07 0 0 1-68 68H80a12 12 0 0 1 0-24h88a44 44 0 0 0 0-88H61l27.52 27.51a12 12 0 0 1-17 17l-48-48a12 12 0 0 1 0-17l48-48a12 12 0 1 1 17 17L61 76h107a68.08 68.08 0 0 1 68 68'/%3E%3C/svg%3E")}.fa-retweet{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M20 128a76.08 76.08 0 0 1 76-76h99l-3.52-3.51a12 12 0 1 1 17-17l24 24a12 12 0 0 1 0 17l-24 24a12 12 0 0 1-17-17L195 76H96a52.06 52.06 0 0 0-52 52a12 12 0 0 1-24 0m204-12a12 12 0 0 0-12 12a52.06 52.06 0 0 1-52 52H61l3.52-3.51a12 12 0 1 0-17-17l-24 24a12 12 0 0 0 0 17l24 24a12 12 0 1 0 17-17L61 204h99a76.08 76.08 0 0 0 76-76a12 12 0 0 0-12-12'/%3E%3C/svg%3E")}.fa-right-from-bracket{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M124 216a12 12 0 0 1-12 12H48a12 12 0 0 1-12-12V40a12 12 0 0 1 12-12h64a12 12 0 0 1 0 24H60v152h52a12 12 0 0 1 12 12m108.49-96.49l-40-40a12 12 0 0 0-17 17L195 116h-83a12 12 0 0 0 0 24h83l-19.52 19.51a12 12 0 0 0 17 17l40-40a12 12 0 0 0 .01-17'/%3E%3C/svg%3E")}.fa-right-to-bracket{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m144.49 136.49l-40 40a12 12 0 0 1-17-17L107 140H24a12 12 0 0 1 0-24h83L87.51 96.49a12 12 0 0 1 17-17l40 40a12 12 0 0 1-.02 17M200 28h-64a12 12 0 0 0 0 24h52v152h-52a12 12 0 0 0 0 24h64a12 12 0 0 0 12-12V40a12 12 0 0 0-12-12'/%3E%3C/svg%3E")}.fa-robot{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M72 104a16 16 0 1 1 16 16a16 16 0 0 1-16-16m96 16a16 16 0 1 0-16-16a16 16 0 0 0 16 16m68-40v112a36 36 0 0 1-36 36H56a36 36 0 0 1-36-36V80a36 36 0 0 1 36-36h60V16a12 12 0 0 1 24 0v28h60a36 36 0 0 1 36 36m-24 0a12 12 0 0 0-12-12H56a12 12 0 0 0-12 12v112a12 12 0 0 0 12 12h144a12 12 0 0 0 12-12Zm-12 82a30 30 0 0 1-30 30H86a30 30 0 0 1 0-60h84a30 30 0 0 1 30 30m-80-6v12h16v-12Zm-34 12h10v-12H86a6 6 0 0 0 0 12m90-6a6 6 0 0 0-6-6h-10v12h10a6 6 0 0 0 6-6'/%3E%3C/svg%3E")}.fa-rss{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 192a12 12 0 0 1-24 0c0-77.2-62.8-140-140-140a12 12 0 0 1 0-24c90.43 0 164 73.57 164 164M64 100a12 12 0 0 0 0 24a68.07 68.07 0 0 1 68 68a12 12 0 0 0 24 0a92.1 92.1 0 0 0-92-92m4 72a16 16 0 1 0 16 16a16 16 0 0 0-16-16'/%3E%3C/svg%3E")}.fa-server{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 36H48a20 20 0 0 0-20 20v144a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20V56a20 20 0 0 0-20-20m-4 24v56H52V60ZM52 196v-56h152v56ZM160 88a16 16 0 1 1 16 16a16 16 0 0 1-16-16m32 80a16 16 0 1 1-16-16a16 16 0 0 1 16 16'/%3E%3C/svg%3E")}.fa-share-nodes{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M176 156a43.78 43.78 0 0 0-29.09 11l-40.81-26.2a44.07 44.07 0 0 0 0-25.6L146.91 89a43.83 43.83 0 1 0-13-20.17L93.09 95a44 44 0 1 0 0 65.94l40.81 26.26A44 44 0 1 0 176 156m0-120a20 20 0 1 1-20 20a20 20 0 0 1 20-20M64 148a20 20 0 1 1 20-20a20 20 0 0 1-20 20m112 72a20 20 0 1 1 20-20a20 20 0 0 1-20 20'/%3E%3C/svg%3E")}.fa-square-plus{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208 28H48a20 20 0 0 0-20 20v160a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20V48a20 20 0 0 0-20-20m-4 176H52V52h152ZM76 128a12 12 0 0 1 12-12h28V88a12 12 0 0 1 24 0v28h28a12 12 0 0 1 0 24h-28v28a12 12 0 0 1-24 0v-28H88a12 12 0 0 1-12-12'/%3E%3C/svg%3E")}.fa-square-poll-horizontal{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M224 92h-36V56a12 12 0 0 0-12-12H60v-4a12 12 0 0 0-24 0v176a12 12 0 0 0 24 0v-4h84a12 12 0 0 0 12-12v-36h68a12 12 0 0 0 12-12v-48a12 12 0 0 0-12-12m-60-24v24H60V68Zm-32 120H60v-24h72Zm80-48H60v-24h152Z'/%3E%3C/svg%3E")}.fa-star{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M243 96a20.33 20.33 0 0 0-17.74-14l-56.59-4.57l-21.84-52.81a20.36 20.36 0 0 0-37.66 0L87.35 77.44L30.76 82a20.45 20.45 0 0 0-11.66 35.88l43.18 37.24l-13.2 55.7A20.37 20.37 0 0 0 79.57 233L128 203.19L176.43 233a20.39 20.39 0 0 0 30.49-22.15l-13.2-55.7l43.18-37.24A20.43 20.43 0 0 0 243 96m-70.47 45.7a12 12 0 0 0-3.84 11.86L181.58 208l-47.29-29.08a12 12 0 0 0-12.58 0L74.42 208l12.89-54.4a12 12 0 0 0-3.84-11.86l-42.27-36.5l55.4-4.47a12 12 0 0 0 10.13-7.38L128 41.89l21.27 51.5a12 12 0 0 0 10.13 7.38l55.4 4.47Z'/%3E%3C/svg%3E")}.fa-suitcase-rolling{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M180 216a12 12 0 0 1-12 12H24a12 12 0 1 1 0-24h144a12 12 0 0 1 12 12m71.79-126.12a12 12 0 0 1-5.64 8.1L98.75 186l-.13.07a43.74 43.74 0 0 1-52.2-5.94l-.19-.18l-36-35.25a20 20 0 0 1 5.55-32.7l2.94-1.44a12 12 0 0 1 9.12-.59l26.5 8.94l14.15-8.56l-18.07-17.57a20 20 0 0 1 5.7-33.05l.48-.2l7.15-2.7a12 12 0 0 1 8.4 0L124.29 76l49.93-29.8a43.8 43.8 0 0 1 56.43 10a2 2 0 0 1 .17.22l18.64 23.88a11.94 11.94 0 0 1 2.33 9.58m-29.61-5.54L212 71.29a19.89 19.89 0 0 0-25.54-4.48l-54.77 32.7a12 12 0 0 1-10.3 1l-46-16.94l21 20.4a12 12 0 0 1-2.15 18.87L62 142.29a12 12 0 0 1-10 1.1l-13.35-4.5l24.31 23.8a19.89 19.89 0 0 0 23.6 2.65Z'/%3E%3C/svg%3E")}.fa-thumbs-down{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='m243.78 156.53l-12-96A28 28 0 0 0 204 36H32a20 20 0 0 0-20 20v88a20 20 0 0 0 20 20h40.58l36.69 73.37A12 12 0 0 0 120 244a44.05 44.05 0 0 0 44-44v-12h52a28 28 0 0 0 27.78-31.47M68 140H36V60h32Zm151 22.65a4 4 0 0 1-3 1.35h-64a12 12 0 0 0-12 12v24a20 20 0 0 1-13.18 18.8L92 149.17V60h112a4 4 0 0 1 4 3.5l12 96a4 4 0 0 1-1 3.15'/%3E%3C/svg%3E")}.fa-thumbs-up{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M237 77.47A28 28 0 0 0 216 68h-52V56a44.05 44.05 0 0 0-44-44a12 12 0 0 0-10.73 6.63L72.58 92H32a20 20 0 0 0-20 20v88a20 20 0 0 0 20 20h172a28 28 0 0 0 27.78-24.53l12-96a28 28 0 0 0-6.78-22M36 116h32v80H36Zm184-19.5l-12 96a4 4 0 0 1-4 3.5H92v-89.17l34.82-69.63A20 20 0 0 1 140 56v24a12 12 0 0 0 12 12h64a4 4 0 0 1 4 4.5'/%3E%3C/svg%3E")}.fa-tooth{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M172.46 83.15L160.31 88l12.15 4.85a12 12 0 1 1-8.92 22.29L128 100.93l-35.54 14.22a12 12 0 0 1-8.92-22.29L95.69 88l-12.15-4.85a12 12 0 0 1 8.92-22.29L128 75.08l35.54-14.22a12 12 0 0 1 8.92 22.29m55.54-3.4c.08 76.45-25.2 135.68-49 152.59a20 20 0 0 1-31.44-14.92c-.67-9.06-2.33-22-6.46-32.23C135.76 172 129.92 172 128 172c-7.76 0-11.77 9.92-13.08 13.18c-4.13 10.22-5.79 23.17-6.46 32.23A20 20 0 0 1 88.51 236A19.86 19.86 0 0 1 77 232.34C53.2 215.43 27.92 156.2 28 79.75A60 60 0 0 1 88 20h80a60 60 0 0 1 60 59.75m-24 0A36 36 0 0 0 168 44H88a36 36 0 0 0-36 35.78c-.06 61.09 17.83 109.52 33.3 127.66C91.24 156 114.32 148 128 148s36.76 8 42.7 59.43c15.47-18.12 33.36-66.55 33.3-127.65Z'/%3E%3C/svg%3E")}.fa-trash-can{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M216 48h-36V36a28 28 0 0 0-28-28h-48a28 28 0 0 0-28 28v12H40a12 12 0 0 0 0 24h4v136a20 20 0 0 0 20 20h128a20 20 0 0 0 20-20V72h4a12 12 0 0 0 0-24M100 36a4 4 0 0 1 4-4h48a4 4 0 0 1 4 4v12h-56Zm88 168H68V72h120Zm-72-100v64a12 12 0 0 1-24 0v-64a12 12 0 0 1 24 0m48 0v64a12 12 0 0 1-24 0v-64a12 12 0 0 1 24 0'/%3E%3C/svg%3E")}.fa-up-right-from-square{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M228 104a12 12 0 0 1-24 0V69l-59.51 59.51a12 12 0 0 1-17-17L187 52h-35a12 12 0 0 1 0-24h64a12 12 0 0 1 12 12Zm-44 24a12 12 0 0 0-12 12v64H52V84h64a12 12 0 0 0 0-24H48a20 20 0 0 0-20 20v128a20 20 0 0 0 20 20h128a20 20 0 0 0 20-20v-68a12 12 0 0 0-12-12'/%3E%3C/svg%3E")}.fa-upload{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M188 184a16 16 0 1 1 16-16a16 16 0 0 1-16 16m36-68h-44a12 12 0 0 0 0 24h40v56H36v-56h40a12 12 0 0 0 0-24H32a20 20 0 0 0-20 20v64a20 20 0 0 0 20 20h192a20 20 0 0 0 20-20v-64a20 20 0 0 0-20-20M88.49 80.49L116 53v75a12 12 0 0 0 24 0V53l27.51 27.52a12 12 0 1 0 17-17l-48-48a12 12 0 0 0-17 0l-48 48a12 12 0 1 0 17 17Z'/%3E%3C/svg%3E")}.fa-user{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M234.38 210a123.36 123.36 0 0 0-60.78-53.23a76 76 0 1 0-91.2 0A123.36 123.36 0 0 0 21.62 210a12 12 0 1 0 20.77 12c18.12-31.32 50.12-50 85.61-50s67.49 18.69 85.61 50a12 12 0 0 0 20.77-12M76 96a52 52 0 1 1 52 52a52.06 52.06 0 0 1-52-52'/%3E%3C/svg%3E")}.fa-user-plus{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M256 136a12 12 0 0 1-12 12h-8v8a12 12 0 0 1-24 0v-8h-8a12 12 0 0 1 0-24h8v-8a12 12 0 0 1 24 0v8h8a12 12 0 0 1 12 12m-54.81 56.28a12 12 0 1 1-18.38 15.44C169.12 191.42 145 172 108 172c-28.89 0-55.46 12.68-74.81 35.72a12 12 0 0 1-18.38-15.44a124.1 124.1 0 0 1 48.69-35.75a72 72 0 1 1 89 0a124 124 0 0 1 48.69 35.75M108 148a48 48 0 1 0-48-48a48.05 48.05 0 0 0 48 48'/%3E%3C/svg%3E")}.fa-users{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M164.38 181.1a52 52 0 1 0-72.76 0a75.9 75.9 0 0 0-30 28.89a12 12 0 0 0 20.78 12a53 53 0 0 1 91.22 0a12 12 0 1 0 20.78-12a75.9 75.9 0 0 0-30.02-28.89M100 144a28 28 0 1 1 28 28a28 28 0 0 1-28-28m147.21 9.59a12 12 0 0 1-16.81-2.39c-8.33-11.09-19.85-19.59-29.33-21.64a12 12 0 0 1-1.82-22.91a20 20 0 1 0-24.78-28.3a12 12 0 1 1-21-11.6a44 44 0 1 1 73.28 48.35a92.2 92.2 0 0 1 22.85 21.69a12 12 0 0 1-2.39 16.8m-192.28-24c-9.48 2.05-21 10.55-29.33 21.65a12 12 0 0 1-19.19-14.45a92.4 92.4 0 0 1 22.85-21.69a44 44 0 1 1 73.28-48.35a12 12 0 1 1-21 11.6a20 20 0 1 0-24.78 28.3a12 12 0 0 1-1.82 22.91Z'/%3E%3C/svg%3E")}.fa-video{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M249.45 69.31a12 12 0 0 0-12.51 1L212 88.43V72a20 20 0 0 0-20-20H32a20 20 0 0 0-20 20v112a20 20 0 0 0 20 20h160a20 20 0 0 0 20-20v-16.43l24.94 18.14A12 12 0 0 0 256 176V80a12 12 0 0 0-6.55-10.69M188 180H36V76h152Zm44-27.57l-20-14.54v-19.78l20-14.54Z'/%3E%3C/svg%3E")}.fa-window-minimize{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M39.51 80.49a12 12 0 0 1 17-17L128 135l71.51-71.52a12 12 0 0 1 17 17l-80 80a12 12 0 0 1-17 0ZM208 180H48a12 12 0 0 0 0 24h160a12 12 0 0 0 0-24'/%3E%3C/svg%3E")}.fa-wrench{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M230.47 67.5a12 12 0 0 0-19.26-4.32L172.43 99l-12.68-2.72L157 83.57l35.79-38.78a12 12 0 0 0-4.32-19.26a76.07 76.07 0 0 0-100.06 96.11l-57.49 52.54a5 5 0 0 0-.39.38a36 36 0 0 0 50.91 50.91l.38-.39l52.54-57.49A76.05 76.05 0 0 0 230.47 67.5M160 148a51.5 51.5 0 0 1-23.35-5.52a12 12 0 0 0-14.26 2.62l-58.08 63.56a12 12 0 0 1-17-17l63.55-58.07a12 12 0 0 0 2.62-14.26A51.5 51.5 0 0 1 108 96a52.06 52.06 0 0 1 52-52h.89l-25.72 27.87a12 12 0 0 0-2.91 10.65l5.66 26.35a12 12 0 0 0 9.21 9.21l26.35 5.66a12 12 0 0 0 10.65-2.91L212 95.12v.89A52.06 52.06 0 0 1 160 148'/%3E%3C/svg%3E")}.fa-xmark{--svg:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='%23000' d='M208.49 191.51a12 12 0 0 1-17 17L128 145l-63.51 63.49a12 12 0 0 1-17-17L111 128L47.51 64.49a12 12 0 0 1 17-17L128 111l63.51-63.52a12 12 0 0 1 17 17L145 128Z'/%3E%3C/svg%3E")} \ No newline at end of file diff --git a/static/emoji.json b/static/emoji.json index ec43b661..80b5ad89 100644 --- a/static/emoji.json +++ b/static/emoji.json @@ -1,1698 +1,5942 @@ { - "100": "💯", - "1234": "🔢", - "1st_place_medal": "🥇", - "2nd_place_medal": "🥈", - "3rd_place_medal": "🥉", - "8ball": "🎱", - "a_button_blood_type": "🅰", - "ab": "🆎", - "abacus": "🧮", - "abc": "🔤", - "abcd": "🔡", - "accept": "🉑", - "adhesive_bandage": "🩹", - "admission_tickets": "🎟", - "adult": "🧑", - "aerial_tramway": "🚡", - "afghanistan": "🇦🇫", - "airplane": "✈", - "airplane_arriving": "🛬", - "airplane_departure": "🛫", - "aland_islands": "🇦🇽", - "alarm_clock": "⏰", - "albania": "🇦🇱", - "alembic": "⚗️", - "algeria": "🇩🇿", - "alien": "👽", - "ambulance": "🚑", - "american_samoa": "🇦🇸", - "amphora": "🏺", - "anchor": "⚓", - "andorra": "🇦🇩", - "angel": "👼", - "anger": "💢", - "anger_right": "🗯", - "angola": "🇦🇴", - "angry": "😠", - "anguilla": "🇦🇮", - "anguished": "😧", - "ant": "🐜", - "antarctica": "🇦🇶", - "antigua_and_barbuda": "🇦🇬", - "apple": "🍎", - "aquarius": "♒", - "argentina": "🇦🇷", - "aries": "♈", - "armenia": "🇦🇲", - "arrow_backward": "◀️", - "arrow_double_down": "⏬", - "arrow_double_up": "⏫", - "arrow_down": "⬇️", - "arrow_down_small": "🔽", - "arrow_forward": "▶️", - "arrow_heading_down": "⤵️", - "arrow_heading_up": "⤴️", - "arrow_left": "⬅️", - "arrow_lower_left": "↙️", - "arrow_lower_right": "↘️", - "arrow_right": "➡", - "arrow_right_hook": "↪️", - "arrow_up": "⬆️", - "arrow_up_down": "↕", - "arrow_up_small": "🔼", - "arrow_upper_left": "↖", - "arrow_upper_right": "↗️", - "arrows_clockwise": "🔃", - "arrows_counterclockwise": "🔄", - "art": "🎨", - "articulated_lorry": "🚛", - "artist_palette": "🎨", - "aruba": "🇦🇼", - "ascension_island": "🇦🇨", - "asterisk": "*⃣", - "astonished": "😲", - "athletic_shoe": "👟", - "atm": "🏧", - "atom": "⚛", - "atom_symbol": "⚛️", - "australia": "🇦🇺", - "austria": "🇦🇹", - "auto_rickshaw": "🛺", - "automobile": "🚗", - "avocado": "🥑", - "axe": "🪓", - "azerbaijan": "🇦🇿", - "b_button_blood_type": "🅱", - "baby": "👶", - "baby_bottle": "🍼", - "baby_chick": "🐤", - "baby_symbol": "🚼", - "back": "🔙", - "bacon": "🥓", - "badger": "🦡", - "badminton": "🏸", - "bagel": "🥯", - "baggage_claim": "🛄", - "baguette_bread": "🥖", - "bahamas": "🇧🇸", - "bahrain": "🇧🇭", - "balance_scale": "⚖️", - "bald": "🦲", - "ballet_shoes": "🩰", - "balloon": "🎈", - "ballot_box": "🗳", - "ballot_box_with_check": "☑️", - "bamboo": "🎍", - "banana": "🍌", - "bangbang": "‼️", - "bangladesh": "🇧🇩", - "banjo": "🪕", - "bank": "🏦", - "bar_chart": "📊", - "barbados": "🇧🇧", - "barber": "💈", - "baseball": "⚾", - "basket": "🧺", - "basketball": "🏀", - "basketballer": "⛹", - "bat": "🦇", - "bath": "🛀", - "bathtub": "🛁", - "battery": "🔋", - "beach_umbrella": "⛱", - "beach_with_umbrella": "🏖", - "bear": "🐻", - "beard": "🧔", - "bearded_person": "🧔", - "bed": "🛏", - "bee": "🐝", - "beer": "🍺", - "beers": "🍻", - "beetle": "🐞", - "beginner": "🔰", - "belarus": "🇧🇾", - "belgium": "🇧🇪", - "belize": "🇧🇿", - "bell": "🔔", - "bellhop_bell": "🛎", - "benin": "🇧🇯", - "bento": "🍱", - "bermuda": "🇧🇲", - "beverage_box": "🧃", - "bhutan": "🇧🇹", - "bicyclist": "🚴", - "bike": "🚲", - "bikini": "👙", - "billed_cap": "🧢", - "biohazard": "☣️", - "bird": "🐦", - "birthday": "🎂", - "black_circle": "⚫", - "black_heart": "🖤", - "black_joker": "🃏", - "black_large_square": "⬛", - "black_medium_small_square": "◾", - "black_medium_square": "◼", - "black_nib": "✒️", - "black_small_square": "▪", - "black_square_button": "🔲", - "blond_haired_person": "👱", - "blossom": "🌼", - "blowfish": "🐡", - "blue_book": "📘", - "blue_car": "🚙", - "blue_circle": "🔵", - "blue_heart": "💙", - "blue_square": "🟦", - "blush": "😊", - "boar": "🐗", - "bolivia": "🇧🇴", - "bomb": "💣", - "bone": "🦴", - "book": "📖", - "bookmark": "🔖", - "bookmark_tabs": "📑", - "books": "📚", - "boom": "💥", - "boot": "👢", - "bosnia_and_herzegovina": "🇧🇦", - "botswana": "🇧🇼", - "bouquet": "💐", - "bouvet_island": "🇧🇻", - "bow": "🙇", - "bow_and_arrow": "🏹", - "bowl_with_spoon": "🥣", - "bowling": "🎳", - "boxing_glove": "🥊", - "boy": "👦", - "brain": "🧠", - "brazil": "🇧🇷", - "bread": "🍞", - "breast_feeding": "🤱", - "breastfeeding": "🤱", - "brick": "🧱", - "bride_with_veil": "👰", - "bridge_at_night": "🌉", - "briefcase": "💼", - "briefs": "🩲", - "british_indian_ocean_territory": "🇮🇴", - "british_virgin_islands": "🇻🇬", - "broccoli": "🥦", - "broken_heart": "💔", - "broom": "🧹", - "brown_circle": "🟤", - "brown_heart": "🤎", - "brunei": "🇧🇳", - "bug": "🐛", - "building_construction": "🏗", - "bulb": "💡", - "bulgaria": "🇧🇬", - "bullettrain_front": "🚅", - "bullettrain_side": "🚄", - "burkina_faso": "🇧🇫", - "burrito": "🌯", - "burundi": "🇧🇮", - "bus": "🚌", - "busstop": "🚏", - "bust_in_silhouette": "👤", - "busts_in_silhouette": "👥", - "butter": "🧈", - "butterfly": "🦋", - "cactus": "🌵", - "cake": "🍰", - "calendar": "📆", - "call_me": "🤙", - "call_me_hand": "🤙", - "calling": "📲", - "cambodia": "🇰🇭", - "camel": "🐫", - "camera": "📷", - "camera_with_flash": "📸", - "cameroon": "🇨🇲", - "camping": "🏕", - "canada": "🇨🇦", - "canary_islands": "🇮🇨", - "cancer": "♋", - "candle": "🕯", - "candy": "🍬", - "canned_food": "🥫", - "canoe": "🛶", - "cape_verde": "🇨🇻", - "capital_abcd": "🔠", - "capricorn": "♑", - "card_file_box": "🗃", - "card_index": "📇", - "card_index_dividers": "🗂", - "caribbean_netherlands": "🇧🇶", - "carousel_horse": "🎠", - "carrot": "🥕", - "cat": "🐱", - "cat2": "🐈", - "cayman_islands": "🇰🇾", - "cd": "💿", - "central_african_republic": "🇨🇫", - "ceuta_and_melilla": "🇪🇦", - "chad": "🇹🇩", - "chains": "⛓️", - "chair": "🪑", - "champagne": "🍾", - "champagne_glass": "🥂", - "chart": "💹", - "chart_with_downwards_trend": "📉", - "chart_with_upwards_trend": "📈", - "check_box_with_check": "☑", - "check_mark": "✔", - "checkered_flag": "🏁", - "cheese": "🧀", - "cheese_wedge": "🧀", - "cherries": "🍒", - "cherry_blossom": "🌸", - "chess_pawn": "♟", - "chestnut": "🌰", - "chicken": "🐔", - "child": "🧒", - "children_crossing": "🚸", - "chile": "🇨🇱", - "china": "🇨🇳", - "chipmunk": "🐿", - "chocolate_bar": "🍫", - "chopsticks": "🥢", - "christmas_island": "🇨🇽", - "christmas_tree": "🎄", - "church": "⛪", - "cinema": "🎦", - "circled_m": "Ⓜ", - "circus_tent": "🎪", - "city_dusk": "🌆", - "city_sunset": "🌇", - "cityscape": "🏙", - "cityscape_at_dusk": "🌆", - "cl": "🆑", - "clap": "👏", - "clapper": "🎬", - "classical_building": "🏛", - "clinking_glasses": "🥂", - "clipboard": "📋", - "clipperton_island": "🇨🇵", - "clock1": "🕐", - "clock10": "🕙", - "clock1030": "🕥", - "clock11": "🕚", - "clock1130": "🕦", - "clock12": "🕛", - "clock1230": "🕧", - "clock130": "🕜", - "clock2": "🕑", - "clock230": "🕝", - "clock3": "🕒", - "clock330": "🕞", - "clock4": "🕓", - "clock430": "🕟", - "clock5": "🕔", - "clock530": "🕠", - "clock6": "🕕", - "clock630": "🕡", - "clock7": "🕖", - "clock730": "🕢", - "clock8": "🕗", - "clock830": "🕣", - "clock9": "🕘", - "clock930": "🕤", - "closed_book": "📕", - "closed_lock_with_key": "🔐", - "closed_umbrella": "🌂", - "cloud": "☁️", - "cloud_with_lightning": "🌩", - "cloud_with_lightning_and_rain": "⛈️", - "cloud_with_rain": "🌧", - "cloud_with_snow": "🌨", - "clown": "🤡", - "clown_face": "🤡", - "club_suit": "♣️", - "clubs": "♣", - "coat": "🧥", - "cocktail": "🍸", - "coconut": "🥥", - "cocos_keeling_islands": "🇨🇨", - "coffee": "☕", - "coffin": "⚰️", - "cold_face": "🥶", - "cold_sweat": "😰", - "colombia": "🇨🇴", - "comet": "☄️", - "comoros": "🇰🇲", - "compass": "🧭", - "compression": "🗜", - "computer": "💻", - "computer_mouse": "🖱", - "confetti_ball": "🎊", - "confounded": "😖", - "confused": "😕", - "congo___brazzaville": "🇨🇬", - "congo___kinshasa": "🇨🇩", - "congratulations": "㊗", - "construction": "🚧", - "construction_worker": "👷", - "control_knobs": "🎛", - "convenience_store": "🏪", - "cook_islands": "🇨🇰", - "cookie": "🍪", - "cooking": "🍳", - "cool": "🆒", - "cop": "👮", - "copyright": "©", - "corn": "🌽", - "costa_rica": "🇨🇷", - "cote_divoire": "🇨🇮", - "couch_and_lamp": "🛋", - "couple": "👫", - "couple_with_heart": "💑", - "couplekiss": "💏", - "cow": "🐮", - "cow2": "🐄", - "cowboy": "🤠", - "cowboy_hat_face": "🤠", - "crab": "🦀", - "crayon": "🖍", - "crazy_face": "🤪", - "credit_card": "💳", - "crescent_moon": "🌙", - "cricket": "🦗", - "cricket_game": "🏏", - "croatia": "🇭🇷", - "crocodile": "🐊", - "croissant": "🥐", - "cross": "✝️", - "crossed_fingers": "🤞", - "crossed_flags": "🎌", - "crossed_swords": "⚔️", - "crown": "👑", - "cry": "😢", - "crying_cat_face": "😿", - "crystal_ball": "🔮", - "cuba": "🇨🇺", - "cucumber": "🥒", - "cup_with_straw": "🥤", - "cupcake": "🧁", - "cupid": "💘", - "curacao": "🇨🇼", - "curling_stone": "🥌", - "curly_hair": "🦱", - "curly_loop": "➰", - "currency_exchange": "💱", - "curry": "🍛", - "custard": "🍮", - "customs": "🛃", - "cut_of_meat": "🥩", - "cyclone": "🌀", - "cyprus": "🇨🇾", - "czechia": "🇨🇿", - "dagger": "🗡", - "dancer": "💃", - "dancers": "👯", - "dango": "🍡", - "dark_skin_tone": "🏿", - "dark_sunglasses": "🕶", - "dart": "🎯", - "dash": "💨", - "date": "📅", - "deaf_person": "🧏", - "deciduous_tree": "🌳", - "deer": "🦌", - "denmark": "🇩🇰", - "department_store": "🏬", - "derelict_house": "🏚", - "desert": "🏜", - "desert_island": "🏝", - "desktop_computer": "🖥", - "detective": "🕵", - "diamond_shape_with_a_dot_inside": "💠", - "diamond_suit": "♦️", - "diamonds": "♦", - "diego_garcia": "🇩🇬", - "disappointed": "😞", - "disappointed_relieved": "😥", - "diving_mask": "🤿", - "diya_lamp": "🪔", - "dizzy": "💫", - "dizzy_face": "😵", - "djibouti": "🇩🇯", - "dna": "🧬", - "do_not_litter": "🚯", - "dog": "🐶", - "dog2": "🐕", - "dollar": "💵", - "dolls": "🎎", - "dolphin": "🐬", - "dominica": "🇩🇲", - "dominican_republic": "🇩🇴", - "door": "🚪", - "double_exclamation_mark": "‼", - "doughnut": "🍩", - "dove": "🕊", - "down_arrow": "⬇", - "downleft_arrow": "↙", - "downright_arrow": "↘", - "dragon": "🐉", - "dragon_face": "🐲", - "dress": "👗", - "dromedary_camel": "🐪", - "drooling_face": "🤤", - "drop_of_blood": "🩸", - "droplet": "💧", - "drum": "🥁", - "duck": "🦆", - "dumpling": "🥟", - "dvd": "📀", - "e-mail": "📧", - "eagle": "🦅", - "ear": "👂", - "ear_of_rice": "🌾", - "ear_with_hearing_aid": "🦻", - "earth_africa": "🌍", - "earth_americas": "🌎", - "earth_asia": "🌏", - "ecuador": "🇪🇨", - "egg": "🥚", - "eggplant": "🍆", - "egypt": "🇪🇬", - "eight": "8⃣", - "eight_pointed_black_star": "✴️", - "eight_spoked_asterisk": "✳️", - "eightpointed_star": "✴", - "eightspoked_asterisk": "✳", - "eject_button": "⏏", - "el_salvador": "🇸🇻", - "electric_plug": "🔌", - "elephant": "🐘", - "elf": "🧝", - "end": "🔚", - "england": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", - "envelope": "✉", - "envelope_with_arrow": "📩", - "equatorial_guinea": "🇬🇶", - "eritrea": "🇪🇷", - "estonia": "🇪🇪", - "eswatini": "🇸🇿", - "ethiopia": "🇪🇹", - "euro": "💶", - "european_castle": "🏰", - "european_post_office": "🏤", - "european_union": "🇪🇺", - "evergreen_tree": "🌲", - "exclamation": "❗", - "exclamation_question_mark": "⁉", - "exploding_head": "🤯", - "expressionless": "😑", - "eye": "👁", - "eyeglasses": "👓", - "eyes": "👀", - "face_vomiting": "🤮", - "face_with_hand_over_mouth": "🤭", - "face_with_headbandage": "🤕", - "face_with_monocle": "🧐", - "face_with_raised_eyebrow": "🤨", - "face_with_symbols_on_mouth": "🤬", - "face_with_symbols_over_mouth": "🤬", - "face_with_thermometer": "🤒", - "factory": "🏭", - "fairy": "🧚", - "falafel": "🧆", - "falkland_islands": "🇫🇰", - "fallen_leaf": "🍂", - "family": "👪", - "faroe_islands": "🇫🇴", - "fast_forward": "⏩", - "fax": "📠", - "fearful": "😨", - "feet": "🐾", - "female_sign": "♀", - "ferris_wheel": "🎡", - "ferry": "⛴️", - "field_hockey": "🏑", - "fiji": "🇫🇯", - "file_cabinet": "🗄", - "file_folder": "📁", - "film_frames": "🎞", - "film_projector": "📽", - "fingers_crossed": "🤞", - "finland": "🇫🇮", - "fire": "🔥", - "fire_engine": "🚒", - "fire_extinguisher": "🧯", - "firecracker": "🧨", - "fireworks": "🎆", - "first_place": "🥇", - "first_quarter_moon": "🌓", - "first_quarter_moon_with_face": "🌛", - "fish": "🐟", - "fish_cake": "🍥", - "fishing_pole_and_fish": "🎣", - "fist": "✊", - "five": "5⃣", - "flag_black": "🏴", - "flag_white": "🏳", - "flags": "🎏", - "flamingo": "🦩", - "flashlight": "🔦", - "flat_shoe": "🥿", - "fleur-de-lis": "⚜", - "fleurde-lis": "⚜️", - "floppy_disk": "💾", - "flower_playing_cards": "🎴", - "flushed": "😳", - "flying_disc": "🥏", - "flying_saucer": "🛸", - "fog": "🌫", - "foggy": "🌁", - "foot": "🦶", - "football": "🏈", - "footprints": "👣", - "fork_and_knife": "🍴", - "fork_and_knife_with_plate": "🍽", - "fortune_cookie": "🥠", - "fountain": "⛲", - "fountain_pen": "🖋", - "four": "4⃣", - "four_leaf_clover": "🍀", - "fox": "🦊", - "framed_picture": "🖼", - "france": "🇫🇷", - "free": "🆓", - "french_bread": "🥖", - "french_guiana": "🇬🇫", - "french_polynesia": "🇵🇫", - "french_southern_territories": "🇹🇫", - "fried_shrimp": "🍤", - "fries": "🍟", - "frog": "🐸", - "frowning": "😦", - "frowning_face": "☹️", - "fuelpump": "⛽", - "full_moon": "🌕", - "full_moon_with_face": "🌝", - "funeral_urn": "⚱️", - "gabon": "🇬🇦", - "gambia": "🇬🇲", - "game_die": "🎲", - "garlic": "🧄", - "gear": "⚙️", - "gem": "💎", - "gemini": "♊", - "genie": "🧞", - "georgia": "🇬🇪", - "germany": "🇩🇪", - "ghana": "🇬🇭", - "ghost": "👻", - "gibraltar": "🇬🇮", - "gift": "🎁", - "gift_heart": "💝", - "giraffe": "🦒", - "girl": "👧", - "glass_of_milk": "🥛", - "globe_with_meridians": "🌐", - "gloves": "🧤", - "goal": "🥅", - "goal_net": "🥅", - "goat": "🐐", - "goggles": "🥽", - "golf": "⛳", - "golfer": "🏌", - "goose": "🪿", - "gorilla": "🦍", - "grapes": "🍇", - "greece": "🇬🇷", - "green_apple": "🍏", - "green_book": "📗", - "green_circle": "🟢", - "green_heart": "💚", - "green_salad": "🥗", - "green_square": "🟩", - "greenland": "🇬🇱", - "grenada": "🇬🇩", - "grey_exclamation": "❕", - "grey_question": "❔", - "grimacing": "😬", - "grin": "😁", - "grinning": "😀", - "guadeloupe": "🇬🇵", - "guam": "🇬🇺", - "guard": "💂", - "guardsman": "💂", - "guatemala": "🇬🇹", - "guernsey": "🇬🇬", - "guide_dog": "🦮", - "guinea": "🇬🇳", - "guinea_bissau": "🇬🇼", - "guitar": "🎸", - "gun": "🔫", - "guyana": "🇬🇾", - "haircut": "💇", - "haiti": "🇭🇹", - "hamburger": "🍔", - "hammer": "🔨", - "hammer_and_pick": "⚒️", - "hammer_and_wrench": "🛠", - "hamster": "🐹", - "hand_with_fingers_splayed": "🖐", - "handbag": "👜", - "handshake": "🤝", - "hash": "#⃣", - "hatched_chick": "🐥", - "hatching_chick": "🐣", - "head_bandage": "🤕", - "headphones": "🎧", - "hear_no_evil": "🙉", - "heard_and_mcdonald_islands": "🇭🇲", - "heart": "❤️", - "heart_decoration": "💟", - "heart_exclamation": "❣", - "heart_eyes": "😍", - "heart_eyes_cat": "😻", - "heart_on_fire": "❤️‍🔥", - "heart_suit": "♥️", - "heartbeat": "💓", - "heartpulse": "💗", - "hearts": "♥", - "heavy_check_mark": "✔️", - "heavy_division_sign": "➗", - "heavy_dollar_sign": "💲", - "heavy_minus_sign": "➖", - "heavy_multiplication_x": "✖️", - "heavy_plus_sign": "➕", - "hedgehog": "🦔", - "helicopter": "🚁", - "herb": "🌿", - "hibiscus": "🌺", - "high_brightness": "🔆", - "high_heel": "👠", - "hiking_boot": "🥾", - "hindu_temple": "🛕", - "hippopotamus": "🦛", - "hockey": "🏒", - "hole": "🕳", - "honduras": "🇭🇳", - "honey_pot": "🍯", - "hong_kong_sar_china": "🇭🇰", - "horse": "🐴", - "horse_racing": "🏇", - "hospital": "🏥", - "hot_face": "🥵", - "hot_pepper": "🌶", - "hot_springs": "♨", - "hotdog": "🌭", - "hotel": "🏨", - "hotsprings": "♨️", - "hourglass": "⌛", - "hourglass_flowing_sand": "⏳", - "house": "🏠", - "house_with_garden": "🏡", - "houses": "🏘", - "hugging": "🤗", - "hundred_points": "💯", - "hungary": "🇭🇺", - "hushed": "😯", - "ice": "🧊", - "ice_cream": "🍨", - "ice_hockey": "🏒", - "ice_skate": "⛸️", - "icecream": "🍦", - "iceland": "🇮🇸", - "id": "🆔", - "ideograph_advantage": "🉐", - "imp": "👿", - "inbox_tray": "📥", - "incoming_envelope": "📨", - "index_pointing_up": "☝", - "india": "🇮🇳", - "indonesia": "🇮🇩", - "infinity": "♾", - "information": "ℹ️", - "information_desk_person": "💁", - "information_source": "ℹ", - "innocent": "😇", - "input_numbers": "🔢", - "interrobang": "⁉️", - "iphone": "📱", - "iran": "🇮🇷", - "iraq": "🇮🇶", - "ireland": "🇮🇪", - "isle_of_man": "🇮🇲", - "israel": "🇮🇱", - "italy": "🇮🇹", - "izakaya_lantern": "🏮", - "jack_o_lantern": "🎃", - "jamaica": "🇯🇲", - "japan": "🇯🇵", - "japan_silhouette": "🗾", - "japanese_castle": "🏯", - "japanese_congratulations_button": "㊗️", - "japanese_free_of_charge_button": "🈚", - "japanese_goblin": "👺", - "japanese_ogre": "👹", - "japanese_reserved_button": "🈯", - "japanese_secret_button": "㊙️", - "japanese_service_charge_button": "🈂", - "jeans": "👖", - "jersey": "🇯🇪", - "jordan": "🇯🇴", - "joy": "😂", - "joy_cat": "😹", - "joystick": "🕹", - "kaaba": "🕋", - "kangaroo": "🦘", - "kazakhstan": "🇰🇿", - "kenya": "🇰🇪", - "key": "🔑", - "keyboard": "⌨️", - "keycap_ten": "🔟", - "kick_scooter": "🛴", - "kimono": "👘", - "kiribati": "🇰🇮", - "kiss": "💋", - "kissing": "😗", - "kissing_cat": "😽", - "kissing_closed_eyes": "😚", - "kissing_heart": "😘", - "kissing_smiling_eyes": "😙", - "kitchen_knife": "🔪", - "kite": "🪁", - "kiwi": "🥝", - "kiwi_fruit": "🥝", - "knife": "🔪", - "koala": "🐨", - "koko": "🈁", - "kosovo": "🇽🇰", - "kuwait": "🇰🇼", - "kyrgyzstan": "🇰🇬", - "lab_coat": "🥼", - "label": "🏷", - "lacrosse": "🥍", - "laos": "🇱🇦", - "large_blue_diamond": "🔷", - "large_orange_diamond": "🔶", - "last_quarter_moon": "🌗", - "last_quarter_moon_with_face": "🌜", - "last_track_button": "⏮️", - "latin_cross": "✝", - "latvia": "🇱🇻", - "laughing": "😆", - "leafy_green": "🥬", - "leaves": "🍃", - "lebanon": "🇱🇧", - "ledger": "📒", - "left_arrow": "⬅", - "left_arrow_curving_right": "↪", - "left_facing_fist": "🤛", - "left_luggage": "🛅", - "left_right_arrow": "↔", - "leftfacing_fist": "🤛", - "leftright_arrow": "↔️", - "leftwards_arrow_with_hook": "↩️", - "leg": "🦵", - "lemon": "🍋", - "leo": "♌", - "leopard": "🐆", - "lesotho": "🇱🇸", - "level_slider": "🎚", - "liberia": "🇱🇷", - "libra": "♎", - "libya": "🇱🇾", - "liechtenstein": "🇱🇮", - "light_rail": "🚈", - "light_skin_tone": "🏻", - "link": "🔗", - "linked_paperclips": "🖇", - "lion_face": "🦁", - "lips": "👄", - "lipstick": "💄", - "lithuania": "🇱🇹", - "lizard": "🦎", - "llama": "🦙", - "lobster": "🦞", - "lock": "🔒", - "lock_with_ink_pen": "🔏", - "lollipop": "🍭", - "loop": "➿", - "lotion_bottle": "🧴", - "loud_sound": "🔊", - "loudspeaker": "📢", - "love_hotel": "🏩", - "love_letter": "💌", - "love_you_gesture": "🤟", - "loveyou_gesture": "🤟", - "low_brightness": "🔅", - "luggage": "🧳", - "luxembourg": "🇱🇺", - "lying_face": "🤥", - "m": "Ⓜ️", - "macao_sar_china": "🇲🇴", - "madagascar": "🇲🇬", - "mag": "🔍", - "mag_right": "🔎", - "mage": "🧙", - "magnet": "🧲", - "mahjong": "🀄", - "mailbox": "📫", - "mailbox_closed": "📪", - "mailbox_with_mail": "📬", - "mailbox_with_no_mail": "📭", - "malawi": "🇲🇼", - "malaysia": "🇲🇾", - "maldives": "🇲🇻", - "male_sign": "♂", - "mali": "🇲🇱", - "malta": "🇲🇹", - "man": "👨", - "man_dancing": "🕺", - "man_in_suit": "🕴", - "man_in_tuxedo": "🤵", - "man_with_chinese_cap": "👲", - "man_with_gua_pi_mao": "👲", - "man_with_turban": "👳", - "mango": "🥭", - "mans_shoe": "👞", - "mantelpiece_clock": "🕰", - "manual_wheelchair": "🦽", - "maple_leaf": "🍁", - "marshall_islands": "🇲🇭", - "martial_arts_uniform": "🥋", - "martinique": "🇲🇶", - "mask": "😷", - "massage": "💆", - "mate": "🧉", - "mauritania": "🇲🇷", - "mauritius": "🇲🇺", - "mayotte": "🇾🇹", - "meat_on_bone": "🍖", - "mechanical_arm": "🦾", - "mechanical_leg": "🦿", - "medal": "🏅", - "medical_symbol": "⚕", - "medium_skin_tone": "🏽", - "mediumdark_skin_tone": "🏾", - "mediumlight_skin_tone": "🏼", - "mega": "📣", - "melon": "🍈", - "memo": "📝", - "mending_heart": "❤️‍🩹", - "menorah": "🕎", - "mens": "🚹", - "merperson": "🧜", - "metal": "🤘", - "metro": "🚇", - "mexico": "🇲🇽", - "microbe": "🦠", - "micronesia": "🇫🇲", - "microphone": "🎤", - "microscope": "🔬", - "middle_finger": "🖕", - "military_medal": "🎖", - "milk": "🥛", - "milky_way": "🌌", - "minibus": "🚐", - "minidisc": "💽", - "mobile_phone_off": "📴", - "moldova": "🇲🇩", - "monaco": "🇲🇨", - "money_mouth": "🤑", - "money_with_wings": "💸", - "moneybag": "💰", - "moneymouth_face": "🤑", - "mongolia": "🇲🇳", - "monkey": "🐒", - "monkey_face": "🐵", - "monorail": "🚝", - "montenegro": "🇲🇪", - "montserrat": "🇲🇸", - "moon_cake": "🥮", - "morocco": "🇲🇦", - "mortar_board": "🎓", - "mosque": "🕌", - "mosquito": "🦟", - "motor_boat": "🛥", - "motor_scooter": "🛵", - "motorcycle": "🏍", - "motorized_wheelchair": "🦼", - "motorway": "🛣", - "mount_fuji": "🗻", - "mountain": "⛰️", - "mountain_bicyclist": "🚵", - "mountain_cableway": "🚠", - "mountain_railway": "🚞", - "mouse": "🐭", - "mouse2": "🐁", - "movie_camera": "🎥", - "moyai": "🗿", - "mozambique": "🇲🇿", - "mrs_claus": "🤶", - "multiplication_sign": "✖", - "muscle": "💪", - "mushroom": "🍄", - "musical_keyboard": "🎹", - "musical_note": "🎵", - "musical_score": "🎼", - "mute": "🔇", - "myanmar_burma": "🇲🇲", - "nail_care": "💅", - "name_badge": "📛", - "namibia": "🇳🇦", - "national_park": "🏞", - "nauru": "🇳🇷", - "nauseated_face": "🤢", - "nazar_amulet": "🧿", - "necktie": "👔", - "negative_squared_cross_mark": "❎", - "nepal": "🇳🇵", - "nerd": "🤓", - "netherlands": "🇳🇱", - "neutral_face": "😐", - "new": "🆕", - "new_caledonia": "🇳🇨", - "new_moon": "🌑", - "new_moon_with_face": "🌚", - "new_zealand": "🇳🇿", - "newspaper": "📰", - "next_track_button": "⏭️", - "ng": "🆖", - "nicaragua": "🇳🇮", - "niger": "🇳🇪", - "nigeria": "🇳🇬", - "night_with_stars": "🌃", - "nine": "9⃣", - "niue": "🇳🇺", - "no_bell": "🔕", - "no_bicycles": "🚳", - "no_entry": "⛔", - "no_entry_sign": "🚫", - "no_good": "🙅", - "no_mobile_phones": "📵", - "no_mouth": "😶", - "no_pedestrians": "🚷", - "no_smoking": "🚭", - "non-potable_water": "🚱", - "norfolk_island": "🇳🇫", - "north_korea": "🇰🇵", - "north_macedonia": "🇲🇰", - "northern_mariana_islands": "🇲🇵", - "norway": "🇳🇴", - "nose": "👃", - "notebook": "📓", - "notebook_with_decorative_cover": "📔", - "notes": "🎶", - "nut_and_bolt": "🔩", - "o": "⭕", - "o_button_blood_type": "🅾", - "ocean": "🌊", - "octagonal_sign": "🛑", - "octopus": "🐙", - "oden": "🍢", - "office": "🏢", - "oil_drum": "🛢", - "ok": "🆗", - "ok_hand": "👌", - "ok_woman": "🙆", - "old_key": "🗝", - "older_adult": "🧓", - "older_man": "👴", - "older_person": "🧓", - "older_woman": "👵", - "om_symbol": "🕉", - "oman": "🇴🇲", - "on": "🔛", - "oncoming_automobile": "🚘", - "oncoming_bus": "🚍", - "oncoming_fist": "👊", - "oncoming_police_car": "🚔", - "oncoming_taxi": "🚖", - "one": "1⃣", - "onepiece_swimsuit": "🩱", - "onion": "🧅", - "open_file_folder": "📂", - "open_hands": "👐", - "open_mouth": "😮", - "ophiuchus": "⛎", - "orange_book": "📙", - "orange_circle": "🟠", - "orange_heart": "🧡", - "orange_square": "🟧", - "orangutan": "🦧", - "orthodox_cross": "☦️", - "otter": "🦦", - "outbox_tray": "📤", - "owl": "🦉", - "ox": "🐂", - "oyster": "🦪", - "p_button": "🅿", - "package": "📦", - "page_facing_up": "📄", - "page_with_curl": "📃", - "pager": "📟", - "paintbrush": "🖌", - "pakistan": "🇵🇰", - "palau": "🇵🇼", - "palestinian_territories": "🇵🇸", - "palm_tree": "🌴", - "palms_up_together": "🤲", - "panama": "🇵🇦", - "pancakes": "🥞", - "panda_face": "🐼", - "paperclip": "📎", - "papua_new_guinea": "🇵🇬", - "parachute": "🪂", - "paraguay": "🇵🇾", - "parrot": "🦜", - "part_alternation_mark": "〽", - "partly_sunny": "⛅", - "partying_face": "🥳", - "passenger_ship": "🛳", - "passport_control": "🛂", - "pause_button": "⏸️", - "peace": "☮", - "peace_symbol": "☮️", - "peach": "🍑", - "peacock": "🦚", - "peanuts": "🥜", - "pear": "🍐", - "pen": "🖊", - "pencil": "📝", - "pencil2": "✏", - "penguin": "🐧", - "pensive": "😔", - "people_with_bunny_ears_partying": "👯", - "people_wrestling": "🤼", - "performing_arts": "🎭", - "persevere": "😣", - "person": "🧑", - "person_biking": "🚴", - "person_bouncing_ball": "⛹️", - "person_bowing": "🙇", - "person_cartwheeling": "🤸", - "person_climbing": "🧗", - "person_doing_cartwheel": "🤸", - "person_facepalming": "🤦", - "person_fencing": "🤺", - "person_frowning": "🙍", - "person_gesturing_no": "🙅", - "person_gesturing_ok": "🙆", - "person_getting_haircut": "💇", - "person_getting_massage": "💆", - "person_in_lotus_position": "🧘", - "person_in_steamy_room": "🧖", - "person_juggling": "🤹", - "person_kneeling": "🧎", - "person_mountain_biking": "🚵", - "person_playing_handball": "🤾", - "person_playing_water_polo": "🤽", - "person_pouting": "🙎", - "person_raising_hand": "🙋", - "person_rowing_boat": "🚣", - "person_running": "🏃", - "person_shrugging": "🤷", - "person_standing": "🧍", - "person_surfing": "🏄", - "person_swimming": "🏊", - "person_tipping_hand": "💁", - "person_walking": "🚶", - "person_wearing_turban": "👳", - "person_with_blond_hair": "👱", - "person_with_pouting_face": "🙎", - "peru": "🇵🇪", - "petri_dish": "🧫", - "philippines": "🇵🇭", - "pick": "⛏️", - "pie": "🥧", - "pig": "🐷", - "pig2": "🐖", - "pig_nose": "🐽", - "pill": "💊", - "pinching_hand": "🤏", - "pineapple": "🍍", - "ping_pong": "🏓", - "pirate_flag": "🏴‍☠️", - "pisces": "♓", - "pitcairn_islands": "🇵🇳", - "pizza": "🍕", - "place_of_worship": "🛐", - "play_button": "▶", - "play_or_pause_button": "⏯️", - "play_pause": "⏯", - "pleading_face": "🥺", - "point_down": "👇", - "point_left": "👈", - "point_right": "👉", - "point_up": "☝️", - "point_up_2": "👆", - "poland": "🇵🇱", - "police_car": "🚓", - "police_officer": "👮", - "poodle": "🐩", - "poop": "💩", - "popcorn": "🍿", - "portugal": "🇵🇹", - "post_office": "🏣", - "postal_horn": "📯", - "postbox": "📮", - "potable_water": "🚰", - "potato": "🥔", - "pouch": "👝", - "poultry_leg": "🍗", - "pound": "💷", - "pouting_cat": "😾", - "pray": "🙏", - "prayer_beads": "📿", - "pregnant_woman": "🤰", - "pretzel": "🥨", - "prince": "🤴", - "princess": "👸", - "printer": "🖨", - "probing_cane": "🦯", - "puerto_rico": "🇵🇷", - "punch": "👊", - "purple_circle": "🟣", - "purple_heart": "💜", - "purse": "👛", - "pushpin": "📌", - "put_litter_in_its_place": "🚮", - "puzzle_piece": "🧩", - "qatar": "🇶🇦", - "question": "❓", - "rabbit": "🐰", - "rabbit2": "🐇", - "raccoon": "🦝", - "racehorse": "🐎", - "racing_car": "🏎", - "radio": "📻", - "radio_button": "🔘", - "radioactive": "☢️", - "rage": "😡", - "railway_car": "🚃", - "railway_track": "🛤", - "rainbow": "🌈", - "rainbow_flag": "🏳️‍🌈", - "raised_back_of_hand": "🤚", - "raised_hand": "✋", - "raised_hands": "🙌", - "raising_hand": "🙋", - "ram": "🐏", - "ramen": "🍜", - "rat": "🐀", - "razor": "🪒", - "receipt": "🧾", - "record_button": "⏺️", - "recycle": "♻", - "recycling_symbol": "♻️", - "red_car": "🚗", - "red_circle": "🔴", - "red_envelope": "🧧", - "red_hair": "🦰", - "red_heart": "❤", - "red_square": "🟥", - "regional_indicator_a": "🇦", - "regional_indicator_b": "🇧", - "regional_indicator_c": "🇨", - "regional_indicator_d": "🇩", - "regional_indicator_e": "🇪", - "regional_indicator_f": "🇫", - "regional_indicator_g": "🇬", - "regional_indicator_h": "🇭", - "regional_indicator_i": "🇮", - "regional_indicator_j": "🇯", - "regional_indicator_k": "🇰", - "regional_indicator_l": "🇱", - "regional_indicator_m": "🇲", - "regional_indicator_n": "🇳", - "regional_indicator_o": "🇴", - "regional_indicator_p": "🇵", - "regional_indicator_q": "🇶", - "regional_indicator_r": "🇷", - "regional_indicator_s": "🇸", - "regional_indicator_t": "🇹", - "regional_indicator_u": "🇺", - "regional_indicator_v": "🇻", - "regional_indicator_w": "🇼", - "regional_indicator_x": "🇽", - "regional_indicator_y": "🇾", - "regional_indicator_z": "🇿", - "registered": "®", - "relieved": "😌", - "reminder_ribbon": "🎗", - "repeat": "🔁", - "repeat_one": "🔂", - "rescue_worker’s_helmet": "⛑️", - "restroom": "🚻", - "reunion": "🇷🇪", - "reverse_button": "◀", - "revolving_hearts": "💞", - "rewind": "⏪", - "rhino": "🦏", - "rhinoceros": "🦏", - "ribbon": "🎀", - "rice": "🍚", - "rice_ball": "🍙", - "rice_cracker": "🍘", - "rice_scene": "🎑", - "right_arrow": "➡️", - "right_arrow_curving_down": "⤵", - "right_arrow_curving_left": "↩", - "right_arrow_curving_up": "⤴", - "right_facing_fist": "🤜", - "rightfacing_fist": "🤜", - "ring": "💍", - "ringed_planet": "🪐", - "robot": "🤖", - "rocket": "🚀", - "rofl": "🤣", - "roll_of_paper": "🧻", - "rolledup_newspaper": "🗞", - "roller_coaster": "🎢", - "rolling_eyes": "🙄", - "rolling_on_the_floor_laughing": "🤣", - "romania": "🇷🇴", - "rooster": "🐓", - "rose": "🌹", - "rosette": "🏵", - "rotating_light": "🚨", - "round_pushpin": "📍", - "rowboat": "🚣", - "rugby_football": "🏉", - "runner": "🏃", - "running_shirt_with_sash": "🎽", - "russia": "🇷🇺", - "rwanda": "🇷🇼", - "safety_pin": "🧷", - "safety_vest": "🦺", - "sagittarius": "♐", - "sailboat": "⛵", - "sake": "🍶", - "salad": "🥗", - "salt": "🧂", - "samoa": "🇼🇸", - "san_marino": "🇸🇲", - "sandal": "👡", - "sandwich": "🥪", - "santa": "🎅", - "sao_tome_and_principe": "🇸🇹", - "sari": "🥻", - "satellite": "📡", - "saudi_arabia": "🇸🇦", - "sauropod": "🦕", - "saxophone": "🎷", - "scales": "⚖", - "scarf": "🧣", - "school": "🏫", - "school_satchel": "🎒", - "scissors": "✂", - "scooter": "🛴", - "scorpion": "🦂", - "scorpius": "♏", - "scotland": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", - "scream": "😱", - "scream_cat": "🙀", - "scroll": "📜", - "seat": "💺", - "second_place": "🥈", - "secret": "㊙", - "see_no_evil": "🙈", - "seedling": "🌱", - "selfie": "🤳", - "senegal": "🇸🇳", - "serbia": "🇷🇸", - "seven": "7⃣", - "seychelles": "🇸🇨", - "shallow_pan_of_food": "🥘", - "shamrock": "☘️", - "shark": "🦈", - "shaved_ice": "🍧", - "sheep": "🐑", - "shell": "🐚", - "shield": "🛡", - "shinto_shrine": "⛩️", - "ship": "🚢", - "shirt": "👕", - "shopping_bags": "🛍", - "shopping_cart": "🛒", - "shorts": "🩳", - "shower": "🚿", - "shrimp": "🦐", - "shushing_face": "🤫", - "sierra_leone": "🇸🇱", - "sign_of_the_horns": "🤘", - "signal_strength": "📶", - "singapore": "🇸🇬", - "sint_maarten": "🇸🇽", - "six": "6⃣", - "six_pointed_star": "🔯", - "skateboard": "🛹", - "ski": "🎿", - "skier": "⛷️", - "skull": "💀", - "skull_and_crossbones": "☠️", - "skull_crossbones": "☠", - "skunk": "🦨", - "sled": "🛷", - "sleeping": "😴", - "sleeping_accommodation": "🛌", - "sleepy": "😪", - "slight_frown": "🙁", - "slight_smile": "🙂", - "slightly_frowning_face": "🙁", - "slot_machine": "🎰", - "sloth": "🦥", - "slovakia": "🇸🇰", - "slovenia": "🇸🇮", - "small_airplane": "🛩", - "small_blue_diamond": "🔹", - "small_orange_diamond": "🔸", - "small_red_triangle": "🔺", - "small_red_triangle_down": "🔻", - "smile": "😄", - "smile_cat": "😸", - "smiley": "😃", - "smiley_cat": "😺", - "smiling": "☺️", - "smiling_face": "☺", - "smiling_face_with_hearts": "🥰", - "smiling_imp": "😈", - "smirk": "😏", - "smirk_cat": "😼", - "smoking": "🚬", - "snail": "🐌", - "snake": "🐍", - "sneezing_face": "🤧", - "snowboarder": "🏂", - "snowcapped_mountain": "🏔", - "snowflake": "❄", - "snowman": "⛄", - "soap": "🧼", - "sob": "😭", - "soccer": "⚽", - "socks": "🧦", - "softball": "🥎", - "solomon_islands": "🇸🇧", - "somalia": "🇸🇴", - "soon": "🔜", - "sos": "🆘", - "sound": "🔉", - "south_africa": "🇿🇦", - "south_georgia_and_south_sandwich_islands": "🇬🇸", - "south_korea": "🇰🇷", - "south_sudan": "🇸🇸", - "space_invader": "👾", - "spade_suit": "♠️", - "spades": "♠", - "spaghetti": "🍝", - "spain": "🇪🇸", - "sparkle": "❇", - "sparkler": "🎇", - "sparkles": "✨", - "sparkling_heart": "💖", - "speak_no_evil": "🙊", - "speaker": "🔈", - "speaking_head": "🗣", - "speech_balloon": "💬", - "speech_left": "🗨", - "speedboat": "🚤", - "spider": "🕷", - "spider_web": "🕸", - "spiral_calendar": "🗓", - "spiral_notepad": "🗒", - "sponge": "🧽", - "spoon": "🥄", - "squid": "🦑", - "sri_lanka": "🇱🇰", - "st_barthelemy": "🇧🇱", - "st_helena": "🇸🇭", - "st_kitts_and_nevis": "🇰🇳", - "st_lucia": "🇱🇨", - "st_martin": "🇲🇫", - "st_pierre_and_miquelon": "🇵🇲", - "st_vincent_and_grenadines": "🇻🇨", - "stadium": "🏟", - "star": "⭐", - "star2": "🌟", - "star_and_crescent": "☪️", - "star_of_david": "✡", - "star_struck": "🤩", - "stars": "🌠", - "starstruck": "🤩", - "station": "🚉", - "statue_of_liberty": "🗽", - "steam_locomotive": "🚂", - "stethoscope": "🩺", - "stew": "🍲", - "stop_button": "⏹️", - "stopwatch": "⏱️", - "straight_ruler": "📏", - "strawberry": "🍓", - "stuck_out_tongue": "😛", - "stuck_out_tongue_closed_eyes": "😝", - "stuck_out_tongue_winking_eye": "😜", - "studio_microphone": "🎙", - "stuffed_flatbread": "🥙", - "sudan": "🇸🇩", - "sun": "☀", - "sun_behind_large_cloud": "🌥", - "sun_behind_rain_cloud": "🌦", - "sun_behind_small_cloud": "🌤", - "sun_with_face": "🌞", - "sunflower": "🌻", - "sunglasses": "😎", - "sunny": "☀️", - "sunrise": "🌅", - "sunrise_over_mountains": "🌄", - "superhero": "🦸", - "supervillain": "🦹", - "surfer": "🏄", - "suriname": "🇸🇷", - "sushi": "🍣", - "suspension_railway": "🚟", - "svalbard_and_jan_mayen": "🇸🇯", - "swan": "🦢", - "sweat": "😓", - "sweat_drops": "💦", - "sweat_smile": "😅", - "sweden": "🇸🇪", - "sweet_potato": "🍠", - "swimmer": "🏊", - "switzerland": "🇨🇭", - "symbols": "🔣", - "synagogue": "🕍", - "syria": "🇸🇾", - "syringe": "💉", - "t_rex": "🦖", - "taco": "🌮", - "tada": "🎉", - "taiwan": "🇹🇼", - "tajikistan": "🇹🇯", - "takeout_box": "🥡", - "tanabata_tree": "🎋", - "tangerine": "🍊", - "tanzania": "🇹🇿", - "taurus": "♉", - "taxi": "🚕", - "tea": "🍵", - "teddy_bear": "🧸", - "telephone": "☎", - "telephone_receiver": "📞", - "telescope": "🔭", - "tennis": "🎾", - "tent": "⛺", - "test_tube": "🧪", - "thailand": "🇹🇭", - "thermometer": "🌡", - "thermometer_face": "🤒", - "thinking": "🤔", - "third_place": "🥉", - "thought_balloon": "💭", - "thread": "🧵", - "three": "3⃣", - "thumbsdown": "👎", - "thumbsup": "👍", - "ticket": "🎫", - "tiger": "🐯", - "tiger2": "🐅", - "timer_clock": "⏲️", - "timor_leste": "🇹🇱", - "tired_face": "😫", - "tm": "™", - "togo": "🇹🇬", - "toilet": "🚽", - "tokelau": "🇹🇰", - "tokyo_tower": "🗼", - "tomato": "🍅", - "tone1": "🏻", - "tone2": "🏼", - "tone3": "🏽", - "tone4": "🏾", - "tone5": "🏿", - "tonga": "🇹🇴", - "tongue": "👅", - "toolbox": "🧰", - "tooth": "🦷", - "top": "🔝", - "tophat": "🎩", - "tornado": "🌪", - "track_next": "⏭", - "track_previous": "⏮", - "trackball": "🖲", - "tractor": "🚜", - "trade_mark": "™️", - "traffic_light": "🚥", - "train": "🚋", - "train2": "🚆", - "tram": "🚊", - "transgender_flag": "🏳️‍⚧️", - "trex": "🦖", - "triangular_flag_on_post": "🚩", - "triangular_ruler": "📐", - "trident": "🔱", - "trinidad_and_tobago": "🇹🇹", - "tristan_da_cunha": "🇹🇦", - "triumph": "😤", - "trolleybus": "🚎", - "trophy": "🏆", - "tropical_drink": "🍹", - "tropical_fish": "🐠", - "truck": "🚚", - "trumpet": "🎺", - "tulip": "🌷", - "tumbler_glass": "🥃", - "tunisia": "🇹🇳", - "turkey": "🦃", - "turkiye": "🇹🇷", - "turkmenistan": "🇹🇲", - "turks_and_caicos_islands": "🇹🇨", - "turtle": "🐢", - "tuvalu": "🇹🇻", - "tv": "📺", - "twisted_rightwards_arrows": "🔀", - "two": "2⃣", - "two_hearts": "💕", - "two_men_holding_hands": "👬", - "two_women_holding_hands": "👭", - "u5272": "🈹", - "u5408": "🈴", - "u55b6": "🈺", - "u6307": "🈯", - "u6708": "🈷", - "u6709": "🈶", - "u6e80": "🈵", - "u7121": "🈚", - "u7533": "🈸", - "u7981": "🈲", - "u7a7a": "🈳", - "uganda": "🇺🇬", - "ukraine": "🇺🇦", - "umbrella": "☔", - "umbrella_on_ground": "⛱️", - "unamused": "😒", - "underage": "🔞", - "unicorn": "🦄", - "united_arab_emirates": "🇦🇪", - "united_kingdom": "🇬🇧", - "united_nations": "🇺🇳", - "united_states": "🇺🇸", - "unlock": "🔓", - "up": "🆙", - "up_arrow": "⬆", - "updown_arrow": "↕️", - "upleft_arrow": "↖️", - "upright_arrow": "↗", - "upside_down": "🙃", - "uruguay": "🇺🇾", - "us_outlying_islands": "🇺🇲", - "us_virgin_islands": "🇻🇮", - "uzbekistan": "🇺🇿", - "v": "✌️", - "vampire": "🧛", - "vanuatu": "🇻🇺", - "vatican_city": "🇻🇦", - "venezuela": "🇻🇪", - "vertical_traffic_light": "🚦", - "vhs": "📼", - "vibration_mode": "📳", - "victory_hand": "✌", - "video_camera": "📹", - "video_game": "🎮", - "vietnam": "🇻🇳", - "violin": "🎻", - "virgo": "♍", - "volcano": "🌋", - "volleyball": "🏐", - "vs": "🆚", - "vulcan": "🖖", - "vulcan_salute": "🖖", - "waffle": "🧇", - "wales": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", - "walking": "🚶", - "wallis_and_futuna": "🇼🇫", - "waning_crescent_moon": "🌘", - "waning_gibbous_moon": "🌖", - "warning": "⚠", - "wastebasket": "🗑", - "watch": "⌚", - "water_buffalo": "🐃", - "watermelon": "🍉", - "wave": "👋", - "wavy_dash": "〰️", - "waxing_crescent_moon": "🌒", - "waxing_gibbous_moon": "🌔", - "wc": "🚾", - "weary": "😩", - "wedding": "💒", - "weightlifter": "🏋", - "western_sahara": "🇪🇭", - "whale": "🐳", - "whale2": "🐋", - "wheel_of_dharma": "☸️", - "wheelchair": "♿", - "white_check_mark": "✅", - "white_circle": "⚪", - "white_flower": "💮", - "white_hair": "🦳", - "white_heart": "🤍", - "white_large_square": "⬜", - "white_medium_small_square": "◽", - "white_medium_square": "◻️", - "white_small_square": "▫️", - "white_square_button": "🔳", - "wilted_flower": "🥀", - "wilted_rose": "🥀", - "wind_blowing_face": "🌬", - "wind_chime": "🎐", - "wine_glass": "🍷", - "wink": "😉", - "wolf": "🐺", - "woman": "👩", - "woman_with_headscarf": "🧕", - "womans_clothes": "👚", - "womans_hat": "👒", - "womens": "🚺", - "woozy_face": "🥴", - "world_map": "🗺", - "worried": "😟", - "wrench": "🔧", - "writing_hand": "✍️", - "x": "❌", - "yarn": "🧶", - "yawning_face": "🥱", - "yellow_circle": "🟡", - "yellow_heart": "💛", - "yellow_square": "🟨", - "yemen": "🇾🇪", - "yen": "💴", - "yin_yang": "☯️", - "yoyo": "🪀", - "yum": "😋", - "zambia": "🇿🇲", - "zany_face": "🤪", - "zap": "⚡", - "zebra": "🦓", - "zero": "0⃣", - "zimbabwe": "🇿🇼", - "zipper_mouth": "🤐", - "zombie": "🧟", - "zzz": "💤" -} + "grinning": "😀", + "grinning_face": "😀", + "smiley": "😃", + "smile": "😄", + "grin": "😁", + "laughing": "😆", + "satisfied": "😆", + "face_holding_back_tears": "🥹", + "sweat_smile": "😅", + "joy": "😂", + "rofl": "🤣", + "rolling_on_the_floor_laughing": "🤣", + "smiling_face_with_tear": "🥲", + "relaxed": "☺️", + "smiling_face": "☺️", + "blush": "😊", + "innocent": "😇", + "slight_smile": "🙂", + "slightly_smiling_face": "🙂", + "upside_down": "🙃", + "upside_down_face": "🙃", + "wink": "😉", + "winking_face": "😉", + "relieved": "😌", + "relieved_face": "😌", + "heart_eyes": "😍", + "smiling_face_with_3_hearts": "🥰", + "kissing_heart": "😘", + "kissing": "😗", + "kissing_face": "😗", + "kissing_smiling_eyes": "😙", + "kissing_closed_eyes": "😚", + "yum": "😋", + "stuck_out_tongue": "😛", + "stuck_out_tongue_closed_eyes": "😝", + "stuck_out_tongue_winking_eye": "😜", + "zany_face": "🤪", + "face_with_raised_eyebrow": "🤨", + "face_with_monocle": "🧐", + "nerd": "🤓", + "nerd_face": "🤓", + "sunglasses": "😎", + "disguised_face": "🥸", + "star_struck": "🤩", + "partying_face": "🥳", + "smirk": "😏", + "smirking_face": "😏", + "unamused": "😒", + "unamused_face": "😒", + "disappointed": "😞", + "pensive": "😔", + "pensive_face": "😔", + "worried": "😟", + "worried_face": "😟", + "confused": "😕", + "confused_face": "😕", + "slight_frown": "🙁", + "slightly_frowning_face": "🙁", + "frowning2": "☹️", + "white_frowning_face": "☹️", + "frowning_face": "☹️", + "persevere": "😣", + "confounded": "😖", + "tired_face": "😫", + "weary": "😩", + "weary_face": "😩", + "pleading_face": "🥺", + "cry": "😢", + "crying_face": "😢", + "sob": "😭", + "triumph": "😤", + "angry": "😠", + "angry_face": "😠", + "rage": "😡", + "pouting_face": "😡", + "face_with_symbols_over_mouth": "🤬", + "exploding_head": "🤯", + "flushed": "😳", + "flushed_face": "😳", + "hot_face": "🥵", + "cold_face": "🥶", + "face_in_clouds": "😶‍🌫️", + "scream": "😱", + "fearful": "😨", + "fearful_face": "😨", + "cold_sweat": "😰", + "disappointed_relieved": "😥", + "sweat": "😓", + "hugging": "🤗", + "hugging_face": "🤗", + "thinking": "🤔", + "thinking_face": "🤔", + "face_with_peeking_eye": "🫣", + "face_with_hand_over_mouth": "🤭", + "face_with_open_eyes_and_hand_over_mouth": "🫢", + "saluting_face": "🫡", + "shushing_face": "🤫", + "melting_face": "🫠", + "lying_face": "🤥", + "liar": "🤥", + "no_mouth": "😶", + "dotted_line_face": "🫥", + "neutral_face": "😐", + "face_with_diagonal_mouth": "🫤", + "expressionless": "😑", + "shaking_face": "🫨", + "head_shaking_horizontally": "🙂‍↔️", + "head_shaking_vertically": "🙂‍↕️", + "grimacing": "😬", + "rolling_eyes": "🙄", + "face_with_rolling_eyes": "🙄", + "hushed": "😯", + "hushed_face": "😯", + "frowning": "😦", + "anguished": "😧", + "open_mouth": "😮", + "astonished": "😲", + "yawning_face": "🥱", + "sleeping": "😴", + "sleeping_face": "😴", + "drooling_face": "🤤", + "drool": "🤤", + "sleepy": "😪", + "sleepy_face": "😪", + "face_exhaling": "😮‍💨", + "dizzy_face": "😵", + "face_with_spiral_eyes": "😵‍💫", + "zipper_mouth": "🤐", + "zipper_mouth_face": "🤐", + "woozy_face": "🥴", + "nauseated_face": "🤢", + "sick": "🤢", + "face_vomiting": "🤮", + "sneezing_face": "🤧", + "sneeze": "🤧", + "mask": "😷", + "thermometer_face": "🤒", + "face_with_thermometer": "🤒", + "head_bandage": "🤕", + "face_with_head_bandage": "🤕", + "money_mouth": "🤑", + "money_mouth_face": "🤑", + "cowboy": "🤠", + "face_with_cowboy_hat": "🤠", + "smiling_imp": "😈", + "imp": "👿", + "japanese_ogre": "👹", + "ogre": "👹", + "japanese_goblin": "👺", + "goblin": "👺", + "clown": "🤡", + "clown_face": "🤡", + "poop": "💩", + "shit": "💩", + "hankey": "💩", + "poo": "💩", + "pile_of_poo": "💩", + "ghost": "👻", + "skull": "💀", + "skeleton": "💀", + "skull_crossbones": "☠️", + "skull_and_crossbones": "☠️", + "alien": "👽", + "space_invader": "👾", + "alien_monster": "👾", + "robot": "🤖", + "robot_face": "🤖", + "jack_o_lantern": "🎃", + "smiley_cat": "😺", + "grinning_cat": "😺", + "smile_cat": "😸", + "joy_cat": "😹", + "heart_eyes_cat": "😻", + "smirk_cat": "😼", + "kissing_cat": "😽", + "scream_cat": "🙀", + "weary_cat": "🙀", + "crying_cat_face": "😿", + "crying_cat": "😿", + "pouting_cat": "😾", + "handshake": "🤝", + "shaking_hands": "🤝", + "handshake_tone1": "🤝🏻", + "handshake_light_skin_tone": "🤝🏻", + "handshake_tone1_tone2": "🫱🏻‍🫲🏼", + "handshake_light_skin_tone_medium_light_skin_tone": "🫱🏻‍🫲🏼", + "handshake_tone1_tone3": "🫱🏻‍🫲🏽", + "handshake_light_skin_tone_medium_skin_tone": "🫱🏻‍🫲🏽", + "handshake_tone1_tone4": "🫱🏻‍🫲🏾", + "handshake_light_skin_tone_medium_dark_skin_tone": "🫱🏻‍🫲🏾", + "handshake_tone1_tone5": "🫱🏻‍🫲🏿", + "handshake_light_skin_tone_dark_skin_tone": "🫱🏻‍🫲🏿", + "handshake_tone2_tone1": "🫱🏼‍🫲🏻", + "handshake_medium_light_skin_tone_light_skin_tone": "🫱🏼‍🫲🏻", + "handshake_tone2": "🤝🏼", + "handshake_medium_light_skin_tone": "🤝🏼", + "handshake_tone2_tone3": "🫱🏼‍🫲🏽", + "handshake_medium_light_skin_tone_medium_skin_tone": "🫱🏼‍🫲🏽", + "handshake_tone2_tone4": "🫱🏼‍🫲🏾", + "handshake_medium_light_skin_tone_medium_dark_skin_tone": "🫱🏼‍🫲🏾", + "handshake_tone2_tone5": "🫱🏼‍🫲🏿", + "handshake_medium_light_skin_tone_dark_skin_tone": "🫱🏼‍🫲🏿", + "handshake_tone3_tone1": "🫱🏽‍🫲🏻", + "handshake_medium_skin_tone_light_skin_tone": "🫱🏽‍🫲🏻", + "handshake_tone3_tone2": "🫱🏽‍🫲🏼", + "handshake_medium_skin_tone_medium_light_skin_tone": "🫱🏽‍🫲🏼", + "handshake_tone3": "🤝🏽", + "handshake_medium_skin_tone": "🤝🏽", + "handshake_tone3_tone4": "🫱🏽‍🫲🏾", + "handshake_medium_skin_tone_medium_dark_skin_tone": "🫱🏽‍🫲🏾", + "handshake_tone3_tone5": "🫱🏽‍🫲🏿", + "handshake_medium_skin_tone_dark_skin_tone": "🫱🏽‍🫲🏿", + "handshake_tone4_tone1": "🫱🏾‍🫲🏻", + "handshake_medium_dark_skin_tone_light_skin_tone": "🫱🏾‍🫲🏻", + "handshake_tone4_tone2": "🫱🏾‍🫲🏼", + "handshake_medium_dark_skin_tone_medium_light_skin_tone": "🫱🏾‍🫲🏼", + "handshake_tone4_tone3": "🫱🏾‍🫲🏽", + "handshake_medium_dark_skin_tone_medium_skin_tone": "🫱🏾‍🫲🏽", + "handshake_tone4": "🤝🏾", + "handshake_medium_dark_skin_tone": "🤝🏾", + "handshake_tone4_tone5": "🫱🏾‍🫲🏿", + "handshake_medium_dark_skin_tone_dark_skin_tone": "🫱🏾‍🫲🏿", + "handshake_tone5_tone1": "🫱🏿‍🫲🏻", + "handshake_dark_skin_tone_light_skin_tone": "🫱🏿‍🫲🏻", + "handshake_tone5_tone2": "🫱🏿‍🫲🏼", + "handshake_dark_skin_tone_medium_light_skin_tone": "🫱🏿‍🫲🏼", + "handshake_tone5_tone3": "🫱🏿‍🫲🏽", + "handshake_dark_skin_tone_medium_skin_tone": "🫱🏿‍🫲🏽", + "handshake_tone5_tone4": "🫱🏿‍🫲🏾", + "handshake_dark_skin_tone_medium_dark_skin_tone": "🫱🏿‍🫲🏾", + "handshake_tone5": "🤝🏿", + "handshake_dark_skin_tone": "🤝🏿", + "heart_hands": "🫶", + "heart_hands_tone1": "🫶🏻", + "heart_hands_light_skin_tone": "🫶🏻", + "heart_hands_tone2": "🫶🏼", + "heart_hands_medium_light_skin_tone": "🫶🏼", + "heart_hands_tone3": "🫶🏽", + "heart_hands_medium_skin_tone": "🫶🏽", + "heart_hands_tone4": "🫶🏾", + "heart_hands_medium_dark_skin_tone": "🫶🏾", + "heart_hands_tone5": "🫶🏿", + "heart_hands_dark_skin_tone": "🫶🏿", + "palms_up_together": "🤲", + "palms_up_together_tone1": "🤲🏻", + "palms_up_together_light_skin_tone": "🤲🏻", + "palms_up_together_tone2": "🤲🏼", + "palms_up_together_medium_light_skin_tone": "🤲🏼", + "palms_up_together_tone3": "🤲🏽", + "palms_up_together_medium_skin_tone": "🤲🏽", + "palms_up_together_tone4": "🤲🏾", + "palms_up_together_medium_dark_skin_tone": "🤲🏾", + "palms_up_together_tone5": "🤲🏿", + "palms_up_together_dark_skin_tone": "🤲🏿", + "open_hands": "👐", + "open_hands_tone1": "👐🏻", + "open_hands_tone2": "👐🏼", + "open_hands_tone3": "👐🏽", + "open_hands_tone4": "👐🏾", + "open_hands_tone5": "👐🏿", + "raised_hands": "🙌", + "raising_hands": "🙌", + "raised_hands_tone1": "🙌🏻", + "raised_hands_tone2": "🙌🏼", + "raised_hands_tone3": "🙌🏽", + "raised_hands_tone4": "🙌🏾", + "raised_hands_tone5": "🙌🏿", + "clap": "👏", + "clap_tone1": "👏🏻", + "clap_tone2": "👏🏼", + "clap_tone3": "👏🏽", + "clap_tone4": "👏🏾", + "clap_tone5": "👏🏿", + "thumbsup": "👍", + "+1": "👍", + "thumbup": "👍", + "thumbs_up": "👍", + "thumbsup_tone1": "👍🏻", + "+1_tone1": "👍🏻", + "thumbup_tone1": "👍🏻", + "thumbsup_tone2": "👍🏼", + "+1_tone2": "👍🏼", + "thumbup_tone2": "👍🏼", + "thumbsup_tone3": "👍🏽", + "+1_tone3": "👍🏽", + "thumbup_tone3": "👍🏽", + "thumbsup_tone4": "👍🏾", + "+1_tone4": "👍🏾", + "thumbup_tone4": "👍🏾", + "thumbsup_tone5": "👍🏿", + "+1_tone5": "👍🏿", + "thumbup_tone5": "👍🏿", + "thumbsdown": "👎", + "-1": "👎", + "thumbdown": "👎", + "thumbs_down": "👎", + "thumbsdown_tone1": "👎🏻", + "_1_tone1": "👎🏻", + "thumbdown_tone1": "👎🏻", + "thumbsdown_tone2": "👎🏼", + "_1_tone2": "👎🏼", + "thumbdown_tone2": "👎🏼", + "thumbsdown_tone3": "👎🏽", + "_1_tone3": "👎🏽", + "thumbdown_tone3": "👎🏽", + "thumbsdown_tone4": "👎🏾", + "_1_tone4": "👎🏾", + "thumbdown_tone4": "👎🏾", + "thumbsdown_tone5": "👎🏿", + "_1_tone5": "👎🏿", + "thumbdown_tone5": "👎🏿", + "punch": "👊", + "oncoming_fist": "👊", + "punch_tone1": "👊🏻", + "punch_tone2": "👊🏼", + "punch_tone3": "👊🏽", + "punch_tone4": "👊🏾", + "punch_tone5": "👊🏿", + "fist": "✊", + "raised_fist": "✊", + "fist_tone1": "✊🏻", + "fist_tone2": "✊🏼", + "fist_tone3": "✊🏽", + "fist_tone4": "✊🏾", + "fist_tone5": "✊🏿", + "left_facing_fist": "🤛", + "left_fist": "🤛", + "left_facing_fist_tone1": "🤛🏻", + "left_fist_tone1": "🤛🏻", + "left_facing_fist_tone2": "🤛🏼", + "left_fist_tone2": "🤛🏼", + "left_facing_fist_tone3": "🤛🏽", + "left_fist_tone3": "🤛🏽", + "left_facing_fist_tone4": "🤛🏾", + "left_fist_tone4": "🤛🏾", + "left_facing_fist_tone5": "🤛🏿", + "left_fist_tone5": "🤛🏿", + "right_facing_fist": "🤜", + "right_fist": "🤜", + "right_facing_fist_tone1": "🤜🏻", + "right_fist_tone1": "🤜🏻", + "right_facing_fist_tone2": "🤜🏼", + "right_fist_tone2": "🤜🏼", + "right_facing_fist_tone3": "🤜🏽", + "right_fist_tone3": "🤜🏽", + "right_facing_fist_tone4": "🤜🏾", + "right_fist_tone4": "🤜🏾", + "right_facing_fist_tone5": "🤜🏿", + "right_fist_tone5": "🤜🏿", + "leftwards_pushing_hand": "🫷", + "leftwards_pushing_hand_tone1": "🫷🏻", + "leftwards_pushing_hand_light_skin_tone": "🫷🏻", + "leftwards_pushing_hand_tone2": "🫷🏼", + "leftwards_pushing_hand_medium_light_skin_tone": "🫷🏼", + "leftwards_pushing_hand_tone3": "🫷🏽", + "leftwards_pushing_hand_medium_skin_tone": "🫷🏽", + "leftwards_pushing_hand_tone4": "🫷🏾", + "leftwards_pushing_hand_medium_dark_skin_tone": "🫷🏾", + "leftwards_pushing_hand_tone5": "🫷🏿", + "leftwards_pushing_hand_dark_skin_tone": "🫷🏿", + "rightwards_pushing_hand": "🫸", + "rightwards_pushing_hand_tone1": "🫸🏻", + "rightwards_pushing_hand_light_skin_tone": "🫸🏻", + "rightwards_pushing_hand_tone2": "🫸🏼", + "rightwards_pushing_hand_medium_light_skin_tone": "🫸🏼", + "rightwards_pushing_hand_tone3": "🫸🏽", + "rightwards_pushing_hand_medium_skin_tone": "🫸🏽", + "rightwards_pushing_hand_tone4": "🫸🏾", + "rightwards_pushing_hand_medium_dark_skin_tone": "🫸🏾", + "rightwards_pushing_hand_tone5": "🫸🏿", + "rightwards_pushing_hand_dark_skin_tone": "🫸🏿", + "fingers_crossed": "🤞", + "hand_with_index_and_middle_finger_crossed": "🤞", + "fingers_crossed_tone1": "🤞🏻", + "hand_with_index_and_middle_fingers_crossed_tone1": "🤞🏻", + "fingers_crossed_tone2": "🤞🏼", + "hand_with_index_and_middle_fingers_crossed_tone2": "🤞🏼", + "fingers_crossed_tone3": "🤞🏽", + "hand_with_index_and_middle_fingers_crossed_tone3": "🤞🏽", + "fingers_crossed_tone4": "🤞🏾", + "hand_with_index_and_middle_fingers_crossed_tone4": "🤞🏾", + "fingers_crossed_tone5": "🤞🏿", + "hand_with_index_and_middle_fingers_crossed_tone5": "🤞🏿", + "v": "✌️", + "victory_hand": "✌️", + "v_tone1": "✌🏻", + "v_tone2": "✌🏼", + "v_tone3": "✌🏽", + "v_tone4": "✌🏾", + "v_tone5": "✌🏿", + "hand_with_index_finger_and_thumb_crossed": "🫰", + "hand_with_index_finger_and_thumb_crossed_tone1": "🫰🏻", + "hand_with_index_finger_and_thumb_crossed_light_skin_tone": "🫰🏻", + "hand_with_index_finger_and_thumb_crossed_tone2": "🫰🏼", + "hand_with_index_finger_and_thumb_crossed_medium_light_skin_tone": "🫰🏼", + "hand_with_index_finger_and_thumb_crossed_tone3": "🫰🏽", + "hand_with_index_finger_and_thumb_crossed_medium_skin_tone": "🫰🏽", + "hand_with_index_finger_and_thumb_crossed_tone4": "🫰🏾", + "hand_with_index_finger_and_thumb_crossed_medium_dark_skin_tone": "🫰🏾", + "hand_with_index_finger_and_thumb_crossed_tone5": "🫰🏿", + "hand_with_index_finger_and_thumb_crossed_dark_skin_tone": "🫰🏿", + "love_you_gesture": "🤟", + "love_you_gesture_tone1": "🤟🏻", + "love_you_gesture_light_skin_tone": "🤟🏻", + "love_you_gesture_tone2": "🤟🏼", + "love_you_gesture_medium_light_skin_tone": "🤟🏼", + "love_you_gesture_tone3": "🤟🏽", + "love_you_gesture_medium_skin_tone": "🤟🏽", + "love_you_gesture_tone4": "🤟🏾", + "love_you_gesture_medium_dark_skin_tone": "🤟🏾", + "love_you_gesture_tone5": "🤟🏿", + "love_you_gesture_dark_skin_tone": "🤟🏿", + "metal": "🤘", + "sign_of_the_horns": "🤘", + "metal_tone1": "🤘🏻", + "sign_of_the_horns_tone1": "🤘🏻", + "metal_tone2": "🤘🏼", + "sign_of_the_horns_tone2": "🤘🏼", + "metal_tone3": "🤘🏽", + "sign_of_the_horns_tone3": "🤘🏽", + "metal_tone4": "🤘🏾", + "sign_of_the_horns_tone4": "🤘🏾", + "metal_tone5": "🤘🏿", + "sign_of_the_horns_tone5": "🤘🏿", + "ok_hand": "👌", + "ok_hand_tone1": "👌🏻", + "ok_hand_tone2": "👌🏼", + "ok_hand_tone3": "👌🏽", + "ok_hand_tone4": "👌🏾", + "ok_hand_tone5": "👌🏿", + "pinched_fingers": "🤌", + "pinched_fingers_tone2": "🤌🏼", + "pinched_fingers_medium_light_skin_tone": "🤌🏼", + "pinched_fingers_tone1": "🤌🏻", + "pinched_fingers_light_skin_tone": "🤌🏻", + "pinched_fingers_tone3": "🤌🏽", + "pinched_fingers_medium_skin_tone": "🤌🏽", + "pinched_fingers_tone4": "🤌🏾", + "pinched_fingers_medium_dark_skin_tone": "🤌🏾", + "pinched_fingers_tone5": "🤌🏿", + "pinched_fingers_dark_skin_tone": "🤌🏿", + "pinching_hand": "🤏", + "pinching_hand_tone1": "🤏🏻", + "pinching_hand_light_skin_tone": "🤏🏻", + "pinching_hand_tone2": "🤏🏼", + "pinching_hand_medium_light_skin_tone": "🤏🏼", + "pinching_hand_tone3": "🤏🏽", + "pinching_hand_medium_skin_tone": "🤏🏽", + "pinching_hand_tone4": "🤏🏾", + "pinching_hand_medium_dark_skin_tone": "🤏🏾", + "pinching_hand_tone5": "🤏🏿", + "pinching_hand_dark_skin_tone": "🤏🏿", + "palm_down_hand": "🫳", + "palm_down_hand_tone1": "🫳🏻", + "palm_down_hand_light_skin_tone": "🫳🏻", + "palm_down_hand_tone2": "🫳🏼", + "palm_down_hand_medium_light_skin_tone": "🫳🏼", + "palm_down_hand_tone3": "🫳🏽", + "palm_down_hand_medium_skin_tone": "🫳🏽", + "palm_down_hand_tone4": "🫳🏾", + "palm_down_hand_medium_dark_skin_tone": "🫳🏾", + "palm_down_hand_tone5": "🫳🏿", + "palm_down_hand_dark_skin_tone": "🫳🏿", + "palm_up_hand": "🫴", + "palm_up_hand_tone1": "🫴🏻", + "palm_up_hand_light_skin_tone": "🫴🏻", + "palm_up_hand_tone2": "🫴🏼", + "palm_up_hand_medium_light_skin_tone": "🫴🏼", + "palm_up_hand_tone3": "🫴🏽", + "palm_up_hand_medium_skin_tone": "🫴🏽", + "palm_up_hand_tone4": "🫴🏾", + "palm_up_hand_medium_dark_skin_tone": "🫴🏾", + "palm_up_hand_tone5": "🫴🏿", + "palm_up_hand_dark_skin_tone": "🫴🏿", + "point_left": "👈", + "point_left_tone1": "👈🏻", + "point_left_tone2": "👈🏼", + "point_left_tone3": "👈🏽", + "point_left_tone4": "👈🏾", + "point_left_tone5": "👈🏿", + "point_right": "👉", + "point_right_tone1": "👉🏻", + "point_right_tone2": "👉🏼", + "point_right_tone3": "👉🏽", + "point_right_tone4": "👉🏾", + "point_right_tone5": "👉🏿", + "point_up_2": "👆", + "point_up_2_tone1": "👆🏻", + "point_up_2_tone2": "👆🏼", + "point_up_2_tone3": "👆🏽", + "point_up_2_tone4": "👆🏾", + "point_up_2_tone5": "👆🏿", + "point_down": "👇", + "point_down_tone1": "👇🏻", + "point_down_tone2": "👇🏼", + "point_down_tone3": "👇🏽", + "point_down_tone4": "👇🏾", + "point_down_tone5": "👇🏿", + "point_up": "☝️", + "point_up_tone1": "☝🏻", + "point_up_tone2": "☝🏼", + "point_up_tone3": "☝🏽", + "point_up_tone4": "☝🏾", + "point_up_tone5": "☝🏿", + "raised_hand": "✋", + "raised_hand_tone1": "✋🏻", + "raised_hand_tone2": "✋🏼", + "raised_hand_tone3": "✋🏽", + "raised_hand_tone4": "✋🏾", + "raised_hand_tone5": "✋🏿", + "raised_back_of_hand": "🤚", + "back_of_hand": "🤚", + "raised_back_of_hand_tone1": "🤚🏻", + "back_of_hand_tone1": "🤚🏻", + "raised_back_of_hand_tone2": "🤚🏼", + "back_of_hand_tone2": "🤚🏼", + "raised_back_of_hand_tone3": "🤚🏽", + "back_of_hand_tone3": "🤚🏽", + "raised_back_of_hand_tone4": "🤚🏾", + "back_of_hand_tone4": "🤚🏾", + "raised_back_of_hand_tone5": "🤚🏿", + "back_of_hand_tone5": "🤚🏿", + "hand_splayed": "🖐️", + "raised_hand_with_fingers_splayed": "🖐️", + "hand_splayed_tone1": "🖐🏻", + "raised_hand_with_fingers_splayed_tone1": "🖐🏻", + "hand_splayed_tone2": "🖐🏼", + "raised_hand_with_fingers_splayed_tone2": "🖐🏼", + "hand_splayed_tone3": "🖐🏽", + "raised_hand_with_fingers_splayed_tone3": "🖐🏽", + "hand_splayed_tone4": "🖐🏾", + "raised_hand_with_fingers_splayed_tone4": "🖐🏾", + "hand_splayed_tone5": "🖐🏿", + "raised_hand_with_fingers_splayed_tone5": "🖐🏿", + "vulcan": "🖖", + "raised_hand_with_part_between_middle_and_ring_fingers": "🖖", + "vulcan_salute": "🖖", + "vulcan_tone1": "🖖🏻", + "raised_hand_with_part_between_middle_and_ring_fingers_tone1": "🖖🏻", + "vulcan_tone2": "🖖🏼", + "raised_hand_with_part_between_middle_and_ring_fingers_tone2": "🖖🏼", + "vulcan_tone3": "🖖🏽", + "raised_hand_with_part_between_middle_and_ring_fingers_tone3": "🖖🏽", + "vulcan_tone4": "🖖🏾", + "raised_hand_with_part_between_middle_and_ring_fingers_tone4": "🖖🏾", + "vulcan_tone5": "🖖🏿", + "raised_hand_with_part_between_middle_and_ring_fingers_tone5": "🖖🏿", + "wave": "👋", + "waving_hand": "👋", + "wave_tone1": "👋🏻", + "wave_tone2": "👋🏼", + "wave_tone3": "👋🏽", + "wave_tone4": "👋🏾", + "wave_tone5": "👋🏿", + "call_me": "🤙", + "call_me_hand": "🤙", + "call_me_tone1": "🤙🏻", + "call_me_hand_tone1": "🤙🏻", + "call_me_tone2": "🤙🏼", + "call_me_hand_tone2": "🤙🏼", + "call_me_tone3": "🤙🏽", + "call_me_hand_tone3": "🤙🏽", + "call_me_tone4": "🤙🏾", + "call_me_hand_tone4": "🤙🏾", + "call_me_tone5": "🤙🏿", + "call_me_hand_tone5": "🤙🏿", + "leftwards_hand": "🫲", + "leftwards_hand_tone1": "🫲🏻", + "leftwards_hand_light_skin_tone": "🫲🏻", + "leftwards_hand_tone2": "🫲🏼", + "leftwards_hand_medium_light_skin_tone": "🫲🏼", + "leftwards_hand_tone3": "🫲🏽", + "leftwards_hand_medium_skin_tone": "🫲🏽", + "leftwards_hand_tone4": "🫲🏾", + "leftwards_hand_medium_dark_skin_tone": "🫲🏾", + "leftwards_hand_tone5": "🫲🏿", + "leftwards_hand_dark_skin_tone": "🫲🏿", + "rightwards_hand": "🫱", + "rightwards_hand_tone1": "🫱🏻", + "rightwards_hand_light_skin_tone": "🫱🏻", + "rightwards_hand_tone2": "🫱🏼", + "rightwards_hand_medium_light_skin_tone": "🫱🏼", + "rightwards_hand_tone3": "🫱🏽", + "rightwards_hand_medium_skin_tone": "🫱🏽", + "rightwards_hand_tone4": "🫱🏾", + "rightwards_hand_medium_dark_skin_tone": "🫱🏾", + "rightwards_hand_tone5": "🫱🏿", + "rightwards_hand_dark_skin_tone": "🫱🏿", + "muscle": "💪", + "flexed_biceps": "💪", + "muscle_tone1": "💪🏻", + "muscle_tone2": "💪🏼", + "muscle_tone3": "💪🏽", + "muscle_tone4": "💪🏾", + "muscle_tone5": "💪🏿", + "mechanical_arm": "🦾", + "middle_finger": "🖕", + "reversed_hand_with_middle_finger_extended": "🖕", + "middle_finger_tone1": "🖕🏻", + "reversed_hand_with_middle_finger_extended_tone1": "🖕🏻", + "middle_finger_tone2": "🖕🏼", + "reversed_hand_with_middle_finger_extended_tone2": "🖕🏼", + "middle_finger_tone3": "🖕🏽", + "reversed_hand_with_middle_finger_extended_tone3": "🖕🏽", + "middle_finger_tone4": "🖕🏾", + "reversed_hand_with_middle_finger_extended_tone4": "🖕🏾", + "middle_finger_tone5": "🖕🏿", + "reversed_hand_with_middle_finger_extended_tone5": "🖕🏿", + "writing_hand": "✍️", + "writing_hand_tone1": "✍🏻", + "writing_hand_tone2": "✍🏼", + "writing_hand_tone3": "✍🏽", + "writing_hand_tone4": "✍🏾", + "writing_hand_tone5": "✍🏿", + "pray": "🙏", + "folded_hands": "🙏", + "pray_tone1": "🙏🏻", + "pray_tone2": "🙏🏼", + "pray_tone3": "🙏🏽", + "pray_tone4": "🙏🏾", + "pray_tone5": "🙏🏿", + "index_pointing_at_the_viewer": "🫵", + "index_pointing_at_the_viewer_tone1": "🫵🏻", + "index_pointing_at_the_viewer_light_skin_tone": "🫵🏻", + "index_pointing_at_the_viewer_tone2": "🫵🏼", + "index_pointing_at_the_viewer_medium_light_skin_tone": "🫵🏼", + "index_pointing_at_the_viewer_tone3": "🫵🏽", + "index_pointing_at_the_viewer_medium_skin_tone": "🫵🏽", + "index_pointing_at_the_viewer_tone4": "🫵🏾", + "index_pointing_at_the_viewer_medium_dark_skin_tone": "🫵🏾", + "index_pointing_at_the_viewer_tone5": "🫵🏿", + "index_pointing_at_the_viewer_dark_skin_tone": "🫵🏿", + "foot": "🦶", + "foot_tone1": "🦶🏻", + "foot_light_skin_tone": "🦶🏻", + "foot_tone2": "🦶🏼", + "foot_medium_light_skin_tone": "🦶🏼", + "foot_tone3": "🦶🏽", + "foot_medium_skin_tone": "🦶🏽", + "foot_tone4": "🦶🏾", + "foot_medium_dark_skin_tone": "🦶🏾", + "foot_tone5": "🦶🏿", + "foot_dark_skin_tone": "🦶🏿", + "leg": "🦵", + "leg_tone1": "🦵🏻", + "leg_light_skin_tone": "🦵🏻", + "leg_tone2": "🦵🏼", + "leg_medium_light_skin_tone": "🦵🏼", + "leg_tone3": "🦵🏽", + "leg_medium_skin_tone": "🦵🏽", + "leg_tone4": "🦵🏾", + "leg_medium_dark_skin_tone": "🦵🏾", + "leg_tone5": "🦵🏿", + "leg_dark_skin_tone": "🦵🏿", + "mechanical_leg": "🦿", + "lipstick": "💄", + "kiss": "💋", + "kiss_mark": "💋", + "lips": "👄", + "mouth": "👄", + "biting_lip": "🫦", + "tooth": "🦷", + "tongue": "👅", + "ear": "👂", + "ear_tone1": "👂🏻", + "ear_tone2": "👂🏼", + "ear_tone3": "👂🏽", + "ear_tone4": "👂🏾", + "ear_tone5": "👂🏿", + "ear_with_hearing_aid": "🦻", + "ear_with_hearing_aid_tone1": "🦻🏻", + "ear_with_hearing_aid_light_skin_tone": "🦻🏻", + "ear_with_hearing_aid_tone2": "🦻🏼", + "ear_with_hearing_aid_medium_light_skin_tone": "🦻🏼", + "ear_with_hearing_aid_tone3": "🦻🏽", + "ear_with_hearing_aid_medium_skin_tone": "🦻🏽", + "ear_with_hearing_aid_tone4": "🦻🏾", + "ear_with_hearing_aid_medium_dark_skin_tone": "🦻🏾", + "ear_with_hearing_aid_tone5": "🦻🏿", + "ear_with_hearing_aid_dark_skin_tone": "🦻🏿", + "nose": "👃", + "nose_tone1": "👃🏻", + "nose_tone2": "👃🏼", + "nose_tone3": "👃🏽", + "nose_tone4": "👃🏾", + "nose_tone5": "👃🏿", + "footprints": "👣", + "eye": "👁️", + "eyes": "👀", + "anatomical_heart": "🫀", + "lungs": "🫁", + "brain": "🧠", + "speaking_head": "🗣️", + "speaking_head_in_silhouette": "🗣️", + "bust_in_silhouette": "👤", + "busts_in_silhouette": "👥", + "people_hugging": "🫂", + "baby": "👶", + "baby_tone1": "👶🏻", + "baby_tone2": "👶🏼", + "baby_tone3": "👶🏽", + "baby_tone4": "👶🏾", + "baby_tone5": "👶🏿", + "child": "🧒", + "child_tone1": "🧒🏻", + "child_light_skin_tone": "🧒🏻", + "child_tone2": "🧒🏼", + "child_medium_light_skin_tone": "🧒🏼", + "child_tone3": "🧒🏽", + "child_medium_skin_tone": "🧒🏽", + "child_tone4": "🧒🏾", + "child_medium_dark_skin_tone": "🧒🏾", + "child_tone5": "🧒🏿", + "child_dark_skin_tone": "🧒🏿", + "girl": "👧", + "girl_tone1": "👧🏻", + "girl_tone2": "👧🏼", + "girl_tone3": "👧🏽", + "girl_tone4": "👧🏾", + "girl_tone5": "👧🏿", + "boy": "👦", + "boy_tone1": "👦🏻", + "boy_tone2": "👦🏼", + "boy_tone3": "👦🏽", + "boy_tone4": "👦🏾", + "boy_tone5": "👦🏿", + "adult": "🧑", + "person": "🧑", + "adult_tone1": "🧑🏻", + "adult_light_skin_tone": "🧑🏻", + "adult_tone2": "🧑🏼", + "adult_medium_light_skin_tone": "🧑🏼", + "adult_tone3": "🧑🏽", + "adult_medium_skin_tone": "🧑🏽", + "adult_tone4": "🧑🏾", + "adult_medium_dark_skin_tone": "🧑🏾", + "adult_tone5": "🧑🏿", + "adult_dark_skin_tone": "🧑🏿", + "woman": "👩", + "woman_tone1": "👩🏻", + "woman_tone2": "👩🏼", + "woman_tone3": "👩🏽", + "woman_tone4": "👩🏾", + "woman_tone5": "👩🏿", + "man": "👨", + "man_tone1": "👨🏻", + "man_tone2": "👨🏼", + "man_tone3": "👨🏽", + "man_tone4": "👨🏾", + "man_tone5": "👨🏿", + "person_curly_hair": "🧑‍🦱", + "person_tone1_curly_hair": "🧑🏻‍🦱", + "person_light_skin_tone_curly_hair": "🧑🏻‍🦱", + "person_tone2_curly_hair": "🧑🏼‍🦱", + "person_medium_light_skin_tone_curly_hair": "🧑🏼‍🦱", + "person_tone3_curly_hair": "🧑🏽‍🦱", + "person_medium_skin_tone_curly_hair": "🧑🏽‍🦱", + "person_tone4_curly_hair": "🧑🏾‍🦱", + "person_medium_dark_skin_tone_curly_hair": "🧑🏾‍🦱", + "person_tone5_curly_hair": "🧑🏿‍🦱", + "person_dark_skin_tone_curly_hair": "🧑🏿‍🦱", + "woman_curly_haired": "👩‍🦱", + "woman_curly_haired_tone1": "👩🏻‍🦱", + "woman_curly_haired_light_skin_tone": "👩🏻‍🦱", + "woman_curly_haired_tone2": "👩🏼‍🦱", + "woman_curly_haired_medium_light_skin_tone": "👩🏼‍🦱", + "woman_curly_haired_tone3": "👩🏽‍🦱", + "woman_curly_haired_medium_skin_tone": "👩🏽‍🦱", + "woman_curly_haired_tone4": "👩🏾‍🦱", + "woman_curly_haired_medium_dark_skin_tone": "👩🏾‍🦱", + "woman_curly_haired_tone5": "👩🏿‍🦱", + "woman_curly_haired_dark_skin_tone": "👩🏿‍🦱", + "man_curly_haired": "👨‍🦱", + "man_curly_haired_tone1": "👨🏻‍🦱", + "man_curly_haired_light_skin_tone": "👨🏻‍🦱", + "man_curly_haired_tone2": "👨🏼‍🦱", + "man_curly_haired_medium_light_skin_tone": "👨🏼‍🦱", + "man_curly_haired_tone3": "👨🏽‍🦱", + "man_curly_haired_medium_skin_tone": "👨🏽‍🦱", + "man_curly_haired_tone4": "👨🏾‍🦱", + "man_curly_haired_medium_dark_skin_tone": "👨🏾‍🦱", + "man_curly_haired_tone5": "👨🏿‍🦱", + "man_curly_haired_dark_skin_tone": "👨🏿‍🦱", + "person_red_hair": "🧑‍🦰", + "person_tone1_red_hair": "🧑🏻‍🦰", + "person_light_skin_tone_red_hair": "🧑🏻‍🦰", + "person_tone2_red_hair": "🧑🏼‍🦰", + "person_medium_light_skin_tone_red_hair": "🧑🏼‍🦰", + "person_tone3_red_hair": "🧑🏽‍🦰", + "person_medium_skin_tone_red_hair": "🧑🏽‍🦰", + "person_tone4_red_hair": "🧑🏾‍🦰", + "person_medium_dark_skin_tone_red_hair": "🧑🏾‍🦰", + "person_tone5_red_hair": "🧑🏿‍🦰", + "person_dark_skin_tone_red_hair": "🧑🏿‍🦰", + "woman_red_haired": "👩‍🦰", + "woman_red_haired_tone1": "👩🏻‍🦰", + "woman_red_haired_light_skin_tone": "👩🏻‍🦰", + "woman_red_haired_tone2": "👩🏼‍🦰", + "woman_red_haired_medium_light_skin_tone": "👩🏼‍🦰", + "woman_red_haired_tone3": "👩🏽‍🦰", + "woman_red_haired_medium_skin_tone": "👩🏽‍🦰", + "woman_red_haired_tone4": "👩🏾‍🦰", + "woman_red_haired_medium_dark_skin_tone": "👩🏾‍🦰", + "woman_red_haired_tone5": "👩🏿‍🦰", + "woman_red_haired_dark_skin_tone": "👩🏿‍🦰", + "man_red_haired": "👨‍🦰", + "man_red_hair": "👨‍🦰", + "man_red_haired_tone1": "👨🏻‍🦰", + "man_red_haired_light_skin_tone": "👨🏻‍🦰", + "man_red_haired_tone2": "👨🏼‍🦰", + "man_red_haired_medium_light_skin_tone": "👨🏼‍🦰", + "man_red_haired_tone3": "👨🏽‍🦰", + "man_red_haired_medium_skin_tone": "👨🏽‍🦰", + "man_red_haired_tone4": "👨🏾‍🦰", + "man_red_haired_medium_dark_skin_tone": "👨🏾‍🦰", + "man_red_haired_tone5": "👨🏿‍🦰", + "man_red_haired_dark_skin_tone": "👨🏿‍🦰", + "blond_haired_person": "👱", + "person_with_blond_hair": "👱", + "blond_haired_person_tone1": "👱🏻", + "person_with_blond_hair_tone1": "👱🏻", + "blond_haired_person_tone2": "👱🏼", + "person_with_blond_hair_tone2": "👱🏼", + "blond_haired_person_tone3": "👱🏽", + "person_with_blond_hair_tone3": "👱🏽", + "blond_haired_person_tone4": "👱🏾", + "person_with_blond_hair_tone4": "👱🏾", + "blond_haired_person_tone5": "👱🏿", + "person_with_blond_hair_tone5": "👱🏿", + "blond_haired_woman": "👱‍♀️", + "blond_haired_woman_tone1": "👱🏻‍♀️", + "blond_haired_woman_light_skin_tone": "👱🏻‍♀️", + "blond_haired_woman_tone2": "👱🏼‍♀️", + "blond_haired_woman_medium_light_skin_tone": "👱🏼‍♀️", + "blond_haired_woman_tone3": "👱🏽‍♀️", + "blond_haired_woman_medium_skin_tone": "👱🏽‍♀️", + "blond_haired_woman_tone4": "👱🏾‍♀️", + "blond_haired_woman_medium_dark_skin_tone": "👱🏾‍♀️", + "blond_haired_woman_tone5": "👱🏿‍♀️", + "blond_haired_woman_dark_skin_tone": "👱🏿‍♀️", + "blond_haired_man": "👱‍♂️", + "blond_haired_man_tone1": "👱🏻‍♂️", + "blond_haired_man_light_skin_tone": "👱🏻‍♂️", + "blond_haired_man_tone2": "👱🏼‍♂️", + "blond_haired_man_medium_light_skin_tone": "👱🏼‍♂️", + "blond_haired_man_tone3": "👱🏽‍♂️", + "blond_haired_man_medium_skin_tone": "👱🏽‍♂️", + "blond_haired_man_tone4": "👱🏾‍♂️", + "blond_haired_man_medium_dark_skin_tone": "👱🏾‍♂️", + "blond_haired_man_tone5": "👱🏿‍♂️", + "blond_haired_man_dark_skin_tone": "👱🏿‍♂️", + "person_white_hair": "🧑‍🦳", + "person_tone1_white_hair": "🧑🏻‍🦳", + "person_light_skin_tone_white_hair": "🧑🏻‍🦳", + "person_tone2_white_hair": "🧑🏼‍🦳", + "person_medium_light_skin_tone_white_hair": "🧑🏼‍🦳", + "person_tone3_white_hair": "🧑🏽‍🦳", + "person_medium_skin_tone_white_hair": "🧑🏽‍🦳", + "person_tone4_white_hair": "🧑🏾‍🦳", + "person_medium_dark_skin_tone_white_hair": "🧑🏾‍🦳", + "person_tone5_white_hair": "🧑🏿‍🦳", + "person_dark_skin_tone_white_hair": "🧑🏿‍🦳", + "woman_white_haired": "👩‍🦳", + "woman_white_haired_tone1": "👩🏻‍🦳", + "woman_white_haired_light_skin_tone": "👩🏻‍🦳", + "woman_white_haired_tone2": "👩🏼‍🦳", + "woman_white_haired_medium_light_skin_tone": "👩🏼‍🦳", + "woman_white_haired_tone3": "👩🏽‍🦳", + "woman_white_haired_medium_skin_tone": "👩🏽‍🦳", + "woman_white_haired_tone4": "👩🏾‍🦳", + "woman_white_haired_medium_dark_skin_tone": "👩🏾‍🦳", + "woman_white_haired_tone5": "👩🏿‍🦳", + "woman_white_haired_dark_skin_tone": "👩🏿‍🦳", + "man_white_haired": "👨‍🦳", + "man_white_haired_tone1": "👨🏻‍🦳", + "man_white_haired_light_skin_tone": "👨🏻‍🦳", + "man_white_haired_tone2": "👨🏼‍🦳", + "man_white_haired_medium_light_skin_tone": "👨🏼‍🦳", + "man_white_haired_tone3": "👨🏽‍🦳", + "man_white_haired_medium_skin_tone": "👨🏽‍🦳", + "man_white_haired_tone4": "👨🏾‍🦳", + "man_white_haired_medium_dark_skin_tone": "👨🏾‍🦳", + "man_white_haired_tone5": "👨🏿‍🦳", + "man_white_haired_dark_skin_tone": "👨🏿‍🦳", + "person_bald": "🧑‍🦲", + "person_tone1_bald": "🧑🏻‍🦲", + "person_light_skin_tone_bald": "🧑🏻‍🦲", + "person_tone2_bald": "🧑🏼‍🦲", + "person_medium_light_skin_tone_bald": "🧑🏼‍🦲", + "person_tone3_bald": "🧑🏽‍🦲", + "person_medium_skin_tone_bald": "🧑🏽‍🦲", + "person_tone4_bald": "🧑🏾‍🦲", + "person_medium_dark_skin_tone_bald": "🧑🏾‍🦲", + "person_tone5_bald": "🧑🏿‍🦲", + "person_dark_skin_tone_bald": "🧑🏿‍🦲", + "woman_bald": "👩‍🦲", + "woman_bald_tone1": "👩🏻‍🦲", + "woman_bald_light_skin_tone": "👩🏻‍🦲", + "woman_bald_tone2": "👩🏼‍🦲", + "woman_bald_medium_light_skin_tone": "👩🏼‍🦲", + "woman_bald_tone3": "👩🏽‍🦲", + "woman_bald_medium_skin_tone": "👩🏽‍🦲", + "woman_bald_tone4": "👩🏾‍🦲", + "woman_bald_medium_dark_skin_tone": "👩🏾‍🦲", + "woman_bald_tone5": "👩🏿‍🦲", + "woman_bald_dark_skin_tone": "👩🏿‍🦲", + "man_bald": "👨‍🦲", + "man_bald_tone1": "👨🏻‍🦲", + "man_bald_light_skin_tone": "👨🏻‍🦲", + "man_bald_tone2": "👨🏼‍🦲", + "man_bald_medium_light_skin_tone": "👨🏼‍🦲", + "man_bald_tone3": "👨🏽‍🦲", + "man_bald_medium_skin_tone": "👨🏽‍🦲", + "man_bald_tone4": "👨🏾‍🦲", + "man_bald_medium_dark_skin_tone": "👨🏾‍🦲", + "man_bald_tone5": "👨🏿‍🦲", + "man_bald_dark_skin_tone": "👨🏿‍🦲", + "bearded_person": "🧔", + "person_beard": "🧔", + "bearded_person_tone1": "🧔🏻", + "bearded_person_light_skin_tone": "🧔🏻", + "bearded_person_tone2": "🧔🏼", + "bearded_person_medium_light_skin_tone": "🧔🏼", + "bearded_person_tone3": "🧔🏽", + "bearded_person_medium_skin_tone": "🧔🏽", + "bearded_person_tone4": "🧔🏾", + "bearded_person_medium_dark_skin_tone": "🧔🏾", + "bearded_person_tone5": "🧔🏿", + "bearded_person_dark_skin_tone": "🧔🏿", + "woman_beard": "🧔‍♀️", + "woman_tone1_beard": "🧔🏻‍♀️", + "woman_light_skin_tone_beard": "🧔🏻‍♀️", + "woman_tone2_beard": "🧔🏼‍♀️", + "woman_medium_light_skin_tone_beard": "🧔🏼‍♀️", + "woman_tone3_beard": "🧔🏽‍♀️", + "woman_medium_skin_tone_beard": "🧔🏽‍♀️", + "woman_tone4_beard": "🧔🏾‍♀️", + "woman_medium_dark_skin_tone_beard": "🧔🏾‍♀️", + "woman_tone5_beard": "🧔🏿‍♀️", + "woman_dark_skin_tone_beard": "🧔🏿‍♀️", + "man_beard": "🧔‍♂️", + "man_tone1_beard": "🧔🏻‍♂️", + "man_light_skin_tone_beard": "🧔🏻‍♂️", + "man_tone2_beard": "🧔🏼‍♂️", + "man_medium_light_skin_tone_beard": "🧔🏼‍♂️", + "man_tone3_beard": "🧔🏽‍♂️", + "man_medium_skin_tone_beard": "🧔🏽‍♂️", + "man_tone4_beard": "🧔🏾‍♂️", + "man_medium_dark_skin_tone_beard": "🧔🏾‍♂️", + "man_tone5_beard": "🧔🏿‍♂️", + "man_dark_skin_tone_beard": "🧔🏿‍♂️", + "older_adult": "🧓", + "older_person": "🧓", + "older_adult_tone1": "🧓🏻", + "older_adult_light_skin_tone": "🧓🏻", + "older_adult_tone2": "🧓🏼", + "older_adult_medium_light_skin_tone": "🧓🏼", + "older_adult_tone3": "🧓🏽", + "older_adult_medium_skin_tone": "🧓🏽", + "older_adult_tone4": "🧓🏾", + "older_adult_medium_dark_skin_tone": "🧓🏾", + "older_adult_tone5": "🧓🏿", + "older_adult_dark_skin_tone": "🧓🏿", + "older_woman": "👵", + "grandma": "👵", + "old_woman": "👵", + "older_woman_tone1": "👵🏻", + "grandma_tone1": "👵🏻", + "older_woman_tone2": "👵🏼", + "grandma_tone2": "👵🏼", + "older_woman_tone3": "👵🏽", + "grandma_tone3": "👵🏽", + "older_woman_tone4": "👵🏾", + "grandma_tone4": "👵🏾", + "older_woman_tone5": "👵🏿", + "grandma_tone5": "👵🏿", + "older_man": "👴", + "old_man": "👴", + "older_man_tone1": "👴🏻", + "older_man_tone2": "👴🏼", + "older_man_tone3": "👴🏽", + "older_man_tone4": "👴🏾", + "older_man_tone5": "👴🏿", + "man_with_chinese_cap": "👲", + "man_with_gua_pi_mao": "👲", + "man_with_chinese_cap_tone1": "👲🏻", + "man_with_gua_pi_mao_tone1": "👲🏻", + "man_with_chinese_cap_tone2": "👲🏼", + "man_with_gua_pi_mao_tone2": "👲🏼", + "man_with_chinese_cap_tone3": "👲🏽", + "man_with_gua_pi_mao_tone3": "👲🏽", + "man_with_chinese_cap_tone4": "👲🏾", + "man_with_gua_pi_mao_tone4": "👲🏾", + "man_with_chinese_cap_tone5": "👲🏿", + "man_with_gua_pi_mao_tone5": "👲🏿", + "person_wearing_turban": "👳", + "man_with_turban": "👳", + "person_wearing_turban_tone1": "👳🏻", + "man_with_turban_tone1": "👳🏻", + "person_wearing_turban_tone2": "👳🏼", + "man_with_turban_tone2": "👳🏼", + "person_wearing_turban_tone3": "👳🏽", + "man_with_turban_tone3": "👳🏽", + "person_wearing_turban_tone4": "👳🏾", + "man_with_turban_tone4": "👳🏾", + "person_wearing_turban_tone5": "👳🏿", + "man_with_turban_tone5": "👳🏿", + "woman_wearing_turban": "👳‍♀️", + "woman_wearing_turban_tone1": "👳🏻‍♀️", + "woman_wearing_turban_light_skin_tone": "👳🏻‍♀️", + "woman_wearing_turban_tone2": "👳🏼‍♀️", + "woman_wearing_turban_medium_light_skin_tone": "👳🏼‍♀️", + "woman_wearing_turban_tone3": "👳🏽‍♀️", + "woman_wearing_turban_medium_skin_tone": "👳🏽‍♀️", + "woman_wearing_turban_tone4": "👳🏾‍♀️", + "woman_wearing_turban_medium_dark_skin_tone": "👳🏾‍♀️", + "woman_wearing_turban_tone5": "👳🏿‍♀️", + "woman_wearing_turban_dark_skin_tone": "👳🏿‍♀️", + "man_wearing_turban": "👳‍♂️", + "man_wearing_turban_tone1": "👳🏻‍♂️", + "man_wearing_turban_light_skin_tone": "👳🏻‍♂️", + "man_wearing_turban_tone2": "👳🏼‍♂️", + "man_wearing_turban_medium_light_skin_tone": "👳🏼‍♂️", + "man_wearing_turban_tone3": "👳🏽‍♂️", + "man_wearing_turban_medium_skin_tone": "👳🏽‍♂️", + "man_wearing_turban_tone4": "👳🏾‍♂️", + "man_wearing_turban_medium_dark_skin_tone": "👳🏾‍♂️", + "man_wearing_turban_tone5": "👳🏿‍♂️", + "man_wearing_turban_dark_skin_tone": "👳🏿‍♂️", + "woman_with_headscarf": "🧕", + "woman_with_headscarf_tone1": "🧕🏻", + "woman_with_headscarf_light_skin_tone": "🧕🏻", + "woman_with_headscarf_tone2": "🧕🏼", + "woman_with_headscarf_medium_light_skin_tone": "🧕🏼", + "woman_with_headscarf_tone3": "🧕🏽", + "woman_with_headscarf_medium_skin_tone": "🧕🏽", + "woman_with_headscarf_tone4": "🧕🏾", + "woman_with_headscarf_medium_dark_skin_tone": "🧕🏾", + "woman_with_headscarf_tone5": "🧕🏿", + "woman_with_headscarf_dark_skin_tone": "🧕🏿", + "police_officer": "👮", + "cop": "👮", + "police_officer_tone1": "👮🏻", + "cop_tone1": "👮🏻", + "police_officer_tone2": "👮🏼", + "cop_tone2": "👮🏼", + "police_officer_tone3": "👮🏽", + "cop_tone3": "👮🏽", + "police_officer_tone4": "👮🏾", + "cop_tone4": "👮🏾", + "police_officer_tone5": "👮🏿", + "cop_tone5": "👮🏿", + "woman_police_officer": "👮‍♀️", + "woman_police_officer_tone1": "👮🏻‍♀️", + "woman_police_officer_light_skin_tone": "👮🏻‍♀️", + "woman_police_officer_tone2": "👮🏼‍♀️", + "woman_police_officer_medium_light_skin_tone": "👮🏼‍♀️", + "woman_police_officer_tone3": "👮🏽‍♀️", + "woman_police_officer_medium_skin_tone": "👮🏽‍♀️", + "woman_police_officer_tone4": "👮🏾‍♀️", + "woman_police_officer_medium_dark_skin_tone": "👮🏾‍♀️", + "woman_police_officer_tone5": "👮🏿‍♀️", + "woman_police_officer_dark_skin_tone": "👮🏿‍♀️", + "man_police_officer": "👮‍♂️", + "man_police_officer_tone1": "👮🏻‍♂️", + "man_police_officer_light_skin_tone": "👮🏻‍♂️", + "man_police_officer_tone2": "👮🏼‍♂️", + "man_police_officer_medium_light_skin_tone": "👮🏼‍♂️", + "man_police_officer_tone3": "👮🏽‍♂️", + "man_police_officer_medium_skin_tone": "👮🏽‍♂️", + "man_police_officer_tone4": "👮🏾‍♂️", + "man_police_officer_medium_dark_skin_tone": "👮🏾‍♂️", + "man_police_officer_tone5": "👮🏿‍♂️", + "man_police_officer_dark_skin_tone": "👮🏿‍♂️", + "construction_worker": "👷", + "construction_worker_tone1": "👷🏻", + "construction_worker_tone2": "👷🏼", + "construction_worker_tone3": "👷🏽", + "construction_worker_tone4": "👷🏾", + "construction_worker_tone5": "👷🏿", + "woman_construction_worker": "👷‍♀️", + "woman_construction_worker_tone1": "👷🏻‍♀️", + "woman_construction_worker_light_skin_tone": "👷🏻‍♀️", + "woman_construction_worker_tone2": "👷🏼‍♀️", + "woman_construction_worker_medium_light_skin_tone": "👷🏼‍♀️", + "woman_construction_worker_tone3": "👷🏽‍♀️", + "woman_construction_worker_medium_skin_tone": "👷🏽‍♀️", + "woman_construction_worker_tone4": "👷🏾‍♀️", + "woman_construction_worker_medium_dark_skin_tone": "👷🏾‍♀️", + "woman_construction_worker_tone5": "👷🏿‍♀️", + "woman_construction_worker_dark_skin_tone": "👷🏿‍♀️", + "man_construction_worker": "👷‍♂️", + "man_construction_worker_tone1": "👷🏻‍♂️", + "man_construction_worker_light_skin_tone": "👷🏻‍♂️", + "man_construction_worker_tone2": "👷🏼‍♂️", + "man_construction_worker_medium_light_skin_tone": "👷🏼‍♂️", + "man_construction_worker_tone3": "👷🏽‍♂️", + "man_construction_worker_medium_skin_tone": "👷🏽‍♂️", + "man_construction_worker_tone4": "👷🏾‍♂️", + "man_construction_worker_medium_dark_skin_tone": "👷🏾‍♂️", + "man_construction_worker_tone5": "👷🏿‍♂️", + "man_construction_worker_dark_skin_tone": "👷🏿‍♂️", + "guard": "💂", + "guardsman": "💂", + "guard_tone1": "💂🏻", + "guardsman_tone1": "💂🏻", + "guard_tone2": "💂🏼", + "guardsman_tone2": "💂🏼", + "guard_tone3": "💂🏽", + "guardsman_tone3": "💂🏽", + "guard_tone4": "💂🏾", + "guardsman_tone4": "💂🏾", + "guard_tone5": "💂🏿", + "guardsman_tone5": "💂🏿", + "woman_guard": "💂‍♀️", + "woman_guard_tone1": "💂🏻‍♀️", + "woman_guard_light_skin_tone": "💂🏻‍♀️", + "woman_guard_tone2": "💂🏼‍♀️", + "woman_guard_medium_light_skin_tone": "💂🏼‍♀️", + "woman_guard_tone3": "💂🏽‍♀️", + "woman_guard_medium_skin_tone": "💂🏽‍♀️", + "woman_guard_tone4": "💂🏾‍♀️", + "woman_guard_medium_dark_skin_tone": "💂🏾‍♀️", + "woman_guard_tone5": "💂🏿‍♀️", + "woman_guard_dark_skin_tone": "💂🏿‍♀️", + "man_guard": "💂‍♂️", + "man_guard_tone1": "💂🏻‍♂️", + "man_guard_light_skin_tone": "💂🏻‍♂️", + "man_guard_tone2": "💂🏼‍♂️", + "man_guard_medium_light_skin_tone": "💂🏼‍♂️", + "man_guard_tone3": "💂🏽‍♂️", + "man_guard_medium_skin_tone": "💂🏽‍♂️", + "man_guard_tone4": "💂🏾‍♂️", + "man_guard_medium_dark_skin_tone": "💂🏾‍♂️", + "man_guard_tone5": "💂🏿‍♂️", + "man_guard_dark_skin_tone": "💂🏿‍♂️", + "detective": "🕵️", + "spy": "🕵️", + "sleuth_or_spy": "🕵️", + "detective_tone1": "🕵🏻", + "spy_tone1": "🕵🏻", + "sleuth_or_spy_tone1": "🕵🏻", + "detective_tone2": "🕵🏼", + "spy_tone2": "🕵🏼", + "sleuth_or_spy_tone2": "🕵🏼", + "detective_tone3": "🕵🏽", + "spy_tone3": "🕵🏽", + "sleuth_or_spy_tone3": "🕵🏽", + "detective_tone4": "🕵🏾", + "spy_tone4": "🕵🏾", + "sleuth_or_spy_tone4": "🕵🏾", + "detective_tone5": "🕵🏿", + "spy_tone5": "🕵🏿", + "sleuth_or_spy_tone5": "🕵🏿", + "woman_detective": "🕵️‍♀️", + "woman_detective_tone1": "🕵🏻‍♀️", + "woman_detective_light_skin_tone": "🕵🏻‍♀️", + "woman_detective_tone2": "🕵🏼‍♀️", + "woman_detective_medium_light_skin_tone": "🕵🏼‍♀️", + "woman_detective_tone3": "🕵🏽‍♀️", + "woman_detective_medium_skin_tone": "🕵🏽‍♀️", + "woman_detective_tone4": "🕵🏾‍♀️", + "woman_detective_medium_dark_skin_tone": "🕵🏾‍♀️", + "woman_detective_tone5": "🕵🏿‍♀️", + "woman_detective_dark_skin_tone": "🕵🏿‍♀️", + "man_detective": "🕵️‍♂️", + "man_detective_tone1": "🕵🏻‍♂️", + "man_detective_light_skin_tone": "🕵🏻‍♂️", + "man_detective_tone2": "🕵🏼‍♂️", + "man_detective_medium_light_skin_tone": "🕵🏼‍♂️", + "man_detective_tone3": "🕵🏽‍♂️", + "man_detective_medium_skin_tone": "🕵🏽‍♂️", + "man_detective_tone4": "🕵🏾‍♂️", + "man_detective_medium_dark_skin_tone": "🕵🏾‍♂️", + "man_detective_tone5": "🕵🏿‍♂️", + "man_detective_dark_skin_tone": "🕵🏿‍♂️", + "health_worker": "🧑‍⚕️", + "health_worker_tone1": "🧑🏻‍⚕️", + "health_worker_light_skin_tone": "🧑🏻‍⚕️", + "health_worker_tone2": "🧑🏼‍⚕️", + "health_worker_medium_light_skin_tone": "🧑🏼‍⚕️", + "health_worker_tone3": "🧑🏽‍⚕️", + "health_worker_medium_skin_tone": "🧑🏽‍⚕️", + "health_worker_tone4": "🧑🏾‍⚕️", + "health_worker_medium_dark_skin_tone": "🧑🏾‍⚕️", + "health_worker_tone5": "🧑🏿‍⚕️", + "health_worker_dark_skin_tone": "🧑🏿‍⚕️", + "woman_health_worker": "👩‍⚕️", + "woman_health_worker_tone1": "👩🏻‍⚕️", + "woman_health_worker_light_skin_tone": "👩🏻‍⚕️", + "woman_health_worker_tone2": "👩🏼‍⚕️", + "woman_health_worker_medium_light_skin_tone": "👩🏼‍⚕️", + "woman_health_worker_tone3": "👩🏽‍⚕️", + "woman_health_worker_medium_skin_tone": "👩🏽‍⚕️", + "woman_health_worker_tone4": "👩🏾‍⚕️", + "woman_health_worker_medium_dark_skin_tone": "👩🏾‍⚕️", + "woman_health_worker_tone5": "👩🏿‍⚕️", + "woman_health_worker_dark_skin_tone": "👩🏿‍⚕️", + "man_health_worker": "👨‍⚕️", + "man_health_worker_tone1": "👨🏻‍⚕️", + "man_health_worker_light_skin_tone": "👨🏻‍⚕️", + "man_health_worker_tone2": "👨🏼‍⚕️", + "man_health_worker_medium_light_skin_tone": "👨🏼‍⚕️", + "man_health_worker_tone3": "👨🏽‍⚕️", + "man_health_worker_medium_skin_tone": "👨🏽‍⚕️", + "man_health_worker_tone4": "👨🏾‍⚕️", + "man_health_worker_medium_dark_skin_tone": "👨🏾‍⚕️", + "man_health_worker_tone5": "👨🏿‍⚕️", + "man_health_worker_dark_skin_tone": "👨🏿‍⚕️", + "farmer": "🧑‍🌾", + "farmer_tone1": "🧑🏻‍🌾", + "farmer_light_skin_tone": "🧑🏻‍🌾", + "farmer_tone2": "🧑🏼‍🌾", + "farmer_medium_light_skin_tone": "🧑🏼‍🌾", + "farmer_tone3": "🧑🏽‍🌾", + "farmer_medium_skin_tone": "🧑🏽‍🌾", + "farmer_tone4": "🧑🏾‍🌾", + "farmer_medium_dark_skin_tone": "🧑🏾‍🌾", + "farmer_tone5": "🧑🏿‍🌾", + "farmer_dark_skin_tone": "🧑🏿‍🌾", + "woman_farmer": "👩‍🌾", + "woman_farmer_tone1": "👩🏻‍🌾", + "woman_farmer_light_skin_tone": "👩🏻‍🌾", + "woman_farmer_tone2": "👩🏼‍🌾", + "woman_farmer_medium_light_skin_tone": "👩🏼‍🌾", + "woman_farmer_tone3": "👩🏽‍🌾", + "woman_farmer_medium_skin_tone": "👩🏽‍🌾", + "woman_farmer_tone4": "👩🏾‍🌾", + "woman_farmer_medium_dark_skin_tone": "👩🏾‍🌾", + "woman_farmer_tone5": "👩🏿‍🌾", + "woman_farmer_dark_skin_tone": "👩🏿‍🌾", + "man_farmer": "👨‍🌾", + "man_farmer_tone1": "👨🏻‍🌾", + "man_farmer_light_skin_tone": "👨🏻‍🌾", + "man_farmer_tone2": "👨🏼‍🌾", + "man_farmer_medium_light_skin_tone": "👨🏼‍🌾", + "man_farmer_tone3": "👨🏽‍🌾", + "man_farmer_medium_skin_tone": "👨🏽‍🌾", + "man_farmer_tone4": "👨🏾‍🌾", + "man_farmer_medium_dark_skin_tone": "👨🏾‍🌾", + "man_farmer_tone5": "👨🏿‍🌾", + "man_farmer_dark_skin_tone": "👨🏿‍🌾", + "cook": "🧑‍🍳", + "cook_tone1": "🧑🏻‍🍳", + "cook_light_skin_tone": "🧑🏻‍🍳", + "cook_tone2": "🧑🏼‍🍳", + "cook_medium_light_skin_tone": "🧑🏼‍🍳", + "cook_tone3": "🧑🏽‍🍳", + "cook_medium_skin_tone": "🧑🏽‍🍳", + "cook_tone4": "🧑🏾‍🍳", + "cook_medium_dark_skin_tone": "🧑🏾‍🍳", + "cook_tone5": "🧑🏿‍🍳", + "cook_dark_skin_tone": "🧑🏿‍🍳", + "woman_cook": "👩‍🍳", + "woman_cook_tone1": "👩🏻‍🍳", + "woman_cook_light_skin_tone": "👩🏻‍🍳", + "woman_cook_tone2": "👩🏼‍🍳", + "woman_cook_medium_light_skin_tone": "👩🏼‍🍳", + "woman_cook_tone3": "👩🏽‍🍳", + "woman_cook_medium_skin_tone": "👩🏽‍🍳", + "woman_cook_tone4": "👩🏾‍🍳", + "woman_cook_medium_dark_skin_tone": "👩🏾‍🍳", + "woman_cook_tone5": "👩🏿‍🍳", + "woman_cook_dark_skin_tone": "👩🏿‍🍳", + "man_cook": "👨‍🍳", + "man_cook_tone1": "👨🏻‍🍳", + "man_cook_light_skin_tone": "👨🏻‍🍳", + "man_cook_tone2": "👨🏼‍🍳", + "man_cook_medium_light_skin_tone": "👨🏼‍🍳", + "man_cook_tone3": "👨🏽‍🍳", + "man_cook_medium_skin_tone": "👨🏽‍🍳", + "man_cook_tone4": "👨🏾‍🍳", + "man_cook_medium_dark_skin_tone": "👨🏾‍🍳", + "man_cook_tone5": "👨🏿‍🍳", + "man_cook_dark_skin_tone": "👨🏿‍🍳", + "student": "🧑‍🎓", + "student_tone1": "🧑🏻‍🎓", + "student_light_skin_tone": "🧑🏻‍🎓", + "student_tone2": "🧑🏼‍🎓", + "student_medium_light_skin_tone": "🧑🏼‍🎓", + "student_tone3": "🧑🏽‍🎓", + "student_medium_skin_tone": "🧑🏽‍🎓", + "student_tone4": "🧑🏾‍🎓", + "student_medium_dark_skin_tone": "🧑🏾‍🎓", + "student_tone5": "🧑🏿‍🎓", + "student_dark_skin_tone": "🧑🏿‍🎓", + "woman_student": "👩‍🎓", + "woman_student_tone1": "👩🏻‍🎓", + "woman_student_light_skin_tone": "👩🏻‍🎓", + "woman_student_tone2": "👩🏼‍🎓", + "woman_student_medium_light_skin_tone": "👩🏼‍🎓", + "woman_student_tone3": "👩🏽‍🎓", + "woman_student_medium_skin_tone": "👩🏽‍🎓", + "woman_student_tone4": "👩🏾‍🎓", + "woman_student_medium_dark_skin_tone": "👩🏾‍🎓", + "woman_student_tone5": "👩🏿‍🎓", + "woman_student_dark_skin_tone": "👩🏿‍🎓", + "man_student": "👨‍🎓", + "man_student_tone1": "👨🏻‍🎓", + "man_student_light_skin_tone": "👨🏻‍🎓", + "man_student_tone2": "👨🏼‍🎓", + "man_student_medium_light_skin_tone": "👨🏼‍🎓", + "man_student_tone3": "👨🏽‍🎓", + "man_student_medium_skin_tone": "👨🏽‍🎓", + "man_student_tone4": "👨🏾‍🎓", + "man_student_medium_dark_skin_tone": "👨🏾‍🎓", + "man_student_tone5": "👨🏿‍🎓", + "man_student_dark_skin_tone": "👨🏿‍🎓", + "singer": "🧑‍🎤", + "singer_tone1": "🧑🏻‍🎤", + "singer_light_skin_tone": "🧑🏻‍🎤", + "singer_tone2": "🧑🏼‍🎤", + "singer_medium_light_skin_tone": "🧑🏼‍🎤", + "singer_tone3": "🧑🏽‍🎤", + "singer_medium_skin_tone": "🧑🏽‍🎤", + "singer_tone4": "🧑🏾‍🎤", + "singer_medium_dark_skin_tone": "🧑🏾‍🎤", + "singer_tone5": "🧑🏿‍🎤", + "singer_dark_skin_tone": "🧑🏿‍🎤", + "woman_singer": "👩‍🎤", + "woman_singer_tone1": "👩🏻‍🎤", + "woman_singer_light_skin_tone": "👩🏻‍🎤", + "woman_singer_tone2": "👩🏼‍🎤", + "woman_singer_medium_light_skin_tone": "👩🏼‍🎤", + "woman_singer_tone3": "👩🏽‍🎤", + "woman_singer_medium_skin_tone": "👩🏽‍🎤", + "woman_singer_tone4": "👩🏾‍🎤", + "woman_singer_medium_dark_skin_tone": "👩🏾‍🎤", + "woman_singer_tone5": "👩🏿‍🎤", + "woman_singer_dark_skin_tone": "👩🏿‍🎤", + "man_singer": "👨‍🎤", + "man_singer_tone1": "👨🏻‍🎤", + "man_singer_light_skin_tone": "👨🏻‍🎤", + "man_singer_tone2": "👨🏼‍🎤", + "man_singer_medium_light_skin_tone": "👨🏼‍🎤", + "man_singer_tone3": "👨🏽‍🎤", + "man_singer_medium_skin_tone": "👨🏽‍🎤", + "man_singer_tone4": "👨🏾‍🎤", + "man_singer_medium_dark_skin_tone": "👨🏾‍🎤", + "man_singer_tone5": "👨🏿‍🎤", + "man_singer_dark_skin_tone": "👨🏿‍🎤", + "teacher": "🧑‍🏫", + "teacher_tone1": "🧑🏻‍🏫", + "teacher_light_skin_tone": "🧑🏻‍🏫", + "teacher_tone2": "🧑🏼‍🏫", + "teacher_medium_light_skin_tone": "🧑🏼‍🏫", + "teacher_tone3": "🧑🏽‍🏫", + "teacher_medium_skin_tone": "🧑🏽‍🏫", + "teacher_tone4": "🧑🏾‍🏫", + "teacher_medium_dark_skin_tone": "🧑🏾‍🏫", + "teacher_tone5": "🧑🏿‍🏫", + "teacher_dark_skin_tone": "🧑🏿‍🏫", + "woman_teacher": "👩‍🏫", + "woman_teacher_tone1": "👩🏻‍🏫", + "woman_teacher_light_skin_tone": "👩🏻‍🏫", + "woman_teacher_tone2": "👩🏼‍🏫", + "woman_teacher_medium_light_skin_tone": "👩🏼‍🏫", + "woman_teacher_tone3": "👩🏽‍🏫", + "woman_teacher_medium_skin_tone": "👩🏽‍🏫", + "woman_teacher_tone4": "👩🏾‍🏫", + "woman_teacher_medium_dark_skin_tone": "👩🏾‍🏫", + "woman_teacher_tone5": "👩🏿‍🏫", + "woman_teacher_dark_skin_tone": "👩🏿‍🏫", + "man_teacher": "👨‍🏫", + "man_teacher_tone1": "👨🏻‍🏫", + "man_teacher_light_skin_tone": "👨🏻‍🏫", + "man_teacher_tone2": "👨🏼‍🏫", + "man_teacher_medium_light_skin_tone": "👨🏼‍🏫", + "man_teacher_tone3": "👨🏽‍🏫", + "man_teacher_medium_skin_tone": "👨🏽‍🏫", + "man_teacher_tone4": "👨🏾‍🏫", + "man_teacher_medium_dark_skin_tone": "👨🏾‍🏫", + "man_teacher_tone5": "👨🏿‍🏫", + "man_teacher_dark_skin_tone": "👨🏿‍🏫", + "factory_worker": "🧑‍🏭", + "factory_worker_tone1": "🧑🏻‍🏭", + "factory_worker_light_skin_tone": "🧑🏻‍🏭", + "factory_worker_tone2": "🧑🏼‍🏭", + "factory_worker_medium_light_skin_tone": "🧑🏼‍🏭", + "factory_worker_tone3": "🧑🏽‍🏭", + "factory_worker_medium_skin_tone": "🧑🏽‍🏭", + "factory_worker_tone4": "🧑🏾‍🏭", + "factory_worker_medium_dark_skin_tone": "🧑🏾‍🏭", + "factory_worker_tone5": "🧑🏿‍🏭", + "factory_worker_dark_skin_tone": "🧑🏿‍🏭", + "woman_factory_worker": "👩‍🏭", + "woman_factory_worker_tone1": "👩🏻‍🏭", + "woman_factory_worker_light_skin_tone": "👩🏻‍🏭", + "woman_factory_worker_tone2": "👩🏼‍🏭", + "woman_factory_worker_medium_light_skin_tone": "👩🏼‍🏭", + "woman_factory_worker_tone3": "👩🏽‍🏭", + "woman_factory_worker_medium_skin_tone": "👩🏽‍🏭", + "woman_factory_worker_tone4": "👩🏾‍🏭", + "woman_factory_worker_medium_dark_skin_tone": "👩🏾‍🏭", + "woman_factory_worker_tone5": "👩🏿‍🏭", + "woman_factory_worker_dark_skin_tone": "👩🏿‍🏭", + "man_factory_worker": "👨‍🏭", + "man_factory_worker_tone1": "👨🏻‍🏭", + "man_factory_worker_light_skin_tone": "👨🏻‍🏭", + "man_factory_worker_tone2": "👨🏼‍🏭", + "man_factory_worker_medium_light_skin_tone": "👨🏼‍🏭", + "man_factory_worker_tone3": "👨🏽‍🏭", + "man_factory_worker_medium_skin_tone": "👨🏽‍🏭", + "man_factory_worker_tone4": "👨🏾‍🏭", + "man_factory_worker_medium_dark_skin_tone": "👨🏾‍🏭", + "man_factory_worker_tone5": "👨🏿‍🏭", + "man_factory_worker_dark_skin_tone": "👨🏿‍🏭", + "technologist": "🧑‍💻", + "technologist_tone1": "🧑🏻‍💻", + "technologist_light_skin_tone": "🧑🏻‍💻", + "technologist_tone2": "🧑🏼‍💻", + "technologist_medium_light_skin_tone": "🧑🏼‍💻", + "technologist_tone3": "🧑🏽‍💻", + "technologist_medium_skin_tone": "🧑🏽‍💻", + "technologist_tone4": "🧑🏾‍💻", + "technologist_medium_dark_skin_tone": "🧑🏾‍💻", + "technologist_tone5": "🧑🏿‍💻", + "technologist_dark_skin_tone": "🧑🏿‍💻", + "woman_technologist": "👩‍💻", + "woman_technologist_tone1": "👩🏻‍💻", + "woman_technologist_light_skin_tone": "👩🏻‍💻", + "woman_technologist_tone2": "👩🏼‍💻", + "woman_technologist_medium_light_skin_tone": "👩🏼‍💻", + "woman_technologist_tone3": "👩🏽‍💻", + "woman_technologist_medium_skin_tone": "👩🏽‍💻", + "woman_technologist_tone4": "👩🏾‍💻", + "woman_technologist_medium_dark_skin_tone": "👩🏾‍💻", + "woman_technologist_tone5": "👩🏿‍💻", + "woman_technologist_dark_skin_tone": "👩🏿‍💻", + "man_technologist": "👨‍💻", + "man_technologist_tone1": "👨🏻‍💻", + "man_technologist_light_skin_tone": "👨🏻‍💻", + "man_technologist_tone2": "👨🏼‍💻", + "man_technologist_medium_light_skin_tone": "👨🏼‍💻", + "man_technologist_tone3": "👨🏽‍💻", + "man_technologist_medium_skin_tone": "👨🏽‍💻", + "man_technologist_tone4": "👨🏾‍💻", + "man_technologist_medium_dark_skin_tone": "👨🏾‍💻", + "man_technologist_tone5": "👨🏿‍💻", + "man_technologist_dark_skin_tone": "👨🏿‍💻", + "office_worker": "🧑‍💼", + "office_worker_tone1": "🧑🏻‍💼", + "office_worker_light_skin_tone": "🧑🏻‍💼", + "office_worker_tone2": "🧑🏼‍💼", + "office_worker_medium_light_skin_tone": "🧑🏼‍💼", + "office_worker_tone3": "🧑🏽‍💼", + "office_worker_medium_skin_tone": "🧑🏽‍💼", + "office_worker_tone4": "🧑🏾‍💼", + "office_worker_medium_dark_skin_tone": "🧑🏾‍💼", + "office_worker_tone5": "🧑🏿‍💼", + "office_worker_dark_skin_tone": "🧑🏿‍💼", + "woman_office_worker": "👩‍💼", + "woman_office_worker_tone1": "👩🏻‍💼", + "woman_office_worker_light_skin_tone": "👩🏻‍💼", + "woman_office_worker_tone2": "👩🏼‍💼", + "woman_office_worker_medium_light_skin_tone": "👩🏼‍💼", + "woman_office_worker_tone3": "👩🏽‍💼", + "woman_office_worker_medium_skin_tone": "👩🏽‍💼", + "woman_office_worker_tone4": "👩🏾‍💼", + "woman_office_worker_medium_dark_skin_tone": "👩🏾‍💼", + "woman_office_worker_tone5": "👩🏿‍💼", + "woman_office_worker_dark_skin_tone": "👩🏿‍💼", + "man_office_worker": "👨‍💼", + "man_office_worker_tone1": "👨🏻‍💼", + "man_office_worker_light_skin_tone": "👨🏻‍💼", + "man_office_worker_tone2": "👨🏼‍💼", + "man_office_worker_medium_light_skin_tone": "👨🏼‍💼", + "man_office_worker_tone3": "👨🏽‍💼", + "man_office_worker_medium_skin_tone": "👨🏽‍💼", + "man_office_worker_tone4": "👨🏾‍💼", + "man_office_worker_medium_dark_skin_tone": "👨🏾‍💼", + "man_office_worker_tone5": "👨🏿‍💼", + "man_office_worker_dark_skin_tone": "👨🏿‍💼", + "mechanic": "🧑‍🔧", + "mechanic_tone1": "🧑🏻‍🔧", + "mechanic_light_skin_tone": "🧑🏻‍🔧", + "mechanic_tone2": "🧑🏼‍🔧", + "mechanic_medium_light_skin_tone": "🧑🏼‍🔧", + "mechanic_tone3": "🧑🏽‍🔧", + "mechanic_medium_skin_tone": "🧑🏽‍🔧", + "mechanic_tone4": "🧑🏾‍🔧", + "mechanic_medium_dark_skin_tone": "🧑🏾‍🔧", + "mechanic_tone5": "🧑🏿‍🔧", + "mechanic_dark_skin_tone": "🧑🏿‍🔧", + "woman_mechanic": "👩‍🔧", + "woman_mechanic_tone1": "👩🏻‍🔧", + "woman_mechanic_light_skin_tone": "👩🏻‍🔧", + "woman_mechanic_tone2": "👩🏼‍🔧", + "woman_mechanic_medium_light_skin_tone": "👩🏼‍🔧", + "woman_mechanic_tone3": "👩🏽‍🔧", + "woman_mechanic_medium_skin_tone": "👩🏽‍🔧", + "woman_mechanic_tone4": "👩🏾‍🔧", + "woman_mechanic_medium_dark_skin_tone": "👩🏾‍🔧", + "woman_mechanic_tone5": "👩🏿‍🔧", + "woman_mechanic_dark_skin_tone": "👩🏿‍🔧", + "man_mechanic": "👨‍🔧", + "man_mechanic_tone1": "👨🏻‍🔧", + "man_mechanic_light_skin_tone": "👨🏻‍🔧", + "man_mechanic_tone2": "👨🏼‍🔧", + "man_mechanic_medium_light_skin_tone": "👨🏼‍🔧", + "man_mechanic_tone3": "👨🏽‍🔧", + "man_mechanic_medium_skin_tone": "👨🏽‍🔧", + "man_mechanic_tone4": "👨🏾‍🔧", + "man_mechanic_medium_dark_skin_tone": "👨🏾‍🔧", + "man_mechanic_tone5": "👨🏿‍🔧", + "man_mechanic_dark_skin_tone": "👨🏿‍🔧", + "scientist": "🧑‍🔬", + "scientist_tone1": "🧑🏻‍🔬", + "scientist_light_skin_tone": "🧑🏻‍🔬", + "scientist_tone2": "🧑🏼‍🔬", + "scientist_medium_light_skin_tone": "🧑🏼‍🔬", + "scientist_tone3": "🧑🏽‍🔬", + "scientist_medium_skin_tone": "🧑🏽‍🔬", + "scientist_tone4": "🧑🏾‍🔬", + "scientist_medium_dark_skin_tone": "🧑🏾‍🔬", + "scientist_tone5": "🧑🏿‍🔬", + "scientist_dark_skin_tone": "🧑🏿‍🔬", + "woman_scientist": "👩‍🔬", + "woman_scientist_tone1": "👩🏻‍🔬", + "woman_scientist_light_skin_tone": "👩🏻‍🔬", + "woman_scientist_tone2": "👩🏼‍🔬", + "woman_scientist_medium_light_skin_tone": "👩🏼‍🔬", + "woman_scientist_tone3": "👩🏽‍🔬", + "woman_scientist_medium_skin_tone": "👩🏽‍🔬", + "woman_scientist_tone4": "👩🏾‍🔬", + "woman_scientist_medium_dark_skin_tone": "👩🏾‍🔬", + "woman_scientist_tone5": "👩🏿‍🔬", + "woman_scientist_dark_skin_tone": "👩🏿‍🔬", + "man_scientist": "👨‍🔬", + "man_scientist_tone1": "👨🏻‍🔬", + "man_scientist_light_skin_tone": "👨🏻‍🔬", + "man_scientist_tone2": "👨🏼‍🔬", + "man_scientist_medium_light_skin_tone": "👨🏼‍🔬", + "man_scientist_tone3": "👨🏽‍🔬", + "man_scientist_medium_skin_tone": "👨🏽‍🔬", + "man_scientist_tone4": "👨🏾‍🔬", + "man_scientist_medium_dark_skin_tone": "👨🏾‍🔬", + "man_scientist_tone5": "👨🏿‍🔬", + "man_scientist_dark_skin_tone": "👨🏿‍🔬", + "artist": "🧑‍🎨", + "artist_tone1": "🧑🏻‍🎨", + "artist_light_skin_tone": "🧑🏻‍🎨", + "artist_tone2": "🧑🏼‍🎨", + "artist_medium_light_skin_tone": "🧑🏼‍🎨", + "artist_tone3": "🧑🏽‍🎨", + "artist_medium_skin_tone": "🧑🏽‍🎨", + "artist_tone4": "🧑🏾‍🎨", + "artist_medium_dark_skin_tone": "🧑🏾‍🎨", + "artist_tone5": "🧑🏿‍🎨", + "artist_dark_skin_tone": "🧑🏿‍🎨", + "woman_artist": "👩‍🎨", + "woman_artist_tone1": "👩🏻‍🎨", + "woman_artist_light_skin_tone": "👩🏻‍🎨", + "woman_artist_tone2": "👩🏼‍🎨", + "woman_artist_medium_light_skin_tone": "👩🏼‍🎨", + "woman_artist_tone3": "👩🏽‍🎨", + "woman_artist_medium_skin_tone": "👩🏽‍🎨", + "woman_artist_tone4": "👩🏾‍🎨", + "woman_artist_medium_dark_skin_tone": "👩🏾‍🎨", + "woman_artist_tone5": "👩🏿‍🎨", + "woman_artist_dark_skin_tone": "👩🏿‍🎨", + "man_artist": "👨‍🎨", + "man_artist_tone1": "👨🏻‍🎨", + "man_artist_light_skin_tone": "👨🏻‍🎨", + "man_artist_tone2": "👨🏼‍🎨", + "man_artist_medium_light_skin_tone": "👨🏼‍🎨", + "man_artist_tone3": "👨🏽‍🎨", + "man_artist_medium_skin_tone": "👨🏽‍🎨", + "man_artist_tone4": "👨🏾‍🎨", + "man_artist_medium_dark_skin_tone": "👨🏾‍🎨", + "man_artist_tone5": "👨🏿‍🎨", + "man_artist_dark_skin_tone": "👨🏿‍🎨", + "firefighter": "🧑‍🚒", + "firefighter_tone1": "🧑🏻‍🚒", + "firefighter_light_skin_tone": "🧑🏻‍🚒", + "firefighter_tone2": "🧑🏼‍🚒", + "firefighter_medium_light_skin_tone": "🧑🏼‍🚒", + "firefighter_tone3": "🧑🏽‍🚒", + "firefighter_medium_skin_tone": "🧑🏽‍🚒", + "firefighter_tone4": "🧑🏾‍🚒", + "firefighter_medium_dark_skin_tone": "🧑🏾‍🚒", + "firefighter_tone5": "🧑🏿‍🚒", + "firefighter_dark_skin_tone": "🧑🏿‍🚒", + "woman_firefighter": "👩‍🚒", + "woman_firefighter_tone1": "👩🏻‍🚒", + "woman_firefighter_light_skin_tone": "👩🏻‍🚒", + "woman_firefighter_tone2": "👩🏼‍🚒", + "woman_firefighter_medium_light_skin_tone": "👩🏼‍🚒", + "woman_firefighter_tone3": "👩🏽‍🚒", + "woman_firefighter_medium_skin_tone": "👩🏽‍🚒", + "woman_firefighter_tone4": "👩🏾‍🚒", + "woman_firefighter_medium_dark_skin_tone": "👩🏾‍🚒", + "woman_firefighter_tone5": "👩🏿‍🚒", + "woman_firefighter_dark_skin_tone": "👩🏿‍🚒", + "man_firefighter": "👨‍🚒", + "man_firefighter_tone1": "👨🏻‍🚒", + "man_firefighter_light_skin_tone": "👨🏻‍🚒", + "man_firefighter_tone2": "👨🏼‍🚒", + "man_firefighter_medium_light_skin_tone": "👨🏼‍🚒", + "man_firefighter_tone3": "👨🏽‍🚒", + "man_firefighter_medium_skin_tone": "👨🏽‍🚒", + "man_firefighter_tone4": "👨🏾‍🚒", + "man_firefighter_medium_dark_skin_tone": "👨🏾‍🚒", + "man_firefighter_tone5": "👨🏿‍🚒", + "man_firefighter_dark_skin_tone": "👨🏿‍🚒", + "pilot": "🧑‍✈️", + "pilot_tone1": "🧑🏻‍✈️", + "pilot_light_skin_tone": "🧑🏻‍✈️", + "pilot_tone2": "🧑🏼‍✈️", + "pilot_medium_light_skin_tone": "🧑🏼‍✈️", + "pilot_tone3": "🧑🏽‍✈️", + "pilot_medium_skin_tone": "🧑🏽‍✈️", + "pilot_tone4": "🧑🏾‍✈️", + "pilot_medium_dark_skin_tone": "🧑🏾‍✈️", + "pilot_tone5": "🧑🏿‍✈️", + "pilot_dark_skin_tone": "🧑🏿‍✈️", + "woman_pilot": "👩‍✈️", + "woman_pilot_tone1": "👩🏻‍✈️", + "woman_pilot_light_skin_tone": "👩🏻‍✈️", + "woman_pilot_tone2": "👩🏼‍✈️", + "woman_pilot_medium_light_skin_tone": "👩🏼‍✈️", + "woman_pilot_tone3": "👩🏽‍✈️", + "woman_pilot_medium_skin_tone": "👩🏽‍✈️", + "woman_pilot_tone4": "👩🏾‍✈️", + "woman_pilot_medium_dark_skin_tone": "👩🏾‍✈️", + "woman_pilot_tone5": "👩🏿‍✈️", + "woman_pilot_dark_skin_tone": "👩🏿‍✈️", + "man_pilot": "👨‍✈️", + "man_pilot_tone1": "👨🏻‍✈️", + "man_pilot_light_skin_tone": "👨🏻‍✈️", + "man_pilot_tone2": "👨🏼‍✈️", + "man_pilot_medium_light_skin_tone": "👨🏼‍✈️", + "man_pilot_tone3": "👨🏽‍✈️", + "man_pilot_medium_skin_tone": "👨🏽‍✈️", + "man_pilot_tone4": "👨🏾‍✈️", + "man_pilot_medium_dark_skin_tone": "👨🏾‍✈️", + "man_pilot_tone5": "👨🏿‍✈️", + "man_pilot_dark_skin_tone": "👨🏿‍✈️", + "astronaut": "🧑‍🚀", + "astronaut_tone1": "🧑🏻‍🚀", + "astronaut_light_skin_tone": "🧑🏻‍🚀", + "astronaut_tone2": "🧑🏼‍🚀", + "astronaut_medium_light_skin_tone": "🧑🏼‍🚀", + "astronaut_tone3": "🧑🏽‍🚀", + "astronaut_medium_skin_tone": "🧑🏽‍🚀", + "astronaut_tone4": "🧑🏾‍🚀", + "astronaut_medium_dark_skin_tone": "🧑🏾‍🚀", + "astronaut_tone5": "🧑🏿‍🚀", + "astronaut_dark_skin_tone": "🧑🏿‍🚀", + "woman_astronaut": "👩‍🚀", + "woman_astronaut_tone1": "👩🏻‍🚀", + "woman_astronaut_light_skin_tone": "👩🏻‍🚀", + "woman_astronaut_tone2": "👩🏼‍🚀", + "woman_astronaut_medium_light_skin_tone": "👩🏼‍🚀", + "woman_astronaut_tone3": "👩🏽‍🚀", + "woman_astronaut_medium_skin_tone": "👩🏽‍🚀", + "woman_astronaut_tone4": "👩🏾‍🚀", + "woman_astronaut_medium_dark_skin_tone": "👩🏾‍🚀", + "woman_astronaut_tone5": "👩🏿‍🚀", + "woman_astronaut_dark_skin_tone": "👩🏿‍🚀", + "man_astronaut": "👨‍🚀", + "man_astronaut_tone1": "👨🏻‍🚀", + "man_astronaut_light_skin_tone": "👨🏻‍🚀", + "man_astronaut_tone2": "👨🏼‍🚀", + "man_astronaut_medium_light_skin_tone": "👨🏼‍🚀", + "man_astronaut_tone3": "👨🏽‍🚀", + "man_astronaut_medium_skin_tone": "👨🏽‍🚀", + "man_astronaut_tone4": "👨🏾‍🚀", + "man_astronaut_medium_dark_skin_tone": "👨🏾‍🚀", + "man_astronaut_tone5": "👨🏿‍🚀", + "man_astronaut_dark_skin_tone": "👨🏿‍🚀", + "judge": "🧑‍⚖️", + "judge_tone1": "🧑🏻‍⚖️", + "judge_light_skin_tone": "🧑🏻‍⚖️", + "judge_tone2": "🧑🏼‍⚖️", + "judge_medium_light_skin_tone": "🧑🏼‍⚖️", + "judge_tone3": "🧑🏽‍⚖️", + "judge_medium_skin_tone": "🧑🏽‍⚖️", + "judge_tone4": "🧑🏾‍⚖️", + "judge_medium_dark_skin_tone": "🧑🏾‍⚖️", + "judge_tone5": "🧑🏿‍⚖️", + "judge_dark_skin_tone": "🧑🏿‍⚖️", + "woman_judge": "👩‍⚖️", + "woman_judge_tone1": "👩🏻‍⚖️", + "woman_judge_light_skin_tone": "👩🏻‍⚖️", + "woman_judge_tone2": "👩🏼‍⚖️", + "woman_judge_medium_light_skin_tone": "👩🏼‍⚖️", + "woman_judge_tone3": "👩🏽‍⚖️", + "woman_judge_medium_skin_tone": "👩🏽‍⚖️", + "woman_judge_tone4": "👩🏾‍⚖️", + "woman_judge_medium_dark_skin_tone": "👩🏾‍⚖️", + "woman_judge_tone5": "👩🏿‍⚖️", + "woman_judge_dark_skin_tone": "👩🏿‍⚖️", + "man_judge": "👨‍⚖️", + "man_judge_tone1": "👨🏻‍⚖️", + "man_judge_light_skin_tone": "👨🏻‍⚖️", + "man_judge_tone2": "👨🏼‍⚖️", + "man_judge_medium_light_skin_tone": "👨🏼‍⚖️", + "man_judge_tone3": "👨🏽‍⚖️", + "man_judge_medium_skin_tone": "👨🏽‍⚖️", + "man_judge_tone4": "👨🏾‍⚖️", + "man_judge_medium_dark_skin_tone": "👨🏾‍⚖️", + "man_judge_tone5": "👨🏿‍⚖️", + "man_judge_dark_skin_tone": "👨🏿‍⚖️", + "person_with_veil": "👰", + "person_with_veil_tone1": "👰🏻", + "person_with_veil_tone2": "👰🏼", + "person_with_veil_tone3": "👰🏽", + "person_with_veil_tone4": "👰🏾", + "person_with_veil_tone5": "👰🏿", + "woman_with_veil": "👰‍♀️", + "bride_with_veil": "👰‍♀️", + "woman_with_veil_tone1": "👰🏻‍♀️", + "woman_with_veil_light_skin_tone": "👰🏻‍♀️", + "woman_with_veil_tone2": "👰🏼‍♀️", + "woman_with_veil_medium_light_skin_tone": "👰🏼‍♀️", + "woman_with_veil_tone3": "👰🏽‍♀️", + "woman_with_veil_medium_skin_tone": "👰🏽‍♀️", + "woman_with_veil_tone4": "👰🏾‍♀️", + "woman_with_veil_medium_dark_skin_tone": "👰🏾‍♀️", + "woman_with_veil_tone5": "👰🏿‍♀️", + "woman_with_veil_dark_skin_tone": "👰🏿‍♀️", + "man_with_veil": "👰‍♂️", + "man_with_veil_tone1": "👰🏻‍♂️", + "man_with_veil_light_skin_tone": "👰🏻‍♂️", + "man_with_veil_tone2": "👰🏼‍♂️", + "man_with_veil_medium_light_skin_tone": "👰🏼‍♂️", + "man_with_veil_tone3": "👰🏽‍♂️", + "man_with_veil_medium_skin_tone": "👰🏽‍♂️", + "man_with_veil_tone4": "👰🏾‍♂️", + "man_with_veil_medium_dark_skin_tone": "👰🏾‍♂️", + "man_with_veil_tone5": "👰🏿‍♂️", + "man_with_veil_dark_skin_tone": "👰🏿‍♂️", + "person_in_tuxedo": "🤵", + "person_in_tuxedo_tone1": "🤵🏻", + "tuxedo_tone1": "🤵🏻", + "person_in_tuxedo_tone2": "🤵🏼", + "tuxedo_tone2": "🤵🏼", + "person_in_tuxedo_tone3": "🤵🏽", + "tuxedo_tone3": "🤵🏽", + "person_in_tuxedo_tone4": "🤵🏾", + "tuxedo_tone4": "🤵🏾", + "person_in_tuxedo_tone5": "🤵🏿", + "tuxedo_tone5": "🤵🏿", + "woman_in_tuxedo": "🤵‍♀️", + "woman_in_tuxedo_tone1": "🤵🏻‍♀️", + "woman_in_tuxedo_light_skin_tone": "🤵🏻‍♀️", + "woman_in_tuxedo_tone2": "🤵🏼‍♀️", + "woman_in_tuxedo_medium_light_skin_tone": "🤵🏼‍♀️", + "woman_in_tuxedo_tone3": "🤵🏽‍♀️", + "woman_in_tuxedo_medium_skin_tone": "🤵🏽‍♀️", + "woman_in_tuxedo_tone4": "🤵🏾‍♀️", + "woman_in_tuxedo_medium_dark_skin_tone": "🤵🏾‍♀️", + "woman_in_tuxedo_tone5": "🤵🏿‍♀️", + "woman_in_tuxedo_dark_skin_tone": "🤵🏿‍♀️", + "man_in_tuxedo": "🤵‍♂️", + "man_in_tuxedo_tone1": "🤵🏻‍♂️", + "man_in_tuxedo_light_skin_tone": "🤵🏻‍♂️", + "man_in_tuxedo_tone2": "🤵🏼‍♂️", + "man_in_tuxedo_medium_light_skin_tone": "🤵🏼‍♂️", + "man_in_tuxedo_tone3": "🤵🏽‍♂️", + "man_in_tuxedo_medium_skin_tone": "🤵🏽‍♂️", + "man_in_tuxedo_tone4": "🤵🏾‍♂️", + "man_in_tuxedo_medium_dark_skin_tone": "🤵🏾‍♂️", + "man_in_tuxedo_tone5": "🤵🏿‍♂️", + "man_in_tuxedo_dark_skin_tone": "🤵🏿‍♂️", + "person_with_crown": "🫅", + "person_with_crown_tone1": "🫅🏻", + "person_with_crown_light_skin_tone": "🫅🏻", + "person_with_crown_tone2": "🫅🏼", + "person_with_crown_medium_light_skin_tone": "🫅🏼", + "person_with_crown_tone3": "🫅🏽", + "person_with_crown_medium_skin_tone": "🫅🏽", + "person_with_crown_tone4": "🫅🏾", + "person_with_crown_medium_dark_skin_tone": "🫅🏾", + "person_with_crown_tone5": "🫅🏿", + "person_with_crown_dark_skin_tone": "🫅🏿", + "princess": "👸", + "princess_tone1": "👸🏻", + "princess_tone2": "👸🏼", + "princess_tone3": "👸🏽", + "princess_tone4": "👸🏾", + "princess_tone5": "👸🏿", + "prince": "🤴", + "prince_tone1": "🤴🏻", + "prince_tone2": "🤴🏼", + "prince_tone3": "🤴🏽", + "prince_tone4": "🤴🏾", + "prince_tone5": "🤴🏿", + "superhero": "🦸", + "superhero_tone1": "🦸🏻", + "superhero_light_skin_tone": "🦸🏻", + "superhero_tone2": "🦸🏼", + "superhero_medium_light_skin_tone": "🦸🏼", + "superhero_tone3": "🦸🏽", + "superhero_medium_skin_tone": "🦸🏽", + "superhero_tone4": "🦸🏾", + "superhero_medium_dark_skin_tone": "🦸🏾", + "superhero_tone5": "🦸🏿", + "superhero_dark_skin_tone": "🦸🏿", + "woman_superhero": "🦸‍♀️", + "woman_superhero_tone1": "🦸🏻‍♀️", + "woman_superhero_light_skin_tone": "🦸🏻‍♀️", + "woman_superhero_tone2": "🦸🏼‍♀️", + "woman_superhero_medium_light_skin_tone": "🦸🏼‍♀️", + "woman_superhero_tone3": "🦸🏽‍♀️", + "woman_superhero_medium_skin_tone": "🦸🏽‍♀️", + "woman_superhero_tone4": "🦸🏾‍♀️", + "woman_superhero_medium_dark_skin_tone": "🦸🏾‍♀️", + "woman_superhero_tone5": "🦸🏿‍♀️", + "woman_superhero_dark_skin_tone": "🦸🏿‍♀️", + "man_superhero": "🦸‍♂️", + "man_superhero_tone1": "🦸🏻‍♂️", + "man_superhero_light_skin_tone": "🦸🏻‍♂️", + "man_superhero_tone2": "🦸🏼‍♂️", + "man_superhero_medium_light_skin_tone": "🦸🏼‍♂️", + "man_superhero_tone3": "🦸🏽‍♂️", + "man_superhero_medium_skin_tone": "🦸🏽‍♂️", + "man_superhero_tone4": "🦸🏾‍♂️", + "man_superhero_medium_dark_skin_tone": "🦸🏾‍♂️", + "man_superhero_tone5": "🦸🏿‍♂️", + "man_superhero_dark_skin_tone": "🦸🏿‍♂️", + "supervillain": "🦹", + "supervillain_tone1": "🦹🏻", + "supervillain_light_skin_tone": "🦹🏻", + "supervillain_tone2": "🦹🏼", + "supervillain_medium_light_skin_tone": "🦹🏼", + "supervillain_tone3": "🦹🏽", + "supervillain_medium_skin_tone": "🦹🏽", + "supervillain_tone4": "🦹🏾", + "supervillain_medium_dark_skin_tone": "🦹🏾", + "supervillain_tone5": "🦹🏿", + "supervillain_dark_skin_tone": "🦹🏿", + "woman_supervillain": "🦹‍♀️", + "woman_supervillain_tone1": "🦹🏻‍♀️", + "woman_supervillain_light_skin_tone": "🦹🏻‍♀️", + "woman_supervillain_tone2": "🦹🏼‍♀️", + "woman_supervillain_medium_light_skin_tone": "🦹🏼‍♀️", + "woman_supervillain_tone3": "🦹🏽‍♀️", + "woman_supervillain_medium_skin_tone": "🦹🏽‍♀️", + "woman_supervillain_tone4": "🦹🏾‍♀️", + "woman_supervillain_medium_dark_skin_tone": "🦹🏾‍♀️", + "woman_supervillain_tone5": "🦹🏿‍♀️", + "woman_supervillain_dark_skin_tone": "🦹🏿‍♀️", + "man_supervillain": "🦹‍♂️", + "man_supervillain_tone1": "🦹🏻‍♂️", + "man_supervillain_light_skin_tone": "🦹🏻‍♂️", + "man_supervillain_tone2": "🦹🏼‍♂️", + "man_supervillain_medium_light_skin_tone": "🦹🏼‍♂️", + "man_supervillain_tone3": "🦹🏽‍♂️", + "man_supervillain_medium_skin_tone": "🦹🏽‍♂️", + "man_supervillain_tone4": "🦹🏾‍♂️", + "man_supervillain_medium_dark_skin_tone": "🦹🏾‍♂️", + "man_supervillain_tone5": "🦹🏿‍♂️", + "man_supervillain_dark_skin_tone": "🦹🏿‍♂️", + "ninja": "🥷", + "ninja_tone1": "🥷🏻", + "ninja_light_skin_tone": "🥷🏻", + "ninja_tone2": "🥷🏼", + "ninja_medium_light_skin_tone": "🥷🏼", + "ninja_tone3": "🥷🏽", + "ninja_medium_skin_tone": "🥷🏽", + "ninja_tone4": "🥷🏾", + "ninja_medium_dark_skin_tone": "🥷🏾", + "ninja_tone5": "🥷🏿", + "ninja_dark_skin_tone": "🥷🏿", + "mx_claus": "🧑‍🎄", + "mx_claus_tone1": "🧑🏻‍🎄", + "mx_claus_light_skin_tone": "🧑🏻‍🎄", + "mx_claus_tone2": "🧑🏼‍🎄", + "mx_claus_medium_light_skin_tone": "🧑🏼‍🎄", + "mx_claus_tone3": "🧑🏽‍🎄", + "mx_claus_medium_skin_tone": "🧑🏽‍🎄", + "mx_claus_tone4": "🧑🏾‍🎄", + "mx_claus_medium_dark_skin_tone": "🧑🏾‍🎄", + "mx_claus_tone5": "🧑🏿‍🎄", + "mx_claus_dark_skin_tone": "🧑🏿‍🎄", + "mrs_claus": "🤶", + "mother_christmas": "🤶", + "mrs_claus_tone1": "🤶🏻", + "mother_christmas_tone1": "🤶🏻", + "mrs_claus_tone2": "🤶🏼", + "mother_christmas_tone2": "🤶🏼", + "mrs_claus_tone3": "🤶🏽", + "mother_christmas_tone3": "🤶🏽", + "mrs_claus_tone4": "🤶🏾", + "mother_christmas_tone4": "🤶🏾", + "mrs_claus_tone5": "🤶🏿", + "mother_christmas_tone5": "🤶🏿", + "santa": "🎅", + "santa_claus": "🎅", + "santa_tone1": "🎅🏻", + "santa_tone2": "🎅🏼", + "santa_tone3": "🎅🏽", + "santa_tone4": "🎅🏾", + "santa_tone5": "🎅🏿", + "mage": "🧙", + "mage_tone1": "🧙🏻", + "mage_light_skin_tone": "🧙🏻", + "mage_tone2": "🧙🏼", + "mage_medium_light_skin_tone": "🧙🏼", + "mage_tone3": "🧙🏽", + "mage_medium_skin_tone": "🧙🏽", + "mage_tone4": "🧙🏾", + "mage_medium_dark_skin_tone": "🧙🏾", + "mage_tone5": "🧙🏿", + "mage_dark_skin_tone": "🧙🏿", + "woman_mage": "🧙‍♀️", + "woman_mage_tone1": "🧙🏻‍♀️", + "woman_mage_light_skin_tone": "🧙🏻‍♀️", + "woman_mage_tone2": "🧙🏼‍♀️", + "woman_mage_medium_light_skin_tone": "🧙🏼‍♀️", + "woman_mage_tone3": "🧙🏽‍♀️", + "woman_mage_medium_skin_tone": "🧙🏽‍♀️", + "woman_mage_tone4": "🧙🏾‍♀️", + "woman_mage_medium_dark_skin_tone": "🧙🏾‍♀️", + "woman_mage_tone5": "🧙🏿‍♀️", + "woman_mage_dark_skin_tone": "🧙🏿‍♀️", + "man_mage": "🧙‍♂️", + "man_mage_tone1": "🧙🏻‍♂️", + "man_mage_light_skin_tone": "🧙🏻‍♂️", + "man_mage_tone2": "🧙🏼‍♂️", + "man_mage_medium_light_skin_tone": "🧙🏼‍♂️", + "man_mage_tone3": "🧙🏽‍♂️", + "man_mage_medium_skin_tone": "🧙🏽‍♂️", + "man_mage_tone4": "🧙🏾‍♂️", + "man_mage_medium_dark_skin_tone": "🧙🏾‍♂️", + "man_mage_tone5": "🧙🏿‍♂️", + "man_mage_dark_skin_tone": "🧙🏿‍♂️", + "elf": "🧝", + "elf_tone1": "🧝🏻", + "elf_light_skin_tone": "🧝🏻", + "elf_tone2": "🧝🏼", + "elf_medium_light_skin_tone": "🧝🏼", + "elf_tone3": "🧝🏽", + "elf_medium_skin_tone": "🧝🏽", + "elf_tone4": "🧝🏾", + "elf_medium_dark_skin_tone": "🧝🏾", + "elf_tone5": "🧝🏿", + "elf_dark_skin_tone": "🧝🏿", + "woman_elf": "🧝‍♀️", + "woman_elf_tone1": "🧝🏻‍♀️", + "woman_elf_light_skin_tone": "🧝🏻‍♀️", + "woman_elf_tone2": "🧝🏼‍♀️", + "woman_elf_medium_light_skin_tone": "🧝🏼‍♀️", + "woman_elf_tone3": "🧝🏽‍♀️", + "woman_elf_medium_skin_tone": "🧝🏽‍♀️", + "woman_elf_tone4": "🧝🏾‍♀️", + "woman_elf_medium_dark_skin_tone": "🧝🏾‍♀️", + "woman_elf_tone5": "🧝🏿‍♀️", + "woman_elf_dark_skin_tone": "🧝🏿‍♀️", + "man_elf": "🧝‍♂️", + "man_elf_tone1": "🧝🏻‍♂️", + "man_elf_light_skin_tone": "🧝🏻‍♂️", + "man_elf_tone2": "🧝🏼‍♂️", + "man_elf_medium_light_skin_tone": "🧝🏼‍♂️", + "man_elf_tone3": "🧝🏽‍♂️", + "man_elf_medium_skin_tone": "🧝🏽‍♂️", + "man_elf_tone4": "🧝🏾‍♂️", + "man_elf_medium_dark_skin_tone": "🧝🏾‍♂️", + "man_elf_tone5": "🧝🏿‍♂️", + "man_elf_dark_skin_tone": "🧝🏿‍♂️", + "troll": "🧌", + "vampire": "🧛", + "vampire_tone1": "🧛🏻", + "vampire_light_skin_tone": "🧛🏻", + "vampire_tone2": "🧛🏼", + "vampire_medium_light_skin_tone": "🧛🏼", + "vampire_tone3": "🧛🏽", + "vampire_medium_skin_tone": "🧛🏽", + "vampire_tone4": "🧛🏾", + "vampire_medium_dark_skin_tone": "🧛🏾", + "vampire_tone5": "🧛🏿", + "vampire_dark_skin_tone": "🧛🏿", + "woman_vampire": "🧛‍♀️", + "woman_vampire_tone1": "🧛🏻‍♀️", + "woman_vampire_light_skin_tone": "🧛🏻‍♀️", + "woman_vampire_tone2": "🧛🏼‍♀️", + "woman_vampire_medium_light_skin_tone": "🧛🏼‍♀️", + "woman_vampire_tone3": "🧛🏽‍♀️", + "woman_vampire_medium_skin_tone": "🧛🏽‍♀️", + "woman_vampire_tone4": "🧛🏾‍♀️", + "woman_vampire_medium_dark_skin_tone": "🧛🏾‍♀️", + "woman_vampire_tone5": "🧛🏿‍♀️", + "woman_vampire_dark_skin_tone": "🧛🏿‍♀️", + "man_vampire": "🧛‍♂️", + "man_vampire_tone1": "🧛🏻‍♂️", + "man_vampire_light_skin_tone": "🧛🏻‍♂️", + "man_vampire_tone2": "🧛🏼‍♂️", + "man_vampire_medium_light_skin_tone": "🧛🏼‍♂️", + "man_vampire_tone3": "🧛🏽‍♂️", + "man_vampire_medium_skin_tone": "🧛🏽‍♂️", + "man_vampire_tone4": "🧛🏾‍♂️", + "man_vampire_medium_dark_skin_tone": "🧛🏾‍♂️", + "man_vampire_tone5": "🧛🏿‍♂️", + "man_vampire_dark_skin_tone": "🧛🏿‍♂️", + "zombie": "🧟", + "woman_zombie": "🧟‍♀️", + "man_zombie": "🧟‍♂️", + "genie": "🧞", + "woman_genie": "🧞‍♀️", + "man_genie": "🧞‍♂️", + "merperson": "🧜", + "merperson_tone1": "🧜🏻", + "merperson_light_skin_tone": "🧜🏻", + "merperson_tone2": "🧜🏼", + "merperson_medium_light_skin_tone": "🧜🏼", + "merperson_tone3": "🧜🏽", + "merperson_medium_skin_tone": "🧜🏽", + "merperson_tone4": "🧜🏾", + "merperson_medium_dark_skin_tone": "🧜🏾", + "merperson_tone5": "🧜🏿", + "merperson_dark_skin_tone": "🧜🏿", + "mermaid": "🧜‍♀️", + "mermaid_tone1": "🧜🏻‍♀️", + "mermaid_light_skin_tone": "🧜🏻‍♀️", + "mermaid_tone2": "🧜🏼‍♀️", + "mermaid_medium_light_skin_tone": "🧜🏼‍♀️", + "mermaid_tone3": "🧜🏽‍♀️", + "mermaid_medium_skin_tone": "🧜🏽‍♀️", + "mermaid_tone4": "🧜🏾‍♀️", + "mermaid_medium_dark_skin_tone": "🧜🏾‍♀️", + "mermaid_tone5": "🧜🏿‍♀️", + "mermaid_dark_skin_tone": "🧜🏿‍♀️", + "merman": "🧜‍♂️", + "merman_tone1": "🧜🏻‍♂️", + "merman_light_skin_tone": "🧜🏻‍♂️", + "merman_tone2": "🧜🏼‍♂️", + "merman_medium_light_skin_tone": "🧜🏼‍♂️", + "merman_tone3": "🧜🏽‍♂️", + "merman_medium_skin_tone": "🧜🏽‍♂️", + "merman_tone4": "🧜🏾‍♂️", + "merman_medium_dark_skin_tone": "🧜🏾‍♂️", + "merman_tone5": "🧜🏿‍♂️", + "merman_dark_skin_tone": "🧜🏿‍♂️", + "fairy": "🧚", + "fairy_tone1": "🧚🏻", + "fairy_light_skin_tone": "🧚🏻", + "fairy_tone2": "🧚🏼", + "fairy_medium_light_skin_tone": "🧚🏼", + "fairy_tone3": "🧚🏽", + "fairy_medium_skin_tone": "🧚🏽", + "fairy_tone4": "🧚🏾", + "fairy_medium_dark_skin_tone": "🧚🏾", + "fairy_tone5": "🧚🏿", + "fairy_dark_skin_tone": "🧚🏿", + "woman_fairy": "🧚‍♀️", + "woman_fairy_tone1": "🧚🏻‍♀️", + "woman_fairy_light_skin_tone": "🧚🏻‍♀️", + "woman_fairy_tone2": "🧚🏼‍♀️", + "woman_fairy_medium_light_skin_tone": "🧚🏼‍♀️", + "woman_fairy_tone3": "🧚🏽‍♀️", + "woman_fairy_medium_skin_tone": "🧚🏽‍♀️", + "woman_fairy_tone4": "🧚🏾‍♀️", + "woman_fairy_medium_dark_skin_tone": "🧚🏾‍♀️", + "woman_fairy_tone5": "🧚🏿‍♀️", + "woman_fairy_dark_skin_tone": "🧚🏿‍♀️", + "man_fairy": "🧚‍♂️", + "man_fairy_tone1": "🧚🏻‍♂️", + "man_fairy_light_skin_tone": "🧚🏻‍♂️", + "man_fairy_tone2": "🧚🏼‍♂️", + "man_fairy_medium_light_skin_tone": "🧚🏼‍♂️", + "man_fairy_tone3": "🧚🏽‍♂️", + "man_fairy_medium_skin_tone": "🧚🏽‍♂️", + "man_fairy_tone4": "🧚🏾‍♂️", + "man_fairy_medium_dark_skin_tone": "🧚🏾‍♂️", + "man_fairy_tone5": "🧚🏿‍♂️", + "man_fairy_dark_skin_tone": "🧚🏿‍♂️", + "angel": "👼", + "baby_angel": "👼", + "angel_tone1": "👼🏻", + "angel_tone2": "👼🏼", + "angel_tone3": "👼🏽", + "angel_tone4": "👼🏾", + "angel_tone5": "👼🏿", + "pregnant_person": "🫄", + "pregnant_person_tone1": "🫄🏻", + "pregnant_person_light_skin_tone": "🫄🏻", + "pregnant_person_tone2": "🫄🏼", + "pregnant_person_medium_light_skin_tone": "🫄🏼", + "pregnant_person_tone3": "🫄🏽", + "pregnant_person_medium_skin_tone": "🫄🏽", + "pregnant_person_tone4": "🫄🏾", + "pregnant_person_medium_dark_skin_tone": "🫄🏾", + "pregnant_person_tone5": "🫄🏿", + "pregnant_person_dark_skin_tone": "🫄🏿", + "pregnant_woman": "🤰", + "expecting_woman": "🤰", + "pregnant_woman_tone1": "🤰🏻", + "expecting_woman_tone1": "🤰🏻", + "pregnant_woman_tone2": "🤰🏼", + "expecting_woman_tone2": "🤰🏼", + "pregnant_woman_tone3": "🤰🏽", + "expecting_woman_tone3": "🤰🏽", + "pregnant_woman_tone4": "🤰🏾", + "expecting_woman_tone4": "🤰🏾", + "pregnant_woman_tone5": "🤰🏿", + "expecting_woman_tone5": "🤰🏿", + "pregnant_man": "🫃", + "pregnant_man_tone1": "🫃🏻", + "pregnant_man_light_skin_tone": "🫃🏻", + "pregnant_man_tone2": "🫃🏼", + "pregnant_man_medium_light_skin_tone": "🫃🏼", + "pregnant_man_tone3": "🫃🏽", + "pregnant_man_medium_skin_tone": "🫃🏽", + "pregnant_man_tone4": "🫃🏾", + "pregnant_man_medium_dark_skin_tone": "🫃🏾", + "pregnant_man_tone5": "🫃🏿", + "pregnant_man_dark_skin_tone": "🫃🏿", + "breast_feeding": "🤱", + "breast_feeding_tone1": "🤱🏻", + "breast_feeding_light_skin_tone": "🤱🏻", + "breast_feeding_tone2": "🤱🏼", + "breast_feeding_medium_light_skin_tone": "🤱🏼", + "breast_feeding_tone3": "🤱🏽", + "breast_feeding_medium_skin_tone": "🤱🏽", + "breast_feeding_tone4": "🤱🏾", + "breast_feeding_medium_dark_skin_tone": "🤱🏾", + "breast_feeding_tone5": "🤱🏿", + "breast_feeding_dark_skin_tone": "🤱🏿", + "person_feeding_baby": "🧑‍🍼", + "person_feeding_baby_tone1": "🧑🏻‍🍼", + "person_feeding_baby_light_skin_tone": "🧑🏻‍🍼", + "person_feeding_baby_tone2": "🧑🏼‍🍼", + "person_feeding_baby_medium_light_skin_tone": "🧑🏼‍🍼", + "person_feeding_baby_tone3": "🧑🏽‍🍼", + "person_feeding_baby_medium_skin_tone": "🧑🏽‍🍼", + "person_feeding_baby_tone4": "🧑🏾‍🍼", + "person_feeding_baby_medium_dark_skin_tone": "🧑🏾‍🍼", + "person_feeding_baby_tone5": "🧑🏿‍🍼", + "person_feeding_baby_dark_skin_tone": "🧑🏿‍🍼", + "woman_feeding_baby": "👩‍🍼", + "woman_feeding_baby_tone1": "👩🏻‍🍼", + "woman_feeding_baby_light_skin_tone": "👩🏻‍🍼", + "woman_feeding_baby_tone2": "👩🏼‍🍼", + "woman_feeding_baby_medium_light_skin_tone": "👩🏼‍🍼", + "woman_feeding_baby_tone3": "👩🏽‍🍼", + "woman_feeding_baby_medium_skin_tone": "👩🏽‍🍼", + "woman_feeding_baby_tone4": "👩🏾‍🍼", + "woman_feeding_baby_medium_dark_skin_tone": "👩🏾‍🍼", + "woman_feeding_baby_tone5": "👩🏿‍🍼", + "woman_feeding_baby_dark_skin_tone": "👩🏿‍🍼", + "man_feeding_baby": "👨‍🍼", + "man_feeding_baby_tone1": "👨🏻‍🍼", + "man_feeding_baby_light_skin_tone": "👨🏻‍🍼", + "man_feeding_baby_tone2": "👨🏼‍🍼", + "man_feeding_baby_medium_light_skin_tone": "👨🏼‍🍼", + "man_feeding_baby_tone3": "👨🏽‍🍼", + "man_feeding_baby_medium_skin_tone": "👨🏽‍🍼", + "man_feeding_baby_tone4": "👨🏾‍🍼", + "man_feeding_baby_medium_dark_skin_tone": "👨🏾‍🍼", + "man_feeding_baby_tone5": "👨🏿‍🍼", + "man_feeding_baby_dark_skin_tone": "👨🏿‍🍼", + "person_bowing": "🙇", + "bow": "🙇", + "person_bowing_tone1": "🙇🏻", + "bow_tone1": "🙇🏻", + "person_bowing_tone2": "🙇🏼", + "bow_tone2": "🙇🏼", + "person_bowing_tone3": "🙇🏽", + "bow_tone3": "🙇🏽", + "person_bowing_tone4": "🙇🏾", + "bow_tone4": "🙇🏾", + "person_bowing_tone5": "🙇🏿", + "bow_tone5": "🙇🏿", + "woman_bowing": "🙇‍♀️", + "woman_bowing_tone1": "🙇🏻‍♀️", + "woman_bowing_light_skin_tone": "🙇🏻‍♀️", + "woman_bowing_tone2": "🙇🏼‍♀️", + "woman_bowing_medium_light_skin_tone": "🙇🏼‍♀️", + "woman_bowing_tone3": "🙇🏽‍♀️", + "woman_bowing_medium_skin_tone": "🙇🏽‍♀️", + "woman_bowing_tone4": "🙇🏾‍♀️", + "woman_bowing_medium_dark_skin_tone": "🙇🏾‍♀️", + "woman_bowing_tone5": "🙇🏿‍♀️", + "woman_bowing_dark_skin_tone": "🙇🏿‍♀️", + "man_bowing": "🙇‍♂️", + "man_bowing_tone1": "🙇🏻‍♂️", + "man_bowing_light_skin_tone": "🙇🏻‍♂️", + "man_bowing_tone2": "🙇🏼‍♂️", + "man_bowing_medium_light_skin_tone": "🙇🏼‍♂️", + "man_bowing_tone3": "🙇🏽‍♂️", + "man_bowing_medium_skin_tone": "🙇🏽‍♂️", + "man_bowing_tone4": "🙇🏾‍♂️", + "man_bowing_medium_dark_skin_tone": "🙇🏾‍♂️", + "man_bowing_tone5": "🙇🏿‍♂️", + "man_bowing_dark_skin_tone": "🙇🏿‍♂️", + "person_tipping_hand": "💁", + "information_desk_person": "💁", + "person_tipping_hand_tone1": "💁🏻", + "information_desk_person_tone1": "💁🏻", + "person_tipping_hand_tone2": "💁🏼", + "information_desk_person_tone2": "💁🏼", + "person_tipping_hand_tone3": "💁🏽", + "information_desk_person_tone3": "💁🏽", + "person_tipping_hand_tone4": "💁🏾", + "information_desk_person_tone4": "💁🏾", + "person_tipping_hand_tone5": "💁🏿", + "information_desk_person_tone5": "💁🏿", + "woman_tipping_hand": "💁‍♀️", + "woman_tipping_hand_tone1": "💁🏻‍♀️", + "woman_tipping_hand_light_skin_tone": "💁🏻‍♀️", + "woman_tipping_hand_tone2": "💁🏼‍♀️", + "woman_tipping_hand_medium_light_skin_tone": "💁🏼‍♀️", + "woman_tipping_hand_tone3": "💁🏽‍♀️", + "woman_tipping_hand_medium_skin_tone": "💁🏽‍♀️", + "woman_tipping_hand_tone4": "💁🏾‍♀️", + "woman_tipping_hand_medium_dark_skin_tone": "💁🏾‍♀️", + "woman_tipping_hand_tone5": "💁🏿‍♀️", + "woman_tipping_hand_dark_skin_tone": "💁🏿‍♀️", + "man_tipping_hand": "💁‍♂️", + "man_tipping_hand_tone1": "💁🏻‍♂️", + "man_tipping_hand_light_skin_tone": "💁🏻‍♂️", + "man_tipping_hand_tone2": "💁🏼‍♂️", + "man_tipping_hand_medium_light_skin_tone": "💁🏼‍♂️", + "man_tipping_hand_tone3": "💁🏽‍♂️", + "man_tipping_hand_medium_skin_tone": "💁🏽‍♂️", + "man_tipping_hand_tone4": "💁🏾‍♂️", + "man_tipping_hand_medium_dark_skin_tone": "💁🏾‍♂️", + "man_tipping_hand_tone5": "💁🏿‍♂️", + "man_tipping_hand_dark_skin_tone": "💁🏿‍♂️", + "person_gesturing_no": "🙅", + "no_good": "🙅", + "person_gesturing_no_tone1": "🙅🏻", + "no_good_tone1": "🙅🏻", + "person_gesturing_no_tone2": "🙅🏼", + "no_good_tone2": "🙅🏼", + "person_gesturing_no_tone3": "🙅🏽", + "no_good_tone3": "🙅🏽", + "person_gesturing_no_tone4": "🙅🏾", + "no_good_tone4": "🙅🏾", + "person_gesturing_no_tone5": "🙅🏿", + "no_good_tone5": "🙅🏿", + "woman_gesturing_no": "🙅‍♀️", + "woman_gesturing_no_tone1": "🙅🏻‍♀️", + "woman_gesturing_no_light_skin_tone": "🙅🏻‍♀️", + "woman_gesturing_no_tone2": "🙅🏼‍♀️", + "woman_gesturing_no_medium_light_skin_tone": "🙅🏼‍♀️", + "woman_gesturing_no_tone3": "🙅🏽‍♀️", + "woman_gesturing_no_medium_skin_tone": "🙅🏽‍♀️", + "woman_gesturing_no_tone4": "🙅🏾‍♀️", + "woman_gesturing_no_medium_dark_skin_tone": "🙅🏾‍♀️", + "woman_gesturing_no_tone5": "🙅🏿‍♀️", + "woman_gesturing_no_dark_skin_tone": "🙅🏿‍♀️", + "man_gesturing_no": "🙅‍♂️", + "man_gesturing_no_tone1": "🙅🏻‍♂️", + "man_gesturing_no_light_skin_tone": "🙅🏻‍♂️", + "man_gesturing_no_tone2": "🙅🏼‍♂️", + "man_gesturing_no_medium_light_skin_tone": "🙅🏼‍♂️", + "man_gesturing_no_tone3": "🙅🏽‍♂️", + "man_gesturing_no_medium_skin_tone": "🙅🏽‍♂️", + "man_gesturing_no_tone4": "🙅🏾‍♂️", + "man_gesturing_no_medium_dark_skin_tone": "🙅🏾‍♂️", + "man_gesturing_no_tone5": "🙅🏿‍♂️", + "man_gesturing_no_dark_skin_tone": "🙅🏿‍♂️", + "person_gesturing_ok": "🙆", + "person_gesturing_ok_tone1": "🙆🏻", + "person_gesturing_ok_tone2": "🙆🏼", + "person_gesturing_ok_tone3": "🙆🏽", + "person_gesturing_ok_tone4": "🙆🏾", + "person_gesturing_ok_tone5": "🙆🏿", + "woman_gesturing_ok": "🙆‍♀️", + "woman_gesturing_ok_tone1": "🙆🏻‍♀️", + "woman_gesturing_ok_light_skin_tone": "🙆🏻‍♀️", + "woman_gesturing_ok_tone2": "🙆🏼‍♀️", + "woman_gesturing_ok_medium_light_skin_tone": "🙆🏼‍♀️", + "woman_gesturing_ok_tone3": "🙆🏽‍♀️", + "woman_gesturing_ok_medium_skin_tone": "🙆🏽‍♀️", + "woman_gesturing_ok_tone4": "🙆🏾‍♀️", + "woman_gesturing_ok_medium_dark_skin_tone": "🙆🏾‍♀️", + "woman_gesturing_ok_tone5": "🙆🏿‍♀️", + "woman_gesturing_ok_dark_skin_tone": "🙆🏿‍♀️", + "man_gesturing_ok": "🙆‍♂️", + "man_gesturing_ok_tone1": "🙆🏻‍♂️", + "man_gesturing_ok_light_skin_tone": "🙆🏻‍♂️", + "man_gesturing_ok_tone2": "🙆🏼‍♂️", + "man_gesturing_ok_medium_light_skin_tone": "🙆🏼‍♂️", + "man_gesturing_ok_tone3": "🙆🏽‍♂️", + "man_gesturing_ok_medium_skin_tone": "🙆🏽‍♂️", + "man_gesturing_ok_tone4": "🙆🏾‍♂️", + "man_gesturing_ok_medium_dark_skin_tone": "🙆🏾‍♂️", + "man_gesturing_ok_tone5": "🙆🏿‍♂️", + "man_gesturing_ok_dark_skin_tone": "🙆🏿‍♂️", + "person_raising_hand": "🙋", + "raising_hand": "🙋", + "person_raising_hand_tone1": "🙋🏻", + "raising_hand_tone1": "🙋🏻", + "person_raising_hand_tone2": "🙋🏼", + "raising_hand_tone2": "🙋🏼", + "person_raising_hand_tone3": "🙋🏽", + "raising_hand_tone3": "🙋🏽", + "person_raising_hand_tone4": "🙋🏾", + "raising_hand_tone4": "🙋🏾", + "person_raising_hand_tone5": "🙋🏿", + "raising_hand_tone5": "🙋🏿", + "woman_raising_hand": "🙋‍♀️", + "woman_raising_hand_tone1": "🙋🏻‍♀️", + "woman_raising_hand_light_skin_tone": "🙋🏻‍♀️", + "woman_raising_hand_tone2": "🙋🏼‍♀️", + "woman_raising_hand_medium_light_skin_tone": "🙋🏼‍♀️", + "woman_raising_hand_tone3": "🙋🏽‍♀️", + "woman_raising_hand_medium_skin_tone": "🙋🏽‍♀️", + "woman_raising_hand_tone4": "🙋🏾‍♀️", + "woman_raising_hand_medium_dark_skin_tone": "🙋🏾‍♀️", + "woman_raising_hand_tone5": "🙋🏿‍♀️", + "woman_raising_hand_dark_skin_tone": "🙋🏿‍♀️", + "man_raising_hand": "🙋‍♂️", + "man_raising_hand_tone1": "🙋🏻‍♂️", + "man_raising_hand_light_skin_tone": "🙋🏻‍♂️", + "man_raising_hand_tone2": "🙋🏼‍♂️", + "man_raising_hand_medium_light_skin_tone": "🙋🏼‍♂️", + "man_raising_hand_tone3": "🙋🏽‍♂️", + "man_raising_hand_medium_skin_tone": "🙋🏽‍♂️", + "man_raising_hand_tone4": "🙋🏾‍♂️", + "man_raising_hand_medium_dark_skin_tone": "🙋🏾‍♂️", + "man_raising_hand_tone5": "🙋🏿‍♂️", + "man_raising_hand_dark_skin_tone": "🙋🏿‍♂️", + "deaf_person": "🧏", + "deaf_person_tone1": "🧏🏻", + "deaf_person_light_skin_tone": "🧏🏻", + "deaf_person_tone2": "🧏🏼", + "deaf_person_medium_light_skin_tone": "🧏🏼", + "deaf_person_tone3": "🧏🏽", + "deaf_person_medium_skin_tone": "🧏🏽", + "deaf_person_tone4": "🧏🏾", + "deaf_person_medium_dark_skin_tone": "🧏🏾", + "deaf_person_tone5": "🧏🏿", + "deaf_person_dark_skin_tone": "🧏🏿", + "deaf_woman": "🧏‍♀️", + "deaf_woman_tone1": "🧏🏻‍♀️", + "deaf_woman_light_skin_tone": "🧏🏻‍♀️", + "deaf_woman_tone2": "🧏🏼‍♀️", + "deaf_woman_medium_light_skin_tone": "🧏🏼‍♀️", + "deaf_woman_tone3": "🧏🏽‍♀️", + "deaf_woman_medium_skin_tone": "🧏🏽‍♀️", + "deaf_woman_tone4": "🧏🏾‍♀️", + "deaf_woman_medium_dark_skin_tone": "🧏🏾‍♀️", + "deaf_woman_tone5": "🧏🏿‍♀️", + "deaf_woman_dark_skin_tone": "🧏🏿‍♀️", + "deaf_man": "🧏‍♂️", + "deaf_man_tone1": "🧏🏻‍♂️", + "deaf_man_light_skin_tone": "🧏🏻‍♂️", + "deaf_man_tone2": "🧏🏼‍♂️", + "deaf_man_medium_light_skin_tone": "🧏🏼‍♂️", + "deaf_man_tone3": "🧏🏽‍♂️", + "deaf_man_medium_skin_tone": "🧏🏽‍♂️", + "deaf_man_tone4": "🧏🏾‍♂️", + "deaf_man_medium_dark_skin_tone": "🧏🏾‍♂️", + "deaf_man_tone5": "🧏🏿‍♂️", + "deaf_man_dark_skin_tone": "🧏🏿‍♂️", + "person_facepalming": "🤦", + "face_palm": "🤦", + "facepalm": "🤦", + "person_facepalming_tone1": "🤦🏻", + "face_palm_tone1": "🤦🏻", + "facepalm_tone1": "🤦🏻", + "person_facepalming_tone2": "🤦🏼", + "face_palm_tone2": "🤦🏼", + "facepalm_tone2": "🤦🏼", + "person_facepalming_tone3": "🤦🏽", + "face_palm_tone3": "🤦🏽", + "facepalm_tone3": "🤦🏽", + "person_facepalming_tone4": "🤦🏾", + "face_palm_tone4": "🤦🏾", + "facepalm_tone4": "🤦🏾", + "person_facepalming_tone5": "🤦🏿", + "face_palm_tone5": "🤦🏿", + "facepalm_tone5": "🤦🏿", + "woman_facepalming": "🤦‍♀️", + "woman_facepalming_tone1": "🤦🏻‍♀️", + "woman_facepalming_light_skin_tone": "🤦🏻‍♀️", + "woman_facepalming_tone2": "🤦🏼‍♀️", + "woman_facepalming_medium_light_skin_tone": "🤦🏼‍♀️", + "woman_facepalming_tone3": "🤦🏽‍♀️", + "woman_facepalming_medium_skin_tone": "🤦🏽‍♀️", + "woman_facepalming_tone4": "🤦🏾‍♀️", + "woman_facepalming_medium_dark_skin_tone": "🤦🏾‍♀️", + "woman_facepalming_tone5": "🤦🏿‍♀️", + "woman_facepalming_dark_skin_tone": "🤦🏿‍♀️", + "man_facepalming": "🤦‍♂️", + "man_facepalming_tone1": "🤦🏻‍♂️", + "man_facepalming_light_skin_tone": "🤦🏻‍♂️", + "man_facepalming_tone2": "🤦🏼‍♂️", + "man_facepalming_medium_light_skin_tone": "🤦🏼‍♂️", + "man_facepalming_tone3": "🤦🏽‍♂️", + "man_facepalming_medium_skin_tone": "🤦🏽‍♂️", + "man_facepalming_tone4": "🤦🏾‍♂️", + "man_facepalming_medium_dark_skin_tone": "🤦🏾‍♂️", + "man_facepalming_tone5": "🤦🏿‍♂️", + "man_facepalming_dark_skin_tone": "🤦🏿‍♂️", + "person_shrugging": "🤷", + "shrug": "🤷", + "person_shrugging_tone1": "🤷🏻", + "shrug_tone1": "🤷🏻", + "person_shrugging_tone2": "🤷🏼", + "shrug_tone2": "🤷🏼", + "person_shrugging_tone3": "🤷🏽", + "shrug_tone3": "🤷🏽", + "person_shrugging_tone4": "🤷🏾", + "shrug_tone4": "🤷🏾", + "person_shrugging_tone5": "🤷🏿", + "shrug_tone5": "🤷🏿", + "woman_shrugging": "🤷‍♀️", + "woman_shrugging_tone1": "🤷🏻‍♀️", + "woman_shrugging_light_skin_tone": "🤷🏻‍♀️", + "woman_shrugging_tone2": "🤷🏼‍♀️", + "woman_shrugging_medium_light_skin_tone": "🤷🏼‍♀️", + "woman_shrugging_tone3": "🤷🏽‍♀️", + "woman_shrugging_medium_skin_tone": "🤷🏽‍♀️", + "woman_shrugging_tone4": "🤷🏾‍♀️", + "woman_shrugging_medium_dark_skin_tone": "🤷🏾‍♀️", + "woman_shrugging_tone5": "🤷🏿‍♀️", + "woman_shrugging_dark_skin_tone": "🤷🏿‍♀️", + "man_shrugging": "🤷‍♂️", + "man_shrugging_tone1": "🤷🏻‍♂️", + "man_shrugging_light_skin_tone": "🤷🏻‍♂️", + "man_shrugging_tone2": "🤷🏼‍♂️", + "man_shrugging_medium_light_skin_tone": "🤷🏼‍♂️", + "man_shrugging_tone3": "🤷🏽‍♂️", + "man_shrugging_medium_skin_tone": "🤷🏽‍♂️", + "man_shrugging_tone4": "🤷🏾‍♂️", + "man_shrugging_medium_dark_skin_tone": "🤷🏾‍♂️", + "man_shrugging_tone5": "🤷🏿‍♂️", + "man_shrugging_dark_skin_tone": "🤷🏿‍♂️", + "person_pouting": "🙎", + "person_with_pouting_face": "🙎", + "person_pouting_tone1": "🙎🏻", + "person_with_pouting_face_tone1": "🙎🏻", + "person_pouting_tone2": "🙎🏼", + "person_with_pouting_face_tone2": "🙎🏼", + "person_pouting_tone3": "🙎🏽", + "person_with_pouting_face_tone3": "🙎🏽", + "person_pouting_tone4": "🙎🏾", + "person_with_pouting_face_tone4": "🙎🏾", + "person_pouting_tone5": "🙎🏿", + "person_with_pouting_face_tone5": "🙎🏿", + "woman_pouting": "🙎‍♀️", + "woman_pouting_tone1": "🙎🏻‍♀️", + "woman_pouting_light_skin_tone": "🙎🏻‍♀️", + "woman_pouting_tone2": "🙎🏼‍♀️", + "woman_pouting_medium_light_skin_tone": "🙎🏼‍♀️", + "woman_pouting_tone3": "🙎🏽‍♀️", + "woman_pouting_medium_skin_tone": "🙎🏽‍♀️", + "woman_pouting_tone4": "🙎🏾‍♀️", + "woman_pouting_medium_dark_skin_tone": "🙎🏾‍♀️", + "woman_pouting_tone5": "🙎🏿‍♀️", + "woman_pouting_dark_skin_tone": "🙎🏿‍♀️", + "man_pouting": "🙎‍♂️", + "man_pouting_tone1": "🙎🏻‍♂️", + "man_pouting_light_skin_tone": "🙎🏻‍♂️", + "man_pouting_tone2": "🙎🏼‍♂️", + "man_pouting_medium_light_skin_tone": "🙎🏼‍♂️", + "man_pouting_tone3": "🙎🏽‍♂️", + "man_pouting_medium_skin_tone": "🙎🏽‍♂️", + "man_pouting_tone4": "🙎🏾‍♂️", + "man_pouting_medium_dark_skin_tone": "🙎🏾‍♂️", + "man_pouting_tone5": "🙎🏿‍♂️", + "man_pouting_dark_skin_tone": "🙎🏿‍♂️", + "person_frowning": "🙍", + "person_frowning_tone1": "🙍🏻", + "person_frowning_tone2": "🙍🏼", + "person_frowning_tone3": "🙍🏽", + "person_frowning_tone4": "🙍🏾", + "person_frowning_tone5": "🙍🏿", + "woman_frowning": "🙍‍♀️", + "woman_frowning_tone1": "🙍🏻‍♀️", + "woman_frowning_light_skin_tone": "🙍🏻‍♀️", + "woman_frowning_tone2": "🙍🏼‍♀️", + "woman_frowning_medium_light_skin_tone": "🙍🏼‍♀️", + "woman_frowning_tone3": "🙍🏽‍♀️", + "woman_frowning_medium_skin_tone": "🙍🏽‍♀️", + "woman_frowning_tone4": "🙍🏾‍♀️", + "woman_frowning_medium_dark_skin_tone": "🙍🏾‍♀️", + "woman_frowning_tone5": "🙍🏿‍♀️", + "woman_frowning_dark_skin_tone": "🙍🏿‍♀️", + "man_frowning": "🙍‍♂️", + "man_frowning_tone1": "🙍🏻‍♂️", + "man_frowning_light_skin_tone": "🙍🏻‍♂️", + "man_frowning_tone2": "🙍🏼‍♂️", + "man_frowning_medium_light_skin_tone": "🙍🏼‍♂️", + "man_frowning_tone3": "🙍🏽‍♂️", + "man_frowning_medium_skin_tone": "🙍🏽‍♂️", + "man_frowning_tone4": "🙍🏾‍♂️", + "man_frowning_medium_dark_skin_tone": "🙍🏾‍♂️", + "man_frowning_tone5": "🙍🏿‍♂️", + "man_frowning_dark_skin_tone": "🙍🏿‍♂️", + "person_getting_haircut": "💇", + "haircut": "💇", + "person_getting_haircut_tone1": "💇🏻", + "haircut_tone1": "💇🏻", + "person_getting_haircut_tone2": "💇🏼", + "haircut_tone2": "💇🏼", + "person_getting_haircut_tone3": "💇🏽", + "haircut_tone3": "💇🏽", + "person_getting_haircut_tone4": "💇🏾", + "haircut_tone4": "💇🏾", + "person_getting_haircut_tone5": "💇🏿", + "haircut_tone5": "💇🏿", + "woman_getting_haircut": "💇‍♀️", + "woman_getting_haircut_tone1": "💇🏻‍♀️", + "woman_getting_haircut_light_skin_tone": "💇🏻‍♀️", + "woman_getting_haircut_tone2": "💇🏼‍♀️", + "woman_getting_haircut_medium_light_skin_tone": "💇🏼‍♀️", + "woman_getting_haircut_tone3": "💇🏽‍♀️", + "woman_getting_haircut_medium_skin_tone": "💇🏽‍♀️", + "woman_getting_haircut_tone4": "💇🏾‍♀️", + "woman_getting_haircut_medium_dark_skin_tone": "💇🏾‍♀️", + "woman_getting_haircut_tone5": "💇🏿‍♀️", + "woman_getting_haircut_dark_skin_tone": "💇🏿‍♀️", + "man_getting_haircut": "💇‍♂️", + "man_getting_haircut_tone1": "💇🏻‍♂️", + "man_getting_haircut_light_skin_tone": "💇🏻‍♂️", + "man_getting_haircut_tone2": "💇🏼‍♂️", + "man_getting_haircut_medium_light_skin_tone": "💇🏼‍♂️", + "man_getting_haircut_tone3": "💇🏽‍♂️", + "man_getting_haircut_medium_skin_tone": "💇🏽‍♂️", + "man_getting_haircut_tone4": "💇🏾‍♂️", + "man_getting_haircut_medium_dark_skin_tone": "💇🏾‍♂️", + "man_getting_haircut_tone5": "💇🏿‍♂️", + "man_getting_haircut_dark_skin_tone": "💇🏿‍♂️", + "person_getting_massage": "💆", + "massage": "💆", + "person_getting_massage_tone1": "💆🏻", + "massage_tone1": "💆🏻", + "person_getting_massage_tone2": "💆🏼", + "massage_tone2": "💆🏼", + "person_getting_massage_tone3": "💆🏽", + "massage_tone3": "💆🏽", + "person_getting_massage_tone4": "💆🏾", + "massage_tone4": "💆🏾", + "person_getting_massage_tone5": "💆🏿", + "massage_tone5": "💆🏿", + "woman_getting_face_massage": "💆‍♀️", + "woman_getting_face_massage_tone1": "💆🏻‍♀️", + "woman_getting_face_massage_light_skin_tone": "💆🏻‍♀️", + "woman_getting_face_massage_tone2": "💆🏼‍♀️", + "woman_getting_face_massage_medium_light_skin_tone": "💆🏼‍♀️", + "woman_getting_face_massage_tone3": "💆🏽‍♀️", + "woman_getting_face_massage_medium_skin_tone": "💆🏽‍♀️", + "woman_getting_face_massage_tone4": "💆🏾‍♀️", + "woman_getting_face_massage_medium_dark_skin_tone": "💆🏾‍♀️", + "woman_getting_face_massage_tone5": "💆🏿‍♀️", + "woman_getting_face_massage_dark_skin_tone": "💆🏿‍♀️", + "man_getting_face_massage": "💆‍♂️", + "man_getting_face_massage_tone1": "💆🏻‍♂️", + "man_getting_face_massage_light_skin_tone": "💆🏻‍♂️", + "man_getting_face_massage_tone2": "💆🏼‍♂️", + "man_getting_face_massage_medium_light_skin_tone": "💆🏼‍♂️", + "man_getting_face_massage_tone3": "💆🏽‍♂️", + "man_getting_face_massage_medium_skin_tone": "💆🏽‍♂️", + "man_getting_face_massage_tone4": "💆🏾‍♂️", + "man_getting_face_massage_medium_dark_skin_tone": "💆🏾‍♂️", + "man_getting_face_massage_tone5": "💆🏿‍♂️", + "man_getting_face_massage_dark_skin_tone": "💆🏿‍♂️", + "person_in_steamy_room": "🧖", + "person_in_steamy_room_tone1": "🧖🏻", + "person_in_steamy_room_light_skin_tone": "🧖🏻", + "person_in_steamy_room_tone2": "🧖🏼", + "person_in_steamy_room_medium_light_skin_tone": "🧖🏼", + "person_in_steamy_room_tone3": "🧖🏽", + "person_in_steamy_room_medium_skin_tone": "🧖🏽", + "person_in_steamy_room_tone4": "🧖🏾", + "person_in_steamy_room_medium_dark_skin_tone": "🧖🏾", + "person_in_steamy_room_tone5": "🧖🏿", + "person_in_steamy_room_dark_skin_tone": "🧖🏿", + "woman_in_steamy_room": "🧖‍♀️", + "woman_in_steamy_room_tone1": "🧖🏻‍♀️", + "woman_in_steamy_room_light_skin_tone": "🧖🏻‍♀️", + "woman_in_steamy_room_tone2": "🧖🏼‍♀️", + "woman_in_steamy_room_medium_light_skin_tone": "🧖🏼‍♀️", + "woman_in_steamy_room_tone3": "🧖🏽‍♀️", + "woman_in_steamy_room_medium_skin_tone": "🧖🏽‍♀️", + "woman_in_steamy_room_tone4": "🧖🏾‍♀️", + "woman_in_steamy_room_medium_dark_skin_tone": "🧖🏾‍♀️", + "woman_in_steamy_room_tone5": "🧖🏿‍♀️", + "woman_in_steamy_room_dark_skin_tone": "🧖🏿‍♀️", + "man_in_steamy_room": "🧖‍♂️", + "man_in_steamy_room_tone1": "🧖🏻‍♂️", + "man_in_steamy_room_light_skin_tone": "🧖🏻‍♂️", + "man_in_steamy_room_tone2": "🧖🏼‍♂️", + "man_in_steamy_room_medium_light_skin_tone": "🧖🏼‍♂️", + "man_in_steamy_room_tone3": "🧖🏽‍♂️", + "man_in_steamy_room_medium_skin_tone": "🧖🏽‍♂️", + "man_in_steamy_room_tone4": "🧖🏾‍♂️", + "man_in_steamy_room_medium_dark_skin_tone": "🧖🏾‍♂️", + "man_in_steamy_room_tone5": "🧖🏿‍♂️", + "man_in_steamy_room_dark_skin_tone": "🧖🏿‍♂️", + "nail_care": "💅", + "nail_polish": "💅", + "nail_care_tone1": "💅🏻", + "nail_care_tone2": "💅🏼", + "nail_care_tone3": "💅🏽", + "nail_care_tone4": "💅🏾", + "nail_care_tone5": "💅🏿", + "selfie": "🤳", + "selfie_tone1": "🤳🏻", + "selfie_tone2": "🤳🏼", + "selfie_tone3": "🤳🏽", + "selfie_tone4": "🤳🏾", + "selfie_tone5": "🤳🏿", + "dancer": "💃", + "woman_dancing": "💃", + "dancer_tone1": "💃🏻", + "dancer_tone2": "💃🏼", + "dancer_tone3": "💃🏽", + "dancer_tone4": "💃🏾", + "dancer_tone5": "💃🏿", + "man_dancing": "🕺", + "male_dancer": "🕺", + "man_dancing_tone1": "🕺🏻", + "male_dancer_tone1": "🕺🏻", + "man_dancing_tone2": "🕺🏼", + "male_dancer_tone2": "🕺🏼", + "man_dancing_tone3": "🕺🏽", + "male_dancer_tone3": "🕺🏽", + "man_dancing_tone5": "🕺🏿", + "male_dancer_tone5": "🕺🏿", + "man_dancing_tone4": "🕺🏾", + "male_dancer_tone4": "🕺🏾", + "people_with_bunny_ears_partying": "👯", + "dancers": "👯", + "women_with_bunny_ears_partying": "👯‍♀️", + "men_with_bunny_ears_partying": "👯‍♂️", + "levitate": "🕴️", + "man_in_business_suit_levitating": "🕴️", + "levitate_tone1": "🕴🏻", + "man_in_business_suit_levitating_tone1": "🕴🏻", + "man_in_business_suit_levitating_light_skin_tone": "🕴🏻", + "levitate_tone2": "🕴🏼", + "man_in_business_suit_levitating_tone2": "🕴🏼", + "man_in_business_suit_levitating_medium_light_skin_tone": "🕴🏼", + "levitate_tone3": "🕴🏽", + "man_in_business_suit_levitating_tone3": "🕴🏽", + "man_in_business_suit_levitating_medium_skin_tone": "🕴🏽", + "levitate_tone4": "🕴🏾", + "man_in_business_suit_levitating_tone4": "🕴🏾", + "man_in_business_suit_levitating_medium_dark_skin_tone": "🕴🏾", + "levitate_tone5": "🕴🏿", + "man_in_business_suit_levitating_tone5": "🕴🏿", + "man_in_business_suit_levitating_dark_skin_tone": "🕴🏿", + "person_in_manual_wheelchair": "🧑‍🦽", + "person_in_manual_wheelchair_tone1": "🧑🏻‍🦽", + "person_in_manual_wheelchair_light_skin_tone": "🧑🏻‍🦽", + "person_in_manual_wheelchair_tone2": "🧑🏼‍🦽", + "person_in_manual_wheelchair_medium_light_skin_tone": "🧑🏼‍🦽", + "person_in_manual_wheelchair_tone3": "🧑🏽‍🦽", + "person_in_manual_wheelchair_medium_skin_tone": "🧑🏽‍🦽", + "person_in_manual_wheelchair_tone4": "🧑🏾‍🦽", + "person_in_manual_wheelchair_medium_dark_skin_tone": "🧑🏾‍🦽", + "person_in_manual_wheelchair_tone5": "🧑🏿‍🦽", + "person_in_manual_wheelchair_dark_skin_tone": "🧑🏿‍🦽", + "woman_in_manual_wheelchair": "👩‍🦽", + "woman_in_manual_wheelchair_tone1": "👩🏻‍🦽", + "woman_in_manual_wheelchair_light_skin_tone": "👩🏻‍🦽", + "woman_in_manual_wheelchair_tone2": "👩🏼‍🦽", + "woman_in_manual_wheelchair_medium_light_skin_tone": "👩🏼‍🦽", + "woman_in_manual_wheelchair_tone3": "👩🏽‍🦽", + "woman_in_manual_wheelchair_medium_skin_tone": "👩🏽‍🦽", + "woman_in_manual_wheelchair_tone4": "👩🏾‍🦽", + "woman_in_manual_wheelchair_medium_dark_skin_tone": "👩🏾‍🦽", + "woman_in_manual_wheelchair_tone5": "👩🏿‍🦽", + "woman_in_manual_wheelchair_dark_skin_tone": "👩🏿‍🦽", + "man_in_manual_wheelchair": "👨‍🦽", + "man_in_manual_wheelchair_tone1": "👨🏻‍🦽", + "man_in_manual_wheelchair_light_skin_tone": "👨🏻‍🦽", + "man_in_manual_wheelchair_tone2": "👨🏼‍🦽", + "man_in_manual_wheelchair_medium_light_skin_tone": "👨🏼‍🦽", + "man_in_manual_wheelchair_tone3": "👨🏽‍🦽", + "man_in_manual_wheelchair_medium_skin_tone": "👨🏽‍🦽", + "man_in_manual_wheelchair_tone4": "👨🏾‍🦽", + "man_in_manual_wheelchair_medium_dark_skin_tone": "👨🏾‍🦽", + "man_in_manual_wheelchair_tone5": "👨🏿‍🦽", + "man_in_manual_wheelchair_dark_skin_tone": "👨🏿‍🦽", + "person_in_manual_wheelchair_facing_right": "🧑‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_tone1": "🧑🏻‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_light_skin_tone": "🧑🏻‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_tone2": "🧑🏼‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_medium_light_skin_tone": "🧑🏼‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_tone3": "🧑🏽‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_medium_skin_tone": "🧑🏽‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_tone4": "🧑🏾‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_medium_dark_skin_tone": "🧑🏾‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_tone5": "🧑🏿‍🦽‍➡️", + "person_in_manual_wheelchair_facing_right_dark_skin_tone": "🧑🏿‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right": "👨‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_tone2": "👨🏼‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_medium_light_skin_tone": "👨🏼‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_tone1": "👨🏻‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_light_skin_tone": "👨🏻‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_tone3": "👨🏽‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_medium_skin_tone": "👨🏽‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_tone4": "👨🏾‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_medium_dark_skin_tone": "👨🏾‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_tone5": "👨🏿‍🦽‍➡️", + "man_in_manual_wheelchair_facing_right_dark_skin_tone": "👨🏿‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right": "👩‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_tone1": "👩🏻‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_light_skin_tone": "👩🏻‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_tone2": "👩🏼‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_medium_light_skin_tone": "👩🏼‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_tone3": "👩🏽‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_medium_skin_tone": "👩🏽‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_tone4": "👩🏾‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_medium_dark_skin_tone": "👩🏾‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_tone5": "👩🏿‍🦽‍➡️", + "woman_in_manual_wheelchair_facing_right_dark_skin_tone": "👩🏿‍🦽‍➡️", + "person_in_motorized_wheelchair": "🧑‍🦼", + "person_in_motorized_wheelchair_tone1": "🧑🏻‍🦼", + "person_in_motorized_wheelchair_light_skin_tone": "🧑🏻‍🦼", + "person_in_motorized_wheelchair_tone2": "🧑🏼‍🦼", + "person_in_motorized_wheelchair_medium_light_skin_tone": "🧑🏼‍🦼", + "person_in_motorized_wheelchair_tone3": "🧑🏽‍🦼", + "person_in_motorized_wheelchair_medium_skin_tone": "🧑🏽‍🦼", + "person_in_motorized_wheelchair_tone4": "🧑🏾‍🦼", + "person_in_motorized_wheelchair_medium_dark_skin_tone": "🧑🏾‍🦼", + "person_in_motorized_wheelchair_tone5": "🧑🏿‍🦼", + "person_in_motorized_wheelchair_dark_skin_tone": "🧑🏿‍🦼", + "woman_in_motorized_wheelchair": "👩‍🦼", + "woman_in_motorized_wheelchair_tone1": "👩🏻‍🦼", + "woman_in_motorized_wheelchair_light_skin_tone": "👩🏻‍🦼", + "woman_in_motorized_wheelchair_tone2": "👩🏼‍🦼", + "woman_in_motorized_wheelchair_medium_light_skin_tone": "👩🏼‍🦼", + "woman_in_motorized_wheelchair_tone3": "👩🏽‍🦼", + "woman_in_motorized_wheelchair_medium_skin_tone": "👩🏽‍🦼", + "woman_in_motorized_wheelchair_tone4": "👩🏾‍🦼", + "woman_in_motorized_wheelchair_medium_dark_skin_tone": "👩🏾‍🦼", + "woman_in_motorized_wheelchair_tone5": "👩🏿‍🦼", + "woman_in_motorized_wheelchair_dark_skin_tone": "👩🏿‍🦼", + "man_in_motorized_wheelchair": "👨‍🦼", + "man_in_motorized_wheelchair_tone1": "👨🏻‍🦼", + "man_in_motorized_wheelchair_light_skin_tone": "👨🏻‍🦼", + "man_in_motorized_wheelchair_tone2": "👨🏼‍🦼", + "man_in_motorized_wheelchair_medium_light_skin_tone": "👨🏼‍🦼", + "man_in_motorized_wheelchair_tone3": "👨🏽‍🦼", + "man_in_motorized_wheelchair_medium_skin_tone": "👨🏽‍🦼", + "man_in_motorized_wheelchair_tone4": "👨🏾‍🦼", + "man_in_motorized_wheelchair_medium_dark_skin_tone": "👨🏾‍🦼", + "man_in_motorized_wheelchair_tone5": "👨🏿‍🦼", + "man_in_motorized_wheelchair_dark_skin_tone": "👨🏿‍🦼", + "person_in_motorized_wheelchair_facing_right": "🧑‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_tone1": "🧑🏻‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_light_skin_tone": "🧑🏻‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_tone2": "🧑🏼‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_medium_light_skin_tone": "🧑🏼‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_tone3": "🧑🏽‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_medium_skin_tone": "🧑🏽‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_tone4": "🧑🏾‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_medium_dark_skin_tone": "🧑🏾‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_tone5": "🧑🏿‍🦼‍➡️", + "person_in_motorized_wheelchair_facing_right_dark_skin_tone": "🧑🏿‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right": "👨‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_tone1": "👨🏻‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_light_skin_tone": "👨🏻‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_tone2": "👨🏼‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_medium_light_skin_tone": "👨🏼‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_tone3": "👨🏽‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_medium_skin_tone": "👨🏽‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_tone4": "👨🏾‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_medium_dark_skin_tone": "👨🏾‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_tone5": "👨🏿‍🦼‍➡️", + "man_in_motorized_wheelchair_facing_right_dark_skin_tone": "👨🏿‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right": "👩‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_tone1": "👩🏻‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_light_skin_tone": "👩🏻‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_tone2": "👩🏼‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_medium_light_skin_tone": "👩🏼‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_tone3": "👩🏽‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_medium_skin_tone": "👩🏽‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_tone4": "👩🏾‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_medium_dark_skin_tone": "👩🏾‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_tone5": "👩🏿‍🦼‍➡️", + "woman_in_motorized_wheelchair_facing_right_dark_skin_tone": "👩🏿‍🦼‍➡️", + "person_walking": "🚶", + "walking": "🚶", + "person_walking_tone1": "🚶🏻", + "walking_tone1": "🚶🏻", + "person_walking_tone2": "🚶🏼", + "walking_tone2": "🚶🏼", + "person_walking_tone3": "🚶🏽", + "walking_tone3": "🚶🏽", + "person_walking_tone4": "🚶🏾", + "walking_tone4": "🚶🏾", + "person_walking_tone5": "🚶🏿", + "walking_tone5": "🚶🏿", + "woman_walking": "🚶‍♀️", + "woman_walking_tone1": "🚶🏻‍♀️", + "woman_walking_light_skin_tone": "🚶🏻‍♀️", + "woman_walking_tone2": "🚶🏼‍♀️", + "woman_walking_medium_light_skin_tone": "🚶🏼‍♀️", + "woman_walking_tone3": "🚶🏽‍♀️", + "woman_walking_medium_skin_tone": "🚶🏽‍♀️", + "woman_walking_tone4": "🚶🏾‍♀️", + "woman_walking_medium_dark_skin_tone": "🚶🏾‍♀️", + "woman_walking_tone5": "🚶🏿‍♀️", + "woman_walking_dark_skin_tone": "🚶🏿‍♀️", + "man_walking": "🚶‍♂️", + "man_walking_tone1": "🚶🏻‍♂️", + "man_walking_light_skin_tone": "🚶🏻‍♂️", + "man_walking_tone2": "🚶🏼‍♂️", + "man_walking_medium_light_skin_tone": "🚶🏼‍♂️", + "man_walking_tone3": "🚶🏽‍♂️", + "man_walking_medium_skin_tone": "🚶🏽‍♂️", + "man_walking_tone4": "🚶🏾‍♂️", + "man_walking_medium_dark_skin_tone": "🚶🏾‍♂️", + "man_walking_tone5": "🚶🏿‍♂️", + "man_walking_dark_skin_tone": "🚶🏿‍♂️", + "person_walking_facing_right": "🚶‍➡️", + "person_walking_facing_right_tone1": "🚶🏻‍➡️", + "person_walking_facing_right_light_skin_tone": "🚶🏻‍➡️", + "person_walking_facing_right_tone2": "🚶🏼‍➡️", + "person_walking_facing_right_medium_light_skin_tone": "🚶🏼‍➡️", + "person_walking_facing_right_tone3": "🚶🏽‍➡️", + "person_walking_facing_right_medium_skin_tone": "🚶🏽‍➡️", + "person_walking_facing_right_tone4": "🚶🏾‍➡️", + "person_walking_facing_right_medium_dark_skin_tone": "🚶🏾‍➡️", + "person_walking_facing_right_tone5": "🚶🏿‍➡️", + "person_walking_facing_right_dark_skin_tone": "🚶🏿‍➡️", + "woman_walking_facing_right": "🚶‍♀️‍➡️", + "woman_walking_facing_right_tone1": "🚶🏻‍♀️‍➡️", + "woman_walking_facing_right_light_skin_tone": "🚶🏻‍♀️‍➡️", + "woman_walking_facing_right_tone2": "🚶🏼‍♀️‍➡️", + "woman_walking_facing_right_medium_light_skin_tone": "🚶🏼‍♀️‍➡️", + "woman_walking_facing_right_tone3": "🚶🏽‍♀️‍➡️", + "woman_walking_facing_right_medium_skin_tone": "🚶🏽‍♀️‍➡️", + "woman_walking_facing_right_tone4": "🚶🏾‍♀️‍➡️", + "woman_walking_facing_right_medium_dark_skin_tone": "🚶🏾‍♀️‍➡️", + "woman_walking_facing_right_tone5": "🚶🏿‍♀️‍➡️", + "woman_walking_facing_right_dark_skin_tone": "🚶🏿‍♀️‍➡️", + "man_walking_facing_right": "🚶‍♂️‍➡️", + "man_walking_facing_right_tone1": "🚶🏻‍♂️‍➡️", + "man_walking_facing_right_light_skin_tone": "🚶🏻‍♂️‍➡️", + "man_walking_facing_right_tone2": "🚶🏼‍♂️‍➡️", + "man_walking_facing_right_medium_light_skin_tone": "🚶🏼‍♂️‍➡️", + "man_walking_facing_right_tone3": "🚶🏽‍♂️‍➡️", + "man_walking_facing_right_medium_skin_tone": "🚶🏽‍♂️‍➡️", + "man_walking_facing_right_tone4": "🚶🏾‍♂️‍➡️", + "man_walking_facing_right_medium_dark_skin_tone": "🚶🏾‍♂️‍➡️", + "man_walking_facing_right_tone5": "🚶🏿‍♂️‍➡️", + "man_walking_facing_right_dark_skin_tone": "🚶🏿‍♂️‍➡️", + "person_with_probing_cane": "🧑‍🦯", + "person_with_probing_cane_tone1": "🧑🏻‍🦯", + "person_with_probing_cane_light_skin_tone": "🧑🏻‍🦯", + "person_with_probing_cane_tone2": "🧑🏼‍🦯", + "person_with_probing_cane_medium_light_skin_tone": "🧑🏼‍🦯", + "person_with_probing_cane_tone3": "🧑🏽‍🦯", + "person_with_probing_cane_medium_skin_tone": "🧑🏽‍🦯", + "person_with_probing_cane_tone4": "🧑🏾‍🦯", + "person_with_probing_cane_medium_dark_skin_tone": "🧑🏾‍🦯", + "person_with_probing_cane_tone5": "🧑🏿‍🦯", + "person_with_probing_cane_dark_skin_tone": "🧑🏿‍🦯", + "woman_with_probing_cane": "👩‍🦯", + "woman_with_probing_cane_tone1": "👩🏻‍🦯", + "woman_with_probing_cane_light_skin_tone": "👩🏻‍🦯", + "woman_with_probing_cane_tone2": "👩🏼‍🦯", + "woman_with_probing_cane_medium_light_skin_tone": "👩🏼‍🦯", + "woman_with_probing_cane_tone3": "👩🏽‍🦯", + "woman_with_probing_cane_medium_skin_tone": "👩🏽‍🦯", + "woman_with_probing_cane_tone4": "👩🏾‍🦯", + "woman_with_probing_cane_medium_dark_skin_tone": "👩🏾‍🦯", + "woman_with_probing_cane_tone5": "👩🏿‍🦯", + "woman_with_probing_cane_dark_skin_tone": "👩🏿‍🦯", + "man_with_probing_cane": "👨‍🦯", + "man_with_probing_cane_tone1": "👨🏻‍🦯", + "man_with_probing_cane_light_skin_tone": "👨🏻‍🦯", + "man_with_probing_cane_tone2": "👨🏼‍🦯", + "man_with_probing_cane_medium_light_skin_tone": "👨🏼‍🦯", + "man_with_probing_cane_tone3": "👨🏽‍🦯", + "man_with_probing_cane_medium_skin_tone": "👨🏽‍🦯", + "man_with_probing_cane_tone4": "👨🏾‍🦯", + "man_with_probing_cane_medium_dark_skin_tone": "👨🏾‍🦯", + "man_with_probing_cane_tone5": "👨🏿‍🦯", + "man_with_probing_cane_dark_skin_tone": "👨🏿‍🦯", + "person_with_white_cane_facing_right": "🧑‍🦯‍➡️", + "person_with_white_cane_facing_right_tone1": "🧑🏻‍🦯‍➡️", + "person_with_white_cane_facing_right_light_skin_tone": "🧑🏻‍🦯‍➡️", + "person_with_white_cane_facing_right_tone2": "🧑🏼‍🦯‍➡️", + "person_with_white_cane_facing_right_medium_light_skin_tone": "🧑🏼‍🦯‍➡️", + "person_with_white_cane_facing_right_tone3": "🧑🏽‍🦯‍➡️", + "person_with_white_cane_facing_right_medium_skin_tone": "🧑🏽‍🦯‍➡️", + "person_with_white_cane_facing_right_tone4": "🧑🏾‍🦯‍➡️", + "person_with_white_cane_facing_right_medium_dark_skin_tone": "🧑🏾‍🦯‍➡️", + "person_with_white_cane_facing_right_tone5": "🧑🏿‍🦯‍➡️", + "person_with_white_cane_facing_right_dark_skin_tone": "🧑🏿‍🦯‍➡️", + "man_with_white_cane_facing_right": "👨‍🦯‍➡️", + "man_with_white_cane_facing_right_tone1": "👨🏻‍🦯‍➡️", + "man_with_white_cane_facing_right_light_skin_tone": "👨🏻‍🦯‍➡️", + "man_with_white_cane_facing_right_tone2": "👨🏼‍🦯‍➡️", + "man_with_white_cane_facing_right_medium_light_skin_tone": "👨🏼‍🦯‍➡️", + "man_with_white_cane_facing_right_tone3": "👨🏽‍🦯‍➡️", + "man_with_white_cane_facing_right_medium_skin_tone": "👨🏽‍🦯‍➡️", + "man_with_white_cane_facing_right_tone4": "👨🏾‍🦯‍➡️", + "man_with_white_cane_facing_right_medium_dark_skin_tone": "👨🏾‍🦯‍➡️", + "man_with_white_cane_facing_right_tone5": "👨🏿‍🦯‍➡️", + "man_with_white_cane_facing_right_dark_skin_tone": "👨🏿‍🦯‍➡️", + "woman_with_white_cane_facing_right": "👩‍🦯‍➡️", + "woman_with_white_cane_facing_right_tone1": "👩🏻‍🦯‍➡️", + "woman_with_white_cane_facing_right_light_skin_tone": "👩🏻‍🦯‍➡️", + "woman_with_white_cane_facing_right_tone2": "👩🏼‍🦯‍➡️", + "woman_with_white_cane_facing_right_medium_light_skin_tone": "👩🏼‍🦯‍➡️", + "woman_with_white_cane_facing_right_tone3": "👩🏽‍🦯‍➡️", + "woman_with_white_cane_facing_right_medium_skin_tone": "👩🏽‍🦯‍➡️", + "woman_with_white_cane_facing_right_tone4": "👩🏾‍🦯‍➡️", + "woman_with_white_cane_facing_right_medium_dark_skin_tone": "👩🏾‍🦯‍➡️", + "woman_with_white_cane_facing_right_tone5": "👩🏿‍🦯‍➡️", + "woman_with_white_cane_facing_right_dark_skin_tone": "👩🏿‍🦯‍➡️", + "person_kneeling": "🧎", + "person_kneeling_tone1": "🧎🏻", + "person_kneeling_light_skin_tone": "🧎🏻", + "person_kneeling_tone2": "🧎🏼", + "person_kneeling_medium_light_skin_tone": "🧎🏼", + "person_kneeling_tone3": "🧎🏽", + "person_kneeling_medium_skin_tone": "🧎🏽", + "person_kneeling_tone4": "🧎🏾", + "person_kneeling_medium_dark_skin_tone": "🧎🏾", + "person_kneeling_tone5": "🧎🏿", + "person_kneeling_dark_skin_tone": "🧎🏿", + "woman_kneeling": "🧎‍♀️", + "woman_kneeling_tone1": "🧎🏻‍♀️", + "woman_kneeling_light_skin_tone": "🧎🏻‍♀️", + "woman_kneeling_tone2": "🧎🏼‍♀️", + "woman_kneeling_medium_light_skin_tone": "🧎🏼‍♀️", + "woman_kneeling_tone3": "🧎🏽‍♀️", + "woman_kneeling_medium_skin_tone": "🧎🏽‍♀️", + "woman_kneeling_tone4": "🧎🏾‍♀️", + "woman_kneeling_medium_dark_skin_tone": "🧎🏾‍♀️", + "woman_kneeling_tone5": "🧎🏿‍♀️", + "woman_kneeling_dark_skin_tone": "🧎🏿‍♀️", + "man_kneeling": "🧎‍♂️", + "man_kneeling_tone1": "🧎🏻‍♂️", + "man_kneeling_light_skin_tone": "🧎🏻‍♂️", + "man_kneeling_tone2": "🧎🏼‍♂️", + "man_kneeling_medium_light_skin_tone": "🧎🏼‍♂️", + "man_kneeling_tone3": "🧎🏽‍♂️", + "man_kneeling_medium_skin_tone": "🧎🏽‍♂️", + "man_kneeling_tone4": "🧎🏾‍♂️", + "man_kneeling_medium_dark_skin_tone": "🧎🏾‍♂️", + "man_kneeling_tone5": "🧎🏿‍♂️", + "man_kneeling_dark_skin_tone": "🧎🏿‍♂️", + "person_kneeling_facing_right": "🧎‍➡️", + "person_kneeling_facing_right_tone1": "🧎🏻‍➡️", + "person_kneeling_facing_right_light_skin_tone": "🧎🏻‍➡️", + "person_kneeling_facing_right_tone2": "🧎🏼‍➡️", + "person_kneeling_facing_right_medium_light_skin_tone": "🧎🏼‍➡️", + "person_kneeling_facing_right_tone3": "🧎🏽‍➡️", + "person_kneeling_facing_right_medium_skin_tone": "🧎🏽‍➡️", + "person_kneeling_facing_right_tone4": "🧎🏾‍➡️", + "person_kneeling_facing_right_medium_dark_skin_tone": "🧎🏾‍➡️", + "person_kneeling_facing_right_tone5": "🧎🏿‍➡️", + "person_kneeling_facing_right_dark_skin_tone": "🧎🏿‍➡️", + "woman_kneeling_facing_right": "🧎‍♀️‍➡️", + "woman_kneeling_facing_right_tone1": "🧎🏻‍♀️‍➡️", + "woman_kneeling_facing_right_light_skin_tone": "🧎🏻‍♀️‍➡️", + "woman_kneeling_facing_right_tone2": "🧎🏼‍♀️‍➡️", + "woman_kneeling_facing_right_medium_light_skin_tone": "🧎🏼‍♀️‍➡️", + "woman_kneeling_facing_right_tone3": "🧎🏽‍♀️‍➡️", + "woman_kneeling_facing_right_medium_skin_tone": "🧎🏽‍♀️‍➡️", + "woman_kneeling_facing_right_tone4": "🧎🏾‍♀️‍➡️", + "woman_kneeling_facing_right_medium_dark_skin_tone": "🧎🏾‍♀️‍➡️", + "woman_kneeling_facing_right_tone5": "🧎🏿‍♀️‍➡️", + "woman_kneeling_facing_right_dark_skin_tone": "🧎🏿‍♀️‍➡️", + "man_kneeling_facing_right": "🧎‍♂️‍➡️", + "man_kneeling_facing_right_tone1": "🧎🏻‍♂️‍➡️", + "man_kneeling_facing_right_light_skin_tone": "🧎🏻‍♂️‍➡️", + "man_kneeling_facing_right_tone2": "🧎🏼‍♂️‍➡️", + "man_kneeling_facing_right_medium_light_skin_tone": "🧎🏼‍♂️‍➡️", + "man_kneeling_facing_right_tone3": "🧎🏽‍♂️‍➡️", + "man_kneeling_facing_right_medium_skin_tone": "🧎🏽‍♂️‍➡️", + "man_kneeling_facing_right_tone4": "🧎🏾‍♂️‍➡️", + "man_kneeling_facing_right_medium_dark_skin_tone": "🧎🏾‍♂️‍➡️", + "man_kneeling_facing_right_tone5": "🧎🏿‍♂️‍➡️", + "man_kneeling_facing_right_dark_skin_tone": "🧎🏿‍♂️‍➡️", + "person_running": "🏃", + "runner": "🏃", + "person_running_tone1": "🏃🏻", + "runner_tone1": "🏃🏻", + "person_running_tone2": "🏃🏼", + "runner_tone2": "🏃🏼", + "person_running_tone3": "🏃🏽", + "runner_tone3": "🏃🏽", + "person_running_tone4": "🏃🏾", + "runner_tone4": "🏃🏾", + "person_running_tone5": "🏃🏿", + "runner_tone5": "🏃🏿", + "woman_running": "🏃‍♀️", + "woman_running_tone1": "🏃🏻‍♀️", + "woman_running_light_skin_tone": "🏃🏻‍♀️", + "woman_running_tone2": "🏃🏼‍♀️", + "woman_running_medium_light_skin_tone": "🏃🏼‍♀️", + "woman_running_tone3": "🏃🏽‍♀️", + "woman_running_medium_skin_tone": "🏃🏽‍♀️", + "woman_running_tone4": "🏃🏾‍♀️", + "woman_running_medium_dark_skin_tone": "🏃🏾‍♀️", + "woman_running_tone5": "🏃🏿‍♀️", + "woman_running_dark_skin_tone": "🏃🏿‍♀️", + "man_running": "🏃‍♂️", + "man_running_tone1": "🏃🏻‍♂️", + "man_running_light_skin_tone": "🏃🏻‍♂️", + "man_running_tone2": "🏃🏼‍♂️", + "man_running_medium_light_skin_tone": "🏃🏼‍♂️", + "man_running_tone3": "🏃🏽‍♂️", + "man_running_medium_skin_tone": "🏃🏽‍♂️", + "man_running_tone4": "🏃🏾‍♂️", + "man_running_medium_dark_skin_tone": "🏃🏾‍♂️", + "man_running_tone5": "🏃🏿‍♂️", + "man_running_dark_skin_tone": "🏃🏿‍♂️", + "person_running_facing_right": "🏃‍➡️", + "person_running_facing_right_tone1": "🏃🏻‍➡️", + "person_running_facing_right_light_skin_tone": "🏃🏻‍➡️", + "person_running_facing_right_tone2": "🏃🏼‍➡️", + "person_running_facing_right_medium_light_skin_tone": "🏃🏼‍➡️", + "person_running_facing_right_tone3": "🏃🏽‍➡️", + "person_running_facing_right_medium_skin_tone": "🏃🏽‍➡️", + "person_running_facing_right_tone4": "🏃🏾‍➡️", + "person_running_facing_right_medium_dark_skin_tone": "🏃🏾‍➡️", + "person_running_facing_right_tone5": "🏃🏿‍➡️", + "person_running_facing_right_dark_skin_tone": "🏃🏿‍➡️", + "woman_running_facing_right": "🏃‍♀️‍➡️", + "woman_running_facing_right_tone1": "🏃🏻‍♀️‍➡️", + "woman_running_facing_right_light_skin_tone": "🏃🏻‍♀️‍➡️", + "woman_running_facing_right_tone2": "🏃🏼‍♀️‍➡️", + "woman_running_facing_right_medium_light_skin_tone": "🏃🏼‍♀️‍➡️", + "woman_running_facing_right_tone3": "🏃🏽‍♀️‍➡️", + "woman_running_facing_right_medium_skin_tone": "🏃🏽‍♀️‍➡️", + "woman_running_facing_right_tone4": "🏃🏾‍♀️‍➡️", + "woman_running_facing_right_medium_dark_skin_tone": "🏃🏾‍♀️‍➡️", + "woman_running_facing_right_tone5": "🏃🏿‍♀️‍➡️", + "woman_running_facing_right_dark_skin_tone": "🏃🏿‍♀️‍➡️", + "man_running_facing_right": "🏃‍♂️‍➡️", + "man_running_facing_right_tone1": "🏃🏻‍♂️‍➡️", + "man_running_facing_right_light_skin_tone": "🏃🏻‍♂️‍➡️", + "man_running_facing_right_tone2": "🏃🏼‍♂️‍➡️", + "man_running_facing_right_medium_light_skin_tone": "🏃🏼‍♂️‍➡️", + "man_running_facing_right_tone3": "🏃🏽‍♂️‍➡️", + "man_running_facing_right_medium_skin_tone": "🏃🏽‍♂️‍➡️", + "man_running_facing_right_tone4": "🏃🏾‍♂️‍➡️", + "man_running_facing_right_medium_dark_skin_tone": "🏃🏾‍♂️‍➡️", + "man_running_facing_right_tone5": "🏃🏿‍♂️‍➡️", + "man_running_facing_right_dark_skin_tone": "🏃🏿‍♂️‍➡️", + "person_standing": "🧍", + "person_standing_tone1": "🧍🏻", + "person_standing_light_skin_tone": "🧍🏻", + "person_standing_tone2": "🧍🏼", + "person_standing_medium_light_skin_tone": "🧍🏼", + "person_standing_tone3": "🧍🏽", + "person_standing_medium_skin_tone": "🧍🏽", + "person_standing_tone4": "🧍🏾", + "person_standing_medium_dark_skin_tone": "🧍🏾", + "person_standing_tone5": "🧍🏿", + "person_standing_dark_skin_tone": "🧍🏿", + "woman_standing": "🧍‍♀️", + "woman_standing_tone1": "🧍🏻‍♀️", + "woman_standing_light_skin_tone": "🧍🏻‍♀️", + "woman_standing_tone2": "🧍🏼‍♀️", + "woman_standing_medium_light_skin_tone": "🧍🏼‍♀️", + "woman_standing_tone3": "🧍🏽‍♀️", + "woman_standing_medium_skin_tone": "🧍🏽‍♀️", + "woman_standing_tone4": "🧍🏾‍♀️", + "woman_standing_medium_dark_skin_tone": "🧍🏾‍♀️", + "woman_standing_tone5": "🧍🏿‍♀️", + "woman_standing_dark_skin_tone": "🧍🏿‍♀️", + "man_standing": "🧍‍♂️", + "man_standing_tone1": "🧍🏻‍♂️", + "man_standing_light_skin_tone": "🧍🏻‍♂️", + "man_standing_tone2": "🧍🏼‍♂️", + "man_standing_medium_light_skin_tone": "🧍🏼‍♂️", + "man_standing_tone3": "🧍🏽‍♂️", + "man_standing_medium_skin_tone": "🧍🏽‍♂️", + "man_standing_tone4": "🧍🏾‍♂️", + "man_standing_medium_dark_skin_tone": "🧍🏾‍♂️", + "man_standing_tone5": "🧍🏿‍♂️", + "man_standing_dark_skin_tone": "🧍🏿‍♂️", + "people_holding_hands": "🧑‍🤝‍🧑", + "people_holding_hands_tone1": "🧑🏻‍🤝‍🧑🏻", + "people_holding_hands_light_skin_tone": "🧑🏻‍🤝‍🧑🏻", + "people_holding_hands_tone1_tone2": "🧑🏻‍🤝‍🧑🏼", + "people_holding_hands_light_skin_tone_medium_light_skin_tone": "🧑🏻‍🤝‍🧑🏼", + "people_holding_hands_tone1_tone3": "🧑🏻‍🤝‍🧑🏽", + "people_holding_hands_light_skin_tone_medium_skin_tone": "🧑🏻‍🤝‍🧑🏽", + "people_holding_hands_tone1_tone4": "🧑🏻‍🤝‍🧑🏾", + "people_holding_hands_light_skin_tone_medium_dark_skin_tone": "🧑🏻‍🤝‍🧑🏾", + "people_holding_hands_tone1_tone5": "🧑🏻‍🤝‍🧑🏿", + "people_holding_hands_light_skin_tone_dark_skin_tone": "🧑🏻‍🤝‍🧑🏿", + "people_holding_hands_tone2_tone1": "🧑🏼‍🤝‍🧑🏻", + "people_holding_hands_medium_light_skin_tone_light_skin_tone": "🧑🏼‍🤝‍🧑🏻", + "people_holding_hands_tone2": "🧑🏼‍🤝‍🧑🏼", + "people_holding_hands_medium_light_skin_tone": "🧑🏼‍🤝‍🧑🏼", + "people_holding_hands_tone2_tone3": "🧑🏼‍🤝‍🧑🏽", + "people_holding_hands_medium_light_skin_tone_medium_skin_tone": "🧑🏼‍🤝‍🧑🏽", + "people_holding_hands_tone2_tone4": "🧑🏼‍🤝‍🧑🏾", + "people_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "🧑🏼‍🤝‍🧑🏾", + "people_holding_hands_tone2_tone5": "🧑🏼‍🤝‍🧑🏿", + "people_holding_hands_medium_light_skin_tone_dark_skin_tone": "🧑🏼‍🤝‍🧑🏿", + "people_holding_hands_tone3_tone1": "🧑🏽‍🤝‍🧑🏻", + "people_holding_hands_medium_skin_tone_light_skin_tone": "🧑🏽‍🤝‍🧑🏻", + "people_holding_hands_tone3_tone2": "🧑🏽‍🤝‍🧑🏼", + "people_holding_hands_medium_skin_tone_medium_light_skin_tone": "🧑🏽‍🤝‍🧑🏼", + "people_holding_hands_tone3": "🧑🏽‍🤝‍🧑🏽", + "people_holding_hands_medium_skin_tone": "🧑🏽‍🤝‍🧑🏽", + "people_holding_hands_tone3_tone4": "🧑🏽‍🤝‍🧑🏾", + "people_holding_hands_medium_skin_tone_medium_dark_skin_tone": "🧑🏽‍🤝‍🧑🏾", + "people_holding_hands_tone3_tone5": "🧑🏽‍🤝‍🧑🏿", + "people_holding_hands_medium_skin_tone_dark_skin_tone": "🧑🏽‍🤝‍🧑🏿", + "people_holding_hands_tone4_tone1": "🧑🏾‍🤝‍🧑🏻", + "people_holding_hands_medium_dark_skin_tone_light_skin_tone": "🧑🏾‍🤝‍🧑🏻", + "people_holding_hands_tone4_tone2": "🧑🏾‍🤝‍🧑🏼", + "people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "🧑🏾‍🤝‍🧑🏼", + "people_holding_hands_tone4_tone3": "🧑🏾‍🤝‍🧑🏽", + "people_holding_hands_medium_dark_skin_tone_medium_skin_tone": "🧑🏾‍🤝‍🧑🏽", + "people_holding_hands_tone4": "🧑🏾‍🤝‍🧑🏾", + "people_holding_hands_medium_dark_skin_tone": "🧑🏾‍🤝‍🧑🏾", + "people_holding_hands_tone4_tone5": "🧑🏾‍🤝‍🧑🏿", + "people_holding_hands_medium_dark_skin_tone_dark_skin_tone": "🧑🏾‍🤝‍🧑🏿", + "people_holding_hands_tone5_tone1": "🧑🏿‍🤝‍🧑🏻", + "people_holding_hands_dark_skin_tone_light_skin_tone": "🧑🏿‍🤝‍🧑🏻", + "people_holding_hands_tone5_tone2": "🧑🏿‍🤝‍🧑🏼", + "people_holding_hands_dark_skin_tone_medium_light_skin_tone": "🧑🏿‍🤝‍🧑🏼", + "people_holding_hands_tone5_tone3": "🧑🏿‍🤝‍🧑🏽", + "people_holding_hands_dark_skin_tone_medium_skin_tone": "🧑🏿‍🤝‍🧑🏽", + "people_holding_hands_tone5_tone4": "🧑🏿‍🤝‍🧑🏾", + "people_holding_hands_dark_skin_tone_medium_dark_skin_tone": "🧑🏿‍🤝‍🧑🏾", + "people_holding_hands_tone5": "🧑🏿‍🤝‍🧑🏿", + "people_holding_hands_dark_skin_tone": "🧑🏿‍🤝‍🧑🏿", + "couple": "👫", + "woman_and_man_holding_hands_tone1": "👫🏻", + "woman_and_man_holding_hands_light_skin_tone": "👫🏻", + "woman_and_man_holding_hands_tone1_tone2": "👩🏻‍🤝‍👨🏼", + "woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone": "👩🏻‍🤝‍👨🏼", + "woman_and_man_holding_hands_tone1_tone3": "👩🏻‍🤝‍👨🏽", + "woman_and_man_holding_hands_light_skin_tone_medium_skin_tone": "👩🏻‍🤝‍👨🏽", + "woman_and_man_holding_hands_tone1_tone4": "👩🏻‍🤝‍👨🏾", + "woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone": "👩🏻‍🤝‍👨🏾", + "woman_and_man_holding_hands_tone1_tone5": "👩🏻‍🤝‍👨🏿", + "woman_and_man_holding_hands_light_skin_tone_dark_skin_tone": "👩🏻‍🤝‍👨🏿", + "woman_and_man_holding_hands_tone2_tone1": "👩🏼‍🤝‍👨🏻", + "woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone": "👩🏼‍🤝‍👨🏻", + "woman_and_man_holding_hands_tone2": "👫🏼", + "woman_and_man_holding_hands_medium_light_skin_tone": "👫🏼", + "woman_and_man_holding_hands_tone2_tone3": "👩🏼‍🤝‍👨🏽", + "woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone": "👩🏼‍🤝‍👨🏽", + "woman_and_man_holding_hands_tone2_tone4": "👩🏼‍🤝‍👨🏾", + "woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍🤝‍👨🏾", + "woman_and_man_holding_hands_tone2_tone5": "👩🏼‍🤝‍👨🏿", + "woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone": "👩🏼‍🤝‍👨🏿", + "woman_and_man_holding_hands_tone3_tone1": "👩🏽‍🤝‍👨🏻", + "woman_and_man_holding_hands_medium_skin_tone_light_skin_tone": "👩🏽‍🤝‍👨🏻", + "woman_and_man_holding_hands_tone3_tone2": "👩🏽‍🤝‍👨🏼", + "woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone": "👩🏽‍🤝‍👨🏼", + "woman_and_man_holding_hands_tone3": "👫🏽", + "woman_and_man_holding_hands_medium_skin_tone": "👫🏽", + "woman_and_man_holding_hands_tone3_tone4": "👩🏽‍🤝‍👨🏾", + "woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍🤝‍👨🏾", + "woman_and_man_holding_hands_tone3_tone5": "👩🏽‍🤝‍👨🏿", + "woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone": "👩🏽‍🤝‍👨🏿", + "woman_and_man_holding_hands_tone4_tone1": "👩🏾‍🤝‍👨🏻", + "woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone": "👩🏾‍🤝‍👨🏻", + "woman_and_man_holding_hands_tone4_tone2": "👩🏾‍🤝‍👨🏼", + "woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍🤝‍👨🏼", + "woman_and_man_holding_hands_tone4_tone3": "👩🏾‍🤝‍👨🏽", + "woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍🤝‍👨🏽", + "woman_and_man_holding_hands_tone4": "👫🏾", + "woman_and_man_holding_hands_medium_dark_skin_tone": "👫🏾", + "woman_and_man_holding_hands_tone4_tone5": "👩🏾‍🤝‍👨🏿", + "woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍🤝‍👨🏿", + "woman_and_man_holding_hands_tone5_tone1": "👩🏿‍🤝‍👨🏻", + "woman_and_man_holding_hands_dark_skin_tone_light_skin_tone": "👩🏿‍🤝‍👨🏻", + "woman_and_man_holding_hands_tone5_tone2": "👩🏿‍🤝‍👨🏼", + "woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone": "👩🏿‍🤝‍👨🏼", + "woman_and_man_holding_hands_tone5_tone3": "👩🏿‍🤝‍👨🏽", + "woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone": "👩🏿‍🤝‍👨🏽", + "woman_and_man_holding_hands_tone5_tone4": "👩🏿‍🤝‍👨🏾", + "woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍🤝‍👨🏾", + "woman_and_man_holding_hands_tone5": "👫🏿", + "woman_and_man_holding_hands_dark_skin_tone": "👫🏿", + "two_women_holding_hands": "👭", + "women_holding_hands_tone1": "👭🏻", + "women_holding_hands_light_skin_tone": "👭🏻", + "women_holding_hands_tone1_tone2": "👩🏻‍🤝‍👩🏼", + "women_holding_hands_light_skin_tone_medium_light_skin_tone": "👩🏻‍🤝‍👩🏼", + "women_holding_hands_tone1_tone3": "👩🏻‍🤝‍👩🏽", + "women_holding_hands_light_skin_tone_medium_skin_tone": "👩🏻‍🤝‍👩🏽", + "women_holding_hands_tone1_tone4": "👩🏻‍🤝‍👩🏾", + "women_holding_hands_light_skin_tone_medium_dark_skin_tone": "👩🏻‍🤝‍👩🏾", + "women_holding_hands_tone1_tone5": "👩🏻‍🤝‍👩🏿", + "women_holding_hands_light_skin_tone_dark_skin_tone": "👩🏻‍🤝‍👩🏿", + "women_holding_hands_tone2_tone1": "👩🏼‍🤝‍👩🏻", + "women_holding_hands_medium_light_skin_tone_light_skin_tone": "👩🏼‍🤝‍👩🏻", + "women_holding_hands_tone2": "👭🏼", + "women_holding_hands_medium_light_skin_tone": "👭🏼", + "women_holding_hands_tone2_tone3": "👩🏼‍🤝‍👩🏽", + "women_holding_hands_medium_light_skin_tone_medium_skin_tone": "👩🏼‍🤝‍👩🏽", + "women_holding_hands_tone2_tone4": "👩🏼‍🤝‍👩🏾", + "women_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍🤝‍👩🏾", + "women_holding_hands_tone2_tone5": "👩🏼‍🤝‍👩🏿", + "women_holding_hands_medium_light_skin_tone_dark_skin_tone": "👩🏼‍🤝‍👩🏿", + "women_holding_hands_tone3_tone1": "👩🏽‍🤝‍👩🏻", + "women_holding_hands_medium_skin_tone_light_skin_tone": "👩🏽‍🤝‍👩🏻", + "women_holding_hands_tone3_tone2": "👩🏽‍🤝‍👩🏼", + "women_holding_hands_medium_skin_tone_medium_light_skin_tone": "👩🏽‍🤝‍👩🏼", + "women_holding_hands_tone3": "👭🏽", + "women_holding_hands_medium_skin_tone": "👭🏽", + "women_holding_hands_tone3_tone4": "👩🏽‍🤝‍👩🏾", + "women_holding_hands_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍🤝‍👩🏾", + "women_holding_hands_tone3_tone5": "👩🏽‍🤝‍👩🏿", + "women_holding_hands_medium_skin_tone_dark_skin_tone": "👩🏽‍🤝‍👩🏿", + "women_holding_hands_tone4_tone1": "👩🏾‍🤝‍👩🏻", + "women_holding_hands_medium_dark_skin_tone_light_skin_tone": "👩🏾‍🤝‍👩🏻", + "women_holding_hands_tone4_tone2": "👩🏾‍🤝‍👩🏼", + "women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍🤝‍👩🏼", + "women_holding_hands_tone4_tone3": "👩🏾‍🤝‍👩🏽", + "women_holding_hands_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍🤝‍👩🏽", + "women_holding_hands_tone4": "👭🏾", + "women_holding_hands_medium_dark_skin_tone": "👭🏾", + "women_holding_hands_tone4_tone5": "👩🏾‍🤝‍👩🏿", + "women_holding_hands_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍🤝‍👩🏿", + "women_holding_hands_tone5_tone1": "👩🏿‍🤝‍👩🏻", + "women_holding_hands_dark_skin_tone_light_skin_tone": "👩🏿‍🤝‍👩🏻", + "women_holding_hands_tone5_tone2": "👩🏿‍🤝‍👩🏼", + "women_holding_hands_dark_skin_tone_medium_light_skin_tone": "👩🏿‍🤝‍👩🏼", + "women_holding_hands_tone5_tone3": "👩🏿‍🤝‍👩🏽", + "women_holding_hands_dark_skin_tone_medium_skin_tone": "👩🏿‍🤝‍👩🏽", + "women_holding_hands_tone5_tone4": "👩🏿‍🤝‍👩🏾", + "women_holding_hands_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍🤝‍👩🏾", + "women_holding_hands_tone5": "👭🏿", + "women_holding_hands_dark_skin_tone": "👭🏿", + "two_men_holding_hands": "👬", + "men_holding_hands_tone1": "👬🏻", + "men_holding_hands_light_skin_tone": "👬🏻", + "men_holding_hands_tone1_tone2": "👨🏻‍🤝‍👨🏼", + "men_holding_hands_light_skin_tone_medium_light_skin_tone": "👨🏻‍🤝‍👨🏼", + "men_holding_hands_tone1_tone3": "👨🏻‍🤝‍👨🏽", + "men_holding_hands_light_skin_tone_medium_skin_tone": "👨🏻‍🤝‍👨🏽", + "men_holding_hands_tone1_tone4": "👨🏻‍🤝‍👨🏾", + "men_holding_hands_light_skin_tone_medium_dark_skin_tone": "👨🏻‍🤝‍👨🏾", + "men_holding_hands_tone1_tone5": "👨🏻‍🤝‍👨🏿", + "men_holding_hands_light_skin_tone_dark_skin_tone": "👨🏻‍🤝‍👨🏿", + "men_holding_hands_tone2_tone1": "👨🏼‍🤝‍👨🏻", + "men_holding_hands_medium_light_skin_tone_light_skin_tone": "👨🏼‍🤝‍👨🏻", + "men_holding_hands_tone2": "👬🏼", + "men_holding_hands_medium_light_skin_tone": "👬🏼", + "men_holding_hands_tone2_tone3": "👨🏼‍🤝‍👨🏽", + "men_holding_hands_medium_light_skin_tone_medium_skin_tone": "👨🏼‍🤝‍👨🏽", + "men_holding_hands_tone2_tone4": "👨🏼‍🤝‍👨🏾", + "men_holding_hands_medium_light_skin_tone_medium_dark_skin_tone": "👨🏼‍🤝‍👨🏾", + "men_holding_hands_tone2_tone5": "👨🏼‍🤝‍👨🏿", + "men_holding_hands_medium_light_skin_tone_dark_skin_tone": "👨🏼‍🤝‍👨🏿", + "men_holding_hands_tone3_tone1": "👨🏽‍🤝‍👨🏻", + "men_holding_hands_medium_skin_tone_light_skin_tone": "👨🏽‍🤝‍👨🏻", + "men_holding_hands_tone3_tone2": "👨🏽‍🤝‍👨🏼", + "men_holding_hands_medium_skin_tone_medium_light_skin_tone": "👨🏽‍🤝‍👨🏼", + "men_holding_hands_tone3": "👬🏽", + "men_holding_hands_medium_skin_tone": "👬🏽", + "men_holding_hands_tone3_tone4": "👨🏽‍🤝‍👨🏾", + "men_holding_hands_medium_skin_tone_medium_dark_skin_tone": "👨🏽‍🤝‍👨🏾", + "men_holding_hands_tone3_tone5": "👨🏽‍🤝‍👨🏿", + "men_holding_hands_medium_skin_tone_dark_skin_tone": "👨🏽‍🤝‍👨🏿", + "men_holding_hands_tone4_tone1": "👨🏾‍🤝‍👨🏻", + "men_holding_hands_medium_dark_skin_tone_light_skin_tone": "👨🏾‍🤝‍👨🏻", + "men_holding_hands_tone4_tone2": "👨🏾‍🤝‍👨🏼", + "men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone": "👨🏾‍🤝‍👨🏼", + "men_holding_hands_tone4_tone3": "👨🏾‍🤝‍👨🏽", + "men_holding_hands_medium_dark_skin_tone_medium_skin_tone": "👨🏾‍🤝‍👨🏽", + "men_holding_hands_tone4": "👬🏾", + "men_holding_hands_medium_dark_skin_tone": "👬🏾", + "men_holding_hands_tone4_tone5": "👨🏾‍🤝‍👨🏿", + "men_holding_hands_medium_dark_skin_tone_dark_skin_tone": "👨🏾‍🤝‍👨🏿", + "men_holding_hands_tone5_tone1": "👨🏿‍🤝‍👨🏻", + "men_holding_hands_dark_skin_tone_light_skin_tone": "👨🏿‍🤝‍👨🏻", + "men_holding_hands_tone5_tone2": "👨🏿‍🤝‍👨🏼", + "men_holding_hands_dark_skin_tone_medium_light_skin_tone": "👨🏿‍🤝‍👨🏼", + "men_holding_hands_tone5_tone3": "👨🏿‍🤝‍👨🏽", + "men_holding_hands_dark_skin_tone_medium_skin_tone": "👨🏿‍🤝‍👨🏽", + "men_holding_hands_tone5_tone4": "👨🏿‍🤝‍👨🏾", + "men_holding_hands_dark_skin_tone_medium_dark_skin_tone": "👨🏿‍🤝‍👨🏾", + "men_holding_hands_tone5": "👬🏿", + "men_holding_hands_dark_skin_tone": "👬🏿", + "couple_with_heart": "💑", + "couple_with_heart_tone1": "💑🏻", + "couple_with_heart_light_skin_tone": "💑🏻", + "couple_with_heart_person_person_tone1_tone2": "🧑🏻‍❤️‍🧑🏼", + "couple_with_heart_person_person_light_skin_tone_medium_light_skin_tone": "🧑🏻‍❤️‍🧑🏼", + "couple_with_heart_person_person_tone1_tone3": "🧑🏻‍❤️‍🧑🏽", + "couple_with_heart_person_person_light_skin_tone_medium_skin_tone": "🧑🏻‍❤️‍🧑🏽", + "couple_with_heart_person_person_tone1_tone4": "🧑🏻‍❤️‍🧑🏾", + "couple_with_heart_person_person_light_skin_tone_medium_dark_skin_tone": "🧑🏻‍❤️‍🧑🏾", + "couple_with_heart_person_person_tone1_tone5": "🧑🏻‍❤️‍🧑🏿", + "couple_with_heart_person_person_light_skin_tone_dark_skin_tone": "🧑🏻‍❤️‍🧑🏿", + "couple_with_heart_person_person_tone2_tone1": "🧑🏼‍❤️‍🧑🏻", + "couple_with_heart_person_person_medium_light_skin_tone_light_skin_tone": "🧑🏼‍❤️‍🧑🏻", + "couple_with_heart_tone2": "💑🏼", + "couple_with_heart_medium_light_skin_tone": "💑🏼", + "couple_with_heart_person_person_tone2_tone3": "🧑🏼‍❤️‍🧑🏽", + "couple_with_heart_person_person_medium_light_skin_tone_medium_skin_tone": "🧑🏼‍❤️‍🧑🏽", + "couple_with_heart_person_person_tone2_tone4": "🧑🏼‍❤️‍🧑🏾", + "couple_with_heart_person_person_medium_light_skin_tone_medium_dark_skin_tone": "🧑🏼‍❤️‍🧑🏾", + "couple_with_heart_person_person_tone2_tone5": "🧑🏼‍❤️‍🧑🏿", + "couple_with_heart_person_person_medium_light_skin_tone_dark_skin_tone": "🧑🏼‍❤️‍🧑🏿", + "couple_with_heart_person_person_tone3_tone1": "🧑🏽‍❤️‍🧑🏻", + "couple_with_heart_person_person_medium_skin_tone_light_skin_tone": "🧑🏽‍❤️‍🧑🏻", + "couple_with_heart_person_person_tone3_tone2": "🧑🏽‍❤️‍🧑🏼", + "couple_with_heart_person_person_medium_skin_tone_medium_light_skin_tone": "🧑🏽‍❤️‍🧑🏼", + "couple_with_heart_tone3": "💑🏽", + "couple_with_heart_medium_skin_tone": "💑🏽", + "couple_with_heart_person_person_tone3_tone4": "🧑🏽‍❤️‍🧑🏾", + "couple_with_heart_person_person_medium_skin_tone_medium_dark_skin_tone": "🧑🏽‍❤️‍🧑🏾", + "couple_with_heart_person_person_tone3_tone5": "🧑🏽‍❤️‍🧑🏿", + "couple_with_heart_person_person_medium_skin_tone_dark_skin_tone": "🧑🏽‍❤️‍🧑🏿", + "couple_with_heart_person_person_tone4_tone1": "🧑🏾‍❤️‍🧑🏻", + "couple_with_heart_person_person_medium_dark_skin_tone_light_skin_tone": "🧑🏾‍❤️‍🧑🏻", + "couple_with_heart_person_person_tone4_tone2": "🧑🏾‍❤️‍🧑🏼", + "couple_with_heart_person_person_medium_dark_skin_tone_medium_light_skin_tone": "🧑🏾‍❤️‍🧑🏼", + "couple_with_heart_person_person_tone4_tone3": "🧑🏾‍❤️‍🧑🏽", + "couple_with_heart_person_person_medium_dark_skin_tone_medium_skin_tone": "🧑🏾‍❤️‍🧑🏽", + "couple_with_heart_tone4": "💑🏾", + "couple_with_heart_medium_dark_skin_tone": "💑🏾", + "couple_with_heart_person_person_tone4_tone5": "🧑🏾‍❤️‍🧑🏿", + "couple_with_heart_person_person_medium_dark_skin_tone_dark_skin_tone": "🧑🏾‍❤️‍🧑🏿", + "couple_with_heart_person_person_tone5_tone1": "🧑🏿‍❤️‍🧑🏻", + "couple_with_heart_person_person_dark_skin_tone_light_skin_tone": "🧑🏿‍❤️‍🧑🏻", + "couple_with_heart_person_person_tone5_tone2": "🧑🏿‍❤️‍🧑🏼", + "couple_with_heart_person_person_dark_skin_tone_medium_light_skin_tone": "🧑🏿‍❤️‍🧑🏼", + "couple_with_heart_person_person_tone5_tone3": "🧑🏿‍❤️‍🧑🏽", + "couple_with_heart_person_person_dark_skin_tone_medium_skin_tone": "🧑🏿‍❤️‍🧑🏽", + "couple_with_heart_person_person_tone5_tone4": "🧑🏿‍❤️‍🧑🏾", + "couple_with_heart_person_person_dark_skin_tone_medium_dark_skin_tone": "🧑🏿‍❤️‍🧑🏾", + "couple_with_heart_tone5": "💑🏿", + "couple_with_heart_dark_skin_tone": "💑🏿", + "couple_with_heart_woman_man": "👩‍❤️‍👨", + "couple_with_heart_woman_man_tone1": "👩🏻‍❤️‍👨🏻", + "couple_with_heart_woman_man_light_skin_tone": "👩🏻‍❤️‍👨🏻", + "couple_with_heart_woman_man_tone1_tone2": "👩🏻‍❤️‍👨🏼", + "couple_with_heart_woman_man_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍👨🏼", + "couple_with_heart_woman_man_tone1_tone3": "👩🏻‍❤️‍👨🏽", + "couple_with_heart_woman_man_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍👨🏽", + "couple_with_heart_woman_man_tone1_tone4": "👩🏻‍❤️‍👨🏾", + "couple_with_heart_woman_man_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍👨🏾", + "couple_with_heart_woman_man_tone1_tone5": "👩🏻‍❤️‍👨🏿", + "couple_with_heart_woman_man_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍👨🏿", + "couple_with_heart_woman_man_tone2_tone1": "👩🏼‍❤️‍👨🏻", + "couple_with_heart_woman_man_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍👨🏻", + "couple_with_heart_woman_man_tone2": "👩🏼‍❤️‍👨🏼", + "couple_with_heart_woman_man_medium_light_skin_tone": "👩🏼‍❤️‍👨🏼", + "couple_with_heart_woman_man_tone2_tone3": "👩🏼‍❤️‍👨🏽", + "couple_with_heart_woman_man_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍👨🏽", + "couple_with_heart_woman_man_tone2_tone4": "👩🏼‍❤️‍👨🏾", + "couple_with_heart_woman_man_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍👨🏾", + "couple_with_heart_woman_man_tone2_tone5": "👩🏼‍❤️‍👨🏿", + "couple_with_heart_woman_man_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍👨🏿", + "couple_with_heart_woman_man_tone3_tone1": "👩🏽‍❤️‍👨🏻", + "couple_with_heart_woman_man_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍👨🏻", + "couple_with_heart_woman_man_tone3_tone2": "👩🏽‍❤️‍👨🏼", + "couple_with_heart_woman_man_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍👨🏼", + "couple_with_heart_woman_man_tone3": "👩🏽‍❤️‍👨🏽", + "couple_with_heart_woman_man_medium_skin_tone": "👩🏽‍❤️‍👨🏽", + "couple_with_heart_woman_man_tone3_tone4": "👩🏽‍❤️‍👨🏾", + "couple_with_heart_woman_man_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍👨🏾", + "couple_with_heart_woman_man_tone3_tone5": "👩🏽‍❤️‍👨🏿", + "couple_with_heart_woman_man_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍👨🏿", + "couple_with_heart_woman_man_tone4_tone1": "👩🏾‍❤️‍👨🏻", + "couple_with_heart_woman_man_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍👨🏻", + "couple_with_heart_woman_man_tone4_tone2": "👩🏾‍❤️‍👨🏼", + "couple_with_heart_woman_man_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍👨🏼", + "couple_with_heart_woman_man_tone4_tone3": "👩🏾‍❤️‍👨🏽", + "couple_with_heart_woman_man_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍👨🏽", + "couple_with_heart_woman_man_tone4": "👩🏾‍❤️‍👨🏾", + "couple_with_heart_woman_man_medium_dark_skin_tone": "👩🏾‍❤️‍👨🏾", + "couple_with_heart_woman_man_tone4_tone5": "👩🏾‍❤️‍👨🏿", + "couple_with_heart_woman_man_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍👨🏿", + "couple_with_heart_woman_man_tone5_tone1": "👩🏿‍❤️‍👨🏻", + "couple_with_heart_woman_man_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍👨🏻", + "couple_with_heart_woman_man_tone5_tone2": "👩🏿‍❤️‍👨🏼", + "couple_with_heart_woman_man_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍👨🏼", + "couple_with_heart_woman_man_tone5_tone3": "👩🏿‍❤️‍👨🏽", + "couple_with_heart_woman_man_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍👨🏽", + "couple_with_heart_woman_man_tone5_tone4": "👩🏿‍❤️‍👨🏾", + "couple_with_heart_woman_man_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍👨🏾", + "couple_with_heart_woman_man_tone5": "👩🏿‍❤️‍👨🏿", + "couple_with_heart_woman_man_dark_skin_tone": "👩🏿‍❤️‍👨🏿", + "couple_ww": "👩‍❤️‍👩", + "couple_with_heart_ww": "👩‍❤️‍👩", + "couple_with_heart_woman_woman_tone1": "👩🏻‍❤️‍👩🏻", + "couple_with_heart_woman_woman_light_skin_tone": "👩🏻‍❤️‍👩🏻", + "couple_with_heart_woman_woman_tone1_tone2": "👩🏻‍❤️‍👩🏼", + "couple_with_heart_woman_woman_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍👩🏼", + "couple_with_heart_woman_woman_tone1_tone3": "👩🏻‍❤️‍👩🏽", + "couple_with_heart_woman_woman_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍👩🏽", + "couple_with_heart_woman_woman_tone1_tone4": "👩🏻‍❤️‍👩🏾", + "couple_with_heart_woman_woman_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍👩🏾", + "couple_with_heart_woman_woman_tone1_tone5": "👩🏻‍❤️‍👩🏿", + "couple_with_heart_woman_woman_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍👩🏿", + "couple_with_heart_woman_woman_tone2_tone1": "👩🏼‍❤️‍👩🏻", + "couple_with_heart_woman_woman_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍👩🏻", + "couple_with_heart_woman_woman_tone2": "👩🏼‍❤️‍👩🏼", + "couple_with_heart_woman_woman_medium_light_skin_tone": "👩🏼‍❤️‍👩🏼", + "couple_with_heart_woman_woman_tone2_tone3": "👩🏼‍❤️‍👩🏽", + "couple_with_heart_woman_woman_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍👩🏽", + "couple_with_heart_woman_woman_tone2_tone4": "👩🏼‍❤️‍👩🏾", + "couple_with_heart_woman_woman_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍👩🏾", + "couple_with_heart_woman_woman_tone2_tone5": "👩🏼‍❤️‍👩🏿", + "couple_with_heart_woman_woman_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍👩🏿", + "couple_with_heart_woman_woman_tone3_tone1": "👩🏽‍❤️‍👩🏻", + "couple_with_heart_woman_woman_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍👩🏻", + "couple_with_heart_woman_woman_tone3_tone2": "👩🏽‍❤️‍👩🏼", + "couple_with_heart_woman_woman_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍👩🏼", + "couple_with_heart_woman_woman_tone3": "👩🏽‍❤️‍👩🏽", + "couple_with_heart_woman_woman_medium_skin_tone": "👩🏽‍❤️‍👩🏽", + "couple_with_heart_woman_woman_tone3_tone4": "👩🏽‍❤️‍👩🏾", + "couple_with_heart_woman_woman_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍👩🏾", + "couple_with_heart_woman_woman_tone3_tone5": "👩🏽‍❤️‍👩🏿", + "couple_with_heart_woman_woman_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍👩🏿", + "couple_with_heart_woman_woman_tone4_tone1": "👩🏾‍❤️‍👩🏻", + "couple_with_heart_woman_woman_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍👩🏻", + "couple_with_heart_woman_woman_tone4_tone2": "👩🏾‍❤️‍👩🏼", + "couple_with_heart_woman_woman_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍👩🏼", + "couple_with_heart_woman_woman_tone4_tone3": "👩🏾‍❤️‍👩🏽", + "couple_with_heart_woman_woman_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍👩🏽", + "couple_with_heart_woman_woman_tone4": "👩🏾‍❤️‍👩🏾", + "couple_with_heart_woman_woman_medium_dark_skin_tone": "👩🏾‍❤️‍👩🏾", + "couple_with_heart_woman_woman_tone4_tone5": "👩🏾‍❤️‍👩🏿", + "couple_with_heart_woman_woman_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍👩🏿", + "couple_with_heart_woman_woman_tone5_tone1": "👩🏿‍❤️‍👩🏻", + "couple_with_heart_woman_woman_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍👩🏻", + "couple_with_heart_woman_woman_tone5_tone2": "👩🏿‍❤️‍👩🏼", + "couple_with_heart_woman_woman_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍👩🏼", + "couple_with_heart_woman_woman_tone5_tone3": "👩🏿‍❤️‍👩🏽", + "couple_with_heart_woman_woman_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍👩🏽", + "couple_with_heart_woman_woman_tone5_tone4": "👩🏿‍❤️‍👩🏾", + "couple_with_heart_woman_woman_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍👩🏾", + "couple_with_heart_woman_woman_tone5": "👩🏿‍❤️‍👩🏿", + "couple_with_heart_woman_woman_dark_skin_tone": "👩🏿‍❤️‍👩🏿", + "couple_mm": "👨‍❤️‍👨", + "couple_with_heart_mm": "👨‍❤️‍👨", + "couple_with_heart_man_man_tone1": "👨🏻‍❤️‍👨🏻", + "couple_with_heart_man_man_light_skin_tone": "👨🏻‍❤️‍👨🏻", + "couple_with_heart_man_man_tone1_tone2": "👨🏻‍❤️‍👨🏼", + "couple_with_heart_man_man_light_skin_tone_medium_light_skin_tone": "👨🏻‍❤️‍👨🏼", + "couple_with_heart_man_man_tone1_tone3": "👨🏻‍❤️‍👨🏽", + "couple_with_heart_man_man_light_skin_tone_medium_skin_tone": "👨🏻‍❤️‍👨🏽", + "couple_with_heart_man_man_tone1_tone4": "👨🏻‍❤️‍👨🏾", + "couple_with_heart_man_man_light_skin_tone_medium_dark_skin_tone": "👨🏻‍❤️‍👨🏾", + "couple_with_heart_man_man_tone1_tone5": "👨🏻‍❤️‍👨🏿", + "couple_with_heart_man_man_light_skin_tone_dark_skin_tone": "👨🏻‍❤️‍👨🏿", + "couple_with_heart_man_man_tone2_tone1": "👨🏼‍❤️‍👨🏻", + "couple_with_heart_man_man_medium_light_skin_tone_light_skin_tone": "👨🏼‍❤️‍👨🏻", + "couple_with_heart_man_man_tone2": "👨🏼‍❤️‍👨🏼", + "couple_with_heart_man_man_medium_light_skin_tone": "👨🏼‍❤️‍👨🏼", + "couple_with_heart_man_man_tone2_tone3": "👨🏼‍❤️‍👨🏽", + "couple_with_heart_man_man_medium_light_skin_tone_medium_skin_tone": "👨🏼‍❤️‍👨🏽", + "couple_with_heart_man_man_tone2_tone4": "👨🏼‍❤️‍👨🏾", + "couple_with_heart_man_man_medium_light_skin_tone_medium_dark_skin_tone": "👨🏼‍❤️‍👨🏾", + "couple_with_heart_man_man_tone2_tone5": "👨🏼‍❤️‍👨🏿", + "couple_with_heart_man_man_medium_light_skin_tone_dark_skin_tone": "👨🏼‍❤️‍👨🏿", + "couple_with_heart_man_man_tone3_tone1": "👨🏽‍❤️‍👨🏻", + "couple_with_heart_man_man_medium_skin_tone_light_skin_tone": "👨🏽‍❤️‍👨🏻", + "couple_with_heart_man_man_tone3_tone2": "👨🏽‍❤️‍👨🏼", + "couple_with_heart_man_man_medium_skin_tone_medium_light_skin_tone": "👨🏽‍❤️‍👨🏼", + "couple_with_heart_man_man_tone3": "👨🏽‍❤️‍👨🏽", + "couple_with_heart_man_man_medium_skin_tone": "👨🏽‍❤️‍👨🏽", + "couple_with_heart_man_man_tone3_tone4": "👨🏽‍❤️‍👨🏾", + "couple_with_heart_man_man_medium_skin_tone_medium_dark_skin_tone": "👨🏽‍❤️‍👨🏾", + "couple_with_heart_man_man_tone3_tone5": "👨🏽‍❤️‍👨🏿", + "couple_with_heart_man_man_medium_skin_tone_dark_skin_tone": "👨🏽‍❤️‍👨🏿", + "couple_with_heart_man_man_tone4_tone1": "👨🏾‍❤️‍👨🏻", + "couple_with_heart_man_man_medium_dark_skin_tone_light_skin_tone": "👨🏾‍❤️‍👨🏻", + "couple_with_heart_man_man_tone4_tone2": "👨🏾‍❤️‍👨🏼", + "couple_with_heart_man_man_medium_dark_skin_tone_medium_light_skin_tone": "👨🏾‍❤️‍👨🏼", + "couple_with_heart_man_man_tone4_tone3": "👨🏾‍❤️‍👨🏽", + "couple_with_heart_man_man_medium_dark_skin_tone_medium_skin_tone": "👨🏾‍❤️‍👨🏽", + "couple_with_heart_man_man_tone4": "👨🏾‍❤️‍👨🏾", + "couple_with_heart_man_man_medium_dark_skin_tone": "👨🏾‍❤️‍👨🏾", + "couple_with_heart_man_man_tone4_tone5": "👨🏾‍❤️‍👨🏿", + "couple_with_heart_man_man_medium_dark_skin_tone_dark_skin_tone": "👨🏾‍❤️‍👨🏿", + "couple_with_heart_man_man_tone5_tone1": "👨🏿‍❤️‍👨🏻", + "couple_with_heart_man_man_dark_skin_tone_light_skin_tone": "👨🏿‍❤️‍👨🏻", + "couple_with_heart_man_man_tone5_tone2": "👨🏿‍❤️‍👨🏼", + "couple_with_heart_man_man_dark_skin_tone_medium_light_skin_tone": "👨🏿‍❤️‍👨🏼", + "couple_with_heart_man_man_tone5_tone3": "👨🏿‍❤️‍👨🏽", + "couple_with_heart_man_man_dark_skin_tone_medium_skin_tone": "👨🏿‍❤️‍👨🏽", + "couple_with_heart_man_man_tone5_tone4": "👨🏿‍❤️‍👨🏾", + "couple_with_heart_man_man_dark_skin_tone_medium_dark_skin_tone": "👨🏿‍❤️‍👨🏾", + "couple_with_heart_man_man_tone5": "👨🏿‍❤️‍👨🏿", + "couple_with_heart_man_man_dark_skin_tone": "👨🏿‍❤️‍👨🏿", + "couplekiss": "💏", + "kiss_tone1": "💏🏻", + "kiss_light_skin_tone": "💏🏻", + "kiss_person_person_tone1_tone2": "🧑🏻‍❤️‍💋‍🧑🏼", + "kiss_person_person_light_skin_tone_medium_light_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏼", + "kiss_person_person_tone1_tone3": "🧑🏻‍❤️‍💋‍🧑🏽", + "kiss_person_person_light_skin_tone_medium_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏽", + "kiss_person_person_tone1_tone4": "🧑🏻‍❤️‍💋‍🧑🏾", + "kiss_person_person_light_skin_tone_medium_dark_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏾", + "kiss_person_person_tone1_tone5": "🧑🏻‍❤️‍💋‍🧑🏿", + "kiss_person_person_light_skin_tone_dark_skin_tone": "🧑🏻‍❤️‍💋‍🧑🏿", + "kiss_person_person_tone2_tone1": "🧑🏼‍❤️‍💋‍🧑🏻", + "kiss_person_person_medium_light_skin_tone_light_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏻", + "kiss_tone2": "💏🏼", + "kiss_medium_light_skin_tone": "💏🏼", + "kiss_person_person_tone2_tone3": "🧑🏼‍❤️‍💋‍🧑🏽", + "kiss_person_person_medium_light_skin_tone_medium_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏽", + "kiss_person_person_tone2_tone4": "🧑🏼‍❤️‍💋‍🧑🏾", + "kiss_person_person_medium_light_skin_tone_medium_dark_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏾", + "kiss_person_person_tone2_tone5": "🧑🏼‍❤️‍💋‍🧑🏿", + "kiss_person_person_medium_light_skin_tone_dark_skin_tone": "🧑🏼‍❤️‍💋‍🧑🏿", + "kiss_person_person_tone3_tone1": "🧑🏽‍❤️‍💋‍🧑🏻", + "kiss_person_person_medium_skin_tone_light_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏻", + "kiss_person_person_tone3_tone2": "🧑🏽‍❤️‍💋‍🧑🏼", + "kiss_person_person_medium_skin_tone_medium_light_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏼", + "kiss_tone3": "💏🏽", + "kiss_medium_skin_tone": "💏🏽", + "kiss_person_person_tone3_tone4": "🧑🏽‍❤️‍💋‍🧑🏾", + "kiss_person_person_medium_skin_tone_medium_dark_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏾", + "kiss_person_person_tone3_tone5": "🧑🏽‍❤️‍💋‍🧑🏿", + "kiss_person_person_medium_skin_tone_dark_skin_tone": "🧑🏽‍❤️‍💋‍🧑🏿", + "kiss_person_person_tone4_tone1": "🧑🏾‍❤️‍💋‍🧑🏻", + "kiss_person_person_medium_dark_skin_tone_light_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏻", + "kiss_person_person_tone4_tone2": "🧑🏾‍❤️‍💋‍🧑🏼", + "kiss_person_person_medium_dark_skin_tone_medium_light_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏼", + "kiss_person_person_tone4_tone3": "🧑🏾‍❤️‍💋‍🧑🏽", + "kiss_person_person_medium_dark_skin_tone_medium_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏽", + "kiss_tone4": "💏🏾", + "kiss_medium_dark_skin_tone": "💏🏾", + "kiss_person_person_tone4_tone5": "🧑🏾‍❤️‍💋‍🧑🏿", + "kiss_person_person_medium_dark_skin_tone_dark_skin_tone": "🧑🏾‍❤️‍💋‍🧑🏿", + "kiss_person_person_tone5_tone1": "🧑🏿‍❤️‍💋‍🧑🏻", + "kiss_person_person_dark_skin_tone_light_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏻", + "kiss_person_person_tone5_tone2": "🧑🏿‍❤️‍💋‍🧑🏼", + "kiss_person_person_dark_skin_tone_medium_light_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏼", + "kiss_person_person_tone5_tone3": "🧑🏿‍❤️‍💋‍🧑🏽", + "kiss_person_person_dark_skin_tone_medium_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏽", + "kiss_person_person_tone5_tone4": "🧑🏿‍❤️‍💋‍🧑🏾", + "kiss_person_person_dark_skin_tone_medium_dark_skin_tone": "🧑🏿‍❤️‍💋‍🧑🏾", + "kiss_tone5": "💏🏿", + "kiss_dark_skin_tone": "💏🏿", + "kiss_woman_man": "👩‍❤️‍💋‍👨", + "kiss_woman_man_tone1": "👩🏻‍❤️‍💋‍👨🏻", + "kiss_woman_man_light_skin_tone": "👩🏻‍❤️‍💋‍👨🏻", + "kiss_woman_man_tone1_tone2": "👩🏻‍❤️‍💋‍👨🏼", + "kiss_woman_man_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍💋‍👨🏼", + "kiss_woman_man_tone1_tone3": "👩🏻‍❤️‍💋‍👨🏽", + "kiss_woman_man_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍💋‍👨🏽", + "kiss_woman_man_tone1_tone4": "👩🏻‍❤️‍💋‍👨🏾", + "kiss_woman_man_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍💋‍👨🏾", + "kiss_woman_man_tone1_tone5": "👩🏻‍❤️‍💋‍👨🏿", + "kiss_woman_man_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍💋‍👨🏿", + "kiss_woman_man_tone2_tone1": "👩🏼‍❤️‍💋‍👨🏻", + "kiss_woman_man_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍💋‍👨🏻", + "kiss_woman_man_tone2": "👩🏼‍❤️‍💋‍👨🏼", + "kiss_woman_man_medium_light_skin_tone": "👩🏼‍❤️‍💋‍👨🏼", + "kiss_woman_man_tone2_tone3": "👩🏼‍❤️‍💋‍👨🏽", + "kiss_woman_man_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍💋‍👨🏽", + "kiss_woman_man_tone2_tone4": "👩🏼‍❤️‍💋‍👨🏾", + "kiss_woman_man_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍💋‍👨🏾", + "kiss_woman_man_tone2_tone5": "👩🏼‍❤️‍💋‍👨🏿", + "kiss_woman_man_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍💋‍👨🏿", + "kiss_woman_man_tone3_tone1": "👩🏽‍❤️‍💋‍👨🏻", + "kiss_woman_man_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍💋‍👨🏻", + "kiss_woman_man_tone3_tone2": "👩🏽‍❤️‍💋‍👨🏼", + "kiss_woman_man_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍💋‍👨🏼", + "kiss_woman_man_tone3": "👩🏽‍❤️‍💋‍👨🏽", + "kiss_woman_man_medium_skin_tone": "👩🏽‍❤️‍💋‍👨🏽", + "kiss_woman_man_tone3_tone4": "👩🏽‍❤️‍💋‍👨🏾", + "kiss_woman_man_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍💋‍👨🏾", + "kiss_woman_man_tone3_tone5": "👩🏽‍❤️‍💋‍👨🏿", + "kiss_woman_man_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍💋‍👨🏿", + "kiss_woman_man_tone4_tone1": "👩🏾‍❤️‍💋‍👨🏻", + "kiss_woman_man_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍💋‍👨🏻", + "kiss_woman_man_tone4_tone2": "👩🏾‍❤️‍💋‍👨🏼", + "kiss_woman_man_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍💋‍👨🏼", + "kiss_woman_man_tone4_tone3": "👩🏾‍❤️‍💋‍👨🏽", + "kiss_woman_man_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍💋‍👨🏽", + "kiss_woman_man_tone4": "👩🏾‍❤️‍💋‍👨🏾", + "kiss_woman_man_medium_dark_skin_tone": "👩🏾‍❤️‍💋‍👨🏾", + "kiss_woman_man_tone4_tone5": "👩🏾‍❤️‍💋‍👨🏿", + "kiss_woman_man_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍💋‍👨🏿", + "kiss_woman_man_tone5_tone1": "👩🏿‍❤️‍💋‍👨🏻", + "kiss_woman_man_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍💋‍👨🏻", + "kiss_woman_man_tone5_tone2": "👩🏿‍❤️‍💋‍👨🏼", + "kiss_woman_man_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍💋‍👨🏼", + "kiss_woman_man_tone5_tone3": "👩🏿‍❤️‍💋‍👨🏽", + "kiss_woman_man_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍💋‍👨🏽", + "kiss_woman_man_tone5_tone4": "👩🏿‍❤️‍💋‍👨🏾", + "kiss_woman_man_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍💋‍👨🏾", + "kiss_woman_man_tone5": "👩🏿‍❤️‍💋‍👨🏿", + "kiss_woman_man_dark_skin_tone": "👩🏿‍❤️‍💋‍👨🏿", + "kiss_ww": "👩‍❤️‍💋‍👩", + "couplekiss_ww": "👩‍❤️‍💋‍👩", + "kiss_woman_woman_tone1": "👩🏻‍❤️‍💋‍👩🏻", + "kiss_woman_woman_light_skin_tone": "👩🏻‍❤️‍💋‍👩🏻", + "kiss_woman_woman_tone1_tone2": "👩🏻‍❤️‍💋‍👩🏼", + "kiss_woman_woman_light_skin_tone_medium_light_skin_tone": "👩🏻‍❤️‍💋‍👩🏼", + "kiss_woman_woman_tone1_tone3": "👩🏻‍❤️‍💋‍👩🏽", + "kiss_woman_woman_light_skin_tone_medium_skin_tone": "👩🏻‍❤️‍💋‍👩🏽", + "kiss_woman_woman_tone1_tone4": "👩🏻‍❤️‍💋‍👩🏾", + "kiss_woman_woman_light_skin_tone_medium_dark_skin_tone": "👩🏻‍❤️‍💋‍👩🏾", + "kiss_woman_woman_tone1_tone5": "👩🏻‍❤️‍💋‍👩🏿", + "kiss_woman_woman_light_skin_tone_dark_skin_tone": "👩🏻‍❤️‍💋‍👩🏿", + "kiss_woman_woman_tone2_tone1": "👩🏼‍❤️‍💋‍👩🏻", + "kiss_woman_woman_medium_light_skin_tone_light_skin_tone": "👩🏼‍❤️‍💋‍👩🏻", + "kiss_woman_woman_tone2": "👩🏼‍❤️‍💋‍👩🏼", + "kiss_woman_woman_medium_light_skin_tone": "👩🏼‍❤️‍💋‍👩🏼", + "kiss_woman_woman_tone2_tone3": "👩🏼‍❤️‍💋‍👩🏽", + "kiss_woman_woman_medium_light_skin_tone_medium_skin_tone": "👩🏼‍❤️‍💋‍👩🏽", + "kiss_woman_woman_tone2_tone4": "👩🏼‍❤️‍💋‍👩🏾", + "kiss_woman_woman_medium_light_skin_tone_medium_dark_skin_tone": "👩🏼‍❤️‍💋‍👩🏾", + "kiss_woman_woman_tone2_tone5": "👩🏼‍❤️‍💋‍👩🏿", + "kiss_woman_woman_medium_light_skin_tone_dark_skin_tone": "👩🏼‍❤️‍💋‍👩🏿", + "kiss_woman_woman_tone3_tone1": "👩🏽‍❤️‍💋‍👩🏻", + "kiss_woman_woman_medium_skin_tone_light_skin_tone": "👩🏽‍❤️‍💋‍👩🏻", + "kiss_woman_woman_tone3_tone2": "👩🏽‍❤️‍💋‍👩🏼", + "kiss_woman_woman_medium_skin_tone_medium_light_skin_tone": "👩🏽‍❤️‍💋‍👩🏼", + "kiss_woman_woman_tone3": "👩🏽‍❤️‍💋‍👩🏽", + "kiss_woman_woman_medium_skin_tone": "👩🏽‍❤️‍💋‍👩🏽", + "kiss_woman_woman_tone3_tone4": "👩🏽‍❤️‍💋‍👩🏾", + "kiss_woman_woman_medium_skin_tone_medium_dark_skin_tone": "👩🏽‍❤️‍💋‍👩🏾", + "kiss_woman_woman_tone3_tone5": "👩🏽‍❤️‍💋‍👩🏿", + "kiss_woman_woman_medium_skin_tone_dark_skin_tone": "👩🏽‍❤️‍💋‍👩🏿", + "kiss_woman_woman_tone4_tone1": "👩🏾‍❤️‍💋‍👩🏻", + "kiss_woman_woman_medium_dark_skin_tone_light_skin_tone": "👩🏾‍❤️‍💋‍👩🏻", + "kiss_woman_woman_tone4_tone2": "👩🏾‍❤️‍💋‍👩🏼", + "kiss_woman_woman_medium_dark_skin_tone_medium_light_skin_tone": "👩🏾‍❤️‍💋‍👩🏼", + "kiss_woman_woman_tone4_tone3": "👩🏾‍❤️‍💋‍👩🏽", + "kiss_woman_woman_medium_dark_skin_tone_medium_skin_tone": "👩🏾‍❤️‍💋‍👩🏽", + "kiss_woman_woman_tone4": "👩🏾‍❤️‍💋‍👩🏾", + "kiss_woman_woman_medium_dark_skin_tone": "👩🏾‍❤️‍💋‍👩🏾", + "kiss_woman_woman_tone4_tone5": "👩🏾‍❤️‍💋‍👩🏿", + "kiss_woman_woman_medium_dark_skin_tone_dark_skin_tone": "👩🏾‍❤️‍💋‍👩🏿", + "kiss_woman_woman_tone5_tone1": "👩🏿‍❤️‍💋‍👩🏻", + "kiss_woman_woman_dark_skin_tone_light_skin_tone": "👩🏿‍❤️‍💋‍👩🏻", + "kiss_woman_woman_tone5_tone2": "👩🏿‍❤️‍💋‍👩🏼", + "kiss_woman_woman_dark_skin_tone_medium_light_skin_tone": "👩🏿‍❤️‍💋‍👩🏼", + "kiss_woman_woman_tone5_tone3": "👩🏿‍❤️‍💋‍👩🏽", + "kiss_woman_woman_dark_skin_tone_medium_skin_tone": "👩🏿‍❤️‍💋‍👩🏽", + "kiss_woman_woman_tone5_tone4": "👩🏿‍❤️‍💋‍👩🏾", + "kiss_woman_woman_dark_skin_tone_medium_dark_skin_tone": "👩🏿‍❤️‍💋‍👩🏾", + "kiss_woman_woman_tone5": "👩🏿‍❤️‍💋‍👩🏿", + "kiss_woman_woman_dark_skin_tone": "👩🏿‍❤️‍💋‍👩🏿", + "kiss_mm": "👨‍❤️‍💋‍👨", + "couplekiss_mm": "👨‍❤️‍💋‍👨", + "kiss_man_man": "👨‍❤️‍💋‍👨", + "kiss_man_man_tone1": "👨🏻‍❤️‍💋‍👨🏻", + "kiss_man_man_light_skin_tone": "👨🏻‍❤️‍💋‍👨🏻", + "kiss_man_man_tone1_tone2": "👨🏻‍❤️‍💋‍👨🏼", + "kiss_man_man_light_skin_tone_medium_light_skin_tone": "👨🏻‍❤️‍💋‍👨🏼", + "kiss_man_man_tone1_tone3": "👨🏻‍❤️‍💋‍👨🏽", + "kiss_man_man_light_skin_tone_medium_skin_tone": "👨🏻‍❤️‍💋‍👨🏽", + "kiss_man_man_tone1_tone4": "👨🏻‍❤️‍💋‍👨🏾", + "kiss_man_man_light_skin_tone_medium_dark_skin_tone": "👨🏻‍❤️‍💋‍👨🏾", + "kiss_man_man_tone1_tone5": "👨🏻‍❤️‍💋‍👨🏿", + "kiss_man_man_light_skin_tone_dark_skin_tone": "👨🏻‍❤️‍💋‍👨🏿", + "kiss_man_man_tone2_tone1": "👨🏼‍❤️‍💋‍👨🏻", + "kiss_man_man_medium_light_skin_tone_light_skin_tone": "👨🏼‍❤️‍💋‍👨🏻", + "kiss_man_man_tone2": "👨🏼‍❤️‍💋‍👨🏼", + "kiss_man_man_medium_light_skin_tone": "👨🏼‍❤️‍💋‍👨🏼", + "kiss_man_man_tone2_tone3": "👨🏼‍❤️‍💋‍👨🏽", + "kiss_man_man_medium_light_skin_tone_medium_skin_tone": "👨🏼‍❤️‍💋‍👨🏽", + "kiss_man_man_tone2_tone4": "👨🏼‍❤️‍💋‍👨🏾", + "kiss_man_man_medium_light_skin_tone_medium_dark_skin_tone": "👨🏼‍❤️‍💋‍👨🏾", + "kiss_man_man_tone2_tone5": "👨🏼‍❤️‍💋‍👨🏿", + "kiss_man_man_medium_light_skin_tone_dark_skin_tone": "👨🏼‍❤️‍💋‍👨🏿", + "kiss_man_man_tone3_tone1": "👨🏽‍❤️‍💋‍👨🏻", + "kiss_man_man_medium_skin_tone_light_skin_tone": "👨🏽‍❤️‍💋‍👨🏻", + "kiss_man_man_tone3_tone2": "👨🏽‍❤️‍💋‍👨🏼", + "kiss_man_man_medium_skin_tone_medium_light_skin_tone": "👨🏽‍❤️‍💋‍👨🏼", + "kiss_man_man_tone3": "👨🏽‍❤️‍💋‍👨🏽", + "kiss_man_man_medium_skin_tone": "👨🏽‍❤️‍💋‍👨🏽", + "kiss_man_man_tone3_tone4": "👨🏽‍❤️‍💋‍👨🏾", + "kiss_man_man_medium_skin_tone_medium_dark_skin_tone": "👨🏽‍❤️‍💋‍👨🏾", + "kiss_man_man_tone3_tone5": "👨🏽‍❤️‍💋‍👨🏿", + "kiss_man_man_medium_skin_tone_dark_skin_tone": "👨🏽‍❤️‍💋‍👨🏿", + "kiss_man_man_tone4_tone1": "👨🏾‍❤️‍💋‍👨🏻", + "kiss_man_man_medium_dark_skin_tone_light_skin_tone": "👨🏾‍❤️‍💋‍👨🏻", + "kiss_man_man_tone4_tone2": "👨🏾‍❤️‍💋‍👨🏼", + "kiss_man_man_medium_dark_skin_tone_medium_light_skin_tone": "👨🏾‍❤️‍💋‍👨🏼", + "kiss_man_man_tone4_tone3": "👨🏾‍❤️‍💋‍👨🏽", + "kiss_man_man_medium_dark_skin_tone_medium_skin_tone": "👨🏾‍❤️‍💋‍👨🏽", + "kiss_man_man_tone4": "👨🏾‍❤️‍💋‍👨🏾", + "kiss_man_man_medium_dark_skin_tone": "👨🏾‍❤️‍💋‍👨🏾", + "kiss_man_man_tone4_tone5": "👨🏾‍❤️‍💋‍👨🏿", + "kiss_man_man_medium_dark_skin_tone_dark_skin_tone": "👨🏾‍❤️‍💋‍👨🏿", + "kiss_man_man_tone5_tone1": "👨🏿‍❤️‍💋‍👨🏻", + "kiss_man_man_dark_skin_tone_light_skin_tone": "👨🏿‍❤️‍💋‍👨🏻", + "kiss_man_man_tone5_tone2": "👨🏿‍❤️‍💋‍👨🏼", + "kiss_man_man_dark_skin_tone_medium_light_skin_tone": "👨🏿‍❤️‍💋‍👨🏼", + "kiss_man_man_tone5_tone3": "👨🏿‍❤️‍💋‍👨🏽", + "kiss_man_man_dark_skin_tone_medium_skin_tone": "👨🏿‍❤️‍💋‍👨🏽", + "kiss_man_man_tone5_tone4": "👨🏿‍❤️‍💋‍👨🏾", + "kiss_man_man_dark_skin_tone_medium_dark_skin_tone": "👨🏿‍❤️‍💋‍👨🏾", + "kiss_man_man_tone5": "👨🏿‍❤️‍💋‍👨🏿", + "kiss_man_man_dark_skin_tone": "👨🏿‍❤️‍💋‍👨🏿", + "family_adult_adult_child_child": "🧑‍🧑‍🧒‍🧒", + "family_adult_adult_child": "🧑‍🧑‍🧒", + "family_adult_child_child": "🧑‍🧒‍🧒", + "family_adult_child": "🧑‍🧒", + "family": "👪", + "family_man_woman_boy": "👨‍👩‍👦", + "family_mwg": "👨‍👩‍👧", + "family_mwgb": "👨‍👩‍👧‍👦", + "family_mwbb": "👨‍👩‍👦‍👦", + "family_mwgg": "👨‍👩‍👧‍👧", + "family_wwb": "👩‍👩‍👦", + "family_wwg": "👩‍👩‍👧", + "family_wwgb": "👩‍👩‍👧‍👦", + "family_wwbb": "👩‍👩‍👦‍👦", + "family_wwgg": "👩‍👩‍👧‍👧", + "family_mmb": "👨‍👨‍👦", + "family_mmg": "👨‍👨‍👧", + "family_mmgb": "👨‍👨‍👧‍👦", + "family_mmbb": "👨‍👨‍👦‍👦", + "family_mmgg": "👨‍👨‍👧‍👧", + "family_woman_boy": "👩‍👦", + "family_woman_girl": "👩‍👧", + "family_woman_girl_boy": "👩‍👧‍👦", + "family_woman_boy_boy": "👩‍👦‍👦", + "family_woman_girl_girl": "👩‍👧‍👧", + "family_man_boy": "👨‍👦", + "family_man_girl": "👨‍👧", + "family_man_girl_boy": "👨‍👧‍👦", + "family_man_boy_boy": "👨‍👦‍👦", + "family_man_girl_girl": "👨‍👧‍👧", + "knot": "🪢", + "yarn": "🧶", + "thread": "🧵", + "sewing_needle": "🪡", + "coat": "🧥", + "lab_coat": "🥼", + "safety_vest": "🦺", + "womans_clothes": "👚", + "shirt": "👕", + "t_shirt": "👕", + "jeans": "👖", + "briefs": "🩲", + "shorts": "🩳", + "necktie": "👔", + "dress": "👗", + "bikini": "👙", + "one_piece_swimsuit": "🩱", + "kimono": "👘", + "sari": "🥻", + "thong_sandal": "🩴", + "womans_flat_shoe": "🥿", + "flat_shoe": "🥿", + "high_heel": "👠", + "sandal": "👡", + "womans_sandal": "👡", + "boot": "👢", + "womans_boot": "👢", + "mans_shoe": "👞", + "athletic_shoe": "👟", + "running_shoe": "👟", + "hiking_boot": "🥾", + "socks": "🧦", + "gloves": "🧤", + "scarf": "🧣", + "tophat": "🎩", + "top_hat": "🎩", + "billed_cap": "🧢", + "womans_hat": "👒", + "mortar_board": "🎓", + "helmet_with_cross": "⛑️", + "helmet_with_white_cross": "⛑️", + "military_helmet": "🪖", + "crown": "👑", + "ring": "💍", + "pouch": "👝", + "clutch_bag": "👝", + "purse": "👛", + "handbag": "👜", + "briefcase": "💼", + "school_satchel": "🎒", + "backpack": "🎒", + "luggage": "🧳", + "eyeglasses": "👓", + "glasses": "👓", + "dark_sunglasses": "🕶️", + "goggles": "🥽", + "closed_umbrella": "🌂", + "dog": "🐶", + "dog_face": "🐶", + "cat": "🐱", + "cat_face": "🐱", + "mouse": "🐭", + "mouse_face": "🐭", + "hamster": "🐹", + "rabbit": "🐰", + "rabbit_face": "🐰", + "fox": "🦊", + "fox_face": "🦊", + "bear": "🐻", + "panda_face": "🐼", + "panda": "🐼", + "polar_bear": "🐻‍❄️", + "koala": "🐨", + "tiger": "🐯", + "tiger_face": "🐯", + "lion_face": "🦁", + "lion": "🦁", + "cow": "🐮", + "cow_face": "🐮", + "pig": "🐷", + "pig_face": "🐷", + "pig_nose": "🐽", + "frog": "🐸", + "monkey_face": "🐵", + "see_no_evil": "🙈", + "hear_no_evil": "🙉", + "speak_no_evil": "🙊", + "monkey": "🐒", + "chicken": "🐔", + "penguin": "🐧", + "bird": "🐦", + "baby_chick": "🐤", + "hatching_chick": "🐣", + "hatched_chick": "🐥", + "goose": "🪿", + "duck": "🦆", + "black_bird": "🐦‍⬛", + "eagle": "🦅", + "owl": "🦉", + "bat": "🦇", + "wolf": "🐺", + "boar": "🐗", + "horse": "🐴", + "horse_face": "🐴", + "unicorn": "🦄", + "unicorn_face": "🦄", + "moose": "🫎", + "bee": "🐝", + "honeybee": "🐝", + "worm": "🪱", + "bug": "🐛", + "butterfly": "🦋", + "snail": "🐌", + "lady_beetle": "🐞", + "ant": "🐜", + "fly": "🪰", + "beetle": "🪲", + "cockroach": "🪳", + "mosquito": "🦟", + "cricket": "🦗", + "spider": "🕷️", + "spider_web": "🕸️", + "scorpion": "🦂", + "turtle": "🐢", + "snake": "🐍", + "lizard": "🦎", + "t_rex": "🦖", + "sauropod": "🦕", + "octopus": "🐙", + "squid": "🦑", + "jellyfish": "🪼", + "shrimp": "🦐", + "lobster": "🦞", + "crab": "🦀", + "blowfish": "🐡", + "tropical_fish": "🐠", + "fish": "🐟", + "dolphin": "🐬", + "whale": "🐳", + "whale2": "🐋", + "shark": "🦈", + "seal": "🦭", + "crocodile": "🐊", + "tiger2": "🐅", + "leopard": "🐆", + "zebra": "🦓", + "gorilla": "🦍", + "orangutan": "🦧", + "mammoth": "🦣", + "elephant": "🐘", + "hippopotamus": "🦛", + "rhino": "🦏", + "rhinoceros": "🦏", + "dromedary_camel": "🐪", + "camel": "🐫", + "giraffe": "🦒", + "kangaroo": "🦘", + "bison": "🦬", + "water_buffalo": "🐃", + "ox": "🐂", + "cow2": "🐄", + "donkey": "🫏", + "racehorse": "🐎", + "pig2": "🐖", + "ram": "🐏", + "sheep": "🐑", + "ewe": "🐑", + "llama": "🦙", + "goat": "🐐", + "deer": "🦌", + "dog2": "🐕", + "poodle": "🐩", + "guide_dog": "🦮", + "service_dog": "🐕‍🦺", + "cat2": "🐈", + "black_cat": "🐈‍⬛", + "feather": "🪶", + "wing": "🪽", + "rooster": "🐓", + "turkey": "🦃", + "dodo": "🦤", + "peacock": "🦚", + "parrot": "🦜", + "swan": "🦢", + "flamingo": "🦩", + "dove": "🕊️", + "dove_of_peace": "🕊️", + "rabbit2": "🐇", + "raccoon": "🦝", + "skunk": "🦨", + "badger": "🦡", + "beaver": "🦫", + "otter": "🦦", + "sloth": "🦥", + "mouse2": "🐁", + "rat": "🐀", + "chipmunk": "🐿️", + "hedgehog": "🦔", + "feet": "🐾", + "paw_prints": "🐾", + "dragon": "🐉", + "dragon_face": "🐲", + "phoenix": "🐦‍🔥", + "cactus": "🌵", + "christmas_tree": "🎄", + "evergreen_tree": "🌲", + "deciduous_tree": "🌳", + "palm_tree": "🌴", + "wood": "🪵", + "seedling": "🌱", + "herb": "🌿", + "shamrock": "☘️", + "four_leaf_clover": "🍀", + "bamboo": "🎍", + "potted_plant": "🪴", + "tanabata_tree": "🎋", + "leaves": "🍃", + "fallen_leaf": "🍂", + "maple_leaf": "🍁", + "nest_with_eggs": "🪺", + "empty_nest": "🪹", + "mushroom": "🍄", + "brown_mushroom": "🍄‍🟫", + "shell": "🐚", + "spiral_shell": "🐚", + "coral": "🪸", + "rock": "🪨", + "ear_of_rice": "🌾", + "sheaf_of_rice": "🌾", + "bouquet": "💐", + "tulip": "🌷", + "rose": "🌹", + "wilted_rose": "🥀", + "wilted_flower": "🥀", + "hyacinth": "🪻", + "lotus": "🪷", + "hibiscus": "🌺", + "cherry_blossom": "🌸", + "blossom": "🌼", + "sunflower": "🌻", + "sun_with_face": "🌞", + "full_moon_with_face": "🌝", + "first_quarter_moon_with_face": "🌛", + "last_quarter_moon_with_face": "🌜", + "new_moon_with_face": "🌚", + "new_moon_face": "🌚", + "full_moon": "🌕", + "waning_gibbous_moon": "🌖", + "last_quarter_moon": "🌗", + "waning_crescent_moon": "🌘", + "new_moon": "🌑", + "waxing_crescent_moon": "🌒", + "first_quarter_moon": "🌓", + "waxing_gibbous_moon": "🌔", + "crescent_moon": "🌙", + "earth_americas": "🌎", + "earth_africa": "🌍", + "earth_asia": "🌏", + "ringed_planet": "🪐", + "dizzy": "💫", + "star": "⭐", + "star2": "🌟", + "glowing_star": "🌟", + "sparkles": "✨", + "zap": "⚡", + "high_voltage": "⚡", + "comet": "☄️", + "boom": "💥", + "collision": "💥", + "fire": "🔥", + "flame": "🔥", + "cloud_tornado": "🌪️", + "cloud_with_tornado": "🌪️", + "tornado": "🌪️", + "rainbow": "🌈", + "sunny": "☀️", + "sun": "☀️", + "white_sun_small_cloud": "🌤️", + "white_sun_with_small_cloud": "🌤️", + "partly_sunny": "⛅", + "white_sun_cloud": "🌥️", + "white_sun_behind_cloud": "🌥️", + "cloud": "☁️", + "white_sun_rain_cloud": "🌦️", + "white_sun_behind_cloud_with_rain": "🌦️", + "cloud_rain": "🌧️", + "cloud_with_rain": "🌧️", + "thunder_cloud_rain": "⛈️", + "thunder_cloud_and_rain": "⛈️", + "cloud_lightning": "🌩️", + "cloud_with_lightning": "🌩️", + "cloud_snow": "🌨️", + "cloud_with_snow": "🌨️", + "snowflake": "❄️", + "snowman2": "☃️", + "snowman": "⛄", + "wind_blowing_face": "🌬️", + "wind_face": "🌬️", + "dash": "💨", + "dashing_away": "💨", + "droplet": "💧", + "sweat_drops": "💦", + "bubbles": "🫧", + "umbrella": "☔", + "umbrella2": "☂️", + "ocean": "🌊", + "water_wave": "🌊", + "fog": "🌫️", + "green_apple": "🍏", + "apple": "🍎", + "red_apple": "🍎", + "pear": "🍐", + "tangerine": "🍊", + "lemon": "🍋", + "lime": "🍋‍🟩", + "banana": "🍌", + "watermelon": "🍉", + "grapes": "🍇", + "strawberry": "🍓", + "blueberries": "🫐", + "melon": "🍈", + "cherries": "🍒", + "peach": "🍑", + "mango": "🥭", + "pineapple": "🍍", + "coconut": "🥥", + "kiwi": "🥝", + "kiwifruit": "🥝", + "kiwi_fruit": "🥝", + "tomato": "🍅", + "eggplant": "🍆", + "avocado": "🥑", + "pea_pod": "🫛", + "broccoli": "🥦", + "leafy_green": "🥬", + "cucumber": "🥒", + "hot_pepper": "🌶️", + "bell_pepper": "🫑", + "corn": "🌽", + "ear_of_corn": "🌽", + "carrot": "🥕", + "olive": "🫒", + "garlic": "🧄", + "onion": "🧅", + "potato": "🥔", + "sweet_potato": "🍠", + "ginger_root": "🫚", + "croissant": "🥐", + "bagel": "🥯", + "bread": "🍞", + "french_bread": "🥖", + "baguette_bread": "🥖", + "pretzel": "🥨", + "cheese": "🧀", + "cheese_wedge": "🧀", + "egg": "🥚", + "cooking": "🍳", + "butter": "🧈", + "pancakes": "🥞", + "waffle": "🧇", + "bacon": "🥓", + "cut_of_meat": "🥩", + "poultry_leg": "🍗", + "meat_on_bone": "🍖", + "bone": "🦴", + "hotdog": "🌭", + "hot_dog": "🌭", + "hamburger": "🍔", + "fries": "🍟", + "french_fries": "🍟", + "pizza": "🍕", + "flatbread": "🫓", + "sandwich": "🥪", + "stuffed_flatbread": "🥙", + "stuffed_pita": "🥙", + "falafel": "🧆", + "taco": "🌮", + "burrito": "🌯", + "tamale": "🫔", + "salad": "🥗", + "green_salad": "🥗", + "shallow_pan_of_food": "🥘", + "paella": "🥘", + "fondue": "🫕", + "canned_food": "🥫", + "jar": "🫙", + "spaghetti": "🍝", + "ramen": "🍜", + "steaming_bowl": "🍜", + "stew": "🍲", + "pot_of_food": "🍲", + "curry": "🍛", + "curry_rice": "🍛", + "sushi": "🍣", + "bento": "🍱", + "bento_box": "🍱", + "dumpling": "🥟", + "oyster": "🦪", + "fried_shrimp": "🍤", + "rice_ball": "🍙", + "rice": "🍚", + "cooked_rice": "🍚", + "rice_cracker": "🍘", + "fish_cake": "🍥", + "fortune_cookie": "🥠", + "moon_cake": "🥮", + "oden": "🍢", + "dango": "🍡", + "shaved_ice": "🍧", + "ice_cream": "🍨", + "icecream": "🍦", + "pie": "🥧", + "cupcake": "🧁", + "cake": "🍰", + "shortcake": "🍰", + "birthday": "🎂", + "birthday_cake": "🎂", + "custard": "🍮", + "pudding": "🍮", + "flan": "🍮", + "lollipop": "🍭", + "candy": "🍬", + "chocolate_bar": "🍫", + "popcorn": "🍿", + "doughnut": "🍩", + "cookie": "🍪", + "chestnut": "🌰", + "peanuts": "🥜", + "shelled_peanut": "🥜", + "beans": "🫘", + "honey_pot": "🍯", + "milk": "🥛", + "glass_of_milk": "🥛", + "pouring_liquid": "🫗", + "baby_bottle": "🍼", + "teapot": "🫖", + "coffee": "☕", + "hot_beverage": "☕", + "tea": "🍵", + "mate": "🧉", + "beverage_box": "🧃", + "cup_with_straw": "🥤", + "bubble_tea": "🧋", + "sake": "🍶", + "beer": "🍺", + "beer_mug": "🍺", + "beers": "🍻", + "champagne_glass": "🥂", + "clinking_glass": "🥂", + "wine_glass": "🍷", + "tumbler_glass": "🥃", + "whisky": "🥃", + "cocktail": "🍸", + "tropical_drink": "🍹", + "champagne": "🍾", + "bottle_with_popping_cork": "🍾", + "ice_cube": "🧊", + "spoon": "🥄", + "fork_and_knife": "🍴", + "fork_knife_plate": "🍽️", + "fork_and_knife_with_plate": "🍽️", + "bowl_with_spoon": "🥣", + "takeout_box": "🥡", + "chopsticks": "🥢", + "salt": "🧂", + "soccer": "⚽", + "soccer_ball": "⚽", + "basketball": "🏀", + "football": "🏈", + "baseball": "⚾", + "softball": "🥎", + "tennis": "🎾", + "volleyball": "🏐", + "rugby_football": "🏉", + "flying_disc": "🥏", + "8ball": "🎱", + "yo_yo": "🪀", + "ping_pong": "🏓", + "table_tennis": "🏓", + "badminton": "🏸", + "hockey": "🏒", + "ice_hockey": "🏒", + "field_hockey": "🏑", + "lacrosse": "🥍", + "cricket_game": "🏏", + "cricket_bat_ball": "🏏", + "boomerang": "🪃", + "goal": "🥅", + "goal_net": "🥅", + "golf": "⛳", + "flag_in_hole": "⛳", + "kite": "🪁", + "playground_slide": "🛝", + "bow_and_arrow": "🏹", + "archery": "🏹", + "fishing_pole_and_fish": "🎣", + "fishing_pole": "🎣", + "diving_mask": "🤿", + "boxing_glove": "🥊", + "boxing_gloves": "🥊", + "martial_arts_uniform": "🥋", + "karate_uniform": "🥋", + "running_shirt_with_sash": "🎽", + "running_shirt": "🎽", + "skateboard": "🛹", + "roller_skate": "🛼", + "sled": "🛷", + "ice_skate": "⛸️", + "curling_stone": "🥌", + "ski": "🎿", + "skis": "🎿", + "skier": "⛷️", + "snowboarder": "🏂", + "snowboarder_tone1": "🏂🏻", + "snowboarder_light_skin_tone": "🏂🏻", + "snowboarder_tone2": "🏂🏼", + "snowboarder_medium_light_skin_tone": "🏂🏼", + "snowboarder_tone3": "🏂🏽", + "snowboarder_medium_skin_tone": "🏂🏽", + "snowboarder_tone4": "🏂🏾", + "snowboarder_medium_dark_skin_tone": "🏂🏾", + "snowboarder_tone5": "🏂🏿", + "snowboarder_dark_skin_tone": "🏂🏿", + "parachute": "🪂", + "person_lifting_weights": "🏋️", + "lifter": "🏋️", + "weight_lifter": "🏋️", + "person_lifting_weights_tone1": "🏋🏻", + "lifter_tone1": "🏋🏻", + "weight_lifter_tone1": "🏋🏻", + "person_lifting_weights_tone2": "🏋🏼", + "lifter_tone2": "🏋🏼", + "weight_lifter_tone2": "🏋🏼", + "person_lifting_weights_tone3": "🏋🏽", + "lifter_tone3": "🏋🏽", + "weight_lifter_tone3": "🏋🏽", + "person_lifting_weights_tone4": "🏋🏾", + "lifter_tone4": "🏋🏾", + "weight_lifter_tone4": "🏋🏾", + "person_lifting_weights_tone5": "🏋🏿", + "lifter_tone5": "🏋🏿", + "weight_lifter_tone5": "🏋🏿", + "woman_lifting_weights": "🏋️‍♀️", + "woman_lifting_weights_tone1": "🏋🏻‍♀️", + "woman_lifting_weights_light_skin_tone": "🏋🏻‍♀️", + "woman_lifting_weights_tone2": "🏋🏼‍♀️", + "woman_lifting_weights_medium_light_skin_tone": "🏋🏼‍♀️", + "woman_lifting_weights_tone3": "🏋🏽‍♀️", + "woman_lifting_weights_medium_skin_tone": "🏋🏽‍♀️", + "woman_lifting_weights_tone4": "🏋🏾‍♀️", + "woman_lifting_weights_medium_dark_skin_tone": "🏋🏾‍♀️", + "woman_lifting_weights_tone5": "🏋🏿‍♀️", + "woman_lifting_weights_dark_skin_tone": "🏋🏿‍♀️", + "man_lifting_weights": "🏋️‍♂️", + "man_lifting_weights_tone1": "🏋🏻‍♂️", + "man_lifting_weights_light_skin_tone": "🏋🏻‍♂️", + "man_lifting_weights_tone2": "🏋🏼‍♂️", + "man_lifting_weights_medium_light_skin_tone": "🏋🏼‍♂️", + "man_lifting_weights_tone3": "🏋🏽‍♂️", + "man_lifting_weights_medium_skin_tone": "🏋🏽‍♂️", + "man_lifting_weights_tone4": "🏋🏾‍♂️", + "man_lifting_weights_medium_dark_skin_tone": "🏋🏾‍♂️", + "man_lifting_weights_tone5": "🏋🏿‍♂️", + "man_lifting_weights_dark_skin_tone": "🏋🏿‍♂️", + "people_wrestling": "🤼", + "wrestlers": "🤼", + "wrestling": "🤼", + "women_wrestling": "🤼‍♀️", + "men_wrestling": "🤼‍♂️", + "person_doing_cartwheel": "🤸", + "cartwheel": "🤸", + "person_doing_cartwheel_tone1": "🤸🏻", + "cartwheel_tone1": "🤸🏻", + "person_doing_cartwheel_tone2": "🤸🏼", + "cartwheel_tone2": "🤸🏼", + "person_doing_cartwheel_tone3": "🤸🏽", + "cartwheel_tone3": "🤸🏽", + "person_doing_cartwheel_tone4": "🤸🏾", + "cartwheel_tone4": "🤸🏾", + "person_doing_cartwheel_tone5": "🤸🏿", + "cartwheel_tone5": "🤸🏿", + "woman_cartwheeling": "🤸‍♀️", + "woman_cartwheeling_tone1": "🤸🏻‍♀️", + "woman_cartwheeling_light_skin_tone": "🤸🏻‍♀️", + "woman_cartwheeling_tone2": "🤸🏼‍♀️", + "woman_cartwheeling_medium_light_skin_tone": "🤸🏼‍♀️", + "woman_cartwheeling_tone3": "🤸🏽‍♀️", + "woman_cartwheeling_medium_skin_tone": "🤸🏽‍♀️", + "woman_cartwheeling_tone4": "🤸🏾‍♀️", + "woman_cartwheeling_medium_dark_skin_tone": "🤸🏾‍♀️", + "woman_cartwheeling_tone5": "🤸🏿‍♀️", + "woman_cartwheeling_dark_skin_tone": "🤸🏿‍♀️", + "man_cartwheeling": "🤸‍♂️", + "man_cartwheeling_tone1": "🤸🏻‍♂️", + "man_cartwheeling_light_skin_tone": "🤸🏻‍♂️", + "man_cartwheeling_tone2": "🤸🏼‍♂️", + "man_cartwheeling_medium_light_skin_tone": "🤸🏼‍♂️", + "man_cartwheeling_tone3": "🤸🏽‍♂️", + "man_cartwheeling_medium_skin_tone": "🤸🏽‍♂️", + "man_cartwheeling_tone4": "🤸🏾‍♂️", + "man_cartwheeling_medium_dark_skin_tone": "🤸🏾‍♂️", + "man_cartwheeling_tone5": "🤸🏿‍♂️", + "man_cartwheeling_dark_skin_tone": "🤸🏿‍♂️", + "person_bouncing_ball": "⛹️", + "basketball_player": "⛹️", + "person_with_ball": "⛹️", + "person_bouncing_ball_tone1": "⛹🏻", + "basketball_player_tone1": "⛹🏻", + "person_with_ball_tone1": "⛹🏻", + "person_bouncing_ball_tone2": "⛹🏼", + "basketball_player_tone2": "⛹🏼", + "person_with_ball_tone2": "⛹🏼", + "person_bouncing_ball_tone3": "⛹🏽", + "basketball_player_tone3": "⛹🏽", + "person_with_ball_tone3": "⛹🏽", + "person_bouncing_ball_tone4": "⛹🏾", + "basketball_player_tone4": "⛹🏾", + "person_with_ball_tone4": "⛹🏾", + "person_bouncing_ball_tone5": "⛹🏿", + "basketball_player_tone5": "⛹🏿", + "person_with_ball_tone5": "⛹🏿", + "woman_bouncing_ball": "⛹️‍♀️", + "woman_bouncing_ball_tone1": "⛹🏻‍♀️", + "woman_bouncing_ball_light_skin_tone": "⛹🏻‍♀️", + "woman_bouncing_ball_tone2": "⛹🏼‍♀️", + "woman_bouncing_ball_medium_light_skin_tone": "⛹🏼‍♀️", + "woman_bouncing_ball_tone3": "⛹🏽‍♀️", + "woman_bouncing_ball_medium_skin_tone": "⛹🏽‍♀️", + "woman_bouncing_ball_tone4": "⛹🏾‍♀️", + "woman_bouncing_ball_medium_dark_skin_tone": "⛹🏾‍♀️", + "woman_bouncing_ball_tone5": "⛹🏿‍♀️", + "woman_bouncing_ball_dark_skin_tone": "⛹🏿‍♀️", + "man_bouncing_ball": "⛹️‍♂️", + "man_bouncing_ball_tone1": "⛹🏻‍♂️", + "man_bouncing_ball_light_skin_tone": "⛹🏻‍♂️", + "man_bouncing_ball_tone2": "⛹🏼‍♂️", + "man_bouncing_ball_medium_light_skin_tone": "⛹🏼‍♂️", + "man_bouncing_ball_tone3": "⛹🏽‍♂️", + "man_bouncing_ball_medium_skin_tone": "⛹🏽‍♂️", + "man_bouncing_ball_tone4": "⛹🏾‍♂️", + "man_bouncing_ball_medium_dark_skin_tone": "⛹🏾‍♂️", + "man_bouncing_ball_tone5": "⛹🏿‍♂️", + "man_bouncing_ball_dark_skin_tone": "⛹🏿‍♂️", + "person_fencing": "🤺", + "fencer": "🤺", + "fencing": "🤺", + "person_playing_handball": "🤾", + "handball": "🤾", + "person_playing_handball_tone1": "🤾🏻", + "handball_tone1": "🤾🏻", + "person_playing_handball_tone2": "🤾🏼", + "handball_tone2": "🤾🏼", + "person_playing_handball_tone3": "🤾🏽", + "handball_tone3": "🤾🏽", + "person_playing_handball_tone4": "🤾🏾", + "handball_tone4": "🤾🏾", + "person_playing_handball_tone5": "🤾🏿", + "handball_tone5": "🤾🏿", + "woman_playing_handball": "🤾‍♀️", + "woman_playing_handball_tone1": "🤾🏻‍♀️", + "woman_playing_handball_light_skin_tone": "🤾🏻‍♀️", + "woman_playing_handball_tone2": "🤾🏼‍♀️", + "woman_playing_handball_medium_light_skin_tone": "🤾🏼‍♀️", + "woman_playing_handball_tone3": "🤾🏽‍♀️", + "woman_playing_handball_medium_skin_tone": "🤾🏽‍♀️", + "woman_playing_handball_tone4": "🤾🏾‍♀️", + "woman_playing_handball_medium_dark_skin_tone": "🤾🏾‍♀️", + "woman_playing_handball_tone5": "🤾🏿‍♀️", + "woman_playing_handball_dark_skin_tone": "🤾🏿‍♀️", + "man_playing_handball": "🤾‍♂️", + "man_playing_handball_tone1": "🤾🏻‍♂️", + "man_playing_handball_light_skin_tone": "🤾🏻‍♂️", + "man_playing_handball_tone2": "🤾🏼‍♂️", + "man_playing_handball_medium_light_skin_tone": "🤾🏼‍♂️", + "man_playing_handball_tone3": "🤾🏽‍♂️", + "man_playing_handball_medium_skin_tone": "🤾🏽‍♂️", + "man_playing_handball_tone4": "🤾🏾‍♂️", + "man_playing_handball_medium_dark_skin_tone": "🤾🏾‍♂️", + "man_playing_handball_tone5": "🤾🏿‍♂️", + "man_playing_handball_dark_skin_tone": "🤾🏿‍♂️", + "person_golfing": "🏌️", + "golfer": "🏌️", + "person_golfing_tone1": "🏌🏻", + "person_golfing_light_skin_tone": "🏌🏻", + "person_golfing_tone2": "🏌🏼", + "person_golfing_medium_light_skin_tone": "🏌🏼", + "person_golfing_tone3": "🏌🏽", + "person_golfing_medium_skin_tone": "🏌🏽", + "person_golfing_tone4": "🏌🏾", + "person_golfing_medium_dark_skin_tone": "🏌🏾", + "person_golfing_tone5": "🏌🏿", + "person_golfing_dark_skin_tone": "🏌🏿", + "woman_golfing": "🏌️‍♀️", + "woman_golfing_tone1": "🏌🏻‍♀️", + "woman_golfing_light_skin_tone": "🏌🏻‍♀️", + "woman_golfing_tone2": "🏌🏼‍♀️", + "woman_golfing_medium_light_skin_tone": "🏌🏼‍♀️", + "woman_golfing_tone3": "🏌🏽‍♀️", + "woman_golfing_medium_skin_tone": "🏌🏽‍♀️", + "woman_golfing_tone4": "🏌🏾‍♀️", + "woman_golfing_medium_dark_skin_tone": "🏌🏾‍♀️", + "woman_golfing_tone5": "🏌🏿‍♀️", + "woman_golfing_dark_skin_tone": "🏌🏿‍♀️", + "man_golfing": "🏌️‍♂️", + "man_golfing_tone1": "🏌🏻‍♂️", + "man_golfing_light_skin_tone": "🏌🏻‍♂️", + "man_golfing_tone2": "🏌🏼‍♂️", + "man_golfing_medium_light_skin_tone": "🏌🏼‍♂️", + "man_golfing_tone3": "🏌🏽‍♂️", + "man_golfing_medium_skin_tone": "🏌🏽‍♂️", + "man_golfing_tone4": "🏌🏾‍♂️", + "man_golfing_medium_dark_skin_tone": "🏌🏾‍♂️", + "man_golfing_tone5": "🏌🏿‍♂️", + "man_golfing_dark_skin_tone": "🏌🏿‍♂️", + "horse_racing": "🏇", + "horse_racing_tone1": "🏇🏻", + "horse_racing_tone2": "🏇🏼", + "horse_racing_tone3": "🏇🏽", + "horse_racing_tone4": "🏇🏾", + "horse_racing_tone5": "🏇🏿", + "person_in_lotus_position": "🧘", + "person_in_lotus_position_tone1": "🧘🏻", + "person_in_lotus_position_light_skin_tone": "🧘🏻", + "person_in_lotus_position_tone2": "🧘🏼", + "person_in_lotus_position_medium_light_skin_tone": "🧘🏼", + "person_in_lotus_position_tone3": "🧘🏽", + "person_in_lotus_position_medium_skin_tone": "🧘🏽", + "person_in_lotus_position_tone4": "🧘🏾", + "person_in_lotus_position_medium_dark_skin_tone": "🧘🏾", + "person_in_lotus_position_tone5": "🧘🏿", + "person_in_lotus_position_dark_skin_tone": "🧘🏿", + "woman_in_lotus_position": "🧘‍♀️", + "woman_in_lotus_position_tone1": "🧘🏻‍♀️", + "woman_in_lotus_position_light_skin_tone": "🧘🏻‍♀️", + "woman_in_lotus_position_tone2": "🧘🏼‍♀️", + "woman_in_lotus_position_medium_light_skin_tone": "🧘🏼‍♀️", + "woman_in_lotus_position_tone3": "🧘🏽‍♀️", + "woman_in_lotus_position_medium_skin_tone": "🧘🏽‍♀️", + "woman_in_lotus_position_tone4": "🧘🏾‍♀️", + "woman_in_lotus_position_medium_dark_skin_tone": "🧘🏾‍♀️", + "woman_in_lotus_position_tone5": "🧘🏿‍♀️", + "woman_in_lotus_position_dark_skin_tone": "🧘🏿‍♀️", + "man_in_lotus_position": "🧘‍♂️", + "man_in_lotus_position_tone1": "🧘🏻‍♂️", + "man_in_lotus_position_light_skin_tone": "🧘🏻‍♂️", + "man_in_lotus_position_tone2": "🧘🏼‍♂️", + "man_in_lotus_position_medium_light_skin_tone": "🧘🏼‍♂️", + "man_in_lotus_position_tone3": "🧘🏽‍♂️", + "man_in_lotus_position_medium_skin_tone": "🧘🏽‍♂️", + "man_in_lotus_position_tone4": "🧘🏾‍♂️", + "man_in_lotus_position_medium_dark_skin_tone": "🧘🏾‍♂️", + "man_in_lotus_position_tone5": "🧘🏿‍♂️", + "man_in_lotus_position_dark_skin_tone": "🧘🏿‍♂️", + "person_surfing": "🏄", + "surfer": "🏄", + "person_surfing_tone1": "🏄🏻", + "surfer_tone1": "🏄🏻", + "person_surfing_tone2": "🏄🏼", + "surfer_tone2": "🏄🏼", + "person_surfing_tone3": "🏄🏽", + "surfer_tone3": "🏄🏽", + "person_surfing_tone4": "🏄🏾", + "surfer_tone4": "🏄🏾", + "person_surfing_tone5": "🏄🏿", + "surfer_tone5": "🏄🏿", + "woman_surfing": "🏄‍♀️", + "woman_surfing_tone1": "🏄🏻‍♀️", + "woman_surfing_light_skin_tone": "🏄🏻‍♀️", + "woman_surfing_tone2": "🏄🏼‍♀️", + "woman_surfing_medium_light_skin_tone": "🏄🏼‍♀️", + "woman_surfing_tone3": "🏄🏽‍♀️", + "woman_surfing_medium_skin_tone": "🏄🏽‍♀️", + "woman_surfing_tone4": "🏄🏾‍♀️", + "woman_surfing_medium_dark_skin_tone": "🏄🏾‍♀️", + "woman_surfing_tone5": "🏄🏿‍♀️", + "woman_surfing_dark_skin_tone": "🏄🏿‍♀️", + "man_surfing": "🏄‍♂️", + "man_surfing_tone1": "🏄🏻‍♂️", + "man_surfing_light_skin_tone": "🏄🏻‍♂️", + "man_surfing_tone2": "🏄🏼‍♂️", + "man_surfing_medium_light_skin_tone": "🏄🏼‍♂️", + "man_surfing_tone3": "🏄🏽‍♂️", + "man_surfing_medium_skin_tone": "🏄🏽‍♂️", + "man_surfing_tone4": "🏄🏾‍♂️", + "man_surfing_medium_dark_skin_tone": "🏄🏾‍♂️", + "man_surfing_tone5": "🏄🏿‍♂️", + "man_surfing_dark_skin_tone": "🏄🏿‍♂️", + "person_swimming": "🏊", + "swimmer": "🏊", + "person_swimming_tone1": "🏊🏻", + "swimmer_tone1": "🏊🏻", + "person_swimming_tone2": "🏊🏼", + "swimmer_tone2": "🏊🏼", + "person_swimming_tone3": "🏊🏽", + "swimmer_tone3": "🏊🏽", + "person_swimming_tone4": "🏊🏾", + "swimmer_tone4": "🏊🏾", + "person_swimming_tone5": "🏊🏿", + "swimmer_tone5": "🏊🏿", + "woman_swimming": "🏊‍♀️", + "woman_swimming_tone1": "🏊🏻‍♀️", + "woman_swimming_light_skin_tone": "🏊🏻‍♀️", + "woman_swimming_tone2": "🏊🏼‍♀️", + "woman_swimming_medium_light_skin_tone": "🏊🏼‍♀️", + "woman_swimming_tone3": "🏊🏽‍♀️", + "woman_swimming_medium_skin_tone": "🏊🏽‍♀️", + "woman_swimming_tone4": "🏊🏾‍♀️", + "woman_swimming_medium_dark_skin_tone": "🏊🏾‍♀️", + "woman_swimming_tone5": "🏊🏿‍♀️", + "woman_swimming_dark_skin_tone": "🏊🏿‍♀️", + "man_swimming": "🏊‍♂️", + "man_swimming_tone1": "🏊🏻‍♂️", + "man_swimming_light_skin_tone": "🏊🏻‍♂️", + "man_swimming_tone2": "🏊🏼‍♂️", + "man_swimming_medium_light_skin_tone": "🏊🏼‍♂️", + "man_swimming_tone3": "🏊🏽‍♂️", + "man_swimming_medium_skin_tone": "🏊🏽‍♂️", + "man_swimming_tone4": "🏊🏾‍♂️", + "man_swimming_medium_dark_skin_tone": "🏊🏾‍♂️", + "man_swimming_tone5": "🏊🏿‍♂️", + "man_swimming_dark_skin_tone": "🏊🏿‍♂️", + "person_playing_water_polo": "🤽", + "water_polo": "🤽", + "person_playing_water_polo_tone1": "🤽🏻", + "water_polo_tone1": "🤽🏻", + "person_playing_water_polo_tone2": "🤽🏼", + "water_polo_tone2": "🤽🏼", + "person_playing_water_polo_tone3": "🤽🏽", + "water_polo_tone3": "🤽🏽", + "person_playing_water_polo_tone4": "🤽🏾", + "water_polo_tone4": "🤽🏾", + "person_playing_water_polo_tone5": "🤽🏿", + "water_polo_tone5": "🤽🏿", + "woman_playing_water_polo": "🤽‍♀️", + "woman_playing_water_polo_tone1": "🤽🏻‍♀️", + "woman_playing_water_polo_light_skin_tone": "🤽🏻‍♀️", + "woman_playing_water_polo_tone2": "🤽🏼‍♀️", + "woman_playing_water_polo_medium_light_skin_tone": "🤽🏼‍♀️", + "woman_playing_water_polo_tone3": "🤽🏽‍♀️", + "woman_playing_water_polo_medium_skin_tone": "🤽🏽‍♀️", + "woman_playing_water_polo_tone4": "🤽🏾‍♀️", + "woman_playing_water_polo_medium_dark_skin_tone": "🤽🏾‍♀️", + "woman_playing_water_polo_tone5": "🤽🏿‍♀️", + "woman_playing_water_polo_dark_skin_tone": "🤽🏿‍♀️", + "man_playing_water_polo": "🤽‍♂️", + "man_playing_water_polo_tone1": "🤽🏻‍♂️", + "man_playing_water_polo_light_skin_tone": "🤽🏻‍♂️", + "man_playing_water_polo_tone2": "🤽🏼‍♂️", + "man_playing_water_polo_medium_light_skin_tone": "🤽🏼‍♂️", + "man_playing_water_polo_tone3": "🤽🏽‍♂️", + "man_playing_water_polo_medium_skin_tone": "🤽🏽‍♂️", + "man_playing_water_polo_tone4": "🤽🏾‍♂️", + "man_playing_water_polo_medium_dark_skin_tone": "🤽🏾‍♂️", + "man_playing_water_polo_tone5": "🤽🏿‍♂️", + "man_playing_water_polo_dark_skin_tone": "🤽🏿‍♂️", + "person_rowing_boat": "🚣", + "rowboat": "🚣", + "person_rowing_boat_tone1": "🚣🏻", + "rowboat_tone1": "🚣🏻", + "person_rowing_boat_tone2": "🚣🏼", + "rowboat_tone2": "🚣🏼", + "person_rowing_boat_tone3": "🚣🏽", + "rowboat_tone3": "🚣🏽", + "person_rowing_boat_tone4": "🚣🏾", + "rowboat_tone4": "🚣🏾", + "person_rowing_boat_tone5": "🚣🏿", + "rowboat_tone5": "🚣🏿", + "woman_rowing_boat": "🚣‍♀️", + "woman_rowing_boat_tone1": "🚣🏻‍♀️", + "woman_rowing_boat_light_skin_tone": "🚣🏻‍♀️", + "woman_rowing_boat_tone2": "🚣🏼‍♀️", + "woman_rowing_boat_medium_light_skin_tone": "🚣🏼‍♀️", + "woman_rowing_boat_tone3": "🚣🏽‍♀️", + "woman_rowing_boat_medium_skin_tone": "🚣🏽‍♀️", + "woman_rowing_boat_tone4": "🚣🏾‍♀️", + "woman_rowing_boat_medium_dark_skin_tone": "🚣🏾‍♀️", + "woman_rowing_boat_tone5": "🚣🏿‍♀️", + "woman_rowing_boat_dark_skin_tone": "🚣🏿‍♀️", + "man_rowing_boat": "🚣‍♂️", + "man_rowing_boat_tone1": "🚣🏻‍♂️", + "man_rowing_boat_light_skin_tone": "🚣🏻‍♂️", + "man_rowing_boat_tone2": "🚣🏼‍♂️", + "man_rowing_boat_medium_light_skin_tone": "🚣🏼‍♂️", + "man_rowing_boat_tone3": "🚣🏽‍♂️", + "man_rowing_boat_medium_skin_tone": "🚣🏽‍♂️", + "man_rowing_boat_tone4": "🚣🏾‍♂️", + "man_rowing_boat_medium_dark_skin_tone": "🚣🏾‍♂️", + "man_rowing_boat_tone5": "🚣🏿‍♂️", + "man_rowing_boat_dark_skin_tone": "🚣🏿‍♂️", + "person_climbing": "🧗", + "person_climbing_tone1": "🧗🏻", + "person_climbing_light_skin_tone": "🧗🏻", + "person_climbing_tone2": "🧗🏼", + "person_climbing_medium_light_skin_tone": "🧗🏼", + "person_climbing_tone3": "🧗🏽", + "person_climbing_medium_skin_tone": "🧗🏽", + "person_climbing_tone4": "🧗🏾", + "person_climbing_medium_dark_skin_tone": "🧗🏾", + "person_climbing_tone5": "🧗🏿", + "person_climbing_dark_skin_tone": "🧗🏿", + "woman_climbing": "🧗‍♀️", + "woman_climbing_tone1": "🧗🏻‍♀️", + "woman_climbing_light_skin_tone": "🧗🏻‍♀️", + "woman_climbing_tone2": "🧗🏼‍♀️", + "woman_climbing_medium_light_skin_tone": "🧗🏼‍♀️", + "woman_climbing_tone3": "🧗🏽‍♀️", + "woman_climbing_medium_skin_tone": "🧗🏽‍♀️", + "woman_climbing_tone4": "🧗🏾‍♀️", + "woman_climbing_medium_dark_skin_tone": "🧗🏾‍♀️", + "woman_climbing_tone5": "🧗🏿‍♀️", + "woman_climbing_dark_skin_tone": "🧗🏿‍♀️", + "man_climbing": "🧗‍♂️", + "man_climbing_tone1": "🧗🏻‍♂️", + "man_climbing_light_skin_tone": "🧗🏻‍♂️", + "man_climbing_tone2": "🧗🏼‍♂️", + "man_climbing_medium_light_skin_tone": "🧗🏼‍♂️", + "man_climbing_tone3": "🧗🏽‍♂️", + "man_climbing_medium_skin_tone": "🧗🏽‍♂️", + "man_climbing_tone4": "🧗🏾‍♂️", + "man_climbing_medium_dark_skin_tone": "🧗🏾‍♂️", + "man_climbing_tone5": "🧗🏿‍♂️", + "man_climbing_dark_skin_tone": "🧗🏿‍♂️", + "person_mountain_biking": "🚵", + "mountain_bicyclist": "🚵", + "person_mountain_biking_tone1": "🚵🏻", + "mountain_bicyclist_tone1": "🚵🏻", + "person_mountain_biking_tone2": "🚵🏼", + "mountain_bicyclist_tone2": "🚵🏼", + "person_mountain_biking_tone3": "🚵🏽", + "mountain_bicyclist_tone3": "🚵🏽", + "person_mountain_biking_tone4": "🚵🏾", + "mountain_bicyclist_tone4": "🚵🏾", + "person_mountain_biking_tone5": "🚵🏿", + "mountain_bicyclist_tone5": "🚵🏿", + "woman_mountain_biking": "🚵‍♀️", + "woman_mountain_biking_tone1": "🚵🏻‍♀️", + "woman_mountain_biking_light_skin_tone": "🚵🏻‍♀️", + "woman_mountain_biking_tone2": "🚵🏼‍♀️", + "woman_mountain_biking_medium_light_skin_tone": "🚵🏼‍♀️", + "woman_mountain_biking_tone3": "🚵🏽‍♀️", + "woman_mountain_biking_medium_skin_tone": "🚵🏽‍♀️", + "woman_mountain_biking_tone4": "🚵🏾‍♀️", + "woman_mountain_biking_medium_dark_skin_tone": "🚵🏾‍♀️", + "woman_mountain_biking_tone5": "🚵🏿‍♀️", + "woman_mountain_biking_dark_skin_tone": "🚵🏿‍♀️", + "man_mountain_biking": "🚵‍♂️", + "man_mountain_biking_tone1": "🚵🏻‍♂️", + "man_mountain_biking_light_skin_tone": "🚵🏻‍♂️", + "man_mountain_biking_tone2": "🚵🏼‍♂️", + "man_mountain_biking_medium_light_skin_tone": "🚵🏼‍♂️", + "man_mountain_biking_tone3": "🚵🏽‍♂️", + "man_mountain_biking_medium_skin_tone": "🚵🏽‍♂️", + "man_mountain_biking_tone4": "🚵🏾‍♂️", + "man_mountain_biking_medium_dark_skin_tone": "🚵🏾‍♂️", + "man_mountain_biking_tone5": "🚵🏿‍♂️", + "man_mountain_biking_dark_skin_tone": "🚵🏿‍♂️", + "person_biking": "🚴", + "bicyclist": "🚴", + "person_biking_tone1": "🚴🏻", + "bicyclist_tone1": "🚴🏻", + "person_biking_tone2": "🚴🏼", + "bicyclist_tone2": "🚴🏼", + "person_biking_tone3": "🚴🏽", + "bicyclist_tone3": "🚴🏽", + "person_biking_tone4": "🚴🏾", + "bicyclist_tone4": "🚴🏾", + "person_biking_tone5": "🚴🏿", + "bicyclist_tone5": "🚴🏿", + "woman_biking": "🚴‍♀️", + "woman_biking_tone1": "🚴🏻‍♀️", + "woman_biking_light_skin_tone": "🚴🏻‍♀️", + "woman_biking_tone2": "🚴🏼‍♀️", + "woman_biking_medium_light_skin_tone": "🚴🏼‍♀️", + "woman_biking_tone3": "🚴🏽‍♀️", + "woman_biking_medium_skin_tone": "🚴🏽‍♀️", + "woman_biking_tone4": "🚴🏾‍♀️", + "woman_biking_medium_dark_skin_tone": "🚴🏾‍♀️", + "woman_biking_tone5": "🚴🏿‍♀️", + "woman_biking_dark_skin_tone": "🚴🏿‍♀️", + "man_biking": "🚴‍♂️", + "man_biking_tone1": "🚴🏻‍♂️", + "man_biking_light_skin_tone": "🚴🏻‍♂️", + "man_biking_tone2": "🚴🏼‍♂️", + "man_biking_medium_light_skin_tone": "🚴🏼‍♂️", + "man_biking_tone3": "🚴🏽‍♂️", + "man_biking_medium_skin_tone": "🚴🏽‍♂️", + "man_biking_tone4": "🚴🏾‍♂️", + "man_biking_medium_dark_skin_tone": "🚴🏾‍♂️", + "man_biking_tone5": "🚴🏿‍♂️", + "man_biking_dark_skin_tone": "🚴🏿‍♂️", + "trophy": "🏆", + "first_place": "🥇", + "first_place_medal": "🥇", + "second_place": "🥈", + "second_place_medal": "🥈", + "third_place": "🥉", + "third_place_medal": "🥉", + "medal": "🏅", + "sports_medal": "🏅", + "military_medal": "🎖️", + "rosette": "🏵️", + "reminder_ribbon": "🎗️", + "ticket": "🎫", + "tickets": "🎟️", + "admission_tickets": "🎟️", + "circus_tent": "🎪", + "person_juggling": "🤹", + "juggling": "🤹", + "juggler": "🤹", + "person_juggling_tone1": "🤹🏻", + "juggling_tone1": "🤹🏻", + "juggler_tone1": "🤹🏻", + "person_juggling_tone2": "🤹🏼", + "juggling_tone2": "🤹🏼", + "juggler_tone2": "🤹🏼", + "person_juggling_tone3": "🤹🏽", + "juggling_tone3": "🤹🏽", + "juggler_tone3": "🤹🏽", + "person_juggling_tone4": "🤹🏾", + "juggling_tone4": "🤹🏾", + "juggler_tone4": "🤹🏾", + "person_juggling_tone5": "🤹🏿", + "juggling_tone5": "🤹🏿", + "juggler_tone5": "🤹🏿", + "woman_juggling": "🤹‍♀️", + "woman_juggling_tone1": "🤹🏻‍♀️", + "woman_juggling_light_skin_tone": "🤹🏻‍♀️", + "woman_juggling_tone2": "🤹🏼‍♀️", + "woman_juggling_medium_light_skin_tone": "🤹🏼‍♀️", + "woman_juggling_tone3": "🤹🏽‍♀️", + "woman_juggling_medium_skin_tone": "🤹🏽‍♀️", + "woman_juggling_tone4": "🤹🏾‍♀️", + "woman_juggling_medium_dark_skin_tone": "🤹🏾‍♀️", + "woman_juggling_tone5": "🤹🏿‍♀️", + "woman_juggling_dark_skin_tone": "🤹🏿‍♀️", + "man_juggling": "🤹‍♂️", + "man_juggling_tone1": "🤹🏻‍♂️", + "man_juggling_light_skin_tone": "🤹🏻‍♂️", + "man_juggling_tone2": "🤹🏼‍♂️", + "man_juggling_medium_light_skin_tone": "🤹🏼‍♂️", + "man_juggling_tone3": "🤹🏽‍♂️", + "man_juggling_medium_skin_tone": "🤹🏽‍♂️", + "man_juggling_tone4": "🤹🏾‍♂️", + "man_juggling_medium_dark_skin_tone": "🤹🏾‍♂️", + "man_juggling_tone5": "🤹🏿‍♂️", + "man_juggling_dark_skin_tone": "🤹🏿‍♂️", + "performing_arts": "🎭", + "ballet_shoes": "🩰", + "art": "🎨", + "clapper": "🎬", + "clapper_board": "🎬", + "microphone": "🎤", + "headphones": "🎧", + "headphone": "🎧", + "musical_score": "🎼", + "musical_keyboard": "🎹", + "maracas": "🪇", + "drum": "🥁", + "drum_with_drumsticks": "🥁", + "long_drum": "🪘", + "saxophone": "🎷", + "trumpet": "🎺", + "accordion": "🪗", + "guitar": "🎸", + "banjo": "🪕", + "violin": "🎻", + "flute": "🪈", + "game_die": "🎲", + "chess_pawn": "♟️", + "dart": "🎯", + "direct_hit": "🎯", + "bowling": "🎳", + "video_game": "🎮", + "slot_machine": "🎰", + "jigsaw": "🧩", + "puzzle_piece": "🧩", + "red_car": "🚗", + "automobile": "🚗", + "taxi": "🚕", + "blue_car": "🚙", + "pickup_truck": "🛻", + "minibus": "🚐", + "bus": "🚌", + "trolleybus": "🚎", + "race_car": "🏎️", + "racing_car": "🏎️", + "police_car": "🚓", + "ambulance": "🚑", + "fire_engine": "🚒", + "truck": "🚚", + "articulated_lorry": "🚛", + "tractor": "🚜", + "probing_cane": "🦯", + "manual_wheelchair": "🦽", + "motorized_wheelchair": "🦼", + "crutch": "🩼", + "scooter": "🛴", + "kick_scooter": "🛴", + "bike": "🚲", + "bicycle": "🚲", + "motor_scooter": "🛵", + "motorbike": "🛵", + "motorcycle": "🏍️", + "racing_motorcycle": "🏍️", + "auto_rickshaw": "🛺", + "wheel": "🛞", + "rotating_light": "🚨", + "oncoming_police_car": "🚔", + "oncoming_bus": "🚍", + "oncoming_automobile": "🚘", + "oncoming_taxi": "🚖", + "aerial_tramway": "🚡", + "mountain_cableway": "🚠", + "suspension_railway": "🚟", + "railway_car": "🚃", + "train": "🚋", + "tram_car": "🚋", + "mountain_railway": "🚞", + "monorail": "🚝", + "bullettrain_side": "🚄", + "bullettrain_front": "🚅", + "bullet_train": "🚅", + "light_rail": "🚈", + "steam_locomotive": "🚂", + "locomotive": "🚂", + "train2": "🚆", + "metro": "🚇", + "tram": "🚊", + "station": "🚉", + "airplane": "✈️", + "airplane_departure": "🛫", + "airplane_arriving": "🛬", + "airplane_small": "🛩️", + "small_airplane": "🛩️", + "seat": "💺", + "satellite_orbital": "🛰️", + "rocket": "🚀", + "flying_saucer": "🛸", + "helicopter": "🚁", + "canoe": "🛶", + "kayak": "🛶", + "sailboat": "⛵", + "speedboat": "🚤", + "motorboat": "🛥️", + "motor_boat": "🛥️", + "cruise_ship": "🛳️", + "passenger_ship": "🛳️", + "ferry": "⛴️", + "ship": "🚢", + "ring_buoy": "🛟", + "anchor": "⚓", + "hook": "🪝", + "fuelpump": "⛽", + "fuel_pump": "⛽", + "construction": "🚧", + "vertical_traffic_light": "🚦", + "traffic_light": "🚥", + "busstop": "🚏", + "bus_stop": "🚏", + "map": "🗺️", + "world_map": "🗺️", + "moyai": "🗿", + "moai": "🗿", + "statue_of_liberty": "🗽", + "tokyo_tower": "🗼", + "european_castle": "🏰", + "castle": "🏰", + "japanese_castle": "🏯", + "stadium": "🏟️", + "ferris_wheel": "🎡", + "roller_coaster": "🎢", + "carousel_horse": "🎠", + "fountain": "⛲", + "beach_umbrella": "⛱️", + "umbrella_on_ground": "⛱️", + "beach": "🏖️", + "beach_with_umbrella": "🏖️", + "island": "🏝️", + "desert_island": "🏝️", + "desert": "🏜️", + "volcano": "🌋", + "mountain": "⛰️", + "mountain_snow": "🏔️", + "snow_capped_mountain": "🏔️", + "mount_fuji": "🗻", + "camping": "🏕️", + "tent": "⛺", + "house": "🏠", + "house_with_garden": "🏡", + "homes": "🏘️", + "house_buildings": "🏘️", + "houses": "🏘️", + "house_abandoned": "🏚️", + "derelict_house_building": "🏚️", + "hut": "🛖", + "construction_site": "🏗️", + "building_construction": "🏗️", + "factory": "🏭", + "office": "🏢", + "department_store": "🏬", + "post_office": "🏣", + "european_post_office": "🏤", + "hospital": "🏥", + "bank": "🏦", + "hotel": "🏨", + "convenience_store": "🏪", + "school": "🏫", + "love_hotel": "🏩", + "wedding": "💒", + "classical_building": "🏛️", + "church": "⛪", + "mosque": "🕌", + "synagogue": "🕍", + "hindu_temple": "🛕", + "kaaba": "🕋", + "shinto_shrine": "⛩️", + "railway_track": "🛤️", + "railroad_track": "🛤️", + "motorway": "🛣️", + "japan": "🗾", + "map_of_japan": "🗾", + "rice_scene": "🎑", + "park": "🏞️", + "national_park": "🏞️", + "sunrise": "🌅", + "sunrise_over_mountains": "🌄", + "stars": "🌠", + "shooting_star": "🌠", + "sparkler": "🎇", + "fireworks": "🎆", + "city_sunset": "🌇", + "city_sunrise": "🌇", + "sunset": "🌇", + "city_dusk": "🌆", + "cityscape": "🏙️", + "night_with_stars": "🌃", + "milky_way": "🌌", + "bridge_at_night": "🌉", + "foggy": "🌁", + "watch": "⌚", + "mobile_phone": "📱", + "iphone": "📱", + "calling": "📲", + "computer": "💻", + "keyboard": "⌨️", + "desktop": "🖥️", + "desktop_computer": "🖥️", + "printer": "🖨️", + "mouse_three_button": "🖱️", + "three_button_mouse": "🖱️", + "trackball": "🖲️", + "joystick": "🕹️", + "compression": "🗜️", + "clamp": "🗜️", + "minidisc": "💽", + "computer_disk": "💽", + "floppy_disk": "💾", + "cd": "💿", + "optical_disk": "💿", + "dvd": "📀", + "vhs": "📼", + "videocassette": "📼", + "camera": "📷", + "camera_with_flash": "📸", + "video_camera": "📹", + "movie_camera": "🎥", + "projector": "📽️", + "film_projector": "📽️", + "film_frames": "🎞️", + "telephone_receiver": "📞", + "telephone": "☎️", + "pager": "📟", + "fax": "📠", + "fax_machine": "📠", + "tv": "📺", + "television": "📺", + "radio": "📻", + "microphone2": "🎙️", + "studio_microphone": "🎙️", + "level_slider": "🎚️", + "control_knobs": "🎛️", + "compass": "🧭", + "stopwatch": "⏱️", + "timer": "⏲️", + "timer_clock": "⏲️", + "alarm_clock": "⏰", + "clock": "🕰️", + "mantlepiece_clock": "🕰️", + "hourglass": "⌛", + "hourglass_flowing_sand": "⏳", + "satellite": "📡", + "battery": "🔋", + "low_battery": "🪫", + "electric_plug": "🔌", + "bulb": "💡", + "light_bulb": "💡", + "flashlight": "🔦", + "candle": "🕯️", + "diya_lamp": "🪔", + "fire_extinguisher": "🧯", + "oil": "🛢️", + "oil_drum": "🛢️", + "money_with_wings": "💸", + "dollar": "💵", + "yen": "💴", + "yen_banknote": "💴", + "euro": "💶", + "euro_banknote": "💶", + "pound": "💷", + "coin": "🪙", + "moneybag": "💰", + "money_bag": "💰", + "credit_card": "💳", + "identification_card": "🪪", + "gem": "💎", + "gem_stone": "💎", + "scales": "⚖️", + "balance_scale": "⚖️", + "ladder": "🪜", + "toolbox": "🧰", + "screwdriver": "🪛", + "wrench": "🔧", + "hammer": "🔨", + "hammer_pick": "⚒️", + "hammer_and_pick": "⚒️", + "tools": "🛠️", + "hammer_and_wrench": "🛠️", + "pick": "⛏️", + "carpentry_saw": "🪚", + "nut_and_bolt": "🔩", + "gear": "⚙️", + "mouse_trap": "🪤", + "bricks": "🧱", + "brick": "🧱", + "chains": "⛓️", + "link": "🔗", + "broken_chain": "⛓️‍💥", + "magnet": "🧲", + "gun": "🔫", + "pistol": "🔫", + "bomb": "💣", + "firecracker": "🧨", + "axe": "🪓", + "knife": "🔪", + "kitchen_knife": "🔪", + "dagger": "🗡️", + "dagger_knife": "🗡️", + "crossed_swords": "⚔️", + "shield": "🛡️", + "smoking": "🚬", + "cigarette": "🚬", + "coffin": "⚰️", + "headstone": "🪦", + "urn": "⚱️", + "funeral_urn": "⚱️", + "amphora": "🏺", + "crystal_ball": "🔮", + "prayer_beads": "📿", + "nazar_amulet": "🧿", + "hamsa": "🪬", + "barber": "💈", + "barber_pole": "💈", + "alembic": "⚗️", + "telescope": "🔭", + "microscope": "🔬", + "hole": "🕳️", + "x_ray": "🩻", + "adhesive_bandage": "🩹", + "stethoscope": "🩺", + "pill": "💊", + "syringe": "💉", + "drop_of_blood": "🩸", + "dna": "🧬", + "microbe": "🦠", + "petri_dish": "🧫", + "test_tube": "🧪", + "thermometer": "🌡️", + "broom": "🧹", + "plunger": "🪠", + "basket": "🧺", + "roll_of_paper": "🧻", + "toilet": "🚽", + "potable_water": "🚰", + "shower": "🚿", + "bathtub": "🛁", + "bath": "🛀", + "bath_tone1": "🛀🏻", + "bath_tone2": "🛀🏼", + "bath_tone3": "🛀🏽", + "bath_tone4": "🛀🏾", + "bath_tone5": "🛀🏿", + "soap": "🧼", + "toothbrush": "🪥", + "razor": "🪒", + "hair_pick": "🪮", + "sponge": "🧽", + "bucket": "🪣", + "squeeze_bottle": "🧴", + "lotion_bottle": "🧴", + "bellhop": "🛎️", + "bellhop_bell": "🛎️", + "key": "🔑", + "key2": "🗝️", + "old_key": "🗝️", + "door": "🚪", + "chair": "🪑", + "couch": "🛋️", + "couch_and_lamp": "🛋️", + "bed": "🛏️", + "sleeping_accommodation": "🛌", + "person_in_bed": "🛌", + "person_in_bed_tone1": "🛌🏻", + "person_in_bed_light_skin_tone": "🛌🏻", + "person_in_bed_tone2": "🛌🏼", + "person_in_bed_medium_light_skin_tone": "🛌🏼", + "person_in_bed_tone3": "🛌🏽", + "person_in_bed_medium_skin_tone": "🛌🏽", + "person_in_bed_tone4": "🛌🏾", + "person_in_bed_medium_dark_skin_tone": "🛌🏾", + "person_in_bed_tone5": "🛌🏿", + "person_in_bed_dark_skin_tone": "🛌🏿", + "teddy_bear": "🧸", + "nesting_dolls": "🪆", + "frame_photo": "🖼️", + "frame_with_picture": "🖼️", + "mirror": "🪞", + "window": "🪟", + "shopping_bags": "🛍️", + "shopping_cart": "🛒", + "shopping_trolley": "🛒", + "gift": "🎁", + "wrapped_gift": "🎁", + "balloon": "🎈", + "flags": "🎏", + "carp_streamer": "🎏", + "ribbon": "🎀", + "magic_wand": "🪄", + "piñata": "🪅", + "confetti_ball": "🎊", + "tada": "🎉", + "party_popper": "🎉", + "dolls": "🎎", + "folding_hand_fan": "🪭", + "izakaya_lantern": "🏮", + "wind_chime": "🎐", + "mirror_ball": "🪩", + "red_envelope": "🧧", + "envelope": "✉️", + "envelope_with_arrow": "📩", + "incoming_envelope": "📨", + "e_mail": "📧", + "email": "📧", + "love_letter": "💌", + "inbox_tray": "📥", + "outbox_tray": "📤", + "package": "📦", + "label": "🏷️", + "placard": "🪧", + "mailbox_closed": "📪", + "mailbox": "📫", + "mailbox_with_mail": "📬", + "mailbox_with_no_mail": "📭", + "postbox": "📮", + "postal_horn": "📯", + "scroll": "📜", + "page_with_curl": "📃", + "page_facing_up": "📄", + "bookmark_tabs": "📑", + "receipt": "🧾", + "bar_chart": "📊", + "chart_with_upwards_trend": "📈", + "chart_with_downwards_trend": "📉", + "notepad_spiral": "🗒️", + "spiral_note_pad": "🗒️", + "calendar_spiral": "🗓️", + "spiral_calendar_pad": "🗓️", + "calendar": "📆", + "date": "📅", + "wastebasket": "🗑️", + "card_index": "📇", + "card_box": "🗃️", + "card_file_box": "🗃️", + "ballot_box": "🗳️", + "ballot_box_with_ballot": "🗳️", + "file_cabinet": "🗄️", + "clipboard": "📋", + "file_folder": "📁", + "open_file_folder": "📂", + "dividers": "🗂️", + "card_index_dividers": "🗂️", + "newspaper2": "🗞️", + "rolled_up_newspaper": "🗞️", + "newspaper": "📰", + "notebook": "📓", + "notebook_with_decorative_cover": "📔", + "ledger": "📒", + "closed_book": "📕", + "green_book": "📗", + "blue_book": "📘", + "orange_book": "📙", + "books": "📚", + "book": "📖", + "open_book": "📖", + "bookmark": "🔖", + "safety_pin": "🧷", + "paperclip": "📎", + "paperclips": "🖇️", + "linked_paperclips": "🖇️", + "triangular_ruler": "📐", + "straight_ruler": "📏", + "abacus": "🧮", + "pushpin": "📌", + "round_pushpin": "📍", + "scissors": "✂️", + "pen_ballpoint": "🖊️", + "lower_left_ballpoint_pen": "🖊️", + "pen": "🖊️", + "pen_fountain": "🖋️", + "lower_left_fountain_pen": "🖋️", + "fountain_pen": "🖋️", + "black_nib": "✒️", + "paintbrush": "🖌️", + "lower_left_paintbrush": "🖌️", + "crayon": "🖍️", + "lower_left_crayon": "🖍️", + "pencil": "📝", + "memo": "📝", + "pencil2": "✏️", + "mag": "🔍", + "mag_right": "🔎", + "lock_with_ink_pen": "🔏", + "closed_lock_with_key": "🔐", + "lock": "🔒", + "locked": "🔒", + "unlock": "🔓", + "unlocked": "🔓", + "pink_heart": "🩷", + "heart": "❤️", + "red_heart": "❤️", + "orange_heart": "🧡", + "yellow_heart": "💛", + "green_heart": "💚", + "light_blue_heart": "🩵", + "blue_heart": "💙", + "purple_heart": "💜", + "black_heart": "🖤", + "grey_heart": "🩶", + "white_heart": "🤍", + "brown_heart": "🤎", + "broken_heart": "💔", + "heart_exclamation": "❣️", + "heavy_heart_exclamation_mark_ornament": "❣️", + "two_hearts": "💕", + "revolving_hearts": "💞", + "heartbeat": "💓", + "beating_heart": "💓", + "heartpulse": "💗", + "growing_heart": "💗", + "sparkling_heart": "💖", + "cupid": "💘", + "gift_heart": "💝", + "mending_heart": "❤️‍🩹", + "heart_on_fire": "❤️‍🔥", + "heart_decoration": "💟", + "peace": "☮️", + "peace_symbol": "☮️", + "cross": "✝️", + "latin_cross": "✝️", + "star_and_crescent": "☪️", + "om_symbol": "🕉️", + "wheel_of_dharma": "☸️", + "khanda": "🪯", + "star_of_david": "✡️", + "six_pointed_star": "🔯", + "menorah": "🕎", + "yin_yang": "☯️", + "orthodox_cross": "☦️", + "place_of_worship": "🛐", + "worship_symbol": "🛐", + "ophiuchus": "⛎", + "aries": "♈", + "taurus": "♉", + "gemini": "♊", + "cancer": "♋", + "leo": "♌", + "virgo": "♍", + "libra": "♎", + "scorpius": "♏", + "scorpio": "♏", + "sagittarius": "♐", + "capricorn": "♑", + "aquarius": "♒", + "pisces": "♓", + "id": "🆔", + "atom": "⚛️", + "atom_symbol": "⚛️", + "accept": "🉑", + "radioactive": "☢️", + "radioactive_sign": "☢️", + "biohazard": "☣️", + "biohazard_sign": "☣️", + "mobile_phone_off": "📴", + "vibration_mode": "📳", + "u6709": "🈶", + "u7121": "🈚", + "u7533": "🈸", + "u55b6": "🈺", + "u6708": "🈷️", + "eight_pointed_black_star": "✴️", + "vs": "🆚", + "white_flower": "💮", + "ideograph_advantage": "🉐", + "secret": "㊙️", + "congratulations": "㊗️", + "u5408": "🈴", + "u6e80": "🈵", + "u5272": "🈹", + "u7981": "🈲", + "a": "🅰️", + "b": "🅱️", + "ab": "🆎", + "cl": "🆑", + "o2": "🅾️", + "sos": "🆘", + "x": "❌", + "cross_mark": "❌", + "o": "⭕", + "octagonal_sign": "🛑", + "stop_sign": "🛑", + "no_entry": "⛔", + "name_badge": "📛", + "no_entry_sign": "🚫", + "prohibited": "🚫", + "100": "💯", + "anger": "💢", + "hotsprings": "♨️", + "hot_springs": "♨️", + "no_pedestrians": "🚷", + "do_not_litter": "🚯", + "no_littering": "🚯", + "no_bicycles": "🚳", + "non_potable_water": "🚱", + "underage": "🔞", + "no_mobile_phones": "📵", + "no_smoking": "🚭", + "exclamation": "❗", + "grey_exclamation": "❕", + "question": "❓", + "question_mark": "❓", + "grey_question": "❔", + "bangbang": "‼️", + "interrobang": "⁉️", + "low_brightness": "🔅", + "high_brightness": "🔆", + "part_alternation_mark": "〽️", + "warning": "⚠️", + "children_crossing": "🚸", + "trident": "🔱", + "fleur_de_lis": "⚜️", + "beginner": "🔰", + "recycle": "♻️", + "white_check_mark": "✅", + "u6307": "🈯", + "chart": "💹", + "sparkle": "❇️", + "eight_spoked_asterisk": "✳️", + "negative_squared_cross_mark": "❎", + "globe_with_meridians": "🌐", + "diamond_shape_with_a_dot_inside": "💠", + "m": "Ⓜ️", + "circled_m": "Ⓜ️", + "cyclone": "🌀", + "zzz": "💤", + "atm": "🏧", + "wc": "🚾", + "water_closet": "🚾", + "wheelchair": "♿", + "parking": "🅿️", + "elevator": "🛗", + "u7a7a": "🈳", + "sa": "🈂️", + "passport_control": "🛂", + "customs": "🛃", + "baggage_claim": "🛄", + "left_luggage": "🛅", + "wireless": "🛜", + "mens": "🚹", + "mens_room": "🚹", + "womens": "🚺", + "womens_room": "🚺", + "baby_symbol": "🚼", + "restroom": "🚻", + "put_litter_in_its_place": "🚮", + "cinema": "🎦", + "signal_strength": "📶", + "antenna_bars": "📶", + "koko": "🈁", + "symbols": "🔣", + "input_symbols": "🔣", + "information_source": "ℹ️", + "information": "ℹ️", + "abc": "🔤", + "abcd": "🔡", + "capital_abcd": "🔠", + "ng": "🆖", + "ok": "🆗", + "up": "🆙", + "cool": "🆒", + "new": "🆕", + "free": "🆓", + "zero": "0️⃣", + "number_0": "0️⃣", + "one": "1️⃣", + "number_1": "1️⃣", + "two": "2️⃣", + "number_2": "2️⃣", + "three": "3️⃣", + "number_3": "3️⃣", + "four": "4️⃣", + "number_4": "4️⃣", + "five": "5️⃣", + "number_5": "5️⃣", + "six": "6️⃣", + "number_6": "6️⃣", + "seven": "7️⃣", + "number_7": "7️⃣", + "eight": "8️⃣", + "number_8": "8️⃣", + "nine": "9️⃣", + "number_9": "9️⃣", + "keycap_ten": "🔟", + "number_10": "🔟", + "1234": "🔢", + "input_numbers": "🔢", + "hash": "#️⃣", + "asterisk": "*️⃣", + "keycap_asterisk": "*️⃣", + "eject": "⏏️", + "eject_symbol": "⏏️", + "arrow_forward": "▶️", + "pause_button": "⏸️", + "double_vertical_bar": "⏸️", + "play_pause": "⏯️", + "stop_button": "⏹️", + "record_button": "⏺️", + "track_next": "⏭️", + "next_track": "⏭️", + "track_previous": "⏮️", + "previous_track": "⏮️", + "fast_forward": "⏩", + "rewind": "⏪", + "arrow_double_up": "⏫", + "arrow_double_down": "⏬", + "arrow_backward": "◀️", + "arrow_up_small": "🔼", + "arrow_down_small": "🔽", + "arrow_right": "➡️", + "right_arrow": "➡️", + "arrow_left": "⬅️", + "left_arrow": "⬅️", + "arrow_up": "⬆️", + "up_arrow": "⬆️", + "arrow_down": "⬇️", + "down_arrow": "⬇️", + "arrow_upper_right": "↗️", + "arrow_lower_right": "↘️", + "arrow_lower_left": "↙️", + "arrow_upper_left": "↖️", + "up_left_arrow": "↖️", + "arrow_up_down": "↕️", + "up_down_arrow": "↕️", + "left_right_arrow": "↔️", + "arrow_right_hook": "↪️", + "leftwards_arrow_with_hook": "↩️", + "arrow_heading_up": "⤴️", + "arrow_heading_down": "⤵️", + "twisted_rightwards_arrows": "🔀", + "repeat": "🔁", + "repeat_one": "🔂", + "arrows_counterclockwise": "🔄", + "arrows_clockwise": "🔃", + "musical_note": "🎵", + "notes": "🎶", + "musical_notes": "🎶", + "heavy_plus_sign": "➕", + "heavy_minus_sign": "➖", + "heavy_division_sign": "➗", + "heavy_multiplication_x": "✖️", + "heavy_equals_sign": "🟰", + "infinity": "♾️", + "heavy_dollar_sign": "💲", + "currency_exchange": "💱", + "tm": "™️", + "trade_mark": "™️", + "copyright": "©️", + "registered": "®️", + "wavy_dash": "〰️", + "curly_loop": "➰", + "loop": "➿", + "end": "🔚", + "end_arrow": "🔚", + "back": "🔙", + "back_arrow": "🔙", + "on": "🔛", + "on_arrow": "🔛", + "top": "🔝", + "top_arrow": "🔝", + "soon": "🔜", + "soon_arrow": "🔜", + "heavy_check_mark": "✔️", + "check_mark": "✔️", + "ballot_box_with_check": "☑️", + "radio_button": "🔘", + "white_circle": "⚪", + "black_circle": "⚫", + "red_circle": "🔴", + "blue_circle": "🔵", + "brown_circle": "🟤", + "purple_circle": "🟣", + "green_circle": "🟢", + "yellow_circle": "🟡", + "orange_circle": "🟠", + "small_red_triangle": "🔺", + "small_red_triangle_down": "🔻", + "small_orange_diamond": "🔸", + "small_blue_diamond": "🔹", + "large_orange_diamond": "🔶", + "large_blue_diamond": "🔷", + "white_square_button": "🔳", + "black_square_button": "🔲", + "black_small_square": "▪️", + "white_small_square": "▫️", + "black_medium_small_square": "◾", + "white_medium_small_square": "◽", + "black_medium_square": "◼️", + "white_medium_square": "◻️", + "black_large_square": "⬛", + "white_large_square": "⬜", + "orange_square": "🟧", + "blue_square": "🟦", + "red_square": "🟥", + "brown_square": "🟫", + "purple_square": "🟪", + "green_square": "🟩", + "yellow_square": "🟨", + "speaker": "🔈", + "mute": "🔇", + "muted_speaker": "🔇", + "sound": "🔉", + "loud_sound": "🔊", + "bell": "🔔", + "no_bell": "🔕", + "mega": "📣", + "megaphone": "📣", + "loudspeaker": "📢", + "speech_left": "🗨️", + "left_speech_bubble": "🗨️", + "eye_in_speech_bubble": "👁‍🗨", + "speech_balloon": "💬", + "thought_balloon": "💭", + "anger_right": "🗯️", + "right_anger_bubble": "🗯️", + "spades": "♠️", + "spade_suit": "♠️", + "clubs": "♣️", + "club_suit": "♣️", + "hearts": "♥️", + "heart_suit": "♥️", + "diamonds": "♦️", + "diamond_suit": "♦️", + "black_joker": "🃏", + "joker": "🃏", + "flower_playing_cards": "🎴", + "mahjong": "🀄", + "clock1": "🕐", + "one_oclock": "🕐", + "clock2": "🕑", + "two_oclock": "🕑", + "clock3": "🕒", + "three_oclock": "🕒", + "clock4": "🕓", + "four_oclock": "🕓", + "clock5": "🕔", + "five_oclock": "🕔", + "clock6": "🕕", + "six_oclock": "🕕", + "clock7": "🕖", + "seven_oclock": "🕖", + "clock8": "🕗", + "eight_oclock": "🕗", + "clock9": "🕘", + "nine_oclock": "🕘", + "clock10": "🕙", + "ten_oclock": "🕙", + "clock11": "🕚", + "eleven_oclock": "🕚", + "clock12": "🕛", + "twelve_oclock": "🕛", + "clock130": "🕜", + "one_thirty": "🕜", + "clock230": "🕝", + "two_thirty": "🕝", + "clock330": "🕞", + "three_thirty": "🕞", + "clock430": "🕟", + "four_thirty": "🕟", + "clock530": "🕠", + "five_thirty": "🕠", + "clock630": "🕡", + "six_thirty": "🕡", + "clock730": "🕢", + "seven_thirty": "🕢", + "clock830": "🕣", + "eight_thirty": "🕣", + "clock930": "🕤", + "nine_thirty": "🕤", + "clock1030": "🕥", + "ten_thirty": "🕥", + "clock1130": "🕦", + "eleven_thirty": "🕦", + "clock1230": "🕧", + "twelve_thirty": "🕧", + "female_sign": "♀️", + "male_sign": "♂️", + "transgender_symbol": "⚧", + "medical_symbol": "⚕️", + "regional_indicator_z": "🇿", + "regional_indicator_y": "🇾", + "regional_indicator_x": "🇽", + "regional_indicator_w": "🇼", + "regional_indicator_v": "🇻", + "regional_indicator_u": "🇺", + "regional_indicator_t": "🇹", + "regional_indicator_s": "🇸", + "regional_indicator_r": "🇷", + "regional_indicator_q": "🇶", + "regional_indicator_p": "🇵", + "regional_indicator_o": "🇴", + "regional_indicator_n": "🇳", + "regional_indicator_m": "🇲", + "regional_indicator_l": "🇱", + "regional_indicator_k": "🇰", + "regional_indicator_j": "🇯", + "regional_indicator_i": "🇮", + "regional_indicator_h": "🇭", + "regional_indicator_g": "🇬", + "regional_indicator_f": "🇫", + "regional_indicator_e": "🇪", + "regional_indicator_d": "🇩", + "regional_indicator_c": "🇨", + "regional_indicator_b": "🇧", + "regional_indicator_a": "🇦", + "flag_white": "🏳️", + "flag_black": "🏴", + "pirate_flag": "🏴‍☠️", + "checkered_flag": "🏁", + "triangular_flag_on_post": "🚩", + "rainbow_flag": "🏳️‍🌈", + "gay_pride_flag": "🏳️‍🌈", + "transgender_flag": "🏳️‍⚧️", + "united_nations": "🇺🇳", + "flag_af": "🇦🇫", + "flag_ax": "🇦🇽", + "flag_al": "🇦🇱", + "flag_dz": "🇩🇿", + "flag_as": "🇦🇸", + "flag_ad": "🇦🇩", + "flag_ao": "🇦🇴", + "flag_ai": "🇦🇮", + "flag_aq": "🇦🇶", + "flag_ag": "🇦🇬", + "flag_ar": "🇦🇷", + "flag_am": "🇦🇲", + "flag_aw": "🇦🇼", + "flag_au": "🇦🇺", + "flag_at": "🇦🇹", + "flag_az": "🇦🇿", + "flag_bs": "🇧🇸", + "flag_bh": "🇧🇭", + "flag_bd": "🇧🇩", + "flag_bb": "🇧🇧", + "flag_by": "🇧🇾", + "flag_be": "🇧🇪", + "flag_bz": "🇧🇿", + "flag_bj": "🇧🇯", + "flag_bm": "🇧🇲", + "flag_bt": "🇧🇹", + "flag_bo": "🇧🇴", + "flag_ba": "🇧🇦", + "flag_bw": "🇧🇼", + "flag_br": "🇧🇷", + "flag_io": "🇮🇴", + "flag_vg": "🇻🇬", + "flag_bn": "🇧🇳", + "flag_bg": "🇧🇬", + "flag_bf": "🇧🇫", + "flag_bi": "🇧🇮", + "flag_kh": "🇰🇭", + "flag_cm": "🇨🇲", + "flag_ca": "🇨🇦", + "flag_ic": "🇮🇨", + "flag_cv": "🇨🇻", + "flag_bq": "🇧🇶", + "flag_ky": "🇰🇾", + "flag_cf": "🇨🇫", + "flag_td": "🇹🇩", + "flag_cl": "🇨🇱", + "flag_cn": "🇨🇳", + "flag_cx": "🇨🇽", + "flag_cc": "🇨🇨", + "flag_co": "🇨🇴", + "flag_km": "🇰🇲", + "flag_cg": "🇨🇬", + "flag_cd": "🇨🇩", + "flag_ck": "🇨🇰", + "flag_cr": "🇨🇷", + "flag_ci": "🇨🇮", + "flag_hr": "🇭🇷", + "flag_cu": "🇨🇺", + "flag_cw": "🇨🇼", + "flag_cy": "🇨🇾", + "flag_cz": "🇨🇿", + "flag_dk": "🇩🇰", + "flag_dj": "🇩🇯", + "flag_dm": "🇩🇲", + "flag_do": "🇩🇴", + "flag_ec": "🇪🇨", + "flag_eg": "🇪🇬", + "flag_sv": "🇸🇻", + "flag_gq": "🇬🇶", + "flag_er": "🇪🇷", + "flag_ee": "🇪🇪", + "flag_et": "🇪🇹", + "flag_eu": "🇪🇺", + "flag_fk": "🇫🇰", + "flag_fo": "🇫🇴", + "flag_fj": "🇫🇯", + "flag_fi": "🇫🇮", + "flag_fr": "🇫🇷", + "flag_gf": "🇬🇫", + "flag_pf": "🇵🇫", + "flag_tf": "🇹🇫", + "flag_ga": "🇬🇦", + "flag_gm": "🇬🇲", + "flag_ge": "🇬🇪", + "flag_de": "🇩🇪", + "flag_gh": "🇬🇭", + "flag_gi": "🇬🇮", + "flag_gr": "🇬🇷", + "flag_gl": "🇬🇱", + "flag_gd": "🇬🇩", + "flag_gp": "🇬🇵", + "flag_gu": "🇬🇺", + "flag_gt": "🇬🇹", + "flag_gg": "🇬🇬", + "flag_gn": "🇬🇳", + "flag_gw": "🇬🇼", + "flag_gy": "🇬🇾", + "flag_ht": "🇭🇹", + "flag_hn": "🇭🇳", + "flag_hk": "🇭🇰", + "flag_hu": "🇭🇺", + "flag_is": "🇮🇸", + "flag_in": "🇮🇳", + "flag_id": "🇮🇩", + "flag_ir": "🇮🇷", + "flag_iq": "🇮🇶", + "flag_ie": "🇮🇪", + "flag_im": "🇮🇲", + "flag_il": "🇮🇱", + "flag_it": "🇮🇹", + "flag_jm": "🇯🇲", + "flag_jp": "🇯🇵", + "crossed_flags": "🎌", + "flag_je": "🇯🇪", + "flag_jo": "🇯🇴", + "flag_kz": "🇰🇿", + "flag_ke": "🇰🇪", + "flag_ki": "🇰🇮", + "flag_xk": "🇽🇰", + "flag_kw": "🇰🇼", + "flag_kg": "🇰🇬", + "flag_la": "🇱🇦", + "flag_lv": "🇱🇻", + "flag_lb": "🇱🇧", + "flag_ls": "🇱🇸", + "flag_lr": "🇱🇷", + "flag_ly": "🇱🇾", + "flag_li": "🇱🇮", + "flag_lt": "🇱🇹", + "flag_lu": "🇱🇺", + "flag_mo": "🇲🇴", + "flag_mk": "🇲🇰", + "flag_mg": "🇲🇬", + "flag_mw": "🇲🇼", + "flag_my": "🇲🇾", + "flag_mv": "🇲🇻", + "flag_ml": "🇲🇱", + "flag_mt": "🇲🇹", + "flag_mh": "🇲🇭", + "flag_mq": "🇲🇶", + "flag_mr": "🇲🇷", + "flag_mu": "🇲🇺", + "flag_yt": "🇾🇹", + "flag_mx": "🇲🇽", + "flag_fm": "🇫🇲", + "flag_md": "🇲🇩", + "flag_mc": "🇲🇨", + "flag_mn": "🇲🇳", + "flag_me": "🇲🇪", + "flag_ms": "🇲🇸", + "flag_ma": "🇲🇦", + "flag_mz": "🇲🇿", + "flag_mm": "🇲🇲", + "flag_na": "🇳🇦", + "flag_nr": "🇳🇷", + "flag_np": "🇳🇵", + "flag_nl": "🇳🇱", + "flag_nc": "🇳🇨", + "flag_nz": "🇳🇿", + "flag_ni": "🇳🇮", + "flag_ne": "🇳🇪", + "flag_ng": "🇳🇬", + "flag_nu": "🇳🇺", + "flag_nf": "🇳🇫", + "flag_kp": "🇰🇵", + "flag_mp": "🇲🇵", + "flag_no": "🇳🇴", + "flag_om": "🇴🇲", + "flag_pk": "🇵🇰", + "flag_pw": "🇵🇼", + "flag_ps": "🇵🇸", + "flag_pa": "🇵🇦", + "flag_pg": "🇵🇬", + "flag_py": "🇵🇾", + "flag_pe": "🇵🇪", + "flag_ph": "🇵🇭", + "flag_pn": "🇵🇳", + "flag_pl": "🇵🇱", + "flag_pt": "🇵🇹", + "flag_pr": "🇵🇷", + "flag_qa": "🇶🇦", + "flag_re": "🇷🇪", + "flag_ro": "🇷🇴", + "flag_ru": "🇷🇺", + "flag_rw": "🇷🇼", + "flag_ws": "🇼🇸", + "flag_sm": "🇸🇲", + "flag_st": "🇸🇹", + "flag_sa": "🇸🇦", + "flag_sn": "🇸🇳", + "flag_rs": "🇷🇸", + "flag_sc": "🇸🇨", + "flag_sl": "🇸🇱", + "flag_sg": "🇸🇬", + "flag_sx": "🇸🇽", + "flag_sk": "🇸🇰", + "flag_si": "🇸🇮", + "flag_gs": "🇬🇸", + "flag_sb": "🇸🇧", + "flag_so": "🇸🇴", + "flag_za": "🇿🇦", + "flag_kr": "🇰🇷", + "flag_ss": "🇸🇸", + "flag_es": "🇪🇸", + "flag_lk": "🇱🇰", + "flag_bl": "🇧🇱", + "flag_sh": "🇸🇭", + "flag_kn": "🇰🇳", + "flag_lc": "🇱🇨", + "flag_pm": "🇵🇲", + "flag_vc": "🇻🇨", + "flag_sd": "🇸🇩", + "flag_sr": "🇸🇷", + "flag_sz": "🇸🇿", + "flag_se": "🇸🇪", + "flag_ch": "🇨🇭", + "flag_sy": "🇸🇾", + "flag_tw": "🇹🇼", + "flag_tj": "🇹🇯", + "flag_tz": "🇹🇿", + "flag_th": "🇹🇭", + "flag_tl": "🇹🇱", + "flag_tg": "🇹🇬", + "flag_tk": "🇹🇰", + "flag_to": "🇹🇴", + "flag_tt": "🇹🇹", + "flag_tn": "🇹🇳", + "flag_tr": "🇹🇷", + "flag_tm": "🇹🇲", + "flag_tc": "🇹🇨", + "flag_vi": "🇻🇮", + "flag_tv": "🇹🇻", + "flag_ug": "🇺🇬", + "flag_ua": "🇺🇦", + "flag_ae": "🇦🇪", + "flag_gb": "🇬🇧", + "england": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + "scotland": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + "wales": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + "flag_us": "🇺🇸", + "flag_uy": "🇺🇾", + "flag_uz": "🇺🇿", + "flag_vu": "🇻🇺", + "flag_va": "🇻🇦", + "flag_ve": "🇻🇪", + "flag_vn": "🇻🇳", + "flag_wf": "🇼🇫", + "flag_eh": "🇪🇭", + "flag_ye": "🇾🇪", + "flag_zm": "🇿🇲", + "flag_zw": "🇿🇼", + "flag_ac": "🇦🇨", + "flag_bv": "🇧🇻", + "flag_cp": "🇨🇵", + "flag_ea": "🇪🇦", + "flag_dg": "🇩🇬", + "flag_hm": "🇭🇲", + "flag_mf": "🇲🇫", + "flag_sj": "🇸🇯", + "flag_ta": "🇹🇦", + "flag_um": "🇺🇲" +} \ No newline at end of file diff --git a/static/font/css/lato.css b/static/font/css/lato.css deleted file mode 100644 index b75a48d7..00000000 --- a/static/font/css/lato.css +++ /dev/null @@ -1,13 +0,0 @@ -/* lato-regular - latin */ -@font-face { - font-family: 'Lato'; - font-style: normal; - font-weight: 400; - src: url('../font/lato-v15-latin-regular.eot'); /* IE9 Compat Modes */ - src: local('Lato Regular'), local('Lato-Regular'), - url('../font/lato-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ - url('../font/lato-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ - url('../font/lato-v15-latin-regular.woff') format('woff'), /* Modern Browsers */ - url('../font/lato-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */ - url('../font/lato-v15-latin-regular.svg#Lato') format('svg'); /* Legacy iOS */ -} diff --git a/static/font/fonts.css b/static/font/fonts.css new file mode 100644 index 00000000..738d67b8 --- /dev/null +++ b/static/font/fonts.css @@ -0,0 +1,84 @@ +/* Atkinson Hyperlegible Next */ +@font-face { + font-family: "Atkinson Hyperlegible Next"; + src: local("Atkinson Hyperlegible Next"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.woff2") + format("woff"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.ttf") + format("truetype"), + local("Atkinson Hyperlegible Next"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "Atkinson Hyperlegible Next"; + src: local("Atkinson Hyperlegible Next"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.woff2") + format("woff"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.ttf") + format("truetype"), + local("Atkinson Hyperlegible Next"); + font-weight: bold; + font-style: bold; +} + +@font-face { + font-family: "Atkinson Hyperlegible Next"; + src: local("Atkinson Hyperlegible Next"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.woff2") + format("woff"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.ttf") + format("truetype"), + local("Atkinson Hyperlegible Next"); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: "Atkinson Hyperlegible Next"; + src: local("Atkinson Hyperlegible Next"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.woff2") + format("woff"), + url("./atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.ttf") + format("truetype"), + local("Atkinson Hyperlegible Next"); + font-weight: bold; + font-style: italic; +} + +/* lato-regular - latin */ +@font-face { + font-family: "Lato"; + font-style: normal; + font-weight: 400; + src: url("./lato/lato-v15-latin-regular.eot"); /* IE9 Compat Modes */ + src: local("Lato Regular"), local("Lato-Regular"), + url("./lato/lato-v15-latin-regular.eot?#iefix") + format("embedded-opentype"), + /* IE6-IE8 */ url("./lato/lato-v15-latin-regular.woff2") + format("woff2"), + /* Super Modern Browsers */ url("./lato/lato-v15-latin-regular.woff") + format("woff"), + /* Modern Browsers */ url("./lato/lato-v15-latin-regular.ttf") + format("truetype"), + /* Safari, Android, iOS */ + url("./lato/lato-v15-latin-regular.svg#Lato") format("svg"); /* Legacy iOS */ +} + +/* copy pasted from tiresias.css */ +@font-face { + font-family: "Tiresias PCFont"; + font-style: normal; + font-weight: 400; + src: local("Tiresias PCFont"), local("Tiresias PCFont"), + url("./tiresias/Tiresias_PCfont.ttf") format("truetype"); +} + +@font-face { + font-family: "Tiresias Infofont"; + font-style: normal; + font-weight: 400; + src: local("Tiresias Infofont"), local("Tiresias Infofont"), + url("./tiresias/Tiresias_Infofont.ttf") format("truetype"); +} diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.ttf new file mode 100644 index 00000000..f663043b Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.woff2 new file mode 100644 index 00000000..3b735977 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Bold.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.ttf new file mode 100644 index 00000000..98b9e805 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.woff2 new file mode 100644 index 00000000..25b28580 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-BoldItalic.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBold.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBold.ttf new file mode 100644 index 00000000..3e1e5cf7 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBold.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBold.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBold.woff2 new file mode 100644 index 00000000..65039ac4 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBold.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBoldItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBoldItalic.ttf new file mode 100644 index 00000000..55e28a67 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBoldItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBoldItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBoldItalic.woff2 new file mode 100644 index 00000000..5abb72ec Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraBoldItalic.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLight.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLight.ttf new file mode 100644 index 00000000..9bb2cd48 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLight.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLight.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLight.woff2 new file mode 100644 index 00000000..5a136036 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLight.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLightItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLightItalic.ttf new file mode 100644 index 00000000..8a6cbfc6 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLightItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLightItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLightItalic.woff2 new file mode 100644 index 00000000..ad1940c3 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-ExtraLightItalic.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Light.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Light.ttf new file mode 100644 index 00000000..ad6c400e Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Light.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Light.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Light.woff2 new file mode 100644 index 00000000..b1eac3fd Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Light.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-LightItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-LightItalic.ttf new file mode 100644 index 00000000..e3626621 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-LightItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-LightItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-LightItalic.woff2 new file mode 100644 index 00000000..f0f492f2 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-LightItalic.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Medium.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Medium.ttf new file mode 100644 index 00000000..71e7cad7 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Medium.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Medium.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Medium.woff2 new file mode 100644 index 00000000..e82765dd Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Medium.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-MediumItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-MediumItalic.ttf new file mode 100644 index 00000000..9fccd293 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-MediumItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-MediumItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-MediumItalic.woff2 new file mode 100644 index 00000000..c9e218a1 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-MediumItalic.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.ttf new file mode 100644 index 00000000..766cfd9b Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.woff2 new file mode 100644 index 00000000..d2babdfc Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-Regular.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.ttf new file mode 100644 index 00000000..cb7970c3 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.woff2 new file mode 100644 index 00000000..dc05d06d Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-RegularItalic.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBold.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBold.ttf new file mode 100644 index 00000000..c60638d1 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBold.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBold.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBold.woff2 new file mode 100644 index 00000000..a7d9ece2 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBold.woff2 differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBoldItalic.ttf b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBoldItalic.ttf new file mode 100644 index 00000000..69e7940a Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBoldItalic.ttf differ diff --git a/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBoldItalic.woff2 b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBoldItalic.woff2 new file mode 100644 index 00000000..f9111766 Binary files /dev/null and b/static/font/fonts/atkinson-hyperlegible-next/AtkinsonHyperlegibleNext-SemiBoldItalic.woff2 differ diff --git a/static/font/font/lato-v15-latin-regular.eot b/static/font/fonts/lato/lato-v15-latin-regular.eot similarity index 100% rename from static/font/font/lato-v15-latin-regular.eot rename to static/font/fonts/lato/lato-v15-latin-regular.eot diff --git a/static/font/font/lato-v15-latin-regular.svg b/static/font/fonts/lato/lato-v15-latin-regular.svg similarity index 100% rename from static/font/font/lato-v15-latin-regular.svg rename to static/font/fonts/lato/lato-v15-latin-regular.svg diff --git a/static/font/font/lato-v15-latin-regular.ttf b/static/font/fonts/lato/lato-v15-latin-regular.ttf similarity index 100% rename from static/font/font/lato-v15-latin-regular.ttf rename to static/font/fonts/lato/lato-v15-latin-regular.ttf diff --git a/static/font/font/lato-v15-latin-regular.woff b/static/font/fonts/lato/lato-v15-latin-regular.woff similarity index 100% rename from static/font/font/lato-v15-latin-regular.woff rename to static/font/fonts/lato/lato-v15-latin-regular.woff diff --git a/static/font/font/lato-v15-latin-regular.woff2 b/static/font/fonts/lato/lato-v15-latin-regular.woff2 similarity index 100% rename from static/font/font/lato-v15-latin-regular.woff2 rename to static/font/fonts/lato/lato-v15-latin-regular.woff2 diff --git a/static/font/fonts/Tiresias_Infofont.ttf b/static/font/fonts/tiresias/Tiresias_Infofont.ttf similarity index 100% rename from static/font/fonts/Tiresias_Infofont.ttf rename to static/font/fonts/tiresias/Tiresias_Infofont.ttf diff --git a/static/font/fonts/Tiresias_PCfont.ttf b/static/font/fonts/tiresias/Tiresias_PCfont.ttf similarity index 100% rename from static/font/fonts/Tiresias_PCfont.ttf rename to static/font/fonts/tiresias/Tiresias_PCfont.ttf diff --git a/static/font/lato-v15-latin-regular.eot b/static/font/lato-v15-latin-regular.eot deleted file mode 100644 index c6413069..00000000 Binary files a/static/font/lato-v15-latin-regular.eot and /dev/null differ diff --git a/static/font/lato-v15-latin-regular.svg b/static/font/lato-v15-latin-regular.svg deleted file mode 100644 index 55b43fb8..00000000 --- a/static/font/lato-v15-latin-regular.svg +++ /dev/null @@ -1,435 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/static/font/lato-v15-latin-regular.ttf b/static/font/lato-v15-latin-regular.ttf deleted file mode 100644 index 3c2d417e..00000000 Binary files a/static/font/lato-v15-latin-regular.ttf and /dev/null differ diff --git a/static/font/lato-v15-latin-regular.woff b/static/font/lato-v15-latin-regular.woff deleted file mode 100644 index 189a0feb..00000000 Binary files a/static/font/lato-v15-latin-regular.woff and /dev/null differ diff --git a/static/font/lato-v15-latin-regular.woff2 b/static/font/lato-v15-latin-regular.woff2 deleted file mode 100644 index 6904b664..00000000 Binary files a/static/font/lato-v15-latin-regular.woff2 and /dev/null differ diff --git a/static/font/tiresias.css b/static/font/tiresias.css deleted file mode 100644 index c3a83080..00000000 --- a/static/font/tiresias.css +++ /dev/null @@ -1,15 +0,0 @@ -@font-face { - font-family: 'Tiresias PCFont'; - font-style: normal; - font-weight: 400; - src: local('Tiresias PCFont'), local('Tiresias PCFont'), - url('./fonts/Tiresias_PCfont.ttf') format('truetype') -} - -@font-face { - font-family: 'Tiresias Infofont'; - font-style: normal; - font-weight: 400; - src: local('Tiresias Infofont'), local('Tiresias Infofont'), - url('./fonts/Tiresias_Infofont.ttf') format('truetype') -} diff --git a/static/logo-512.png b/static/logo-512.png index c8397e35..86c21a58 100755 Binary files a/static/logo-512.png and b/static/logo-512.png differ diff --git a/static/logo.png b/static/logo.png deleted file mode 100644 index 194bcd05..00000000 Binary files a/static/logo.png and /dev/null differ diff --git a/static/logo.svg b/static/logo.svg index c8eba125..79a009bc 100755 --- a/static/logo.svg +++ b/static/logo.svg @@ -1,38 +1 @@ -<<<<<<< HEAD - - - - - - - - - - - - - - - - - - -======= - ->>>>>>> d5c82f68 (replace assets with new ones) + \ No newline at end of file diff --git a/static/misskey-notif.mp3 b/static/misskey-notif.mp3 new file mode 100644 index 00000000..c13d1324 Binary files /dev/null and b/static/misskey-notif.mp3 differ diff --git a/static/styles.json b/static/styles.json index 990cdc85..b9c81c84 100644 --- a/static/styles.json +++ b/static/styles.json @@ -7,6 +7,8 @@ "ir-black": [ "Ir Black", "#000000", "#242422", "#b5b3aa", "#ff6c60", "#FF6C60", "#A8FF60", "#96CBFE", "#FFFFB6" ], "monokai": [ "Monokai", "#272822", "#383830", "#f8f8f2", "#f92672", "#F92672", "#a6e22e", "#66d9ef", "#f4bf75" ], + "catppuccin-mocha-yellow": "/static/themes/catppuccin-mocha-yellow.json", + "skyloft": "/static/themes/skyloft.json", "redmond-xx": "/static/themes/redmond-xx.json", "redmond-xx-se": "/static/themes/redmond-xx-se.json", "redmond-xxi": "/static/themes/redmond-xxi.json", diff --git a/static/terms-of-service.html b/static/terms-of-service.html index 8302265a..88c230a4 100644 --- a/static/terms-of-service.html +++ b/static/terms-of-service.html @@ -1,3 +1,12 @@ -

This is Akkoma-FE modified to work on top of Mastodon/Chuckya. Note that while most of it should work fine, there are still a few differences between Akkoma and Mastodon that may cause things to break.

+

+

icesynth!

+

Log inRegister

+
-

Source code: https://akkoma.dev/esm/akkoma-fe

+
+ +

Please refer to the actual homepage for more information.

+ +
+

Thanks for visiting, beep!

+
\ No newline at end of file diff --git a/static/themes/catppuccin-mocha-yellow.json b/static/themes/catppuccin-mocha-yellow.json new file mode 100644 index 00000000..e6195214 --- /dev/null +++ b/static/themes/catppuccin-mocha-yellow.json @@ -0,0 +1,435 @@ +{ + "_pleroma_theme_version": 2, + "name": "Catppuccin Mocha Yellow", + "theme": { + "themeEngineVersion": 3, + "shadows": { + "panel": [ + { + "color": "#11111b", + "x": 1, + "y": "3", + "blur": "10", + "spread": "2", + "alpha": "0.5" + } + ], + "topBar": [ + { + "color": "#f9e2af", + "x": 0, + "y": 0, + "blur": "0", + "spread": 2, + "alpha": "1" + } + ], + "popup": [ + { + "x": 2, + "y": 2, + "blur": 3, + "spread": 0, + "color": "#000000", + "alpha": 0.5 + } + ], + "avatar": [ + { + "color": "#11111b", + "x": 0, + "y": "5", + "blur": 8, + "spread": 0, + "alpha": 0.7 + } + ], + "avatarStatus": [], + "panelHeader": [], + "button": [ + { + "color": "#313244", + "x": 0, + "y": "0", + "blur": "0", + "spread": 1.5, + "inset": false, + "alpha": 1 + }, + { + "color": "#11111b", + "x": 0, + "y": "2", + "blur": 3, + "spread": "1", + "alpha": 1 + } + ], + "buttonHover": [ + { + "color": "#45475a", + "x": 0, + "y": 0, + "blur": "0", + "spread": 2, + "alpha": 1 + }, + { + "color": "#11111b", + "x": 0, + "y": "2", + "blur": 3, + "spread": 1, + "inset": false, + "alpha": 1 + } + ], + "buttonPressed": [ + { + "color": "#585b70", + "x": 0, + "y": 0, + "blur": "0", + "spread": "3", + "alpha": 1 + }, + { + "color": "#11111b", + "x": 0, + "y": "2", + "blur": 3, + "spread": 1, + "inset": false, + "alpha": 1 + } + ], + "input": [ + { + "color": "#313244", + "x": 0, + "y": 0, + "blur": 0, + "spread": 1, + "inset": false, + "alpha": 1 + } + ] + }, + "colors": { + "underlay": "#000000", + "bg": "#1e1e2e", + "fg": "#11111b", + "cRed": "#f38ba8", + "cGreen": "#a6e3a1", + "cOrange": "#fab387", + "cBlue": "#89b4fa", + "accent": "#f9e2af", + "link": "#89b4fa", + "text": "#cdd6f4", + "badgeNotification": "#f9e2af", + "badgeNotificationText": "#1e1e2e", + "alertNeutral": "#313244", + "alertNeutralText": "#cdd6f4", + "alertPopupNeutral": "#313244", + "alertPopupNeutralText": "#cdd6f4", + "alertSuccess": "#a6e3a1", + "alertSuccessText": "#0b1433", + "alertPopupSuccess": "#a6e3a1", + "alertPopupSuccessText": "#0b1433", + "alertWarning": "#fab387", + "alertWarningText": "#1e1e2e", + "alertPopupWarning": "#fab387", + "alertPopupWarningText": "#1e1e2e", + "alertError": "#f38ba8", + "alertErrorText": "#1e1e2e", + "alertPopupError": "#f38ba8", + "alertPopupErrorText": "#1e1e2e", + "panel": "#11111b", + "panelText": "#cdd6f4", + "alertNeutralPanelText": "#cdd6f4", + "alertSuccessPanelText": "#0b1433", + "alertWarningPanelText": "#0b1433", + "alertErrorPanelText": "#0b1433", + "fgText": "#cdd6f4", + "topBar": "#11111b", + "topBarText": "#cdd6f4", + "input": "#11111b", + "inputTopbarText": "#cdd6f4", + "inputPanelText": "#cdd6f4", + "inputText": "#cdd6f4", + "btn": "#11111b", + "btnText": "#cdd6f4", + "btnTopBarText": "#cdd6f4", + "btnDisabled": "#1b1b2a", + "btnDisabledTopBarText": "#484a5c", + "btnPanelText": "#cdd6f4", + "btnDisabledPanelText": "#484a5c", + "btnDisabledText": "#484a5c", + "btnToggled": "#39395a", + "btnToggledTopBarText": "#cdd6f4", + "btnToggledPanelText": "#cdd6f4", + "btnToggledText": "#cdd6f4", + "btnPressed": "#11111b", + "btnPressedTopBarText": "#cdd6f4", + "btnPressedTopBar": "#11111b", + "btnPressedPanelText": "#cdd6f4", + "btnPressedPanel": "#11111b", + "btnPressedText": "#cdd6f4", + "tabActiveText": "#cdd6f4", + "tabText": "#cdd6f4", + "tab": "#11111b", + "fgLink": "#89b4fa", + "topBarLink": "#cdd6f4", + "panelLink": "#89b4fa", + "panelFaint": "#cdd6f4", + "icon": "#a6adc8", + "poll": "#766d62", + "pollText": "#ffffff", + "border": "#313244", + "postCyantext": "#89b4fa", + "postGreentext": "#a6e3a1", + "postLink": "#89b4fa", + "lightText": "#ffffff", + "popover": "#1e1e2e", + "selectedMenuPopover": "#29293e", + "highlight": "#313244", + "highlightText": "#cdd6f4", + "selectedMenu": "#313244", + "selectedMenuText": "#f9e2af", + "selectedMenuPopoverIcon": "#918677", + "highlightLink": "#89b4fa", + "selectedMenuLink": "#89b4fa", + "selectedMenuPopoverLink": "#89b4fa", + "selectedMenuPopoverText": "#f9e2af", + "faintLink": "#89b4fa", + "highlightFaintLink": "#89b4fa", + "selectedMenuFaintLink": "#89b4fa", + "selectedMenuPopoverFaintLink": "#89b4fa", + "faint": "#cdd6f4", + "highlightFaintText": "#cdd6f4", + "selectedMenuFaintText": "#cdd6f4", + "selectedMenuPopoverFaintText": "#cdd6f4", + "highlightLightText": "#ffffff", + "selectedMenuLightText": "#ffffff", + "selectedMenuPopoverLightText": "#ffffff", + "selectedMenuIcon": "#958a7a", + "selectedPost": "#313244", + "selectedPostText": "#cdd6f4", + "selectedPostIcon": "#7f849c", + "selectedPostLink": "#89b4fa", + "selectedPostFaintLink": "#89b4fa", + "highlightPostLink": "#89b4fa", + "selectedPostPostLink": "#89b4fa", + "selectedPostLightText": "#ffffff", + "selectedPostFaintText": "#cdd6f4", + "popoverText": "#cdd6f4", + "popoverIcon": "#767a91", + "popoverLink": "#89b4fa", + "postFaintLink": "#89b4fa", + "popoverPostFaintLink": "#89b4fa", + "popoverFaintLink": "#89b4fa", + "popoverFaintText": "#cdd6f4", + "popoverPostLink": "#89b4fa", + "popoverLightText": "#ffffff", + "highlightIcon": "#7f849c", + "highlightPostFaintLink": "#89b4fa", + "profileTint": "#1e1e2e", + "profileBg": "#0f101b", + "wallpaper": "#1a1a28" + }, + "opacity": { + "underlay": 0, + "bg": 1, + "alert": 1, + "alertPopup": 0.95, + "panel": 1, + "input": 0.5, + "btn": 1, + "faint": 0.5, + "border": 1, + "popover": 1, + "profileTint": 0.5 + }, + "radii": { + "btn": "5", + "input": "5", + "checkbox": "5", + "panel": "15", + "avatar": "5", + "avatarAlt": "5", + "tooltip": "20", + "attachment": "5" + }, + "fonts": { + "interface": { + "family": "Atkinson Hyperlegible Next" + }, + "input": { + "family": "Atkinson Hyperlegible Next" + }, + "post": { + "family": "Atkinson Hyperlegible Next" + }, + "postCode": { + "family": "monospace" + } + } + }, + "source": { + "themeEngineVersion": 3, + "fonts": { + "interface": { + "family": "Atkinson Hyperlegible Next" + }, + "input": { + "family": "Atkinson Hyperlegible Next" + }, + "post": { + "family": "Atkinson Hyperlegible Next" + }, + "postCode": { + "family": "monospace" + } + }, + "shadows": { + "avatar": [ + { + "x": 0, + "y": "5", + "blur": 8, + "spread": 0, + "color": "--fg", + "alpha": 0.7 + } + ], + "button": [ + { + "x": 0, + "y": "0", + "blur": "0", + "spread": 1.5, + "inset": false, + "color": "#313244", + "alpha": 1 + }, + { + "x": 0, + "y": "2", + "blur": 3, + "spread": "1", + "color": "--fg", + "alpha": 1 + } + ], + "buttonHover": [ + { + "x": 0, + "y": 0, + "blur": "0", + "spread": 2, + "color": "#45475a", + "alpha": 1 + }, + { + "x": 0, + "y": "2", + "blur": 3, + "spread": 1, + "inset": false, + "color": "--fg", + "alpha": 1 + } + ], + "buttonPressed": [ + { + "x": 0, + "y": 0, + "blur": "0", + "spread": "3", + "color": "#585b70", + "alpha": 1 + }, + { + "x": 0, + "y": "2", + "blur": 3, + "spread": 1, + "inset": false, + "color": "--fg", + "alpha": 1 + } + ], + "input": [ + { + "x": 0, + "y": 0, + "blur": 0, + "spread": 1, + "inset": false, + "color": "#313244", + "alpha": 1 + } + ], + "panel": [ + { + "x": 1, + "y": "3", + "blur": "10", + "spread": "2", + "color": "--fg", + "alpha": "0.5" + } + ], + "topBar": [ + { + "x": 0, + "y": 0, + "blur": "0", + "spread": 2, + "color": "--accent", + "alpha": "1" + } + ] + }, + "opacity": { + "underlay": "0", + "alert": "1" + }, + "colors": { + "bg": "#1e1e2e", + "fg": "#11111b", + "text": "#cdd6f4", + "link": "#89b4fa", + "accent": "#f9e2af", + "cBlue": "#89b4fa", + "cRed": "#f38ba8", + "cGreen": "#a6e3a1", + "cOrange": "#fab387", + "highlight": "#313244", + "selectedPost": "#313244", + "selectedMenu": "#313244", + "selectedMenuText": "--accent", + "border": "#313244", + "icon": "#a6adc8", + "topBarLink": "--text", + "alertError": "--cRed", + "alertErrorText": "--bg", + "alertWarning": "--cOrange", + "alertWarningText": "--bg", + "alertNeutral": "#313244", + "alertNeutralText": "--text", + "badgeNotification": "--accent", + "badgeNotificationText": "--bg" + }, + "radii": { + "btn": "5", + "input": "5", + "checkbox": "5", + "panel": "15", + "avatar": "5", + "avatarAlt": "5", + "tooltip": "20", + "attachment": "5" + } + } +} \ No newline at end of file diff --git a/static/themes/skyloft.json b/static/themes/skyloft.json new file mode 100644 index 00000000..801949f7 --- /dev/null +++ b/static/themes/skyloft.json @@ -0,0 +1,657 @@ +{ + "_pleroma_theme_version": 4, + "name": "Skyloft", + "theme": { + "themeEngineVersion": 3, + "shadows": { + "panel": [ + { + "color": "#000000", + "x": 1, + "y": 1, + "blur": 4, + "spread": 0, + "alpha": 0.6 + }, + { + "color": "#000000", + "x": "0", + "y": "0", + "blur": "2", + "spread": "1", + "inset": true, + "alpha": "0.3" + }, + { + "color": "#ffffff", + "x": "0", + "y": "0", + "blur": 0, + "spread": "1", + "inset": true, + "alpha": "0.1" + } + ], + "panelHeader": [ + ], + "topBar": [ + { + "color": "#000000", + "alpha": "0.4", + "blur": "0", + "spread": 0, + "x": 0, + "y": "1" + }, + { + "color": "#000000", + "alpha": "0.3", + "blur": "7", + "inset": false, + "spread": 0, + "x": 0, + "y": "2" + }, + { + "color": "#ffffff", + "x": "0", + "y": "20", + "blur": 30, + "spread": -8, + "inset": true, + "alpha": "0.1" + }, + { + "color": "#ffffff", + "x": "0", + "y": 0, + "blur": "0", + "spread": "1", + "inset": true, + "alpha": "0.1" + } + ], + "popup": [ + { + "x": 2, + "y": 2, + "blur": 3, + "spread": 0, + "color": "#000000", + "alpha": 0.5 + } + ], + "avatar": [ + { + "x": 0, + "y": 1, + "blur": 8, + "spread": 0, + "color": "#000000", + "alpha": 0.7 + } + ], + "avatarStatus": [ + { + "color": "#000000", + "x": 0, + "y": 0, + "blur": "6", + "spread": "1", + "inset": true, + "alpha": "0.4" + }, + { + "color": "#faf8d8", + "x": 0, + "y": 0, + "blur": "0", + "spread": 1, + "inset": true, + "alpha": "1" + } + ], + "button": [ + { + "color": "#000000", + "alpha": "0.25", + "blur": "0", + "spread": "1", + "x": 0, + "y": 0 + }, + { + "color": "#FFFFFF", + "alpha": 0.2, + "blur": 0, + "inset": true, + "spread": 0, + "x": 0, + "y": 1 + }, + { + "color": "#000000", + "alpha": 0.2, + "blur": 0, + "inset": true, + "spread": 0, + "x": 0, + "y": -1 + }, + { + "color": "#000000", + "x": 0, + "y": 0, + "blur": 15, + "spread": 1, + "inset": true, + "alpha": "0.2" + }, + { + "color": "#fbfae1", + "x": 0, + "y": 0, + "blur": "0", + "spread": 1, + "inset": true, + "alpha": "0.4" + } + ], + "buttonHover": [ + { + "color": "#2f2a21", + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "alpha": 1 + }, + { + "color": "#FFFFFF", + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "alpha": 0.2, + "inset": true + }, + { + "color": "#000000", + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "alpha": 0.2, + "inset": true + } + ], + "buttonPressed": [ + { + "color": "#000000", + "alpha": 1, + "blur": "0", + "inset": true, + "spread": 0, + "x": 0, + "y": 0 + }, + { + "color": "#000000", + "alpha": 0.2, + "blur": 0, + "inset": true, + "spread": 0, + "x": 0, + "y": 1 + }, + { + "color": "#FFFFFF", + "alpha": 0.2, + "blur": 0, + "inset": true, + "spread": 0, + "x": 0, + "y": -1 + }, + { + "color": "#000000", + "alpha": 1, + "blur": "2", + "inset": false, + "spread": 0, + "x": 0, + "y": 0 + } + ], + "input": [ + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": 0, + "blur": 2, + "inset": true, + "spread": 0, + "color": "#000000", + "alpha": 1 + } + ] + }, + "colors": { + "underlay": "#000000", + "bg": "#f6e4be", + "fg": "#d7ba99", + "cRed": "#e94347", + "cGreen": "#1dba58", + "cOrange": "#f6ad4a", + "cBlue": "#81beea", + "accent": "#3a8cb4", + "link": "#317799", + "text": "#2f2a21", + "badgeNotification": "#eb6c6b", + "badgeNotificationText": "#ffffff", + "alertNeutral": "#2f2a21", + "alertNeutralText": "#000000", + "alertPopupNeutral": "#2f2a21", + "alertPopupNeutralText": "#ffffff", + "alertSuccess": "#1dba58", + "alertSuccessText": "#2f2a21", + "alertPopupSuccess": "#1dba58", + "alertPopupSuccessText": "#2f2a21", + "alertWarning": "#f6ad4a", + "alertWarningText": "#2f2a21", + "alertPopupWarning": "#f6ad4a", + "alertPopupWarningText": "#2f2a21", + "alertError": "#e94347", + "alertErrorText": "#6f634e", + "alertPopupError": "#e94347", + "alertPopupErrorText": "#ffffff", + "panel": "#f6e4be", + "panelText": "#2f2a21", + "alertNeutralPanelText": "#000000", + "alertSuccessPanelText": "#2f2a21", + "alertWarningPanelText": "#2f2a21", + "alertErrorPanelText": "#2f2a21", + "fgText": "#2f2a21", + "topBar": "#62462f", + "topBarText": "#ded9d1", + "input": "#d7ba99", + "inputTopbarText": "#000000", + "inputPanelText": "#2f2a21", + "inputText": "#2f2a21", + "btn": "#d7ba99", + "btnText": "#2f2a21", + "btnTopBarText": "#2f2a21", + "btnDisabled": "#efdab5", + "btnDisabledTopBarText": "#bfae90", + "btnPanelText": "#2f2a21", + "btnDisabledPanelText": "#bfae90", + "btnDisabledText": "#bfae90", + "btnToggled": "#8fc2db", + "btnToggledTopBarText": "#2f2a21", + "btnToggledPanelText": "#2f2a21", + "btnToggledText": "#2f2a21", + "btnPressed": "#d7ba99", + "btnPressedTopBarText": "#2f2a21", + "btnPressedTopBar": "#d7ba99", + "btnPressedPanelText": "#2f2a21", + "btnPressedPanel": "#d7ba99", + "btnPressedText": "#2f2a21", + "tabActiveText": "#2f2a21", + "tabText": "#2f2a21", + "tab": "#d7ba99", + "fgLink": "#66acce", + "topBarLink": "#ded9d1", + "panelLink": "#31779a", + "panelFaint": "#2f2a21", + "icon": "#938770", + "poll": "#abc1ba", + "pollText": "#2f2a21", + "border": "#d3b38f", + "postCyantext": "#16527e", + "postGreentext": "#46e281", + "postLink": "#66acce", + "lightText": "#000000", + "popover": "#f6e4be", + "selectedMenuPopover": "#f3dba8", + "highlight": "#f3dba8", + "highlightText": "#2f2a21", + "selectedMenu": "#f3dba8", + "selectedMenuText": "#2f2a21", + "selectedMenuPopoverIcon": "#918365", + "highlightLink": "#66acce", + "selectedMenuLink": "#31779a", + "selectedMenuPopoverLink": "#66abce", + "selectedMenuPopoverText": "#2f2a21", + "faintLink": "#317799", + "highlightFaintLink": "#66acce", + "selectedMenuFaintLink": "#31779a", + "selectedMenuPopoverFaintLink": "#66abce", + "faint": "#2f2a21", + "highlightFaintText": "#2f2a21", + "selectedMenuFaintText": "#2f2a21", + "selectedMenuPopoverFaintText": "#2f2a21", + "highlightLightText": "#000000", + "selectedMenuLightText": "#000000", + "selectedMenuPopoverLightText": "#000000", + "selectedMenuIcon": "#918365", + "selectedPost": "#f3dba8", + "selectedPostText": "#2f2a21", + "selectedPostIcon": "#918365", + "selectedPostLink": "#31779a", + "selectedPostFaintLink": "#31779a", + "highlightPostLink": "#31779a", + "selectedPostPostLink": "#66abce", + "selectedPostLightText": "#000000", + "selectedPostFaintText": "#2f2a21", + "popoverText": "#2f2a21", + "popoverIcon": "#938770", + "popoverLink": "#66acce", + "postFaintLink": "#66acce", + "popoverPostFaintLink": "#31779a", + "popoverFaintLink": "#66acce", + "popoverFaintText": "#2f2a21", + "popoverPostLink": "#31779a", + "popoverLightText": "#000000", + "highlightIcon": "#918365", + "highlightPostFaintLink": "#31779a", + "profileTint": "#f6e4be", + "profileBg": "#827f70", + "wallpaper": "#f8e8c7" + }, + "opacity": { + "underlay": 0, + "bg": 1, + "alert": 0.5, + "alertPopup": 0.95, + "panel": 1, + "input": 0.5, + "btn": 1, + "faint": 0.5, + "border": 1, + "popover": 1, + "profileTint": 0.5 + }, + "radii": { + "btn": "5", + "input": "5", + "checkbox": "5", + "panel": "7", + "avatar": "6", + "avatarAlt": "3", + "tooltip": "5", + "attachment": "5" + }, + "fonts": { + "interface": { + "family": "sans-serif" + }, + "input": { + "family": "inherit" + }, + "post": { + "family": "inherit" + }, + "postCode": { + "family": "monospace" + } + } + }, + "source": { + "themeEngineVersion": 3, + "fonts": { + "interface": { + "family": "sans-serif" + } + }, + "shadows": { + "button": [ + { + "alpha": "0.25", + "blur": "0", + "color": "#000000", + "spread": "1", + "x": 0, + "y": 0 + }, + { + "alpha": 0.2, + "blur": 0, + "color": "#FFFFFF", + "inset": true, + "spread": 0, + "x": 0, + "y": 1 + }, + { + "alpha": 0.2, + "blur": 0, + "color": "#000000", + "inset": true, + "spread": 0, + "x": 0, + "y": -1 + }, + { + "x": 0, + "y": 0, + "blur": 15, + "spread": 1, + "inset": true, + "color": "#000000", + "alpha": "0.2" + }, + { + "x": 0, + "y": 0, + "blur": "0", + "spread": 1, + "inset": true, + "color": "#fbfae1", + "alpha": "0.4" + } + ], + "buttonPressed": [ + { + "alpha": 1, + "blur": "0", + "color": "#000000", + "inset": true, + "spread": 0, + "x": 0, + "y": 0 + }, + { + "alpha": 0.2, + "blur": 0, + "color": "#000000", + "inset": true, + "spread": 0, + "x": 0, + "y": 1 + }, + { + "alpha": 0.2, + "blur": 0, + "color": "#FFFFFF", + "inset": true, + "spread": 0, + "x": 0, + "y": -1 + }, + { + "alpha": 1, + "blur": "2", + "color": "#000000", + "inset": false, + "spread": 0, + "x": 0, + "y": 0 + } + ], + "topBar": [ + { + "alpha": "0.4", + "blur": "0", + "color": "#000000", + "spread": 0, + "x": 0, + "y": "1" + }, + { + "alpha": "0.3", + "blur": "7", + "color": "#000000", + "inset": false, + "spread": 0, + "x": 0, + "y": "2" + }, + { + "x": "0", + "y": "20", + "blur": 30, + "spread": -8, + "inset": true, + "color": "#ffffff", + "alpha": "0.1" + }, + { + "x": "0", + "y": 0, + "blur": "0", + "spread": "1", + "inset": true, + "color": "#ffffff", + "alpha": "0.1" + } + ], + "buttonHover": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#2f2a21", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + } + ], + "avatarStatus": [ + { + "x": 0, + "y": 0, + "blur": "6", + "spread": "1", + "inset": true, + "color": "#000000", + "alpha": "0.4" + }, + { + "x": 0, + "y": 0, + "blur": "0", + "spread": 1, + "inset": true, + "color": "#faf8d8", + "alpha": "1" + } + ], + "panel": [ + { + "x": 1, + "y": 1, + "blur": 4, + "spread": 0, + "color": "#000000", + "alpha": 0.6 + }, + { + "x": "0", + "y": "0", + "blur": "2", + "spread": "1", + "inset": true, + "color": "#000000", + "alpha": "0.3" + }, + { + "x": "0", + "y": "0", + "blur": 0, + "spread": "1", + "inset": true, + "color": "#ffffff", + "alpha": "0.1" + } + ] + }, + "opacity": { + "underlay": "0" + }, + "colors": { + "bg": "#f6e4be", + "fg": "#d7ba99", + "text": "#2f2a21", + "underlay": "#000000", + "link": "#317799", + "accent": "#3a8cb4", + "cBlue": "#81beea", + "cRed": "#e94347", + "cGreen": "#1dba58", + "cOrange": "#f6ad4a", + "border": "--fg,3", + "panel": "#f6e4be", + "topBar": "#62462f", + "topBarText": "#ded9d1", + "topBarLink": "#ded9d1", + "btnToggled": "--accent,-24.2", + "alertErrorText": "--text,21.2", + "badgeNotification": "#eb6c6b", + "badgeNotificationText": "#ffffff" + }, + "radii": { + "btn": "5", + "input": "5", + "checkbox": "5", + "panel": "7", + "avatar": "6", + "avatarAlt": "3", + "tooltip": "5", + "attachment": "5" + } + } +} diff --git a/static/wdwskyboxbanner.png b/static/wdwskyboxbanner.png deleted file mode 100644 index 08895537..00000000 Binary files a/static/wdwskyboxbanner.png and /dev/null differ