summaryrefslogtreecommitdiffstats
path: root/vendor
diff options
context:
space:
mode:
authorWim <wim@42.be>2017-07-09 13:59:50 +0200
committerWim <wim@42.be>2017-07-09 14:00:28 +0200
commit6256c066f11466784fd35f45549ac643dcec790f (patch)
tree02959a047574008dfb6963e9fc7dcd17fb670073 /vendor
parent870b89a8f031903ac53780ec4f09a36532998df6 (diff)
downloadmatterbridge-msglm-6256c066f11466784fd35f45549ac643dcec790f.tar.gz
matterbridge-msglm-6256c066f11466784fd35f45549ac643dcec790f.tar.bz2
matterbridge-msglm-6256c066f11466784fd35f45549ac643dcec790f.zip
Replace :emoji: with unicode chars. #215
Add vendor github.com/peterhellberg/emojilib
Diffstat (limited to 'vendor')
-rw-r--r--vendor/github.com/peterhellberg/emojilib/LICENSE19
-rw-r--r--vendor/github.com/peterhellberg/emojilib/emojilib.go88
-rw-r--r--vendor/github.com/peterhellberg/emojilib/generated.go19620
-rw-r--r--vendor/manifest8
4 files changed, 19735 insertions, 0 deletions
diff --git a/vendor/github.com/peterhellberg/emojilib/LICENSE b/vendor/github.com/peterhellberg/emojilib/LICENSE
new file mode 100644
index 00000000..782fe09a
--- /dev/null
+++ b/vendor/github.com/peterhellberg/emojilib/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2015-2017 Peter Hellberg https://c7.se/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
+OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/vendor/github.com/peterhellberg/emojilib/emojilib.go b/vendor/github.com/peterhellberg/emojilib/emojilib.go
new file mode 100644
index 00000000..29da98b5
--- /dev/null
+++ b/vendor/github.com/peterhellberg/emojilib/emojilib.go
@@ -0,0 +1,88 @@
+/*
+
+Package emojilib is a port of the Emoji keyword library to Go
+
+Installation
+
+Just go get the package:
+
+ go get -u github.com/peterhellberg/emojilib
+
+Usage
+
+A small usage example
+
+ package main
+
+ import (
+ "fmt"
+
+ "github.com/peterhellberg/emojilib"
+ )
+
+ func main() {
+ fmt.Println(emojilib.ReplaceWithPadding("I :green_heart: You!"))
+ }
+
+*/
+package emojilib
+
+import "errors"
+
+//go:generate go run _generator/main.go
+
+// Emojis contain emojis keyed on their name
+type Emojis map[string]Emoji
+
+// Emoji contains the keywords, char and category for an emoji
+type Emoji struct {
+ Keywords []string `json:"keywords"`
+ Char string `json:"char"`
+ Category string `json:"category"`
+}
+
+// ErrUnknownEmoji is returned from Find if provided with a unknown emoji name
+var ErrUnknownEmoji = errors.New("unknown emoji")
+
+// ErrUnknownKeyword is returned from Keyword if provided with a unknown keyword
+var ErrUnknownKeyword = errors.New("unknown keyword")
+
+// Find returns an Emoji if provided with a known name
+func Find(n string) (Emoji, error) {
+ if e, ok := emojis[n]; ok {
+ return e, nil
+ }
+
+ return Emoji{}, ErrUnknownEmoji
+}
+
+// Keyword returns Emojis for the given keyword
+func Keyword(k string) ([]Emoji, error) {
+ if names, ok := keywordLookup[k]; ok {
+ es := []Emoji{}
+
+ for _, n := range names {
+ es = append(es, emojis[n])
+ }
+
+ return es, nil
+ }
+
+ return []Emoji{}, ErrUnknownKeyword
+}
+
+// All returns all the emojis
+func All() Emojis {
+ return emojis
+}
+
+// Replace takes a string and replaces all emoji names with their emoji character
+func Replace(s string) string {
+ return emojiReplacer.Replace(s)
+}
+
+// ReplaceWithPadding takes a string and replaces all emoji names with their
+// emoji character and a space in order to display better in terminals
+func ReplaceWithPadding(s string) string {
+ return emojiPaddedReplacer.Replace(s)
+}
diff --git a/vendor/github.com/peterhellberg/emojilib/generated.go b/vendor/github.com/peterhellberg/emojilib/generated.go
new file mode 100644
index 00000000..a5976471
--- /dev/null
+++ b/vendor/github.com/peterhellberg/emojilib/generated.go
@@ -0,0 +1,19620 @@
+// DO NOT EDIT THIS FILE!
+//
+// Update it by running: go generate
+//
+// Generated at: 2017-06-16 16:34:02 +0000
+
+package emojilib
+
+import "strings"
+
+var emojis = Emojis{
+ "+1": Emoji{
+ Keywords: []string{"thumbsup", "yes", "awesome", "good", "agree", "accept", "cool", "hand", "like"},
+ Char: "๐Ÿ‘",
+ Category: "people",
+ },
+ "-1": Emoji{
+ Keywords: []string{"thumbsdown", "no", "dislike", "hand"},
+ Char: "๐Ÿ‘Ž",
+ Category: "people",
+ },
+ "100": Emoji{
+ Keywords: []string{"score", "perfect", "numbers", "century", "exam", "quiz", "test", "pass", "hundred"},
+ Char: "๐Ÿ’ฏ",
+ Category: "symbols",
+ },
+ "1234": Emoji{
+ Keywords: []string{"numbers", "blue-square"},
+ Char: "๐Ÿ”ข",
+ Category: "symbols",
+ },
+ "1st_place_medal": Emoji{
+ Keywords: []string{"award", "winning", "first"},
+ Char: "๐Ÿฅ‡",
+ Category: "activity",
+ },
+ "2nd_place_medal": Emoji{
+ Keywords: []string{"award", "second"},
+ Char: "๐Ÿฅˆ",
+ Category: "activity",
+ },
+ "3rd_place_medal": Emoji{
+ Keywords: []string{"award", "third"},
+ Char: "๐Ÿฅ‰",
+ Category: "activity",
+ },
+ "8ball": Emoji{
+ Keywords: []string{"pool", "hobby", "game", "luck", "magic"},
+ Char: "๐ŸŽฑ",
+ Category: "activity",
+ },
+ "a": Emoji{
+ Keywords: []string{"red-square", "alphabet", "letter"},
+ Char: "๐Ÿ…ฐ๏ธ",
+ Category: "symbols",
+ },
+ "ab": Emoji{
+ Keywords: []string{"red-square", "alphabet"},
+ Char: "๐Ÿ†Ž",
+ Category: "symbols",
+ },
+ "abc": Emoji{
+ Keywords: []string{"blue-square", "alphabet"},
+ Char: "๐Ÿ”ค",
+ Category: "symbols",
+ },
+ "abcd": Emoji{
+ Keywords: []string{"blue-square", "alphabet"},
+ Char: "๐Ÿ”ก",
+ Category: "symbols",
+ },
+ "accept": Emoji{
+ Keywords: []string{"ok", "good", "chinese", "kanji", "agree", "yes", "orange-circle"},
+ Char: "๐Ÿ‰‘",
+ Category: "symbols",
+ },
+ "aerial_tramway": Emoji{
+ Keywords: []string{"transportation", "vehicle", "ski"},
+ Char: "๐Ÿšก",
+ Category: "travel_and_places",
+ },
+ "afghanistan": Emoji{
+ Keywords: []string{"af", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "airplane": Emoji{
+ Keywords: []string{"vehicle", "transportation", "flight", "fly"},
+ Char: "โœˆ๏ธ",
+ Category: "travel_and_places",
+ },
+ "aland_islands": Emoji{
+ Keywords: []string{"ร…land", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฝ",
+ Category: "flags",
+ },
+ "alarm_clock": Emoji{
+ Keywords: []string{"time", "wake"},
+ Char: "โฐ",
+ Category: "objects",
+ },
+ "albania": Emoji{
+ Keywords: []string{"al", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "alembic": Emoji{
+ Keywords: []string{"distilling", "science", "experiment"},
+ Char: "โš—",
+ Category: "objects",
+ },
+ "algeria": Emoji{
+ Keywords: []string{"dz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฉ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "alien": Emoji{
+ Keywords: []string{"UFO", "paul", "weird", "outer_space"},
+ Char: "๐Ÿ‘ฝ",
+ Category: "people",
+ },
+ "ambulance": Emoji{
+ Keywords: []string{"health", "911", "hospital"},
+ Char: "๐Ÿš‘",
+ Category: "travel_and_places",
+ },
+ "american_samoa": Emoji{
+ Keywords: []string{"american", "ws", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "amphora": Emoji{
+ Keywords: []string{"vase", "jar"},
+ Char: "๐Ÿบ",
+ Category: "objects",
+ },
+ "anchor": Emoji{
+ Keywords: []string{"ship", "ferry", "sea", "boat"},
+ Char: "โš“",
+ Category: "travel_and_places",
+ },
+ "andorra": Emoji{
+ Keywords: []string{"ad", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "angel": Emoji{
+ Keywords: []string{"heaven", "wings", "halo"},
+ Char: "๐Ÿ‘ผ",
+ Category: "people",
+ },
+ "anger": Emoji{
+ Keywords: []string{"angry", "mad"},
+ Char: "๐Ÿ’ข",
+ Category: "symbols",
+ },
+ "angola": Emoji{
+ Keywords: []string{"ao", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "angry": Emoji{
+ Keywords: []string{"mad", "face", "annoyed", "frustrated"},
+ Char: "๐Ÿ˜ ",
+ Category: "people",
+ },
+ "anguilla": Emoji{
+ Keywords: []string{"ai", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "anguished": Emoji{
+ Keywords: []string{"face", "stunned", "nervous"},
+ Char: "๐Ÿ˜ง",
+ Category: "people",
+ },
+ "ant": Emoji{
+ Keywords: []string{"animal", "insect", "nature", "bug"},
+ Char: "๐Ÿœ",
+ Category: "animals_and_nature",
+ },
+ "antarctica": Emoji{
+ Keywords: []string{"aq", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ถ",
+ Category: "flags",
+ },
+ "antigua_barbuda": Emoji{
+ Keywords: []string{"antigua", "barbuda", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "apple": Emoji{
+ Keywords: []string{"fruit", "mac", "school"},
+ Char: "๐ŸŽ",
+ Category: "food_and_drink",
+ },
+ "aquarius": Emoji{
+ Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
+ Char: "โ™’",
+ Category: "symbols",
+ },
+ "argentina": Emoji{
+ Keywords: []string{"ar", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "aries": Emoji{
+ Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
+ Char: "โ™ˆ",
+ Category: "symbols",
+ },
+ "armenia": Emoji{
+ Keywords: []string{"am", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "arrow_backward": Emoji{
+ Keywords: []string{"blue-square", "left", "direction"},
+ Char: "โ—€๏ธ",
+ Category: "symbols",
+ },
+ "arrow_double_down": Emoji{
+ Keywords: []string{"blue-square", "direction", "bottom"},
+ Char: "โฌ",
+ Category: "symbols",
+ },
+ "arrow_double_up": Emoji{
+ Keywords: []string{"blue-square", "direction", "top"},
+ Char: "โซ",
+ Category: "symbols",
+ },
+ "arrow_down": Emoji{
+ Keywords: []string{"blue-square", "direction", "bottom"},
+ Char: "โฌ‡๏ธ",
+ Category: "symbols",
+ },
+ "arrow_down_small": Emoji{
+ Keywords: []string{"blue-square", "direction", "bottom"},
+ Char: "๐Ÿ”ฝ",
+ Category: "symbols",
+ },
+ "arrow_forward": Emoji{
+ Keywords: []string{"blue-square", "right", "direction", "play"},
+ Char: "โ–ถ๏ธ",
+ Category: "symbols",
+ },
+ "arrow_heading_down": Emoji{
+ Keywords: []string{"blue-square", "direction", "bottom"},
+ Char: "โคต๏ธ",
+ Category: "symbols",
+ },
+ "arrow_heading_up": Emoji{
+ Keywords: []string{"blue-square", "direction", "top"},
+ Char: "โคด๏ธ",
+ Category: "symbols",
+ },
+ "arrow_left": Emoji{
+ Keywords: []string{"blue-square", "previous", "back"},
+ Char: "โฌ…๏ธ",
+ Category: "symbols",
+ },
+ "arrow_lower_left": Emoji{
+ Keywords: []string{"blue-square", "direction", "diagonal", "southwest"},
+ Char: "โ†™๏ธ",
+ Category: "symbols",
+ },
+ "arrow_lower_right": Emoji{
+ Keywords: []string{"blue-square", "direction", "diagonal", "southeast"},
+ Char: "โ†˜๏ธ",
+ Category: "symbols",
+ },
+ "arrow_right": Emoji{
+ Keywords: []string{"blue-square", "next"},
+ Char: "โžก๏ธ",
+ Category: "symbols",
+ },
+ "arrow_right_hook": Emoji{
+ Keywords: []string{"blue-square", "return", "rotate", "direction"},
+ Char: "โ†ช๏ธ",
+ Category: "symbols",
+ },
+ "arrow_up": Emoji{
+ Keywords: []string{"blue-square", "continue", "top", "direction"},
+ Char: "โฌ†๏ธ",
+ Category: "symbols",
+ },
+ "arrow_up_down": Emoji{
+ Keywords: []string{"blue-square", "direction", "way", "vertical"},
+ Char: "โ†•๏ธ",
+ Category: "symbols",
+ },
+ "arrow_up_small": Emoji{
+ Keywords: []string{"blue-square", "triangle", "direction", "point", "forward", "top"},
+ Char: "๐Ÿ”ผ",
+ Category: "symbols",
+ },
+ "arrow_upper_left": Emoji{
+ Keywords: []string{"blue-square", "point", "direction", "diagonal", "northwest"},
+ Char: "โ†–๏ธ",
+ Category: "symbols",
+ },
+ "arrow_upper_right": Emoji{
+ Keywords: []string{"blue-square", "point", "direction", "diagonal", "northeast"},
+ Char: "โ†—๏ธ",
+ Category: "symbols",
+ },
+ "arrows_clockwise": Emoji{
+ Keywords: []string{"sync", "cycle", "round", "repeat"},
+ Char: "๐Ÿ”ƒ",
+ Category: "symbols",
+ },
+ "arrows_counterclockwise": Emoji{
+ Keywords: []string{"blue-square", "sync", "cycle"},
+ Char: "๐Ÿ”„",
+ Category: "symbols",
+ },
+ "art": Emoji{
+ Keywords: []string{"design", "paint", "draw", "colors"},
+ Char: "๐ŸŽจ",
+ Category: "activity",
+ },
+ "articulated_lorry": Emoji{
+ Keywords: []string{"vehicle", "cars", "transportation", "express"},
+ Char: "๐Ÿš›",
+ Category: "travel_and_places",
+ },
+ "artificial_satellite": Emoji{
+ Keywords: []string{"communication", "gps", "orbit", "spaceflight", "NASA", "ISS"},
+ Char: "๐Ÿ›ฐ",
+ Category: "travel_and_places",
+ },
+ "aruba": Emoji{
+ Keywords: []string{"aw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "asterisk": Emoji{
+ Keywords: []string{"star", "keycap"},
+ Char: "*โƒฃ",
+ Category: "symbols",
+ },
+ "astonished": Emoji{
+ Keywords: []string{"face", "xox", "surprised", "poisoned"},
+ Char: "๐Ÿ˜ฒ",
+ Category: "people",
+ },
+ "athletic_shoe": Emoji{
+ Keywords: []string{"shoes", "sports", "sneakers"},
+ Char: "๐Ÿ‘Ÿ",
+ Category: "people",
+ },
+ "atm": Emoji{
+ Keywords: []string{"money", "sales", "cash", "blue-square", "payment", "bank"},
+ Char: "๐Ÿง",
+ Category: "symbols",
+ },
+ "atom_symbol": Emoji{
+ Keywords: []string{"science"},
+ Char: "โš›",
+ Category: "symbols",
+ },
+ "australia": Emoji{
+ Keywords: []string{"au", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "austria": Emoji{
+ Keywords: []string{"at", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "avocado": Emoji{
+ Keywords: []string{"fruit", "food"},
+ Char: "๐Ÿฅ‘",
+ Category: "food_and_drink",
+ },
+ "azerbaijan": Emoji{
+ Keywords: []string{"az", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "b": Emoji{
+ Keywords: []string{"red-square", "alphabet", "letter"},
+ Char: "๐Ÿ…ฑ๏ธ",
+ Category: "symbols",
+ },
+ "baby": Emoji{
+ Keywords: []string{"child", "boy", "girl", "toddler"},
+ Char: "๐Ÿ‘ถ",
+ Category: "people",
+ },
+ "baby_bottle": Emoji{
+ Keywords: []string{"food", "container", "milk"},
+ Char: "๐Ÿผ",
+ Category: "food_and_drink",
+ },
+ "baby_chick": Emoji{
+ Keywords: []string{"animal", "chicken", "bird"},
+ Char: "๐Ÿค",
+ Category: "animals_and_nature",
+ },
+ "baby_symbol": Emoji{
+ Keywords: []string{"orange-square", "child"},
+ Char: "๐Ÿšผ",
+ Category: "symbols",
+ },
+ "back": Emoji{
+ Keywords: []string{"arrow", "words", "return"},
+ Char: "๐Ÿ”™",
+ Category: "symbols",
+ },
+ "bacon": Emoji{
+ Keywords: []string{"food", "breakfast", "pork", "pig", "meat"},
+ Char: "๐Ÿฅ“",
+ Category: "food_and_drink",
+ },
+ "badminton": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿธ",
+ Category: "activity",
+ },
+ "baggage_claim": Emoji{
+ Keywords: []string{"blue-square", "airport", "transport"},
+ Char: "๐Ÿ›„",
+ Category: "symbols",
+ },
+ "baguette_bread": Emoji{
+ Keywords: []string{"food", "bread", "french"},
+ Char: "๐Ÿฅ–",
+ Category: "food_and_drink",
+ },
+ "bahamas": Emoji{
+ Keywords: []string{"bs", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "bahrain": Emoji{
+ Keywords: []string{"bh", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "balance_scale": Emoji{
+ Keywords: []string{"law", "fairness", "weight"},
+ Char: "โš–",
+ Category: "objects",
+ },
+ "balloon": Emoji{
+ Keywords: []string{"party", "celebration", "birthday", "circus"},
+ Char: "๐ŸŽˆ",
+ Category: "objects",
+ },
+ "ballot_box": Emoji{
+ Keywords: []string{"election", "vote"},
+ Char: "๐Ÿ—ณ",
+ Category: "objects",
+ },
+ "ballot_box_with_check": Emoji{
+ Keywords: []string{"ok", "agree", "confirm", "black-square", "vote", "election", "yes", "tick"},
+ Char: "โ˜‘๏ธ",
+ Category: "symbols",
+ },
+ "bamboo": Emoji{
+ Keywords: []string{"plant", "nature", "vegetable", "panda", "pine_decoration"},
+ Char: "๐ŸŽ",
+ Category: "animals_and_nature",
+ },
+ "banana": Emoji{
+ Keywords: []string{"fruit", "food", "monkey"},
+ Char: "๐ŸŒ",
+ Category: "food_and_drink",
+ },
+ "bangbang": Emoji{
+ Keywords: []string{"exclamation", "surprise"},
+ Char: "โ€ผ๏ธ",
+ Category: "symbols",
+ },
+ "bangladesh": Emoji{
+ Keywords: []string{"bd", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "bank": Emoji{
+ Keywords: []string{"building", "money", "sales", "cash", "business", "enterprise"},
+ Char: "๐Ÿฆ",
+ Category: "travel_and_places",
+ },
+ "bar_chart": Emoji{
+ Keywords: []string{"graph", "presentation", "stats"},
+ Char: "๐Ÿ“Š",
+ Category: "objects",
+ },
+ "barbados": Emoji{
+ Keywords: []string{"bb", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ง",
+ Category: "flags",
+ },
+ "barber": Emoji{
+ Keywords: []string{"hair", "salon", "style"},
+ Char: "๐Ÿ’ˆ",
+ Category: "objects",
+ },
+ "baseball": Emoji{
+ Keywords: []string{"sports", "balls"},
+ Char: "โšพ",
+ Category: "activity",
+ },
+ "basketball": Emoji{
+ Keywords: []string{"sports", "balls", "NBA"},
+ Char: "๐Ÿ€",
+ Category: "activity",
+ },
+ "basketball_man": Emoji{
+ Keywords: []string{"sports", "human"},
+ Char: "โ›น",
+ Category: "activity",
+ },
+ "basketball_woman": Emoji{
+ Keywords: []string{"sports", "human", "woman", "female"},
+ Char: "โ›น๏ธโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "bat": Emoji{
+ Keywords: []string{"animal", "nature", "blind", "vampire"},
+ Char: "๐Ÿฆ‡",
+ Category: "animals_and_nature",
+ },
+ "bath": Emoji{
+ Keywords: []string{"clean", "shower", "bathroom"},
+ Char: "๐Ÿ›€",
+ Category: "activity",
+ },
+ "bathtub": Emoji{
+ Keywords: []string{"clean", "shower", "bathroom"},
+ Char: "๐Ÿ›",
+ Category: "objects",
+ },
+ "battery": Emoji{
+ Keywords: []string{"power", "energy", "sustain"},
+ Char: "๐Ÿ”‹",
+ Category: "objects",
+ },
+ "beach_umbrella": Emoji{
+ Keywords: []string{"weather", "summer", "sunny", "sand", "mojito"},
+ Char: "๐Ÿ–",
+ Category: "travel_and_places",
+ },
+ "bear": Emoji{
+ Keywords: []string{"animal", "nature", "wild"},
+ Char: "๐Ÿป",
+ Category: "animals_and_nature",
+ },
+ "bed": Emoji{
+ Keywords: []string{"sleep", "rest"},
+ Char: "๐Ÿ›",
+ Category: "objects",
+ },
+ "beer": Emoji{
+ Keywords: []string{"relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze"},
+ Char: "๐Ÿบ",
+ Category: "food_and_drink",
+ },
+ "beers": Emoji{
+ Keywords: []string{"relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze"},
+ Char: "๐Ÿป",
+ Category: "food_and_drink",
+ },
+ "beetle": Emoji{
+ Keywords: []string{"animal", "insect", "nature", "ladybug"},
+ Char: "๐Ÿž",
+ Category: "animals_and_nature",
+ },
+ "beginner": Emoji{
+ Keywords: []string{"badge", "shield"},
+ Char: "๐Ÿ”ฐ",
+ Category: "symbols",
+ },
+ "belarus": Emoji{
+ Keywords: []string{"by", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "belgium": Emoji{
+ Keywords: []string{"be", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "belize": Emoji{
+ Keywords: []string{"bz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "bell": Emoji{
+ Keywords: []string{"sound", "notification", "christmas", "xmas", "chime"},
+ Char: "๐Ÿ””",
+ Category: "symbols",
+ },
+ "bellhop_bell": Emoji{
+ Keywords: []string{"service"},
+ Char: "๐Ÿ›Ž",
+ Category: "objects",
+ },
+ "benin": Emoji{
+ Keywords: []string{"bj", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฏ",
+ Category: "flags",
+ },
+ "bento": Emoji{
+ Keywords: []string{"food", "japanese", "box"},
+ Char: "๐Ÿฑ",
+ Category: "food_and_drink",
+ },
+ "bermuda": Emoji{
+ Keywords: []string{"bm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "bhutan": Emoji{
+ Keywords: []string{"bt", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡น",
+ Category: "flags",
+ },
+ "bike": Emoji{
+ Keywords: []string{"sports", "bicycle", "exercise", "hipster"},
+ Char: "๐Ÿšฒ",
+ Category: "travel_and_places",
+ },
+ "biking_man": Emoji{
+ Keywords: []string{"sports", "bike", "exercise", "hipster"},
+ Char: "๐Ÿšด",
+ Category: "activity",
+ },
+ "biking_woman": Emoji{
+ Keywords: []string{"sports", "bike", "exercise", "hipster", "woman", "female"},
+ Char: "๐Ÿšดโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "bikini": Emoji{
+ Keywords: []string{"swimming", "female", "woman", "girl", "fashion", "beach", "summer"},
+ Char: "๐Ÿ‘™",
+ Category: "people",
+ },
+ "biohazard": Emoji{
+ Keywords: []string{"danger"},
+ Char: "โ˜ฃ",
+ Category: "symbols",
+ },
+ "bird": Emoji{
+ Keywords: []string{"animal", "nature", "fly", "tweet", "spring"},
+ Char: "๐Ÿฆ",
+ Category: "animals_and_nature",
+ },
+ "birthday": Emoji{
+ Keywords: []string{"food", "dessert", "cake"},
+ Char: "๐ŸŽ‚",
+ Category: "food_and_drink",
+ },
+ "black_circle": Emoji{
+ Keywords: []string{"shape", "button", "round"},
+ Char: "โšซ",
+ Category: "symbols",
+ },
+ "black_flag": Emoji{
+ Keywords: []string{"pirate"},
+ Char: "๐Ÿด",
+ Category: "objects",
+ },
+ "black_heart": Emoji{
+ Keywords: []string{"evil"},
+ Char: "๐Ÿ–ค",
+ Category: "symbols",
+ },
+ "black_joker": Emoji{
+ Keywords: []string{"poker", "cards", "game", "play", "magic"},
+ Char: "๐Ÿƒ",
+ Category: "symbols",
+ },
+ "black_large_square": Emoji{
+ Keywords: []string{"shape", "icon", "button"},
+ Char: "โฌ›",
+ Category: "symbols",
+ },
+ "black_medium_small_square": Emoji{
+ Keywords: []string{"icon", "shape", "button"},
+ Char: "โ—พ",
+ Category: "symbols",
+ },
+ "black_medium_square": Emoji{
+ Keywords: []string{"shape", "button", "icon"},
+ Char: "โ—ผ๏ธ",
+ Category: "symbols",
+ },
+ "black_nib": Emoji{
+ Keywords: []string{"pen", "stationery", "writing", "write"},
+ Char: "โœ’๏ธ",
+ Category: "objects",
+ },
+ "black_small_square": Emoji{
+ Keywords: []string{"shape", "icon"},
+ Char: "โ–ช๏ธ",
+ Category: "symbols",
+ },
+ "black_square_button": Emoji{
+ Keywords: []string{"shape", "input", "frame"},
+ Char: "๐Ÿ”ฒ",
+ Category: "symbols",
+ },
+ "blonde_man": Emoji{
+ Keywords: []string{"man", "male", "boy", "blonde", "guy", "person"},
+ Char: "๐Ÿ‘ฑ",
+ Category: "people",
+ },
+ "blonde_woman": Emoji{
+ Keywords: []string{"woman", "female", "girl", "blonde", "person"},
+ Char: "๐Ÿ‘ฑโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "blossom": Emoji{
+ Keywords: []string{"nature", "flowers", "yellow"},
+ Char: "๐ŸŒผ",
+ Category: "animals_and_nature",
+ },
+ "blowfish": Emoji{
+ Keywords: []string{"animal", "nature", "food", "sea", "ocean"},
+ Char: "๐Ÿก",
+ Category: "animals_and_nature",
+ },
+ "blue_book": Emoji{
+ Keywords: []string{"read", "library", "knowledge", "learn", "study"},
+ Char: "๐Ÿ“˜",
+ Category: "objects",
+ },
+ "blue_car": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿš™",
+ Category: "travel_and_places",
+ },
+ "blue_heart": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’™",
+ Category: "symbols",
+ },
+ "blush": Emoji{
+ Keywords: []string{"face", "smile", "happy", "flushed", "crush", "embarrassed", "shy", "joy"},
+ Char: "๐Ÿ˜Š",
+ Category: "people",
+ },
+ "boar": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿ—",
+ Category: "animals_and_nature",
+ },
+ "bolivia": Emoji{
+ Keywords: []string{"bo", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "bomb": Emoji{
+ Keywords: []string{"boom", "explode", "explosion", "terrorism"},
+ Char: "๐Ÿ’ฃ",
+ Category: "objects",
+ },
+ "bookmark": Emoji{
+ Keywords: []string{"favorite", "label", "save"},
+ Char: "๐Ÿ”–",
+ Category: "objects",
+ },
+ "bookmark_tabs": Emoji{
+ Keywords: []string{"favorite", "save", "order", "tidy"},
+ Char: "๐Ÿ“‘",
+ Category: "objects",
+ },
+ "books": Emoji{
+ Keywords: []string{"literature", "library", "study"},
+ Char: "๐Ÿ“š",
+ Category: "objects",
+ },
+ "boom": Emoji{
+ Keywords: []string{"bomb", "explode", "explosion", "collision", "blown"},
+ Char: "๐Ÿ’ฅ",
+ Category: "animals_and_nature",
+ },
+ "boot": Emoji{
+ Keywords: []string{"shoes", "fashion"},
+ Char: "๐Ÿ‘ข",
+ Category: "people",
+ },
+ "bosnia_herzegovina": Emoji{
+ Keywords: []string{"bosnia", "herzegovina", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "botswana": Emoji{
+ Keywords: []string{"bw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "bouquet": Emoji{
+ Keywords: []string{"flowers", "nature", "spring"},
+ Char: "๐Ÿ’",
+ Category: "animals_and_nature",
+ },
+ "bow_and_arrow": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿน",
+ Category: "activity",
+ },
+ "bowing_man": Emoji{
+ Keywords: []string{"man", "male", "boy"},
+ Char: "๐Ÿ™‡",
+ Category: "people",
+ },
+ "bowing_woman": Emoji{
+ Keywords: []string{"woman", "female", "girl"},
+ Char: "๐Ÿ™‡โ€โ™€๏ธ",
+ Category: "people",
+ },
+ "bowling": Emoji{
+ Keywords: []string{"sports", "fun", "play"},
+ Char: "๐ŸŽณ",
+ Category: "activity",
+ },
+ "bowtie": Emoji{
+ Keywords: []string{"face", "formal", "fashion", "suit", "classy", "magic", "circus"},
+ Char: "",
+ Category: "_custom",
+ },
+ "boxing_glove": Emoji{
+ Keywords: []string{"sports", "fighting"},
+ Char: "๐ŸฅŠ",
+ Category: "activity",
+ },
+ "boy": Emoji{
+ Keywords: []string{"man", "male", "guy", "teenager"},
+ Char: "๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "brazil": Emoji{
+ Keywords: []string{"br", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "bread": Emoji{
+ Keywords: []string{"food", "wheat", "breakfast", "toast"},
+ Char: "๐Ÿž",
+ Category: "food_and_drink",
+ },
+ "bride_with_veil": Emoji{
+ Keywords: []string{"couple", "marriage", "wedding", "woman", "bride"},
+ Char: "๐Ÿ‘ฐ",
+ Category: "people",
+ },
+ "bridge_at_night": Emoji{
+ Keywords: []string{"photo", "sanfrancisco"},
+ Char: "๐ŸŒ‰",
+ Category: "travel_and_places",
+ },
+ "briefcase": Emoji{
+ Keywords: []string{"business", "documents", "work", "law", "legal"},
+ Char: "๐Ÿ’ผ",
+ Category: "people",
+ },
+ "british_indian_ocean_territory": Emoji{
+ Keywords: []string{"british", "indian", "ocean", "territory", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "british_virgin_islands": Emoji{
+ Keywords: []string{"british", "virgin", "islands", "bvi", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "broken_heart": Emoji{
+ Keywords: []string{"sad", "sorry", "break", "heart", "heartbreak"},
+ Char: "๐Ÿ’”",
+ Category: "symbols",
+ },
+ "brunei": Emoji{
+ Keywords: []string{"bn", "darussalam", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "bug": Emoji{
+ Keywords: []string{"animal", "insect", "nature", "worm"},
+ Char: "๐Ÿ›",
+ Category: "animals_and_nature",
+ },
+ "building_construction": Emoji{
+ Keywords: []string{"wip", "working", "progress"},
+ Char: "๐Ÿ—",
+ Category: "travel_and_places",
+ },
+ "bulb": Emoji{
+ Keywords: []string{"light", "electricity", "idea"},
+ Char: "๐Ÿ’ก",
+ Category: "objects",
+ },
+ "bulgaria": Emoji{
+ Keywords: []string{"bg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "bullettrain_front": Emoji{
+ Keywords: []string{"transportation", "vehicle", "speed", "fast", "public", "travel"},
+ Char: "๐Ÿš…",
+ Category: "travel_and_places",
+ },
+ "bullettrain_side": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿš„",
+ Category: "travel_and_places",
+ },
+ "burkina_faso": Emoji{
+ Keywords: []string{"burkina", "faso", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "burrito": Emoji{
+ Keywords: []string{"food", "mexican"},
+ Char: "๐ŸŒฏ",
+ Category: "food_and_drink",
+ },
+ "burundi": Emoji{
+ Keywords: []string{"bi", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "bus": Emoji{
+ Keywords: []string{"car", "vehicle", "transportation"},
+ Char: "๐ŸšŒ",
+ Category: "travel_and_places",
+ },
+ "business_suit_levitating": Emoji{
+ Keywords: []string{"suit", "business", "levitate", "hover", "jump"},
+ Char: "๐Ÿ•ด",
+ Category: "activity",
+ },
+ "busstop": Emoji{
+ Keywords: []string{"transportation", "wait"},
+ Char: "๐Ÿš",
+ Category: "travel_and_places",
+ },
+ "bust_in_silhouette": Emoji{
+ Keywords: []string{"user", "person", "human"},
+ Char: "๐Ÿ‘ค",
+ Category: "people",
+ },
+ "busts_in_silhouette": Emoji{
+ Keywords: []string{"user", "person", "human", "group", "team"},
+ Char: "๐Ÿ‘ฅ",
+ Category: "people",
+ },
+ "butterfly": Emoji{
+ Keywords: []string{"animal", "insect", "nature", "caterpillar"},
+ Char: "๐Ÿฆ‹",
+ Category: "animals_and_nature",
+ },
+ "cactus": Emoji{
+ Keywords: []string{"vegetable", "plant", "nature"},
+ Char: "๐ŸŒต",
+ Category: "animals_and_nature",
+ },
+ "cake": Emoji{
+ Keywords: []string{"food", "dessert"},
+ Char: "๐Ÿฐ",
+ Category: "food_and_drink",
+ },
+ "calendar": Emoji{
+ Keywords: []string{"schedule", "date", "planning"},
+ Char: "๐Ÿ“†",
+ Category: "objects",
+ },
+ "call_me_hand": Emoji{
+ Keywords: []string{"hands", "gesture"},
+ Char: "๐Ÿค™",
+ Category: "people",
+ },
+ "calling": Emoji{
+ Keywords: []string{"iphone", "incoming"},
+ Char: "๐Ÿ“ฒ",
+ Category: "objects",
+ },
+ "cambodia": Emoji{
+ Keywords: []string{"kh", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "camel": Emoji{
+ Keywords: []string{"animal", "nature", "hot", "desert", "hump"},
+ Char: "๐Ÿซ",
+ Category: "animals_and_nature",
+ },
+ "camera": Emoji{
+ Keywords: []string{"gadgets", "photography"},
+ Char: "๐Ÿ“ท",
+ Category: "objects",
+ },
+ "camera_flash": Emoji{
+ Keywords: []string{"photography", "gadgets"},
+ Char: "๐Ÿ“ธ",
+ Category: "objects",
+ },
+ "cameroon": Emoji{
+ Keywords: []string{"cm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "camping": Emoji{
+ Keywords: []string{"photo", "outdoors", "tent"},
+ Char: "๐Ÿ•",
+ Category: "travel_and_places",
+ },
+ "canada": Emoji{
+ Keywords: []string{"ca", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "canary_islands": Emoji{
+ Keywords: []string{"canary", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "cancer": Emoji{
+ Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
+ Char: "โ™‹",
+ Category: "symbols",
+ },
+ "candle": Emoji{
+ Keywords: []string{"fire", "wax"},
+ Char: "๐Ÿ•ฏ",
+ Category: "objects",
+ },
+ "candy": Emoji{
+ Keywords: []string{"snack", "dessert", "sweet", "lolly"},
+ Char: "๐Ÿฌ",
+ Category: "food_and_drink",
+ },
+ "canoe": Emoji{
+ Keywords: []string{"boat", "paddle", "water", "ship"},
+ Char: "๐Ÿ›ถ",
+ Category: "travel_and_places",
+ },
+ "cape_verde": Emoji{
+ Keywords: []string{"cabo", "verde", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ป",
+ Category: "flags",
+ },
+ "capital_abcd": Emoji{
+ Keywords: []string{"alphabet", "words", "blue-square"},
+ Char: "๐Ÿ” ",
+ Category: "symbols",
+ },
+ "capricorn": Emoji{
+ Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
+ Char: "โ™‘",
+ Category: "symbols",
+ },
+ "card_file_box": Emoji{
+ Keywords: []string{"business", "stationery"},
+ Char: "๐Ÿ—ƒ",
+ Category: "objects",
+ },
+ "card_index": Emoji{
+ Keywords: []string{"business", "stationery"},
+ Char: "๐Ÿ“‡",
+ Category: "objects",
+ },
+ "card_index_dividers": Emoji{
+ Keywords: []string{"organizing", "business", "stationery"},
+ Char: "๐Ÿ—‚",
+ Category: "objects",
+ },
+ "caribbean_netherlands": Emoji{
+ Keywords: []string{"bonaire", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ถ",
+ Category: "flags",
+ },
+ "carousel_horse": Emoji{
+ Keywords: []string{"photo", "carnival"},
+ Char: "๐ŸŽ ",
+ Category: "travel_and_places",
+ },
+ "carrot": Emoji{
+ Keywords: []string{"vegetable", "food", "orange"},
+ Char: "๐Ÿฅ•",
+ Category: "food_and_drink",
+ },
+ "cat": Emoji{
+ Keywords: []string{"animal", "meow", "nature", "pet", "kitten"},
+ Char: "๐Ÿฑ",
+ Category: "animals_and_nature",
+ },
+ "cat2": Emoji{
+ Keywords: []string{"animal", "meow", "pet", "cats"},
+ Char: "๐Ÿˆ",
+ Category: "animals_and_nature",
+ },
+ "cayman_islands": Emoji{
+ Keywords: []string{"cayman", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "cd": Emoji{
+ Keywords: []string{"technology", "dvd", "disk", "disc", "90s"},
+ Char: "๐Ÿ’ฟ",
+ Category: "objects",
+ },
+ "central_african_republic": Emoji{
+ Keywords: []string{"central", "african", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "chad": Emoji{
+ Keywords: []string{"td", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "chains": Emoji{
+ Keywords: []string{"lock", "arrest"},
+ Char: "โ›“",
+ Category: "objects",
+ },
+ "champagne": Emoji{
+ Keywords: []string{"drink", "wine", "bottle", "celebration"},
+ Char: "๐Ÿพ",
+ Category: "food_and_drink",
+ },
+ "chart": Emoji{
+ Keywords: []string{"green-square", "graph", "presentation", "stats"},
+ Char: "๐Ÿ’น",
+ Category: "symbols",
+ },
+ "chart_with_downwards_trend": Emoji{
+ Keywords: []string{"graph", "presentation", "stats", "recession", "business", "economics", "money", "sales", "bad", "failure"},
+ Char: "๐Ÿ“‰",
+ Category: "objects",
+ },
+ "chart_with_upwards_trend": Emoji{
+ Keywords: []string{"graph", "presentation", "stats", "recovery", "business", "economics", "money", "sales", "good", "success"},
+ Char: "๐Ÿ“ˆ",
+ Category: "objects",
+ },
+ "checkered_flag": Emoji{
+ Keywords: []string{"contest", "finishline", "race", "gokart"},
+ Char: "๐Ÿ",
+ Category: "travel_and_places",
+ },
+ "cheese": Emoji{
+ Keywords: []string{"food", "chadder"},
+ Char: "๐Ÿง€",
+ Category: "food_and_drink",
+ },
+ "cherries": Emoji{
+ Keywords: []string{"food", "fruit"},
+ Char: "๐Ÿ’",
+ Category: "food_and_drink",
+ },
+ "cherry_blossom": Emoji{
+ Keywords: []string{"nature", "plant", "spring", "flower"},
+ Char: "๐ŸŒธ",
+ Category: "animals_and_nature",
+ },
+ "chestnut": Emoji{
+ Keywords: []string{"food", "squirrel"},
+ Char: "๐ŸŒฐ",
+ Category: "animals_and_nature",
+ },
+ "chicken": Emoji{
+ Keywords: []string{"animal", "cluck", "nature", "bird"},
+ Char: "๐Ÿ”",
+ Category: "animals_and_nature",
+ },
+ "children_crossing": Emoji{
+ Keywords: []string{"school", "warning", "danger", "sign", "driving", "yellow-diamond"},
+ Char: "๐Ÿšธ",
+ Category: "symbols",
+ },
+ "chile": Emoji{
+ Keywords: []string{"flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "chipmunk": Emoji{
+ Keywords: []string{"animal", "nature", "rodent", "squirrel"},
+ Char: "๐Ÿฟ",
+ Category: "animals_and_nature",
+ },
+ "chocolate_bar": Emoji{
+ Keywords: []string{"food", "snack", "dessert", "sweet"},
+ Char: "๐Ÿซ",
+ Category: "food_and_drink",
+ },
+ "christmas_island": Emoji{
+ Keywords: []string{"christmas", "island", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฝ",
+ Category: "flags",
+ },
+ "christmas_tree": Emoji{
+ Keywords: []string{"festival", "vacation", "december", "xmas", "celebration"},
+ Char: "๐ŸŽ„",
+ Category: "animals_and_nature",
+ },
+ "church": Emoji{
+ Keywords: []string{"building", "religion", "christ"},
+ Char: "โ›ช",
+ Category: "travel_and_places",
+ },
+ "cinema": Emoji{
+ Keywords: []string{"blue-square", "record", "film", "movie", "curtain", "stage", "theater"},
+ Char: "๐ŸŽฆ",
+ Category: "symbols",
+ },
+ "circus_tent": Emoji{
+ Keywords: []string{"festival", "carnival", "party"},
+ Char: "๐ŸŽช",
+ Category: "activity",
+ },
+ "city_sunrise": Emoji{
+ Keywords: []string{"photo", "good morning", "dawn"},
+ Char: "๐ŸŒ‡",
+ Category: "travel_and_places",
+ },
+ "city_sunset": Emoji{
+ Keywords: []string{"photo", "evening", "sky", "buildings"},
+ Char: "๐ŸŒ†",
+ Category: "travel_and_places",
+ },
+ "cityscape": Emoji{
+ Keywords: []string{"photo", "night life", "urban"},
+ Char: "๐Ÿ™",
+ Category: "travel_and_places",
+ },
+ "cl": Emoji{
+ Keywords: []string{"alphabet", "words", "red-square"},
+ Char: "๐Ÿ†‘",
+ Category: "symbols",
+ },
+ "clamp": Emoji{
+ Keywords: []string{"tool"},
+ Char: "๐Ÿ—œ",
+ Category: "objects",
+ },
+ "clap": Emoji{
+ Keywords: []string{"hands", "praise", "applause", "congrats", "yay"},
+ Char: "๐Ÿ‘",
+ Category: "people",
+ },
+ "clapper": Emoji{
+ Keywords: []string{"movie", "film", "record"},
+ Char: "๐ŸŽฌ",
+ Category: "activity",
+ },
+ "classical_building": Emoji{
+ Keywords: []string{"art", "culture", "history"},
+ Char: "๐Ÿ›",
+ Category: "travel_and_places",
+ },
+ "clinking_glasses": Emoji{
+ Keywords: []string{"beverage", "drink", "party", "alcohol", "celebrate", "cheers"},
+ Char: "๐Ÿฅ‚",
+ Category: "food_and_drink",
+ },
+ "clipboard": Emoji{
+ Keywords: []string{"stationery", "documents"},
+ Char: "๐Ÿ“‹",
+ Category: "objects",
+ },
+ "clock1": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•",
+ Category: "symbols",
+ },
+ "clock10": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•™",
+ Category: "symbols",
+ },
+ "clock1030": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ฅ",
+ Category: "symbols",
+ },
+ "clock11": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•š",
+ Category: "symbols",
+ },
+ "clock1130": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ฆ",
+ Category: "symbols",
+ },
+ "clock12": Emoji{
+ Keywords: []string{"time", "noon", "midnight", "midday", "late", "early", "schedule"},
+ Char: "๐Ÿ•›",
+ Category: "symbols",
+ },
+ "clock1230": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ง",
+ Category: "symbols",
+ },
+ "clock130": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•œ",
+ Category: "symbols",
+ },
+ "clock2": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•‘",
+ Category: "symbols",
+ },
+ "clock230": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•",
+ Category: "symbols",
+ },
+ "clock3": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•’",
+ Category: "symbols",
+ },
+ "clock330": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ž",
+ Category: "symbols",
+ },
+ "clock4": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•“",
+ Category: "symbols",
+ },
+ "clock430": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•Ÿ",
+ Category: "symbols",
+ },
+ "clock5": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•”",
+ Category: "symbols",
+ },
+ "clock530": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ• ",
+ Category: "symbols",
+ },
+ "clock6": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule", "dawn", "dusk"},
+ Char: "๐Ÿ••",
+ Category: "symbols",
+ },
+ "clock630": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ก",
+ Category: "symbols",
+ },
+ "clock7": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•–",
+ Category: "symbols",
+ },
+ "clock730": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ข",
+ Category: "symbols",
+ },
+ "clock8": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•—",
+ Category: "symbols",
+ },
+ "clock830": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ฃ",
+ Category: "symbols",
+ },
+ "clock9": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•˜",
+ Category: "symbols",
+ },
+ "clock930": Emoji{
+ Keywords: []string{"time", "late", "early", "schedule"},
+ Char: "๐Ÿ•ค",
+ Category: "symbols",
+ },
+ "closed_book": Emoji{
+ Keywords: []string{"read", "library", "knowledge", "textbook", "learn"},
+ Char: "๐Ÿ“•",
+ Category: "objects",
+ },
+ "closed_lock_with_key": Emoji{
+ Keywords: []string{"security", "privacy"},
+ Char: "๐Ÿ”",
+ Category: "objects",
+ },
+ "closed_umbrella": Emoji{
+ Keywords: []string{"weather", "rain", "drizzle"},
+ Char: "๐ŸŒ‚",
+ Category: "people",
+ },
+ "cloud": Emoji{
+ Keywords: []string{"weather", "sky"},
+ Char: "โ˜๏ธ",
+ Category: "animals_and_nature",
+ },
+ "cloud_with_lightning": Emoji{
+ Keywords: []string{"weather", "thunder"},
+ Char: "๐ŸŒฉ",
+ Category: "animals_and_nature",
+ },
+ "cloud_with_lightning_and_rain": Emoji{
+ Keywords: []string{"weather", "lightning"},
+ Char: "โ›ˆ",
+ Category: "animals_and_nature",
+ },
+ "cloud_with_rain": Emoji{
+ Keywords: []string{"weather"},
+ Char: "๐ŸŒง",
+ Category: "animals_and_nature",
+ },
+ "cloud_with_snow": Emoji{
+ Keywords: []string{"weather"},
+ Char: "๐ŸŒจ",
+ Category: "animals_and_nature",
+ },
+ "clown_face": Emoji{
+ Keywords: []string{"face"},
+ Char: "๐Ÿคก",
+ Category: "people",
+ },
+ "clubs": Emoji{
+ Keywords: []string{"poker", "cards", "magic", "suits"},
+ Char: "โ™ฃ๏ธ",
+ Category: "symbols",
+ },
+ "cn": Emoji{
+ Keywords: []string{"china", "chinese", "prc", "flag", "country", "nation", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "cocktail": Emoji{
+ Keywords: []string{"drink", "drunk", "alcohol", "beverage", "booze", "mojito"},
+ Char: "๐Ÿธ",
+ Category: "food_and_drink",
+ },
+ "cocos_islands": Emoji{
+ Keywords: []string{"cocos", "keeling", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "coffee": Emoji{
+ Keywords: []string{"beverage", "caffeine", "latte", "espresso"},
+ Char: "โ˜•",
+ Category: "food_and_drink",
+ },
+ "coffin": Emoji{
+ Keywords: []string{"vampire", "dead", "die", "death", "rip", "graveyard", "cemetery"},
+ Char: "โšฐ",
+ Category: "objects",
+ },
+ "cold_sweat": Emoji{
+ Keywords: []string{"face", "nervous", "sweat"},
+ Char: "๐Ÿ˜ฐ",
+ Category: "people",
+ },
+ "colombia": Emoji{
+ Keywords: []string{"co", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "comet": Emoji{
+ Keywords: []string{"space"},
+ Char: "โ˜„",
+ Category: "animals_and_nature",
+ },
+ "comoros": Emoji{
+ Keywords: []string{"km", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "computer": Emoji{
+ Keywords: []string{"technology", "laptop", "screen", "display", "monitor"},
+ Char: "๐Ÿ’ป",
+ Category: "objects",
+ },
+ "computer_mouse": Emoji{
+ Keywords: []string{"click"},
+ Char: "๐Ÿ–ฑ",
+ Category: "objects",
+ },
+ "confetti_ball": Emoji{
+ Keywords: []string{"festival", "party", "birthday", "circus"},
+ Char: "๐ŸŽŠ",
+ Category: "objects",
+ },
+ "confounded": Emoji{
+ Keywords: []string{"face", "confused", "sick", "unwell", "oops", ":S"},
+ Char: "๐Ÿ˜–",
+ Category: "people",
+ },
+ "confused": Emoji{
+ Keywords: []string{"face", "indifference", "huh", "weird", "hmmm", ":/"},
+ Char: "๐Ÿ˜•",
+ Category: "people",
+ },
+ "congo_brazzaville": Emoji{
+ Keywords: []string{"congo", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "congo_kinshasa": Emoji{
+ Keywords: []string{"congo", "democratic", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "congratulations": Emoji{
+ Keywords: []string{"chinese", "kanji", "japanese", "red-circle"},
+ Char: "ใŠ—๏ธ",
+ Category: "symbols",
+ },
+ "construction": Emoji{
+ Keywords: []string{"wip", "progress", "caution", "warning"},
+ Char: "๐Ÿšง",
+ Category: "travel_and_places",
+ },
+ "construction_worker_man": Emoji{
+ Keywords: []string{"male", "human", "wip", "guy", "build", "construction", "worker", "labor"},
+ Char: "๐Ÿ‘ท",
+ Category: "people",
+ },
+ "construction_worker_woman": Emoji{
+ Keywords: []string{"female", "human", "wip", "build", "construction", "worker", "labor", "woman"},
+ Char: "๐Ÿ‘ทโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "control_knobs": Emoji{
+ Keywords: []string{"dial"},
+ Char: "๐ŸŽ›",
+ Category: "objects",
+ },
+ "convenience_store": Emoji{
+ Keywords: []string{"building", "shopping", "groceries"},
+ Char: "๐Ÿช",
+ Category: "travel_and_places",
+ },
+ "cook_islands": Emoji{
+ Keywords: []string{"cook", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "cookie": Emoji{
+ Keywords: []string{"food", "snack", "oreo", "chocolate", "sweet", "dessert"},
+ Char: "๐Ÿช",
+ Category: "food_and_drink",
+ },
+ "cool": Emoji{
+ Keywords: []string{"words", "blue-square"},
+ Char: "๐Ÿ†’",
+ Category: "symbols",
+ },
+ "copyright": Emoji{
+ Keywords: []string{"ip", "license", "circle", "law", "legal"},
+ Char: "ยฉ๏ธ",
+ Category: "symbols",
+ },
+ "corn": Emoji{
+ Keywords: []string{"food", "vegetable", "plant"},
+ Char: "๐ŸŒฝ",
+ Category: "food_and_drink",
+ },
+ "costa_rica": Emoji{
+ Keywords: []string{"costa", "rica", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "cote_divoire": Emoji{
+ Keywords: []string{"ivory", "coast", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "couch_and_lamp": Emoji{
+ Keywords: []string{"read", "chill"},
+ Char: "๐Ÿ›‹",
+ Category: "objects",
+ },
+ "couple": Emoji{
+ Keywords: []string{"pair", "people", "human", "love", "date", "dating", "like", "affection", "valentines", "marriage"},
+ Char: "๐Ÿ‘ซ",
+ Category: "people",
+ },
+ "couple_with_heart_man_man": Emoji{
+ Keywords: []string{"pair", "love", "like", "affection", "human", "dating", "valentines", "marriage"},
+ Char: "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ",
+ Category: "people",
+ },
+ "couple_with_heart_woman_man": Emoji{
+ Keywords: []string{"pair", "love", "like", "affection", "human", "dating", "valentines", "marriage"},
+ Char: "๐Ÿ’‘",
+ Category: "people",
+ },
+ "couple_with_heart_woman_woman": Emoji{
+ Keywords: []string{"pair", "love", "like", "affection", "human", "dating", "valentines", "marriage"},
+ Char: "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ",
+ Category: "people",
+ },
+ "couplekiss_man_man": Emoji{
+ Keywords: []string{"pair", "valentines", "love", "like", "dating", "marriage"},
+ Char: "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ",
+ Category: "people",
+ },
+ "couplekiss_man_woman": Emoji{
+ Keywords: []string{"pair", "valentines", "love", "like", "dating", "marriage"},
+ Char: "๐Ÿ’",
+ Category: "people",
+ },
+ "couplekiss_woman_woman": Emoji{
+ Keywords: []string{"pair", "valentines", "love", "like", "dating", "marriage"},
+ Char: "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ",
+ Category: "people",
+ },
+ "cow": Emoji{
+ Keywords: []string{"beef", "ox", "animal", "nature", "moo", "milk"},
+ Char: "๐Ÿฎ",
+ Category: "animals_and_nature",
+ },
+ "cow2": Emoji{
+ Keywords: []string{"beef", "ox", "animal", "nature", "moo", "milk"},
+ Char: "๐Ÿ„",
+ Category: "animals_and_nature",
+ },
+ "cowboy_hat_face": Emoji{
+ Keywords: []string{"face", "cowgirl", "hat"},
+ Char: "๐Ÿค ",
+ Category: "people",
+ },
+ "crab": Emoji{
+ Keywords: []string{"animal", "crustacean"},
+ Char: "๐Ÿฆ€",
+ Category: "animals_and_nature",
+ },
+ "crayon": Emoji{
+ Keywords: []string{"drawing", "creativity"},
+ Char: "๐Ÿ–",
+ Category: "objects",
+ },
+ "credit_card": Emoji{
+ Keywords: []string{"money", "sales", "dollar", "bill", "payment", "shopping"},
+ Char: "๐Ÿ’ณ",
+ Category: "objects",
+ },
+ "crescent_moon": Emoji{
+ Keywords: []string{"night", "sleep", "sky", "evening", "magic"},
+ Char: "๐ŸŒ™",
+ Category: "animals_and_nature",
+ },
+ "cricket": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿ",
+ Category: "activity",
+ },
+ "croatia": Emoji{
+ Keywords: []string{"hr", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ญ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "crocodile": Emoji{
+ Keywords: []string{"animal", "nature", "reptile", "lizard", "alligator"},
+ Char: "๐ŸŠ",
+ Category: "animals_and_nature",
+ },
+ "croissant": Emoji{
+ Keywords: []string{"food", "bread", "french"},
+ Char: "๐Ÿฅ",
+ Category: "food_and_drink",
+ },
+ "crossed_fingers": Emoji{
+ Keywords: []string{"good", "lucky"},
+ Char: "๐Ÿคž",
+ Category: "people",
+ },
+ "crossed_flags": Emoji{
+ Keywords: []string{"japanese", "nation", "country", "border"},
+ Char: "๐ŸŽŒ",
+ Category: "objects",
+ },
+ "crossed_swords": Emoji{
+ Keywords: []string{"weapon"},
+ Char: "โš”",
+ Category: "objects",
+ },
+ "crown": Emoji{
+ Keywords: []string{"king", "kod", "leader", "royalty", "lord"},
+ Char: "๐Ÿ‘‘",
+ Category: "people",
+ },
+ "cry": Emoji{
+ Keywords: []string{"face", "tears", "sad", "depressed", "upset", ":'("},
+ Char: "๐Ÿ˜ข",
+ Category: "people",
+ },
+ "crying_cat_face": Emoji{
+ Keywords: []string{"animal", "tears", "weep", "sad", "cats", "upset", "cry"},
+ Char: "๐Ÿ˜ฟ",
+ Category: "people",
+ },
+ "crystal_ball": Emoji{
+ Keywords: []string{"disco", "party", "magic", "circus", "fortune_teller"},
+ Char: "๐Ÿ”ฎ",
+ Category: "objects",
+ },
+ "cuba": Emoji{
+ Keywords: []string{"cu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "cucumber": Emoji{
+ Keywords: []string{"fruit", "food", "pickle"},
+ Char: "๐Ÿฅ’",
+ Category: "food_and_drink",
+ },
+ "cupid": Emoji{
+ Keywords: []string{"love", "like", "heart", "affection", "valentines"},
+ Char: "๐Ÿ’˜",
+ Category: "symbols",
+ },
+ "curacao": Emoji{
+ Keywords: []string{"curaรงao", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "curly_loop": Emoji{
+ Keywords: []string{"scribble", "draw", "shape", "squiggle"},
+ Char: "โžฐ",
+ Category: "symbols",
+ },
+ "currency_exchange": Emoji{
+ Keywords: []string{"money", "sales", "dollar", "travel"},
+ Char: "๐Ÿ’ฑ",
+ Category: "symbols",
+ },
+ "curry": Emoji{
+ Keywords: []string{"food", "spicy", "hot", "indian"},
+ Char: "๐Ÿ›",
+ Category: "food_and_drink",
+ },
+ "custard": Emoji{
+ Keywords: []string{"dessert", "food"},
+ Char: "๐Ÿฎ",
+ Category: "food_and_drink",
+ },
+ "customs": Emoji{
+ Keywords: []string{"passport", "border", "blue-square"},
+ Char: "๐Ÿ›ƒ",
+ Category: "symbols",
+ },
+ "cyclone": Emoji{
+ Keywords: []string{"weather", "swirl", "blue", "cloud", "vortex", "spiral", "whirlpool", "spin"},
+ Char: "๐ŸŒ€",
+ Category: "symbols",
+ },
+ "cyprus": Emoji{
+ Keywords: []string{"cy", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "czech_republic": Emoji{
+ Keywords: []string{"cz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "dagger": Emoji{
+ Keywords: []string{"weapon"},
+ Char: "๐Ÿ—ก",
+ Category: "objects",
+ },
+ "dancer": Emoji{
+ Keywords: []string{"female", "girl", "woman", "fun"},
+ Char: "๐Ÿ’ƒ",
+ Category: "people",
+ },
+ "dancing_men": Emoji{
+ Keywords: []string{"male", "bunny", "men", "boys"},
+ Char: "๐Ÿ‘ฏโ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "dancing_women": Emoji{
+ Keywords: []string{"female", "bunny", "women", "girls"},
+ Char: "๐Ÿ‘ฏ",
+ Category: "people",
+ },
+ "dango": Emoji{
+ Keywords: []string{"food", "dessert", "sweet", "japanese", "barbecue", "meat"},
+ Char: "๐Ÿก",
+ Category: "food_and_drink",
+ },
+ "dark_sunglasses": Emoji{
+ Keywords: []string{"face", "cool", "accessories"},
+ Char: "๐Ÿ•ถ",
+ Category: "people",
+ },
+ "dart": Emoji{
+ Keywords: []string{"game", "play", "bar"},
+ Char: "๐ŸŽฏ",
+ Category: "activity",
+ },
+ "dash": Emoji{
+ Keywords: []string{"wind", "air", "fast", "shoo", "fart", "smoke", "puff"},
+ Char: "๐Ÿ’จ",
+ Category: "animals_and_nature",
+ },
+ "date": Emoji{
+ Keywords: []string{"calendar", "schedule"},
+ Char: "๐Ÿ“…",
+ Category: "objects",
+ },
+ "de": Emoji{
+ Keywords: []string{"german", "nation", "flag", "country", "banner"},
+ Char: "๐Ÿ‡ฉ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "deciduous_tree": Emoji{
+ Keywords: []string{"plant", "nature"},
+ Char: "๐ŸŒณ",
+ Category: "animals_and_nature",
+ },
+ "deer": Emoji{
+ Keywords: []string{"animal", "nature", "horns", "venison"},
+ Char: "๐ŸฆŒ",
+ Category: "animals_and_nature",
+ },
+ "denmark": Emoji{
+ Keywords: []string{"dk", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฉ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "department_store": Emoji{
+ Keywords: []string{"building", "shopping", "mall"},
+ Char: "๐Ÿฌ",
+ Category: "travel_and_places",
+ },
+ "derelict_house": Emoji{
+ Keywords: []string{"abandon", "evict", "broken", "building"},
+ Char: "๐Ÿš",
+ Category: "travel_and_places",
+ },
+ "desert": Emoji{
+ Keywords: []string{"photo", "warm", "saharah"},
+ Char: "๐Ÿœ",
+ Category: "travel_and_places",
+ },
+ "desert_island": Emoji{
+ Keywords: []string{"photo", "tropical", "mojito"},
+ Char: "๐Ÿ",
+ Category: "travel_and_places",
+ },
+ "desktop_computer": Emoji{
+ Keywords: []string{"technology", "computing", "screen"},
+ Char: "๐Ÿ–ฅ",
+ Category: "objects",
+ },
+ "diamond_shape_with_a_dot_inside": Emoji{
+ Keywords: []string{"jewel", "blue", "gem", "crystal", "fancy"},
+ Char: "๐Ÿ’ ",
+ Category: "symbols",
+ },
+ "diamonds": Emoji{
+ Keywords: []string{"poker", "cards", "magic", "suits"},
+ Char: "โ™ฆ๏ธ",
+ Category: "symbols",
+ },
+ "disappointed": Emoji{
+ Keywords: []string{"face", "sad", "upset", "depressed", ":("},
+ Char: "๐Ÿ˜ž",
+ Category: "people",
+ },
+ "disappointed_relieved": Emoji{
+ Keywords: []string{"face", "phew", "sweat", "nervous"},
+ Char: "๐Ÿ˜ฅ",
+ Category: "people",
+ },
+ "dizzy": Emoji{
+ Keywords: []string{"star", "sparkle", "shoot", "magic"},
+ Char: "๐Ÿ’ซ",
+ Category: "animals_and_nature",
+ },
+ "dizzy_face": Emoji{
+ Keywords: []string{"spent", "unconscious", "xox", "dizzy"},
+ Char: "๐Ÿ˜ต",
+ Category: "people",
+ },
+ "djibouti": Emoji{
+ Keywords: []string{"dj", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฉ๐Ÿ‡ฏ",
+ Category: "flags",
+ },
+ "do_not_litter": Emoji{
+ Keywords: []string{"trash", "bin", "garbage", "circle"},
+ Char: "๐Ÿšฏ",
+ Category: "symbols",
+ },
+ "dog": Emoji{
+ Keywords: []string{"animal", "friend", "nature", "woof", "puppy", "pet", "faithful"},
+ Char: "๐Ÿถ",
+ Category: "animals_and_nature",
+ },
+ "dog2": Emoji{
+ Keywords: []string{"animal", "nature", "friend", "doge", "pet", "faithful"},
+ Char: "๐Ÿ•",
+ Category: "animals_and_nature",
+ },
+ "dollar": Emoji{
+ Keywords: []string{"money", "sales", "bill", "currency"},
+ Char: "๐Ÿ’ต",
+ Category: "objects",
+ },
+ "dolls": Emoji{
+ Keywords: []string{"japanese", "toy", "kimono"},
+ Char: "๐ŸŽŽ",
+ Category: "objects",
+ },
+ "dolphin": Emoji{
+ Keywords: []string{"animal", "nature", "fish", "sea", "ocean", "flipper", "fins", "beach"},
+ Char: "๐Ÿฌ",
+ Category: "animals_and_nature",
+ },
+ "dominica": Emoji{
+ Keywords: []string{"dm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฉ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "dominican_republic": Emoji{
+ Keywords: []string{"dominican", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฉ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "door": Emoji{
+ Keywords: []string{"house", "entry", "exit"},
+ Char: "๐Ÿšช",
+ Category: "objects",
+ },
+ "doughnut": Emoji{
+ Keywords: []string{"food", "dessert", "snack", "sweet", "donut"},
+ Char: "๐Ÿฉ",
+ Category: "food_and_drink",
+ },
+ "dove": Emoji{
+ Keywords: []string{"animal", "bird"},
+ Char: "๐Ÿ•Š",
+ Category: "animals_and_nature",
+ },
+ "dragon": Emoji{
+ Keywords: []string{"animal", "myth", "nature", "chinese", "green"},
+ Char: "๐Ÿ‰",
+ Category: "animals_and_nature",
+ },
+ "dragon_face": Emoji{
+ Keywords: []string{"animal", "myth", "nature", "chinese", "green"},
+ Char: "๐Ÿฒ",
+ Category: "animals_and_nature",
+ },
+ "dress": Emoji{
+ Keywords: []string{"clothes", "fashion", "shopping"},
+ Char: "๐Ÿ‘—",
+ Category: "people",
+ },
+ "dromedary_camel": Emoji{
+ Keywords: []string{"animal", "hot", "desert", "hump"},
+ Char: "๐Ÿช",
+ Category: "animals_and_nature",
+ },
+ "drooling_face": Emoji{
+ Keywords: []string{"face"},
+ Char: "๐Ÿคค",
+ Category: "people",
+ },
+ "droplet": Emoji{
+ Keywords: []string{"water", "drip", "faucet", "spring"},
+ Char: "๐Ÿ’ง",
+ Category: "animals_and_nature",
+ },
+ "drum": Emoji{
+ Keywords: []string{"music", "instrument", "drumsticks"},
+ Char: "๐Ÿฅ",
+ Category: "activity",
+ },
+ "duck": Emoji{
+ Keywords: []string{"animal", "nature", "bird", "mallard"},
+ Char: "๐Ÿฆ†",
+ Category: "animals_and_nature",
+ },
+ "dvd": Emoji{
+ Keywords: []string{"cd", "disk", "disc"},
+ Char: "๐Ÿ“€",
+ Category: "objects",
+ },
+ "e-mail": Emoji{
+ Keywords: []string{"communication", "inbox"},
+ Char: "๐Ÿ“ง",
+ Category: "objects",
+ },
+ "eagle": Emoji{
+ Keywords: []string{"animal", "nature", "bird"},
+ Char: "๐Ÿฆ…",
+ Category: "animals_and_nature",
+ },
+ "ear": Emoji{
+ Keywords: []string{"face", "hear", "sound", "listen"},
+ Char: "๐Ÿ‘‚",
+ Category: "people",
+ },
+ "ear_of_rice": Emoji{
+ Keywords: []string{"nature", "plant"},
+ Char: "๐ŸŒพ",
+ Category: "animals_and_nature",
+ },
+ "earth_africa": Emoji{
+ Keywords: []string{"globe", "world", "international"},
+ Char: "๐ŸŒ",
+ Category: "animals_and_nature",
+ },
+ "earth_americas": Emoji{
+ Keywords: []string{"globe", "world", "USA", "international"},
+ Char: "๐ŸŒŽ",
+ Category: "animals_and_nature",
+ },
+ "earth_asia": Emoji{
+ Keywords: []string{"globe", "world", "east", "international"},
+ Char: "๐ŸŒ",
+ Category: "animals_and_nature",
+ },
+ "ecuador": Emoji{
+ Keywords: []string{"ec", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "egg": Emoji{
+ Keywords: []string{"food", "chicken", "breakfast"},
+ Char: "๐Ÿฅš",
+ Category: "food_and_drink",
+ },
+ "eggplant": Emoji{
+ Keywords: []string{"vegetable", "nature", "food", "aubergine"},
+ Char: "๐Ÿ†",
+ Category: "food_and_drink",
+ },
+ "egypt": Emoji{
+ Keywords: []string{"eg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "eight": Emoji{
+ Keywords: []string{"8", "blue-square", "numbers"},
+ Char: "8๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "eight_pointed_black_star": Emoji{
+ Keywords: []string{"orange-square", "shape", "polygon"},
+ Char: "โœด๏ธ",
+ Category: "symbols",
+ },
+ "eight_spoked_asterisk": Emoji{
+ Keywords: []string{"star", "sparkle", "green-square"},
+ Char: "โœณ๏ธ",
+ Category: "symbols",
+ },
+ "el_salvador": Emoji{
+ Keywords: []string{"el", "salvador", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ป",
+ Category: "flags",
+ },
+ "electric_plug": Emoji{
+ Keywords: []string{"charger", "power"},
+ Char: "๐Ÿ”Œ",
+ Category: "objects",
+ },
+ "elephant": Emoji{
+ Keywords: []string{"animal", "nature", "nose", "th", "circus"},
+ Char: "๐Ÿ˜",
+ Category: "animals_and_nature",
+ },
+ "email": Emoji{
+ Keywords: []string{"letter", "postal", "inbox", "communication"},
+ Char: "โœ‰๏ธ",
+ Category: "objects",
+ },
+ "end": Emoji{
+ Keywords: []string{"words", "arrow"},
+ Char: "๐Ÿ”š",
+ Category: "symbols",
+ },
+ "envelope_with_arrow": Emoji{
+ Keywords: []string{"email", "communication"},
+ Char: "๐Ÿ“ฉ",
+ Category: "objects",
+ },
+ "equatorial_guinea": Emoji{
+ Keywords: []string{"equatorial", "gn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ถ",
+ Category: "flags",
+ },
+ "eritrea": Emoji{
+ Keywords: []string{"er", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "es": Emoji{
+ Keywords: []string{"spain", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "estonia": Emoji{
+ Keywords: []string{"ee", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "ethiopia": Emoji{
+ Keywords: []string{"et", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡น",
+ Category: "flags",
+ },
+ "eu": Emoji{
+ Keywords: []string{"european", "union", "flag", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "euro": Emoji{
+ Keywords: []string{"money", "sales", "dollar", "currency"},
+ Char: "๐Ÿ’ถ",
+ Category: "objects",
+ },
+ "european_castle": Emoji{
+ Keywords: []string{"building", "royalty", "history"},
+ Char: "๐Ÿฐ",
+ Category: "travel_and_places",
+ },
+ "european_post_office": Emoji{
+ Keywords: []string{"building", "email"},
+ Char: "๐Ÿค",
+ Category: "travel_and_places",
+ },
+ "evergreen_tree": Emoji{
+ Keywords: []string{"plant", "nature"},
+ Char: "๐ŸŒฒ",
+ Category: "animals_and_nature",
+ },
+ "exclamation": Emoji{
+ Keywords: []string{"heavy_exclamation_mark", "danger", "surprise", "punctuation", "wow", "warning"},
+ Char: "โ—",
+ Category: "symbols",
+ },
+ "expressionless": Emoji{
+ Keywords: []string{"face", "indifferent", "-_-", "meh", "deadpan"},
+ Char: "๐Ÿ˜‘",
+ Category: "people",
+ },
+ "eye": Emoji{
+ Keywords: []string{"face", "look", "see", "watch", "stare"},
+ Char: "๐Ÿ‘",
+ Category: "people",
+ },
+ "eyeglasses": Emoji{
+ Keywords: []string{"fashion", "accessories", "eyesight", "nerdy", "dork", "geek"},
+ Char: "๐Ÿ‘“",
+ Category: "people",
+ },
+ "eyes": Emoji{
+ Keywords: []string{"look", "watch", "stalk", "peek", "see"},
+ Char: "๐Ÿ‘€",
+ Category: "people",
+ },
+ "face_with_head_bandage": Emoji{
+ Keywords: []string{"injured", "clumsy", "bandage", "hurt"},
+ Char: "๐Ÿค•",
+ Category: "people",
+ },
+ "face_with_thermometer": Emoji{
+ Keywords: []string{"sick", "temperature", "thermometer", "cold", "fever"},
+ Char: "๐Ÿค’",
+ Category: "people",
+ },
+ "facepunch": Emoji{
+ Keywords: []string{"angry", "violence", "fist", "hit", "attack", "hand"},
+ Char: "๐Ÿ‘Š",
+ Category: "people",
+ },
+ "factory": Emoji{
+ Keywords: []string{"building", "industry", "pollution", "smoke"},
+ Char: "๐Ÿญ",
+ Category: "travel_and_places",
+ },
+ "falkland_islands": Emoji{
+ Keywords: []string{"falkland", "islands", "malvinas", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ซ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "fallen_leaf": Emoji{
+ Keywords: []string{"nature", "plant", "vegetable", "leaves"},
+ Char: "๐Ÿ‚",
+ Category: "animals_and_nature",
+ },
+ "family_man_boy": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "child"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_boy_boy": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_girl": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "child"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_man_girl_boy": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_girl_girl": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_man_man_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_man_boy_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_man_girl": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_man_man_girl_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_man_girl_girl": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_man_woman_boy": Emoji{
+ Keywords: []string{"home", "parents", "child", "mom", "dad", "father", "mother", "people", "human"},
+ Char: "๐Ÿ‘ช",
+ Category: "people",
+ },
+ "family_man_woman_boy_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_woman_girl": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "child"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_man_woman_girl_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_man_woman_girl_girl": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_woman_boy": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "child"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_woman_boy_boy": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_woman_girl": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "child"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_woman_girl_boy": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_woman_girl_girl": Emoji{
+ Keywords: []string{"home", "parent", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_woman_woman_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_woman_woman_boy_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_woman_woman_girl": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "family_woman_woman_girl_boy": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ Category: "people",
+ },
+ "family_woman_woman_girl_girl": Emoji{
+ Keywords: []string{"home", "parents", "people", "human", "children"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ Category: "people",
+ },
+ "faroe_islands": Emoji{
+ Keywords: []string{"faroe", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ซ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "fast_forward": Emoji{
+ Keywords: []string{"blue-square", "play", "speed", "continue"},
+ Char: "โฉ",
+ Category: "symbols",
+ },
+ "fax": Emoji{
+ Keywords: []string{"communication", "technology"},
+ Char: "๐Ÿ“ ",
+ Category: "objects",
+ },
+ "fearful": Emoji{
+ Keywords: []string{"face", "scared", "terrified", "nervous", "oops", "huh"},
+ Char: "๐Ÿ˜จ",
+ Category: "people",
+ },
+ "feelsgood": Emoji{
+ Keywords: []string{"doom", "oldschool"},
+ Char: "",
+ Category: "_custom",
+ },
+ "female_detective": Emoji{
+ Keywords: []string{"human", "spy", "detective", "female", "woman"},
+ Char: "๐Ÿ•ต๏ธโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "ferris_wheel": Emoji{
+ Keywords: []string{"photo", "carnival", "londoneye"},
+ Char: "๐ŸŽก",
+ Category: "travel_and_places",
+ },
+ "ferry": Emoji{
+ Keywords: []string{"boat", "ship", "yacht"},
+ Char: "โ›ด",
+ Category: "travel_and_places",
+ },
+ "field_hockey": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿ‘",
+ Category: "activity",
+ },
+ "fiji": Emoji{
+ Keywords: []string{"fj", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ซ๐Ÿ‡ฏ",
+ Category: "flags",
+ },
+ "file_cabinet": Emoji{
+ Keywords: []string{"filing", "organizing"},
+ Char: "๐Ÿ—„",
+ Category: "objects",
+ },
+ "file_folder": Emoji{
+ Keywords: []string{"documents", "business", "office"},
+ Char: "๐Ÿ“",
+ Category: "objects",
+ },
+ "film_projector": Emoji{
+ Keywords: []string{"video", "tape", "record", "movie"},
+ Char: "๐Ÿ“ฝ",
+ Category: "objects",
+ },
+ "film_strip": Emoji{
+ Keywords: []string{"movie"},
+ Char: "๐ŸŽž",
+ Category: "objects",
+ },
+ "finland": Emoji{
+ Keywords: []string{"fi", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ซ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "finnadie": Emoji{
+ Keywords: []string{"doom", "oldschool"},
+ Char: "",
+ Category: "_custom",
+ },
+ "fire": Emoji{
+ Keywords: []string{"hot", "cook", "flame"},
+ Char: "๐Ÿ”ฅ",
+ Category: "animals_and_nature",
+ },
+ "fire_engine": Emoji{
+ Keywords: []string{"transportation", "cars", "vehicle"},
+ Char: "๐Ÿš’",
+ Category: "travel_and_places",
+ },
+ "fireworks": Emoji{
+ Keywords: []string{"photo", "festival", "carnival", "congratulations"},
+ Char: "๐ŸŽ†",
+ Category: "travel_and_places",
+ },
+ "first_quarter_moon": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ“",
+ Category: "animals_and_nature",
+ },
+ "first_quarter_moon_with_face": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ›",
+ Category: "animals_and_nature",
+ },
+ "fish": Emoji{
+ Keywords: []string{"animal", "food", "nature"},
+ Char: "๐ŸŸ",
+ Category: "animals_and_nature",
+ },
+ "fish_cake": Emoji{
+ Keywords: []string{"food", "japan", "sea", "beach"},
+ Char: "๐Ÿฅ",
+ Category: "food_and_drink",
+ },
+ "fishing_pole_and_fish": Emoji{
+ Keywords: []string{"food", "hobby", "summer"},
+ Char: "๐ŸŽฃ",
+ Category: "activity",
+ },
+ "fist": Emoji{
+ Keywords: []string{"fingers", "hand", "grasp"},
+ Char: "โœŠ",
+ Category: "people",
+ },
+ "fist_left": Emoji{
+ Keywords: []string{"hand", "fistbump"},
+ Char: "๐Ÿค›",
+ Category: "people",
+ },
+ "fist_right": Emoji{
+ Keywords: []string{"hand", "fistbump"},
+ Char: "๐Ÿคœ",
+ Category: "people",
+ },
+ "five": Emoji{
+ Keywords: []string{"5", "numbers", "blue-square", "prime"},
+ Char: "5๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "flags": Emoji{
+ Keywords: []string{"fish", "japanese", "koinobori", "carp", "banner"},
+ Char: "๐ŸŽ",
+ Category: "objects",
+ },
+ "flashlight": Emoji{
+ Keywords: []string{"dark", "camping", "sight", "night"},
+ Char: "๐Ÿ”ฆ",
+ Category: "objects",
+ },
+ "fleur_de_lis": Emoji{
+ Keywords: []string{"decorative", "scout"},
+ Char: "โšœ",
+ Category: "symbols",
+ },
+ "flight_arrival": Emoji{
+ Keywords: []string{"airport", "flight", "boarding"},
+ Char: "๐Ÿ›ฌ",
+ Category: "travel_and_places",
+ },
+ "flight_departure": Emoji{
+ Keywords: []string{"airport", "flight", "landing"},
+ Char: "๐Ÿ›ซ",
+ Category: "travel_and_places",
+ },
+ "floppy_disk": Emoji{
+ Keywords: []string{"oldschool", "technology", "save", "90s", "80s"},
+ Char: "๐Ÿ’พ",
+ Category: "objects",
+ },
+ "flower_playing_cards": Emoji{
+ Keywords: []string{"game", "sunset", "red"},
+ Char: "๐ŸŽด",
+ Category: "symbols",
+ },
+ "flushed": Emoji{
+ Keywords: []string{"face", "blush", "shy", "flattered"},
+ Char: "๐Ÿ˜ณ",
+ Category: "people",
+ },
+ "fog": Emoji{
+ Keywords: []string{"weather"},
+ Char: "๐ŸŒซ",
+ Category: "animals_and_nature",
+ },
+ "foggy": Emoji{
+ Keywords: []string{"photo", "mountain"},
+ Char: "๐ŸŒ",
+ Category: "travel_and_places",
+ },
+ "football": Emoji{
+ Keywords: []string{"sports", "balls", "NFL"},
+ Char: "๐Ÿˆ",
+ Category: "activity",
+ },
+ "footprints": Emoji{
+ Keywords: []string{"feet", "tracking", "walking", "beach"},
+ Char: "๐Ÿ‘ฃ",
+ Category: "people",
+ },
+ "fork_and_knife": Emoji{
+ Keywords: []string{"cutlery", "kitchen"},
+ Char: "๐Ÿด",
+ Category: "food_and_drink",
+ },
+ "fountain": Emoji{
+ Keywords: []string{"photo", "summer", "water", "fresh"},
+ Char: "โ›ฒ",
+ Category: "travel_and_places",
+ },
+ "fountain_pen": Emoji{
+ Keywords: []string{"stationery", "writing", "write"},
+ Char: "๐Ÿ–‹",
+ Category: "objects",
+ },
+ "four": Emoji{
+ Keywords: []string{"4", "numbers", "blue-square"},
+ Char: "4๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "four_leaf_clover": Emoji{
+ Keywords: []string{"vegetable", "plant", "nature", "lucky", "irish"},
+ Char: "๐Ÿ€",
+ Category: "animals_and_nature",
+ },
+ "fox_face": Emoji{
+ Keywords: []string{"animal", "nature", "face"},
+ Char: "๐ŸฆŠ",
+ Category: "animals_and_nature",
+ },
+ "fr": Emoji{
+ Keywords: []string{"banner", "flag", "nation", "france", "french", "country"},
+ Char: "๐Ÿ‡ซ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "framed_picture": Emoji{
+ Keywords: []string{"photography"},
+ Char: "๐Ÿ–ผ",
+ Category: "objects",
+ },
+ "free": Emoji{
+ Keywords: []string{"blue-square", "words"},
+ Char: "๐Ÿ†“",
+ Category: "symbols",
+ },
+ "french_guiana": Emoji{
+ Keywords: []string{"french", "guiana", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "french_polynesia": Emoji{
+ Keywords: []string{"french", "polynesia", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "french_southern_territories": Emoji{
+ Keywords: []string{"french", "southern", "territories", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "fried_egg": Emoji{
+ Keywords: []string{"food", "breakfast", "kitchen", "egg"},
+ Char: "๐Ÿณ",
+ Category: "food_and_drink",
+ },
+ "fried_shrimp": Emoji{
+ Keywords: []string{"food", "animal", "appetizer", "summer"},
+ Char: "๐Ÿค",
+ Category: "food_and_drink",
+ },
+ "fries": Emoji{
+ Keywords: []string{"chips", "snack", "fast food"},
+ Char: "๐ŸŸ",
+ Category: "food_and_drink",
+ },
+ "frog": Emoji{
+ Keywords: []string{"animal", "nature", "croak", "toad"},
+ Char: "๐Ÿธ",
+ Category: "animals_and_nature",
+ },
+ "frowning": Emoji{
+ Keywords: []string{"face", "aw", "what"},
+ Char: "๐Ÿ˜ฆ",
+ Category: "people",
+ },
+ "frowning_face": Emoji{
+ Keywords: []string{"face", "sad", "upset", "frown"},
+ Char: "โ˜น",
+ Category: "people",
+ },
+ "frowning_man": Emoji{
+ Keywords: []string{"male", "boy", "man", "sad", "depressed", "discouraged", "unhappy"},
+ Char: "๐Ÿ™โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "frowning_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman", "sad", "depressed", "discouraged", "unhappy"},
+ Char: "๐Ÿ™",
+ Category: "people",
+ },
+ "fu": Emoji{
+ Keywords: []string{"hand", "fingers", "rude", "middle", "flipping"},
+ Char: "๐Ÿ–•",
+ Category: "people",
+ },
+ "fuelpump": Emoji{
+ Keywords: []string{"gas station", "petroleum"},
+ Char: "โ›ฝ",
+ Category: "travel_and_places",
+ },
+ "full_moon": Emoji{
+ Keywords: []string{"nature", "yellow", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ•",
+ Category: "animals_and_nature",
+ },
+ "full_moon_with_face": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ",
+ Category: "animals_and_nature",
+ },
+ "funeral_urn": Emoji{
+ Keywords: []string{"dead", "die", "death", "rip", "ashes"},
+ Char: "โšฑ",
+ Category: "objects",
+ },
+ "gabon": Emoji{
+ Keywords: []string{"ga", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "gambia": Emoji{
+ Keywords: []string{"gm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "game_die": Emoji{
+ Keywords: []string{"dice", "random", "tabletop", "play", "luck"},
+ Char: "๐ŸŽฒ",
+ Category: "activity",
+ },
+ "gear": Emoji{
+ Keywords: []string{"cog"},
+ Char: "โš™",
+ Category: "objects",
+ },
+ "gem": Emoji{
+ Keywords: []string{"blue", "ruby", "diamond", "jewelry"},
+ Char: "๐Ÿ’Ž",
+ Category: "objects",
+ },
+ "gemini": Emoji{
+ Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
+ Char: "โ™Š",
+ Category: "symbols",
+ },
+ "georgia": Emoji{
+ Keywords: []string{"ge", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "ghana": Emoji{
+ Keywords: []string{"gh", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "ghost": Emoji{
+ Keywords: []string{"halloween", "spooky", "scary"},
+ Char: "๐Ÿ‘ป",
+ Category: "people",
+ },
+ "gibraltar": Emoji{
+ Keywords: []string{"gi", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "gift": Emoji{
+ Keywords: []string{"present", "birthday", "christmas", "xmas"},
+ Char: "๐ŸŽ",
+ Category: "objects",
+ },
+ "gift_heart": Emoji{
+ Keywords: []string{"love", "valentines"},
+ Char: "๐Ÿ’",
+ Category: "symbols",
+ },
+ "girl": Emoji{
+ Keywords: []string{"female", "woman", "teenager"},
+ Char: "๐Ÿ‘ง",
+ Category: "people",
+ },
+ "globe_with_meridians": Emoji{
+ Keywords: []string{"earth", "international", "world", "internet", "interweb", "i18n"},
+ Char: "๐ŸŒ",
+ Category: "symbols",
+ },
+ "goal_net": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿฅ…",
+ Category: "activity",
+ },
+ "goat": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿ",
+ Category: "animals_and_nature",
+ },
+ "goberserk": Emoji{
+ Keywords: []string{"doom", "rage", "bloody", "hurt"},
+ Char: "",
+ Category: "_custom",
+ },
+ "godmode": Emoji{
+ Keywords: []string{"doom", "oldschool"},
+ Char: "",
+ Category: "_custom",
+ },
+ "golf": Emoji{
+ Keywords: []string{"sports", "business", "flag", "hole", "summer"},
+ Char: "โ›ณ",
+ Category: "activity",
+ },
+ "golfing_man": Emoji{
+ Keywords: []string{"sports", "business"},
+ Char: "๐ŸŒ",
+ Category: "activity",
+ },
+ "golfing_woman": Emoji{
+ Keywords: []string{"sports", "business", "woman", "female"},
+ Char: "๐ŸŒ๏ธโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "gorilla": Emoji{
+ Keywords: []string{"animal", "nature", "circus"},
+ Char: "๐Ÿฆ",
+ Category: "animals_and_nature",
+ },
+ "grapes": Emoji{
+ Keywords: []string{"fruit", "food", "wine"},
+ Char: "๐Ÿ‡",
+ Category: "food_and_drink",
+ },
+ "greece": Emoji{
+ Keywords: []string{"gr", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "green_apple": Emoji{
+ Keywords: []string{"fruit", "nature"},
+ Char: "๐Ÿ",
+ Category: "food_and_drink",
+ },
+ "green_book": Emoji{
+ Keywords: []string{"read", "library", "knowledge", "study"},
+ Char: "๐Ÿ“—",
+ Category: "objects",
+ },
+ "green_heart": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’š",
+ Category: "symbols",
+ },
+ "green_salad": Emoji{
+ Keywords: []string{"food", "healthy", "lettuce"},
+ Char: "๐Ÿฅ—",
+ Category: "food_and_drink",
+ },
+ "greenland": Emoji{
+ Keywords: []string{"gl", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "grenada": Emoji{
+ Keywords: []string{"gd", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "grey_exclamation": Emoji{
+ Keywords: []string{"surprise", "punctuation", "gray", "wow", "warning"},
+ Char: "โ•",
+ Category: "symbols",
+ },
+ "grey_question": Emoji{
+ Keywords: []string{"doubts", "gray", "huh", "confused"},
+ Char: "โ”",
+ Category: "symbols",
+ },
+ "grimacing": Emoji{
+ Keywords: []string{"face", "grimace", "teeth"},
+ Char: "๐Ÿ˜ฌ",
+ Category: "people",
+ },
+ "grin": Emoji{
+ Keywords: []string{"face", "happy", "smile", "joy", "kawaii"},
+ Char: "๐Ÿ˜",
+ Category: "people",
+ },
+ "grinning": Emoji{
+ Keywords: []string{"face", "smile", "happy", "joy", ":D", "grin"},
+ Char: "๐Ÿ˜€",
+ Category: "people",
+ },
+ "guadeloupe": Emoji{
+ Keywords: []string{"gp", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ต",
+ Category: "flags",
+ },
+ "guam": Emoji{
+ Keywords: []string{"gu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "guardsman": Emoji{
+ Keywords: []string{"uk", "gb", "british", "male", "guy", "royal"},
+ Char: "๐Ÿ’‚",
+ Category: "people",
+ },
+ "guardswoman": Emoji{
+ Keywords: []string{"uk", "gb", "british", "female", "royal", "woman"},
+ Char: "๐Ÿ’‚โ€โ™€๏ธ",
+ Category: "people",
+ },
+ "guatemala": Emoji{
+ Keywords: []string{"gt", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "guernsey": Emoji{
+ Keywords: []string{"gg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "guinea": Emoji{
+ Keywords: []string{"gn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "guinea_bissau": Emoji{
+ Keywords: []string{"gw", "bissau", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "guitar": Emoji{
+ Keywords: []string{"music", "instrument"},
+ Char: "๐ŸŽธ",
+ Category: "activity",
+ },
+ "gun": Emoji{
+ Keywords: []string{"violence", "weapon", "pistol", "revolver"},
+ Char: "๐Ÿ”ซ",
+ Category: "objects",
+ },
+ "guyana": Emoji{
+ Keywords: []string{"gy", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "haircut_man": Emoji{
+ Keywords: []string{"male", "boy", "man"},
+ Char: "๐Ÿ’‡โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "haircut_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman"},
+ Char: "๐Ÿ’‡",
+ Category: "people",
+ },
+ "haiti": Emoji{
+ Keywords: []string{"ht", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ญ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "hamburger": Emoji{
+ Keywords: []string{"meat", "fast food", "beef", "cheeseburger", "mcdonalds", "burger king"},
+ Char: "๐Ÿ”",
+ Category: "food_and_drink",
+ },
+ "hammer": Emoji{
+ Keywords: []string{"tools", "build", "create"},
+ Char: "๐Ÿ”จ",
+ Category: "objects",
+ },
+ "hammer_and_pick": Emoji{
+ Keywords: []string{"tools", "build", "create"},
+ Char: "โš’",
+ Category: "objects",
+ },
+ "hammer_and_wrench": Emoji{
+ Keywords: []string{"tools", "build", "create"},
+ Char: "๐Ÿ› ",
+ Category: "objects",
+ },
+ "hamster": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿน",
+ Category: "animals_and_nature",
+ },
+ "handbag": Emoji{
+ Keywords: []string{"fashion", "accessory", "accessories", "shopping"},
+ Char: "๐Ÿ‘œ",
+ Category: "people",
+ },
+ "handshake": Emoji{
+ Keywords: []string{"agreement", "shake"},
+ Char: "๐Ÿค",
+ Category: "people",
+ },
+ "hash": Emoji{
+ Keywords: []string{"symbol", "blue-square", "twitter"},
+ Char: "#๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "hatched_chick": Emoji{
+ Keywords: []string{"animal", "chicken", "baby", "bird"},
+ Char: "๐Ÿฅ",
+ Category: "animals_and_nature",
+ },
+ "hatching_chick": Emoji{
+ Keywords: []string{"animal", "chicken", "egg", "born", "baby", "bird"},
+ Char: "๐Ÿฃ",
+ Category: "animals_and_nature",
+ },
+ "headphones": Emoji{
+ Keywords: []string{"music", "score", "gadgets"},
+ Char: "๐ŸŽง",
+ Category: "activity",
+ },
+ "hear_no_evil": Emoji{
+ Keywords: []string{"animal", "monkey", "nature"},
+ Char: "๐Ÿ™‰",
+ Category: "animals_and_nature",
+ },
+ "heart": Emoji{
+ Keywords: []string{"love", "like", "valentines"},
+ Char: "โค๏ธ",
+ Category: "symbols",
+ },
+ "heart_decoration": Emoji{
+ Keywords: []string{"purple-square", "love", "like"},
+ Char: "๐Ÿ’Ÿ",
+ Category: "symbols",
+ },
+ "heart_eyes": Emoji{
+ Keywords: []string{"face", "love", "like", "affection", "valentines", "infatuation", "crush", "heart"},
+ Char: "๐Ÿ˜",
+ Category: "people",
+ },
+ "heart_eyes_cat": Emoji{
+ Keywords: []string{"animal", "love", "like", "affection", "cats", "valentines", "heart"},
+ Char: "๐Ÿ˜ป",
+ Category: "people",
+ },
+ "heartbeat": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines", "pink", "heart"},
+ Char: "๐Ÿ’“",
+ Category: "symbols",
+ },
+ "heartpulse": Emoji{
+ Keywords: []string{"like", "love", "affection", "valentines", "pink"},
+ Char: "๐Ÿ’—",
+ Category: "symbols",
+ },
+ "hearts": Emoji{
+ Keywords: []string{"poker", "cards", "magic", "suits"},
+ Char: "โ™ฅ๏ธ",
+ Category: "symbols",
+ },
+ "heavy_check_mark": Emoji{
+ Keywords: []string{"ok", "nike", "answer", "yes", "tick"},
+ Char: "โœ”๏ธ",
+ Category: "symbols",
+ },
+ "heavy_division_sign": Emoji{
+ Keywords: []string{"divide", "math", "calculation"},
+ Char: "โž—",
+ Category: "symbols",
+ },
+ "heavy_dollar_sign": Emoji{
+ Keywords: []string{"money", "sales", "payment", "currency", "buck"},
+ Char: "๐Ÿ’ฒ",
+ Category: "symbols",
+ },
+ "heavy_heart_exclamation": Emoji{
+ Keywords: []string{"decoration", "love"},
+ Char: "โฃ",
+ Category: "symbols",
+ },
+ "heavy_minus_sign": Emoji{
+ Keywords: []string{"math", "calculation", "subtract", "less"},
+ Char: "โž–",
+ Category: "symbols",
+ },
+ "heavy_multiplication_x": Emoji{
+ Keywords: []string{"math", "calculation"},
+ Char: "โœ–๏ธ",
+ Category: "symbols",
+ },
+ "heavy_plus_sign": Emoji{
+ Keywords: []string{"math", "calculation", "addition", "more", "increase"},
+ Char: "โž•",
+ Category: "symbols",
+ },
+ "helicopter": Emoji{
+ Keywords: []string{"transportation", "vehicle", "fly"},
+ Char: "๐Ÿš",
+ Category: "travel_and_places",
+ },
+ "herb": Emoji{
+ Keywords: []string{"vegetable", "plant", "medicine", "weed", "grass", "lawn"},
+ Char: "๐ŸŒฟ",
+ Category: "animals_and_nature",
+ },
+ "hibiscus": Emoji{
+ Keywords: []string{"plant", "vegetable", "flowers", "beach"},
+ Char: "๐ŸŒบ",
+ Category: "animals_and_nature",
+ },
+ "high_brightness": Emoji{
+ Keywords: []string{"sun", "light"},
+ Char: "๐Ÿ”†",
+ Category: "symbols",
+ },
+ "high_heel": Emoji{
+ Keywords: []string{"fashion", "shoes", "female", "pumps", "stiletto"},
+ Char: "๐Ÿ‘ ",
+ Category: "people",
+ },
+ "hocho": Emoji{
+ Keywords: []string{"knife", "blade", "cutlery", "kitchen", "weapon"},
+ Char: "๐Ÿ”ช",
+ Category: "objects",
+ },
+ "hole": Emoji{
+ Keywords: []string{"embarrassing"},
+ Char: "๐Ÿ•ณ",
+ Category: "objects",
+ },
+ "honduras": Emoji{
+ Keywords: []string{"hn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ญ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "honey_pot": Emoji{
+ Keywords: []string{"bees", "sweet", "kitchen"},
+ Char: "๐Ÿฏ",
+ Category: "food_and_drink",
+ },
+ "honeybee": Emoji{
+ Keywords: []string{"animal", "insect", "nature", "bug", "spring", "honey"},
+ Char: "๐Ÿ",
+ Category: "animals_and_nature",
+ },
+ "hong_kong": Emoji{
+ Keywords: []string{"hong", "kong", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ญ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "horse": Emoji{
+ Keywords: []string{"animal", "brown", "nature"},
+ Char: "๐Ÿด",
+ Category: "animals_and_nature",
+ },
+ "horse_racing": Emoji{
+ Keywords: []string{"animal", "betting", "competition", "gambling", "luck"},
+ Char: "๐Ÿ‡",
+ Category: "activity",
+ },
+ "hospital": Emoji{
+ Keywords: []string{"building", "health", "surgery", "doctor"},
+ Char: "๐Ÿฅ",
+ Category: "travel_and_places",
+ },
+ "hot_pepper": Emoji{
+ Keywords: []string{"food", "spicy", "chilli", "chili"},
+ Char: "๐ŸŒถ",
+ Category: "food_and_drink",
+ },
+ "hotdog": Emoji{
+ Keywords: []string{"food", "frankfurter"},
+ Char: "๐ŸŒญ",
+ Category: "food_and_drink",
+ },
+ "hotel": Emoji{
+ Keywords: []string{"building", "accomodation", "checkin"},
+ Char: "๐Ÿจ",
+ Category: "travel_and_places",
+ },
+ "hotsprings": Emoji{
+ Keywords: []string{"bath", "warm", "relax"},
+ Char: "โ™จ๏ธ",
+ Category: "symbols",
+ },
+ "hourglass": Emoji{
+ Keywords: []string{"time", "clock", "oldschool", "limit", "exam", "quiz", "test"},
+ Char: "โŒ›",
+ Category: "objects",
+ },
+ "hourglass_flowing_sand": Emoji{
+ Keywords: []string{"oldschool", "time", "countdown"},
+ Char: "โณ",
+ Category: "objects",
+ },
+ "house": Emoji{
+ Keywords: []string{"building", "home"},
+ Char: "๐Ÿ ",
+ Category: "travel_and_places",
+ },
+ "house_with_garden": Emoji{
+ Keywords: []string{"home", "plant", "nature"},
+ Char: "๐Ÿก",
+ Category: "travel_and_places",
+ },
+ "houses": Emoji{
+ Keywords: []string{"buildings", "photo"},
+ Char: "๐Ÿ˜",
+ Category: "travel_and_places",
+ },
+ "hugs": Emoji{
+ Keywords: []string{"face", "smile", "hug"},
+ Char: "๐Ÿค—",
+ Category: "people",
+ },
+ "hungary": Emoji{
+ Keywords: []string{"hu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ญ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "hurtrealbad": Emoji{
+ Keywords: []string{"mad", "injured", "doom", "oldschool", "custom_"},
+ Char: "",
+ Category: "_custom",
+ },
+ "hushed": Emoji{
+ Keywords: []string{"face", "woo", "shh"},
+ Char: "๐Ÿ˜ฏ",
+ Category: "people",
+ },
+ "ice_cream": Emoji{
+ Keywords: []string{"food", "hot", "dessert"},
+ Char: "๐Ÿจ",
+ Category: "food_and_drink",
+ },
+ "ice_hockey": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿ’",
+ Category: "activity",
+ },
+ "ice_skate": Emoji{
+ Keywords: []string{"sports"},
+ Char: "โ›ธ",
+ Category: "activity",
+ },
+ "icecream": Emoji{
+ Keywords: []string{"food", "hot", "dessert", "summer"},
+ Char: "๐Ÿฆ",
+ Category: "food_and_drink",
+ },
+ "iceland": Emoji{
+ Keywords: []string{"is", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "id": Emoji{
+ Keywords: []string{"purple-square", "words"},
+ Char: "๐Ÿ†”",
+ Category: "symbols",
+ },
+ "ideograph_advantage": Emoji{
+ Keywords: []string{"chinese", "kanji", "obtain", "get", "circle"},
+ Char: "๐Ÿ‰",
+ Category: "symbols",
+ },
+ "imp": Emoji{
+ Keywords: []string{"devil", "angry", "horns"},
+ Char: "๐Ÿ‘ฟ",
+ Category: "people",
+ },
+ "inbox_tray": Emoji{
+ Keywords: []string{"email", "documents"},
+ Char: "๐Ÿ“ฅ",
+ Category: "objects",
+ },
+ "incoming_envelope": Emoji{
+ Keywords: []string{"email", "inbox"},
+ Char: "๐Ÿ“จ",
+ Category: "objects",
+ },
+ "india": Emoji{
+ Keywords: []string{"in", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "indonesia": Emoji{
+ Keywords: []string{"flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "information_source": Emoji{
+ Keywords: []string{"blue-square", "alphabet", "letter"},
+ Char: "โ„น๏ธ",
+ Category: "symbols",
+ },
+ "innocent": Emoji{
+ Keywords: []string{"face", "angel", "heaven", "halo"},
+ Char: "๐Ÿ˜‡",
+ Category: "people",
+ },
+ "interrobang": Emoji{
+ Keywords: []string{"wat", "punctuation", "surprise"},
+ Char: "โ‰๏ธ",
+ Category: "symbols",
+ },
+ "iphone": Emoji{
+ Keywords: []string{"technology", "apple", "gadgets", "dial"},
+ Char: "๐Ÿ“ฑ",
+ Category: "objects",
+ },
+ "iran": Emoji{
+ Keywords: []string{"iran,", "islamic", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "iraq": Emoji{
+ Keywords: []string{"iq", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ถ",
+ Category: "flags",
+ },
+ "ireland": Emoji{
+ Keywords: []string{"ie", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "isle_of_man": Emoji{
+ Keywords: []string{"isle", "man", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "israel": Emoji{
+ Keywords: []string{"il", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "it": Emoji{
+ Keywords: []string{"italy", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฎ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "izakaya_lantern": Emoji{
+ Keywords: []string{"light", "paper", "halloween", "spooky"},
+ Char: "๐Ÿฎ",
+ Category: "objects",
+ },
+ "jack_o_lantern": Emoji{
+ Keywords: []string{"halloween", "light", "pumpkin", "creepy", "fall"},
+ Char: "๐ŸŽƒ",
+ Category: "animals_and_nature",
+ },
+ "jamaica": Emoji{
+ Keywords: []string{"jm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฏ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "japan": Emoji{
+ Keywords: []string{"nation", "country", "japanese", "asia"},
+ Char: "๐Ÿ—พ",
+ Category: "travel_and_places",
+ },
+ "japanese_castle": Emoji{
+ Keywords: []string{"photo", "building"},
+ Char: "๐Ÿฏ",
+ Category: "travel_and_places",
+ },
+ "japanese_goblin": Emoji{
+ Keywords: []string{"red", "evil", "mask", "monster", "scary", "creepy", "japanese", "goblin"},
+ Char: "๐Ÿ‘บ",
+ Category: "people",
+ },
+ "japanese_ogre": Emoji{
+ Keywords: []string{"monster", "red", "mask", "halloween", "scary", "creepy", "devil", "demon", "japanese", "ogre"},
+ Char: "๐Ÿ‘น",
+ Category: "people",
+ },
+ "jeans": Emoji{
+ Keywords: []string{"fashion", "shopping"},
+ Char: "๐Ÿ‘–",
+ Category: "people",
+ },
+ "jersey": Emoji{
+ Keywords: []string{"je", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฏ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "jordan": Emoji{
+ Keywords: []string{"jo", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฏ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "joy": Emoji{
+ Keywords: []string{"face", "cry", "tears", "weep", "happy", "happytears", "haha"},
+ Char: "๐Ÿ˜‚",
+ Category: "people",
+ },
+ "joy_cat": Emoji{
+ Keywords: []string{"animal", "cats", "haha", "happy", "tears"},
+ Char: "๐Ÿ˜น",
+ Category: "people",
+ },
+ "joystick": Emoji{
+ Keywords: []string{"game", "play"},
+ Char: "๐Ÿ•น",
+ Category: "objects",
+ },
+ "jp": Emoji{
+ Keywords: []string{"japanese", "nation", "flag", "country", "banner"},
+ Char: "๐Ÿ‡ฏ๐Ÿ‡ต",
+ Category: "flags",
+ },
+ "kaaba": Emoji{
+ Keywords: []string{"mecca", "mosque", "islam"},
+ Char: "๐Ÿ•‹",
+ Category: "travel_and_places",
+ },
+ "kazakhstan": Emoji{
+ Keywords: []string{"kz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "kenya": Emoji{
+ Keywords: []string{"ke", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "key": Emoji{
+ Keywords: []string{"lock", "door", "password"},
+ Char: "๐Ÿ”‘",
+ Category: "objects",
+ },
+ "keyboard": Emoji{
+ Keywords: []string{"technology", "computer", "type", "input", "text"},
+ Char: "โŒจ",
+ Category: "objects",
+ },
+ "keycap_ten": Emoji{
+ Keywords: []string{"numbers", "10", "blue-square"},
+ Char: "๐Ÿ”Ÿ",
+ Category: "symbols",
+ },
+ "kick_scooter": Emoji{
+ Keywords: []string{"vehicle", "kick", "razor"},
+ Char: "๐Ÿ›ด",
+ Category: "travel_and_places",
+ },
+ "kimono": Emoji{
+ Keywords: []string{"dress", "fashion", "women", "female", "japanese"},
+ Char: "๐Ÿ‘˜",
+ Category: "people",
+ },
+ "kiribati": Emoji{
+ Keywords: []string{"ki", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "kiss": Emoji{
+ Keywords: []string{"face", "lips", "love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’‹",
+ Category: "people",
+ },
+ "kissing": Emoji{
+ Keywords: []string{"love", "like", "face", "3", "valentines", "infatuation", "kiss"},
+ Char: "๐Ÿ˜—",
+ Category: "people",
+ },
+ "kissing_cat": Emoji{
+ Keywords: []string{"animal", "cats", "kiss"},
+ Char: "๐Ÿ˜ฝ",
+ Category: "people",
+ },
+ "kissing_closed_eyes": Emoji{
+ Keywords: []string{"face", "love", "like", "affection", "valentines", "infatuation", "kiss"},
+ Char: "๐Ÿ˜š",
+ Category: "people",
+ },
+ "kissing_heart": Emoji{
+ Keywords: []string{"face", "love", "like", "affection", "valentines", "infatuation", "kiss"},
+ Char: "๐Ÿ˜˜",
+ Category: "people",
+ },
+ "kissing_smiling_eyes": Emoji{
+ Keywords: []string{"face", "affection", "valentines", "infatuation", "kiss"},
+ Char: "๐Ÿ˜™",
+ Category: "people",
+ },
+ "kiwi_fruit": Emoji{
+ Keywords: []string{"fruit", "food"},
+ Char: "๐Ÿฅ",
+ Category: "food_and_drink",
+ },
+ "koala": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿจ",
+ Category: "animals_and_nature",
+ },
+ "koko": Emoji{
+ Keywords: []string{"blue-square", "here", "katakana", "japanese", "destination"},
+ Char: "๐Ÿˆ",
+ Category: "symbols",
+ },
+ "kosovo": Emoji{
+ Keywords: []string{"xk", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฝ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "kr": Emoji{
+ Keywords: []string{"south", "korea", "nation", "flag", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "kuwait": Emoji{
+ Keywords: []string{"kw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "kyrgyzstan": Emoji{
+ Keywords: []string{"kg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "label": Emoji{
+ Keywords: []string{"sale", "tag"},
+ Char: "๐Ÿท",
+ Category: "objects",
+ },
+ "laos": Emoji{
+ Keywords: []string{"lao", "democratic", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "large_blue_circle": Emoji{
+ Keywords: []string{"shape", "icon", "button"},
+ Char: "๐Ÿ”ต",
+ Category: "symbols",
+ },
+ "large_blue_diamond": Emoji{
+ Keywords: []string{"shape", "jewel", "gem"},
+ Char: "๐Ÿ”ท",
+ Category: "symbols",
+ },
+ "large_orange_diamond": Emoji{
+ Keywords: []string{"shape", "jewel", "gem"},
+ Char: "๐Ÿ”ถ",
+ Category: "symbols",
+ },
+ "last_quarter_moon": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ—",
+ Category: "animals_and_nature",
+ },
+ "last_quarter_moon_with_face": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒœ",
+ Category: "animals_and_nature",
+ },
+ "latin_cross": Emoji{
+ Keywords: []string{"christianity"},
+ Char: "โœ",
+ Category: "symbols",
+ },
+ "latvia": Emoji{
+ Keywords: []string{"lv", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ป",
+ Category: "flags",
+ },
+ "laughing": Emoji{
+ Keywords: []string{"happy", "joy", "lol", "satisfied", "haha", "face", "glad", "XD", "laugh"},
+ Char: "๐Ÿ˜†",
+ Category: "people",
+ },
+ "leaves": Emoji{
+ Keywords: []string{"nature", "plant", "tree", "vegetable", "grass", "lawn", "spring"},
+ Char: "๐Ÿƒ",
+ Category: "animals_and_nature",
+ },
+ "lebanon": Emoji{
+ Keywords: []string{"lb", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ง",
+ Category: "flags",
+ },
+ "ledger": Emoji{
+ Keywords: []string{"notes", "paper"},
+ Char: "๐Ÿ“’",
+ Category: "objects",
+ },
+ "left_luggage": Emoji{
+ Keywords: []string{"blue-square", "travel"},
+ Char: "๐Ÿ›…",
+ Category: "symbols",
+ },
+ "left_right_arrow": Emoji{
+ Keywords: []string{"shape", "direction", "horizontal", "sideways"},
+ Char: "โ†”๏ธ",
+ Category: "symbols",
+ },
+ "left_speech_bubble": Emoji{
+ Keywords: []string{"words", "message", "talk", "chatting"},
+ Char: "๐Ÿ—จ",
+ Category: "symbols",
+ },
+ "leftwards_arrow_with_hook": Emoji{
+ Keywords: []string{"back", "return", "blue-square", "undo", "enter"},
+ Char: "โ†ฉ๏ธ",
+ Category: "symbols",
+ },
+ "lemon": Emoji{
+ Keywords: []string{"fruit", "nature"},
+ Char: "๐Ÿ‹",
+ Category: "food_and_drink",
+ },
+ "leo": Emoji{
+ Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
+ Char: "โ™Œ",
+ Category: "symbols",
+ },
+ "leopard": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿ†",
+ Category: "animals_and_nature",
+ },
+ "lesotho": Emoji{
+ Keywords: []string{"ls", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "level_slider": Emoji{
+ Keywords: []string{"scale"},
+ Char: "๐ŸŽš",
+ Category: "objects",
+ },
+ "liberia": Emoji{
+ Keywords: []string{"lr", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "libra": Emoji{
+ Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
+ Char: "โ™Ž",
+ Category: "symbols",
+ },
+ "libya": Emoji{
+ Keywords: []string{"ly", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "liechtenstein": Emoji{
+ Keywords: []string{"li", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "light_rail": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿšˆ",
+ Category: "travel_and_places",
+ },
+ "link": Emoji{
+ Keywords: []string{"rings", "url"},
+ Char: "๐Ÿ”—",
+ Category: "objects",
+ },
+ "lion": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿฆ",
+ Category: "animals_and_nature",
+ },
+ "lips": Emoji{
+ Keywords: []string{"mouth", "kiss"},
+ Char: "๐Ÿ‘„",
+ Category: "people",
+ },
+ "lipstick": Emoji{
+ Keywords: []string{"female", "girl", "fashion", "woman"},
+ Char: "๐Ÿ’„",
+ Category: "people",
+ },
+ "lithuania": Emoji{
+ Keywords: []string{"lt", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "lizard": Emoji{
+ Keywords: []string{"animal", "nature", "reptile"},
+ Char: "๐ŸฆŽ",
+ Category: "animals_and_nature",
+ },
+ "lock": Emoji{
+ Keywords: []string{"security", "password", "padlock"},
+ Char: "๐Ÿ”’",
+ Category: "objects",
+ },
+ "lock_with_ink_pen": Emoji{
+ Keywords: []string{"security", "secret"},
+ Char: "๐Ÿ”",
+ Category: "objects",
+ },
+ "lollipop": Emoji{
+ Keywords: []string{"food", "snack", "candy", "sweet"},
+ Char: "๐Ÿญ",
+ Category: "food_and_drink",
+ },
+ "loop": Emoji{
+ Keywords: []string{"tape", "cassette"},
+ Char: "โžฟ",
+ Category: "symbols",
+ },
+ "loud_sound": Emoji{
+ Keywords: []string{"volume", "noise", "noisy", "speaker", "broadcast"},
+ Char: "๐Ÿ”Š",
+ Category: "symbols",
+ },
+ "loudspeaker": Emoji{
+ Keywords: []string{"volume", "sound"},
+ Char: "๐Ÿ“ข",
+ Category: "symbols",
+ },
+ "love_hotel": Emoji{
+ Keywords: []string{"like", "affection", "dating"},
+ Char: "๐Ÿฉ",
+ Category: "travel_and_places",
+ },
+ "love_letter": Emoji{
+ Keywords: []string{"email", "like", "affection", "envelope", "valentines"},
+ Char: "๐Ÿ’Œ",
+ Category: "objects",
+ },
+ "low_brightness": Emoji{
+ Keywords: []string{"sun", "afternoon", "warm", "summer"},
+ Char: "๐Ÿ”…",
+ Category: "symbols",
+ },
+ "luxembourg": Emoji{
+ Keywords: []string{"lu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "lying_face": Emoji{
+ Keywords: []string{"face", "lie", "pinocchio"},
+ Char: "๐Ÿคฅ",
+ Category: "people",
+ },
+ "m": Emoji{
+ Keywords: []string{"alphabet", "blue-circle", "letter"},
+ Char: "โ“‚๏ธ",
+ Category: "symbols",
+ },
+ "macau": Emoji{
+ Keywords: []string{"macao", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "macedonia": Emoji{
+ Keywords: []string{"macedonia,", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "madagascar": Emoji{
+ Keywords: []string{"mg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "mag": Emoji{
+ Keywords: []string{"search", "zoom", "find", "detective"},
+ Char: "๐Ÿ”",
+ Category: "objects",
+ },
+ "mag_right": Emoji{
+ Keywords: []string{"search", "zoom", "find", "detective"},
+ Char: "๐Ÿ”Ž",
+ Category: "objects",
+ },
+ "mahjong": Emoji{
+ Keywords: []string{"game", "play", "chinese", "kanji"},
+ Char: "๐Ÿ€„",
+ Category: "symbols",
+ },
+ "mailbox": Emoji{
+ Keywords: []string{"email", "inbox", "communication"},
+ Char: "๐Ÿ“ซ",
+ Category: "objects",
+ },
+ "mailbox_closed": Emoji{
+ Keywords: []string{"email", "communication", "inbox"},
+ Char: "๐Ÿ“ช",
+ Category: "objects",
+ },
+ "mailbox_with_mail": Emoji{
+ Keywords: []string{"email", "inbox", "communication"},
+ Char: "๐Ÿ“ฌ",
+ Category: "objects",
+ },
+ "mailbox_with_no_mail": Emoji{
+ Keywords: []string{"email", "inbox"},
+ Char: "๐Ÿ“ญ",
+ Category: "objects",
+ },
+ "malawi": Emoji{
+ Keywords: []string{"mw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "malaysia": Emoji{
+ Keywords: []string{"my", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "maldives": Emoji{
+ Keywords: []string{"mv", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ป",
+ Category: "flags",
+ },
+ "male_detective": Emoji{
+ Keywords: []string{"human", "spy", "detective"},
+ Char: "๐Ÿ•ต",
+ Category: "people",
+ },
+ "mali": Emoji{
+ Keywords: []string{"ml", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "malta": Emoji{
+ Keywords: []string{"mt", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "man": Emoji{
+ Keywords: []string{"mustache", "father", "dad", "guy", "classy", "sir", "moustache"},
+ Char: "๐Ÿ‘จ",
+ Category: "people",
+ },
+ "man_artist": Emoji{
+ Keywords: []string{"painter", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐ŸŽจ",
+ Category: "people",
+ },
+ "man_astronaut": Emoji{
+ Keywords: []string{"space", "rocket", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿš€",
+ Category: "people",
+ },
+ "man_cartwheeling": Emoji{
+ Keywords: []string{"gymnastics"},
+ Char: "๐Ÿคธโ€โ™‚๏ธ",
+ Category: "activity",
+ },
+ "man_cook": Emoji{
+ Keywords: []string{"chef", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿณ",
+ Category: "people",
+ },
+ "man_dancing": Emoji{
+ Keywords: []string{"male", "boy", "fun", "dancer"},
+ Char: "๐Ÿ•บ",
+ Category: "people",
+ },
+ "man_facepalming": Emoji{
+ Keywords: []string{"man", "male", "boy", "disbelief"},
+ Char: "๐Ÿคฆ",
+ Category: "people",
+ },
+ "man_factory_worker": Emoji{
+ Keywords: []string{"assembly", "industrial", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿญ",
+ Category: "people",
+ },
+ "man_farmer": Emoji{
+ Keywords: []string{"rancher", "gardener", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐ŸŒพ",
+ Category: "people",
+ },
+ "man_firefighter": Emoji{
+ Keywords: []string{"fireman", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿš’",
+ Category: "people",
+ },
+ "man_health_worker": Emoji{
+ Keywords: []string{"doctor", "nurse", "therapist", "healthcare", "man", "human"},
+ Char: "๐Ÿ‘จโ€โš•๏ธ",
+ Category: "people",
+ },
+ "man_in_tuxedo": Emoji{
+ Keywords: []string{"couple", "marriage", "wedding", "groom"},
+ Char: "๐Ÿคต",
+ Category: "people",
+ },
+ "man_judge": Emoji{
+ Keywords: []string{"justice", "court", "man", "human"},
+ Char: "๐Ÿ‘จโ€โš–๏ธ",
+ Category: "people",
+ },
+ "man_juggling": Emoji{
+ Keywords: []string{"juggle", "balance", "skill", "multitask"},
+ Char: "๐Ÿคนโ€โ™‚๏ธ",
+ Category: "activity",
+ },
+ "man_mechanic": Emoji{
+ Keywords: []string{"plumber", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿ”ง",
+ Category: "people",
+ },
+ "man_office_worker": Emoji{
+ Keywords: []string{"business", "manager", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿ’ผ",
+ Category: "people",
+ },
+ "man_pilot": Emoji{
+ Keywords: []string{"aviator", "plane", "man", "human"},
+ Char: "๐Ÿ‘จโ€โœˆ๏ธ",
+ Category: "people",
+ },
+ "man_playing_handball": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿคพโ€โ™‚๏ธ",
+ Category: "activity",
+ },
+ "man_playing_water_polo": Emoji{
+ Keywords: []string{"sports", "pool"},
+ Char: "๐Ÿคฝโ€โ™‚๏ธ",
+ Category: "activity",
+ },
+ "man_scientist": Emoji{
+ Keywords: []string{"biologist", "chemist", "engineer", "physicist", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿ”ฌ",
+ Category: "people",
+ },
+ "man_shrugging": Emoji{
+ Keywords: []string{"man", "male", "boy", "confused", "indifferent", "doubt"},
+ Char: "๐Ÿคทโ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "man_singer": Emoji{
+ Keywords: []string{"rockstar", "entertainer", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐ŸŽค",
+ Category: "people",
+ },
+ "man_student": Emoji{
+ Keywords: []string{"graduate", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐ŸŽ“",
+ Category: "people",
+ },
+ "man_teacher": Emoji{
+ Keywords: []string{"instructor", "professor", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿซ",
+ Category: "people",
+ },
+ "man_technologist": Emoji{
+ Keywords: []string{"coder", "developer", "engineer", "programmer", "software", "man", "human"},
+ Char: "๐Ÿ‘จโ€๐Ÿ’ป",
+ Category: "people",
+ },
+ "man_with_gua_pi_mao": Emoji{
+ Keywords: []string{"male", "boy", "chinese"},
+ Char: "๐Ÿ‘ฒ",
+ Category: "people",
+ },
+ "man_with_turban": Emoji{
+ Keywords: []string{"male", "indian", "hinduism", "arabs"},
+ Char: "๐Ÿ‘ณ",
+ Category: "people",
+ },
+ "mans_shoe": Emoji{
+ Keywords: []string{"fashion", "male"},
+ Char: "๐Ÿ‘ž",
+ Category: "people",
+ },
+ "mantelpiece_clock": Emoji{
+ Keywords: []string{"time"},
+ Char: "๐Ÿ•ฐ",
+ Category: "objects",
+ },
+ "maple_leaf": Emoji{
+ Keywords: []string{"nature", "plant", "vegetable", "ca", "fall"},
+ Char: "๐Ÿ",
+ Category: "animals_and_nature",
+ },
+ "marshall_islands": Emoji{
+ Keywords: []string{"marshall", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "martial_arts_uniform": Emoji{
+ Keywords: []string{"judo", "karate", "taekwondo"},
+ Char: "๐Ÿฅ‹",
+ Category: "activity",
+ },
+ "martinique": Emoji{
+ Keywords: []string{"mq", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ถ",
+ Category: "flags",
+ },
+ "mask": Emoji{
+ Keywords: []string{"face", "sick", "ill", "disease"},
+ Char: "๐Ÿ˜ท",
+ Category: "people",
+ },
+ "massage_man": Emoji{
+ Keywords: []string{"male", "boy", "man", "head"},
+ Char: "๐Ÿ’†โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "massage_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman", "head"},
+ Char: "๐Ÿ’†",
+ Category: "people",
+ },
+ "mauritania": Emoji{
+ Keywords: []string{"mr", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "mauritius": Emoji{
+ Keywords: []string{"mu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "mayotte": Emoji{
+ Keywords: []string{"yt", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡พ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "meat_on_bone": Emoji{
+ Keywords: []string{"good", "food", "drumstick"},
+ Char: "๐Ÿ–",
+ Category: "food_and_drink",
+ },
+ "medal_military": Emoji{
+ Keywords: []string{"award", "winning", "army"},
+ Char: "๐ŸŽ–",
+ Category: "activity",
+ },
+ "medal_sports": Emoji{
+ Keywords: []string{"award", "winning"},
+ Char: "๐Ÿ…",
+ Category: "activity",
+ },
+ "mega": Emoji{
+ Keywords: []string{"sound", "speaker", "volume"},
+ Char: "๐Ÿ“ฃ",
+ Category: "symbols",
+ },
+ "melon": Emoji{
+ Keywords: []string{"fruit", "nature", "food"},
+ Char: "๐Ÿˆ",
+ Category: "food_and_drink",
+ },
+ "memo": Emoji{
+ Keywords: []string{"write", "documents", "stationery", "pencil", "paper", "writing", "legal", "exam", "quiz", "test", "study", "compose"},
+ Char: "๐Ÿ“",
+ Category: "objects",
+ },
+ "men_wrestling": Emoji{
+ Keywords: []string{"sports", "wrestlers"},
+ Char: "๐Ÿคผโ€โ™‚๏ธ",
+ Category: "activity",
+ },
+ "menorah": Emoji{
+ Keywords: []string{"hanukkah", "candles", "jewish"},
+ Char: "๐Ÿ•Ž",
+ Category: "symbols",
+ },
+ "mens": Emoji{
+ Keywords: []string{"toilet", "restroom", "wc", "blue-square", "gender", "male"},
+ Char: "๐Ÿšน",
+ Category: "symbols",
+ },
+ "metal": Emoji{
+ Keywords: []string{"hand", "fingers", "evil_eye", "sign_of_horns", "rock_on"},
+ Char: "๐Ÿค˜",
+ Category: "people",
+ },
+ "metro": Emoji{
+ Keywords: []string{"transportation", "blue-square", "mrt", "underground", "tube"},
+ Char: "๐Ÿš‡",
+ Category: "travel_and_places",
+ },
+ "mexico": Emoji{
+ Keywords: []string{"mx", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฝ",
+ Category: "flags",
+ },
+ "micronesia": Emoji{
+ Keywords: []string{"micronesia,", "federated", "states", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ซ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "microphone": Emoji{
+ Keywords: []string{"sound", "music", "PA", "sing", "talkshow"},
+ Char: "๐ŸŽค",
+ Category: "activity",
+ },
+ "microscope": Emoji{
+ Keywords: []string{"laboratory", "experiment", "zoomin", "science", "study"},
+ Char: "๐Ÿ”ฌ",
+ Category: "objects",
+ },
+ "milk_glass": Emoji{
+ Keywords: []string{"beverage", "drink", "cow"},
+ Char: "๐Ÿฅ›",
+ Category: "food_and_drink",
+ },
+ "milky_way": Emoji{
+ Keywords: []string{"photo", "space", "stars"},
+ Char: "๐ŸŒŒ",
+ Category: "travel_and_places",
+ },
+ "minibus": Emoji{
+ Keywords: []string{"vehicle", "car", "transportation"},
+ Char: "๐Ÿš",
+ Category: "travel_and_places",
+ },
+ "minidisc": Emoji{
+ Keywords: []string{"technology", "record", "data", "disk", "90s"},
+ Char: "๐Ÿ’ฝ",
+ Category: "objects",
+ },
+ "mobile_phone_off": Emoji{
+ Keywords: []string{"mute", "orange-square", "silence", "quiet"},
+ Char: "๐Ÿ“ด",
+ Category: "symbols",
+ },
+ "moldova": Emoji{
+ Keywords: []string{"moldova,", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "monaco": Emoji{
+ Keywords: []string{"mc", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "money_mouth_face": Emoji{
+ Keywords: []string{"face", "rich", "dollar", "money"},
+ Char: "๐Ÿค‘",
+ Category: "people",
+ },
+ "money_with_wings": Emoji{
+ Keywords: []string{"dollar", "bills", "payment", "sale"},
+ Char: "๐Ÿ’ธ",
+ Category: "objects",
+ },
+ "moneybag": Emoji{
+ Keywords: []string{"dollar", "payment", "coins", "sale"},
+ Char: "๐Ÿ’ฐ",
+ Category: "objects",
+ },
+ "mongolia": Emoji{
+ Keywords: []string{"mn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "monkey": Emoji{
+ Keywords: []string{"animal", "nature", "banana", "circus"},
+ Char: "๐Ÿ’",
+ Category: "animals_and_nature",
+ },
+ "monkey_face": Emoji{
+ Keywords: []string{"animal", "nature", "circus"},
+ Char: "๐Ÿต",
+ Category: "animals_and_nature",
+ },
+ "monorail": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿš",
+ Category: "travel_and_places",
+ },
+ "montenegro": Emoji{
+ Keywords: []string{"me", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "montserrat": Emoji{
+ Keywords: []string{"ms", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "morocco": Emoji{
+ Keywords: []string{"ma", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "mortar_board": Emoji{
+ Keywords: []string{"school", "college", "degree", "university", "graduation", "cap", "hat", "legal", "learn", "education"},
+ Char: "๐ŸŽ“",
+ Category: "people",
+ },
+ "mosque": Emoji{
+ Keywords: []string{"islam", "worship", "minaret"},
+ Char: "๐Ÿ•Œ",
+ Category: "travel_and_places",
+ },
+ "motor_boat": Emoji{
+ Keywords: []string{"ship"},
+ Char: "๐Ÿ›ฅ",
+ Category: "travel_and_places",
+ },
+ "motor_scooter": Emoji{
+ Keywords: []string{"vehicle", "vespa", "sasha"},
+ Char: "๐Ÿ›ต",
+ Category: "travel_and_places",
+ },
+ "motorcycle": Emoji{
+ Keywords: []string{"race", "sports", "fast"},
+ Char: "๐Ÿ",
+ Category: "travel_and_places",
+ },
+ "motorway": Emoji{
+ Keywords: []string{"road", "cupertino", "interstate", "highway"},
+ Char: "๐Ÿ›ฃ",
+ Category: "travel_and_places",
+ },
+ "mount_fuji": Emoji{
+ Keywords: []string{"photo", "mountain", "nature", "japanese"},
+ Char: "๐Ÿ—ป",
+ Category: "travel_and_places",
+ },
+ "mountain": Emoji{
+ Keywords: []string{"photo", "nature", "environment"},
+ Char: "โ›ฐ",
+ Category: "travel_and_places",
+ },
+ "mountain_biking_man": Emoji{
+ Keywords: []string{"transportation", "sports", "human", "race", "bike"},
+ Char: "๐Ÿšต",
+ Category: "activity",
+ },
+ "mountain_biking_woman": Emoji{
+ Keywords: []string{"transportation", "sports", "human", "race", "bike", "woman", "female"},
+ Char: "๐Ÿšตโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "mountain_cableway": Emoji{
+ Keywords: []string{"transportation", "vehicle", "ski"},
+ Char: "๐Ÿš ",
+ Category: "travel_and_places",
+ },
+ "mountain_railway": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿšž",
+ Category: "travel_and_places",
+ },
+ "mountain_snow": Emoji{
+ Keywords: []string{"photo", "nature", "environment", "winter", "cold"},
+ Char: "๐Ÿ”",
+ Category: "travel_and_places",
+ },
+ "mouse": Emoji{
+ Keywords: []string{"animal", "nature", "cheese_wedge", "rodent"},
+ Char: "๐Ÿญ",
+ Category: "animals_and_nature",
+ },
+ "mouse2": Emoji{
+ Keywords: []string{"animal", "nature", "rodent"},
+ Char: "๐Ÿ",
+ Category: "animals_and_nature",
+ },
+ "movie_camera": Emoji{
+ Keywords: []string{"film", "record"},
+ Char: "๐ŸŽฅ",
+ Category: "objects",
+ },
+ "moyai": Emoji{
+ Keywords: []string{"rock", "easter island", "moai"},
+ Char: "๐Ÿ—ฟ",
+ Category: "objects",
+ },
+ "mozambique": Emoji{
+ Keywords: []string{"mz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "mrs_claus": Emoji{
+ Keywords: []string{"woman", "female", "xmas", "mother christmas"},
+ Char: "๐Ÿคถ",
+ Category: "people",
+ },
+ "muscle": Emoji{
+ Keywords: []string{"arm", "flex", "hand", "summer", "strong", "biceps"},
+ Char: "๐Ÿ’ช",
+ Category: "people",
+ },
+ "mushroom": Emoji{
+ Keywords: []string{"plant", "vegetable"},
+ Char: "๐Ÿ„",
+ Category: "animals_and_nature",
+ },
+ "musical_keyboard": Emoji{
+ Keywords: []string{"piano", "instrument", "compose"},
+ Char: "๐ŸŽน",
+ Category: "activity",
+ },
+ "musical_note": Emoji{
+ Keywords: []string{"score", "tone", "sound"},
+ Char: "๐ŸŽต",
+ Category: "symbols",
+ },
+ "musical_score": Emoji{
+ Keywords: []string{"treble", "clef", "compose"},
+ Char: "๐ŸŽผ",
+ Category: "activity",
+ },
+ "mute": Emoji{
+ Keywords: []string{"sound", "volume", "silence", "quiet"},
+ Char: "๐Ÿ”‡",
+ Category: "symbols",
+ },
+ "myanmar": Emoji{
+ Keywords: []string{"mm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "nail_care": Emoji{
+ Keywords: []string{"beauty", "manicure", "finger", "fashion", "nail"},
+ Char: "๐Ÿ’…",
+ Category: "people",
+ },
+ "name_badge": Emoji{
+ Keywords: []string{"fire", "forbid"},
+ Char: "๐Ÿ“›",
+ Category: "symbols",
+ },
+ "namibia": Emoji{
+ Keywords: []string{"na", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "national_park": Emoji{
+ Keywords: []string{"photo", "environment", "nature"},
+ Char: "๐Ÿž",
+ Category: "travel_and_places",
+ },
+ "nauru": Emoji{
+ Keywords: []string{"nr", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "nauseated_face": Emoji{
+ Keywords: []string{"face", "vomit", "gross", "green", "sick", "throw up", "ill"},
+ Char: "๐Ÿคข",
+ Category: "people",
+ },
+ "neckbeard": Emoji{
+ Keywords: []string{"nerdy", "face", "custom_"},
+ Char: "",
+ Category: "_custom",
+ },
+ "necktie": Emoji{
+ Keywords: []string{"shirt", "suitup", "formal", "fashion", "cloth", "business"},
+ Char: "๐Ÿ‘”",
+ Category: "people",
+ },
+ "negative_squared_cross_mark": Emoji{
+ Keywords: []string{"x", "green-square", "no", "deny"},
+ Char: "โŽ",
+ Category: "symbols",
+ },
+ "nepal": Emoji{
+ Keywords: []string{"np", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ต",
+ Category: "flags",
+ },
+ "nerd_face": Emoji{
+ Keywords: []string{"face", "nerdy", "geek", "dork"},
+ Char: "๐Ÿค“",
+ Category: "people",
+ },
+ "netherlands": Emoji{
+ Keywords: []string{"nl", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "neutral_face": Emoji{
+ Keywords: []string{"indifference", "meh", ":|", "neutral"},
+ Char: "๐Ÿ˜",
+ Category: "people",
+ },
+ "new": Emoji{
+ Keywords: []string{"blue-square", "words", "start"},
+ Char: "๐Ÿ†•",
+ Category: "symbols",
+ },
+ "new_caledonia": Emoji{
+ Keywords: []string{"new", "caledonia", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "new_moon": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ‘",
+ Category: "animals_and_nature",
+ },
+ "new_moon_with_face": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒš",
+ Category: "animals_and_nature",
+ },
+ "new_zealand": Emoji{
+ Keywords: []string{"new", "zealand", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "newspaper": Emoji{
+ Keywords: []string{"press", "headline"},
+ Char: "๐Ÿ“ฐ",
+ Category: "objects",
+ },
+ "newspaper_roll": Emoji{
+ Keywords: []string{"press", "headline"},
+ Char: "๐Ÿ—ž",
+ Category: "objects",
+ },
+ "next_track_button": Emoji{
+ Keywords: []string{"forward", "next", "blue-square"},
+ Char: "โญ",
+ Category: "symbols",
+ },
+ "ng": Emoji{
+ Keywords: []string{"blue-square", "words", "shape", "icon"},
+ Char: "๐Ÿ†–",
+ Category: "symbols",
+ },
+ "nicaragua": Emoji{
+ Keywords: []string{"ni", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "niger": Emoji{
+ Keywords: []string{"ne", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "nigeria": Emoji{
+ Keywords: []string{"flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "night_with_stars": Emoji{
+ Keywords: []string{"evening", "city", "downtown"},
+ Char: "๐ŸŒƒ",
+ Category: "travel_and_places",
+ },
+ "nine": Emoji{
+ Keywords: []string{"blue-square", "numbers", "9"},
+ Char: "9๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "niue": Emoji{
+ Keywords: []string{"nu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "no_bell": Emoji{
+ Keywords: []string{"sound", "volume", "mute", "quiet", "silent"},
+ Char: "๐Ÿ”•",
+ Category: "symbols",
+ },
+ "no_bicycles": Emoji{
+ Keywords: []string{"cyclist", "prohibited", "circle"},
+ Char: "๐Ÿšณ",
+ Category: "symbols",
+ },
+ "no_entry": Emoji{
+ Keywords: []string{"limit", "security", "privacy", "bad", "denied", "stop", "circle"},
+ Char: "โ›”",
+ Category: "symbols",
+ },
+ "no_entry_sign": Emoji{
+ Keywords: []string{"forbid", "stop", "limit", "denied", "disallow", "circle"},
+ Char: "๐Ÿšซ",
+ Category: "symbols",
+ },
+ "no_good_man": Emoji{
+ Keywords: []string{"male", "boy", "man", "nope"},
+ Char: "๐Ÿ™…โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "no_good_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman", "nope"},
+ Char: "๐Ÿ™…",
+ Category: "people",
+ },
+ "no_mobile_phones": Emoji{
+ Keywords: []string{"iphone", "mute", "circle"},
+ Char: "๐Ÿ“ต",
+ Category: "symbols",
+ },
+ "no_mouth": Emoji{
+ Keywords: []string{"face", "hellokitty"},
+ Char: "๐Ÿ˜ถ",
+ Category: "people",
+ },
+ "no_pedestrians": Emoji{
+ Keywords: []string{"rules", "crossing", "walking", "circle"},
+ Char: "๐Ÿšท",
+ Category: "symbols",
+ },
+ "no_smoking": Emoji{
+ Keywords: []string{"cigarette", "blue-square", "smell", "smoke"},
+ Char: "๐Ÿšญ",
+ Category: "symbols",
+ },
+ "non-potable_water": Emoji{
+ Keywords: []string{"drink", "faucet", "tap", "circle"},
+ Char: "๐Ÿšฑ",
+ Category: "symbols",
+ },
+ "norfolk_island": Emoji{
+ Keywords: []string{"norfolk", "island", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "north_korea": Emoji{
+ Keywords: []string{"north", "korea", "nation", "flag", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ต",
+ Category: "flags",
+ },
+ "northern_mariana_islands": Emoji{
+ Keywords: []string{"northern", "mariana", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฒ๐Ÿ‡ต",
+ Category: "flags",
+ },
+ "norway": Emoji{
+ Keywords: []string{"no", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ณ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "nose": Emoji{
+ Keywords: []string{"smell", "sniff"},
+ Char: "๐Ÿ‘ƒ",
+ Category: "people",
+ },
+ "notebook": Emoji{
+ Keywords: []string{"stationery", "record", "notes", "paper", "study"},
+ Char: "๐Ÿ““",
+ Category: "objects",
+ },
+ "notebook_with_decorative_cover": Emoji{
+ Keywords: []string{"classroom", "notes", "record", "paper", "study"},
+ Char: "๐Ÿ“”",
+ Category: "objects",
+ },
+ "notes": Emoji{
+ Keywords: []string{"music", "score"},
+ Char: "๐ŸŽถ",
+ Category: "symbols",
+ },
+ "nut_and_bolt": Emoji{
+ Keywords: []string{"handy", "tools", "fix"},
+ Char: "๐Ÿ”ฉ",
+ Category: "objects",
+ },
+ "o": Emoji{
+ Keywords: []string{"circle", "round"},
+ Char: "โญ•",
+ Category: "symbols",
+ },
+ "o2": Emoji{
+ Keywords: []string{"alphabet", "red-square", "letter"},
+ Char: "๐Ÿ…พ๏ธ",
+ Category: "symbols",
+ },
+ "ocean": Emoji{
+ Keywords: []string{"sea", "water", "wave", "nature", "tsunami", "disaster"},
+ Char: "๐ŸŒŠ",
+ Category: "animals_and_nature",
+ },
+ "octocat": Emoji{
+ Keywords: []string{"animal", "octopus", "github", "custom_"},
+ Char: "",
+ Category: "_custom",
+ },
+ "octopus": Emoji{
+ Keywords: []string{"animal", "creature", "ocean", "sea", "nature", "beach"},
+ Char: "๐Ÿ™",
+ Category: "animals_and_nature",
+ },
+ "oden": Emoji{
+ Keywords: []string{"food", "japanese"},
+ Char: "๐Ÿข",
+ Category: "food_and_drink",
+ },
+ "office": Emoji{
+ Keywords: []string{"building", "bureau", "work"},
+ Char: "๐Ÿข",
+ Category: "travel_and_places",
+ },
+ "oil_drum": Emoji{
+ Keywords: []string{"barrell"},
+ Char: "๐Ÿ›ข",
+ Category: "objects",
+ },
+ "ok": Emoji{
+ Keywords: []string{"good", "agree", "yes", "blue-square"},
+ Char: "๐Ÿ†—",
+ Category: "symbols",
+ },
+ "ok_hand": Emoji{
+ Keywords: []string{"fingers", "limbs", "perfect", "ok"},
+ Char: "๐Ÿ‘Œ",
+ Category: "people",
+ },
+ "ok_man": Emoji{
+ Keywords: []string{"men", "boy", "male", "blue", "human", "man"},
+ Char: "๐Ÿ™†โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "ok_woman": Emoji{
+ Keywords: []string{"women", "girl", "female", "pink", "human", "woman"},
+ Char: "๐Ÿ™†",
+ Category: "people",
+ },
+ "old_key": Emoji{
+ Keywords: []string{"lock", "door", "password"},
+ Char: "๐Ÿ—",
+ Category: "objects",
+ },
+ "older_man": Emoji{
+ Keywords: []string{"human", "male", "men", "old", "elder", "senior"},
+ Char: "๐Ÿ‘ด",
+ Category: "people",
+ },
+ "older_woman": Emoji{
+ Keywords: []string{"human", "female", "women", "lady", "old", "elder", "senior"},
+ Char: "๐Ÿ‘ต",
+ Category: "people",
+ },
+ "om": Emoji{
+ Keywords: []string{"hinduism", "buddhism", "sikhism", "jainism"},
+ Char: "๐Ÿ•‰",
+ Category: "symbols",
+ },
+ "oman": Emoji{
+ Keywords: []string{"om_symbol", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ด๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "on": Emoji{
+ Keywords: []string{"arrow", "words"},
+ Char: "๐Ÿ”›",
+ Category: "symbols",
+ },
+ "oncoming_automobile": Emoji{
+ Keywords: []string{"car", "vehicle", "transportation"},
+ Char: "๐Ÿš˜",
+ Category: "travel_and_places",
+ },
+ "oncoming_bus": Emoji{
+ Keywords: []string{"vehicle", "transportation"},
+ Char: "๐Ÿš",
+ Category: "travel_and_places",
+ },
+ "oncoming_police_car": Emoji{
+ Keywords: []string{"vehicle", "law", "legal", "enforcement", "911"},
+ Char: "๐Ÿš”",
+ Category: "travel_and_places",
+ },
+ "oncoming_taxi": Emoji{
+ Keywords: []string{"vehicle", "cars", "uber"},
+ Char: "๐Ÿš–",
+ Category: "travel_and_places",
+ },
+ "one": Emoji{
+ Keywords: []string{"blue-square", "numbers", "1"},
+ Char: "1๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "open_book": Emoji{
+ Keywords: []string{"book", "read", "library", "knowledge", "literature", "learn", "study"},
+ Char: "๐Ÿ“–",
+ Category: "objects",
+ },
+ "open_file_folder": Emoji{
+ Keywords: []string{"documents", "load"},
+ Char: "๐Ÿ“‚",
+ Category: "objects",
+ },
+ "open_hands": Emoji{
+ Keywords: []string{"fingers", "butterfly", "hands", "open"},
+ Char: "๐Ÿ‘",
+ Category: "people",
+ },
+ "open_mouth": Emoji{
+ Keywords: []string{"face", "surprise", "impressed", "wow", "whoa", ":O"},
+ Char: "๐Ÿ˜ฎ",
+ Category: "people",
+ },
+ "open_umbrella": Emoji{
+ Keywords: []string{"weather", "spring"},
+ Char: "โ˜‚",
+ Category: "animals_and_nature",
+ },
+ "ophiuchus": Emoji{
+ Keywords: []string{"sign", "purple-square", "constellation", "astrology"},
+ Char: "โ›Ž",
+ Category: "symbols",
+ },
+ "orange_book": Emoji{
+ Keywords: []string{"read", "library", "knowledge", "textbook", "study"},
+ Char: "๐Ÿ“™",
+ Category: "objects",
+ },
+ "orthodox_cross": Emoji{
+ Keywords: []string{"suppedaneum", "religion"},
+ Char: "โ˜ฆ",
+ Category: "symbols",
+ },
+ "outbox_tray": Emoji{
+ Keywords: []string{"inbox", "email"},
+ Char: "๐Ÿ“ค",
+ Category: "objects",
+ },
+ "owl": Emoji{
+ Keywords: []string{"animal", "nature", "bird", "hoot"},
+ Char: "๐Ÿฆ‰",
+ Category: "animals_and_nature",
+ },
+ "ox": Emoji{
+ Keywords: []string{"animal", "cow", "beef"},
+ Char: "๐Ÿ‚",
+ Category: "animals_and_nature",
+ },
+ "package": Emoji{
+ Keywords: []string{"mail", "gift", "cardboard", "box", "moving"},
+ Char: "๐Ÿ“ฆ",
+ Category: "objects",
+ },
+ "page_facing_up": Emoji{
+ Keywords: []string{"documents", "office", "paper", "information"},
+ Char: "๐Ÿ“„",
+ Category: "objects",
+ },
+ "page_with_curl": Emoji{
+ Keywords: []string{"documents", "office", "paper"},
+ Char: "๐Ÿ“ƒ",
+ Category: "objects",
+ },
+ "pager": Emoji{
+ Keywords: []string{"bbcall", "oldschool", "90s"},
+ Char: "๐Ÿ“Ÿ",
+ Category: "objects",
+ },
+ "paintbrush": Emoji{
+ Keywords: []string{"drawing", "creativity", "art"},
+ Char: "๐Ÿ–Œ",
+ Category: "objects",
+ },
+ "pakistan": Emoji{
+ Keywords: []string{"pk", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "palau": Emoji{
+ Keywords: []string{"pw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "palestinian_territories": Emoji{
+ Keywords: []string{"palestine", "palestinian", "territories", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "palm_tree": Emoji{
+ Keywords: []string{"plant", "vegetable", "nature", "summer", "beach", "mojito", "tropical"},
+ Char: "๐ŸŒด",
+ Category: "animals_and_nature",
+ },
+ "panama": Emoji{
+ Keywords: []string{"pa", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "pancakes": Emoji{
+ Keywords: []string{"food", "breakfast", "flapjacks", "hotcakes"},
+ Char: "๐Ÿฅž",
+ Category: "food_and_drink",
+ },
+ "panda_face": Emoji{
+ Keywords: []string{"animal", "nature", "panda"},
+ Char: "๐Ÿผ",
+ Category: "animals_and_nature",
+ },
+ "paperclip": Emoji{
+ Keywords: []string{"documents", "stationery"},
+ Char: "๐Ÿ“Ž",
+ Category: "objects",
+ },
+ "paperclips": Emoji{
+ Keywords: []string{"documents", "stationery"},
+ Char: "๐Ÿ–‡",
+ Category: "objects",
+ },
+ "papua_new_guinea": Emoji{
+ Keywords: []string{"papua", "new", "guinea", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "paraguay": Emoji{
+ Keywords: []string{"py", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "parasol_on_ground": Emoji{
+ Keywords: []string{"weather", "summer"},
+ Char: "โ›ฑ",
+ Category: "objects",
+ },
+ "parking": Emoji{
+ Keywords: []string{"cars", "blue-square", "alphabet", "letter"},
+ Char: "๐Ÿ…ฟ๏ธ",
+ Category: "symbols",
+ },
+ "part_alternation_mark": Emoji{
+ Keywords: []string{"graph", "presentation", "stats", "business", "economics", "bad"},
+ Char: "ใ€ฝ๏ธ",
+ Category: "symbols",
+ },
+ "partly_sunny": Emoji{
+ Keywords: []string{"weather", "nature", "cloudy", "morning", "fall", "spring"},
+ Char: "โ›…",
+ Category: "animals_and_nature",
+ },
+ "passenger_ship": Emoji{
+ Keywords: []string{"yacht", "cruise", "ferry"},
+ Char: "๐Ÿ›ณ",
+ Category: "travel_and_places",
+ },
+ "passport_control": Emoji{
+ Keywords: []string{"custom", "blue-square"},
+ Char: "๐Ÿ›‚",
+ Category: "symbols",
+ },
+ "pause_button": Emoji{
+ Keywords: []string{"pause", "blue-square"},
+ Char: "โธ",
+ Category: "symbols",
+ },
+ "paw_prints": Emoji{
+ Keywords: []string{"animal", "tracking", "footprints", "dog", "cat", "pet", "feet"},
+ Char: "๐Ÿพ",
+ Category: "animals_and_nature",
+ },
+ "peace_symbol": Emoji{
+ Keywords: []string{"hippie"},
+ Char: "โ˜ฎ",
+ Category: "symbols",
+ },
+ "peach": Emoji{
+ Keywords: []string{"fruit", "nature", "food"},
+ Char: "๐Ÿ‘",
+ Category: "food_and_drink",
+ },
+ "peanuts": Emoji{
+ Keywords: []string{"food", "nut"},
+ Char: "๐Ÿฅœ",
+ Category: "food_and_drink",
+ },
+ "pear": Emoji{
+ Keywords: []string{"fruit", "nature", "food"},
+ Char: "๐Ÿ",
+ Category: "food_and_drink",
+ },
+ "pen": Emoji{
+ Keywords: []string{"stationery", "writing", "write"},
+ Char: "๐Ÿ–Š",
+ Category: "objects",
+ },
+ "pencil2": Emoji{
+ Keywords: []string{"stationery", "write", "paper", "writing", "school", "study"},
+ Char: "โœ๏ธ",
+ Category: "objects",
+ },
+ "penguin": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿง",
+ Category: "animals_and_nature",
+ },
+ "pensive": Emoji{
+ Keywords: []string{"face", "sad", "depressed", "okay", "upset"},
+ Char: "๐Ÿ˜”",
+ Category: "people",
+ },
+ "performing_arts": Emoji{
+ Keywords: []string{"acting", "theater", "drama"},
+ Char: "๐ŸŽญ",
+ Category: "activity",
+ },
+ "persevere": Emoji{
+ Keywords: []string{"face", "sick", "no", "upset", "oops"},
+ Char: "๐Ÿ˜ฃ",
+ Category: "people",
+ },
+ "person_fencing": Emoji{
+ Keywords: []string{"sports", "fencing", "sword"},
+ Char: "๐Ÿคบ",
+ Category: "activity",
+ },
+ "peru": Emoji{
+ Keywords: []string{"pe", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "philippines": Emoji{
+ Keywords: []string{"ph", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "phone": Emoji{
+ Keywords: []string{"technology", "communication", "dial", "telephone"},
+ Char: "โ˜Ž๏ธ",
+ Category: "objects",
+ },
+ "pick": Emoji{
+ Keywords: []string{"tools", "dig"},
+ Char: "โ›",
+ Category: "objects",
+ },
+ "pig": Emoji{
+ Keywords: []string{"animal", "oink", "nature"},
+ Char: "๐Ÿท",
+ Category: "animals_and_nature",
+ },
+ "pig2": Emoji{
+ Keywords: []string{"animal", "nature"},
+ Char: "๐Ÿ–",
+ Category: "animals_and_nature",
+ },
+ "pig_nose": Emoji{
+ Keywords: []string{"animal", "oink"},
+ Char: "๐Ÿฝ",
+ Category: "animals_and_nature",
+ },
+ "pill": Emoji{
+ Keywords: []string{"health", "medicine", "doctor", "pharmacy", "drug"},
+ Char: "๐Ÿ’Š",
+ Category: "objects",
+ },
+ "pineapple": Emoji{
+ Keywords: []string{"fruit", "nature", "food"},
+ Char: "๐Ÿ",
+ Category: "food_and_drink",
+ },
+ "ping_pong": Emoji{
+ Keywords: []string{"sports", "pingpong"},
+ Char: "๐Ÿ“",
+ Category: "activity",
+ },
+ "pisces": Emoji{
+ Keywords: []string{"purple-square", "sign", "zodiac", "astrology"},
+ Char: "โ™“",
+ Category: "symbols",
+ },
+ "pitcairn_islands": Emoji{
+ Keywords: []string{"pitcairn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "pizza": Emoji{
+ Keywords: []string{"food", "party"},
+ Char: "๐Ÿ•",
+ Category: "food_and_drink",
+ },
+ "place_of_worship": Emoji{
+ Keywords: []string{"religion", "church", "temple", "prayer"},
+ Char: "๐Ÿ›",
+ Category: "symbols",
+ },
+ "plate_with_cutlery": Emoji{
+ Keywords: []string{"food", "eat", "meal", "lunch", "dinner", "restaurant"},
+ Char: "๐Ÿฝ",
+ Category: "food_and_drink",
+ },
+ "play_or_pause_button": Emoji{
+ Keywords: []string{"blue-square", "play", "pause"},
+ Char: "โฏ",
+ Category: "symbols",
+ },
+ "point_down": Emoji{
+ Keywords: []string{"fingers", "hand", "direction", "down"},
+ Char: "๐Ÿ‘‡",
+ Category: "people",
+ },
+ "point_left": Emoji{
+ Keywords: []string{"direction", "fingers", "hand", "left"},
+ Char: "๐Ÿ‘ˆ",
+ Category: "people",
+ },
+ "point_right": Emoji{
+ Keywords: []string{"fingers", "hand", "direction", "right"},
+ Char: "๐Ÿ‘‰",
+ Category: "people",
+ },
+ "point_up": Emoji{
+ Keywords: []string{"hand", "fingers", "direction", "up"},
+ Char: "โ˜",
+ Category: "people",
+ },
+ "point_up_2": Emoji{
+ Keywords: []string{"fingers", "hand", "direction", "up"},
+ Char: "๐Ÿ‘†",
+ Category: "people",
+ },
+ "poland": Emoji{
+ Keywords: []string{"pl", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "police_car": Emoji{
+ Keywords: []string{"vehicle", "cars", "transportation", "law", "legal", "enforcement"},
+ Char: "๐Ÿš“",
+ Category: "travel_and_places",
+ },
+ "policeman": Emoji{
+ Keywords: []string{"man", "police", "law", "legal", "enforcement", "arrest", "911"},
+ Char: "๐Ÿ‘ฎ",
+ Category: "people",
+ },
+ "policewoman": Emoji{
+ Keywords: []string{"woman", "police", "law", "legal", "enforcement", "arrest", "911", "female"},
+ Char: "๐Ÿ‘ฎโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "poodle": Emoji{
+ Keywords: []string{"dog", "animal", "101", "nature", "pet"},
+ Char: "๐Ÿฉ",
+ Category: "animals_and_nature",
+ },
+ "poop": Emoji{
+ Keywords: []string{"hankey", "shitface", "fail", "turd", "shit"},
+ Char: "๐Ÿ’ฉ",
+ Category: "people",
+ },
+ "popcorn": Emoji{
+ Keywords: []string{"food", "movie theater", "films", "snack"},
+ Char: "๐Ÿฟ",
+ Category: "food_and_drink",
+ },
+ "portugal": Emoji{
+ Keywords: []string{"pt", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡น",
+ Category: "flags",
+ },
+ "post_office": Emoji{
+ Keywords: []string{"building", "envelope", "communication"},
+ Char: "๐Ÿฃ",
+ Category: "travel_and_places",
+ },
+ "postal_horn": Emoji{
+ Keywords: []string{"instrument", "music"},
+ Char: "๐Ÿ“ฏ",
+ Category: "objects",
+ },
+ "postbox": Emoji{
+ Keywords: []string{"email", "letter", "envelope"},
+ Char: "๐Ÿ“ฎ",
+ Category: "objects",
+ },
+ "potable_water": Emoji{
+ Keywords: []string{"blue-square", "liquid", "restroom", "cleaning", "faucet"},
+ Char: "๐Ÿšฐ",
+ Category: "symbols",
+ },
+ "potato": Emoji{
+ Keywords: []string{"food", "tuber", "vegatable", "starch"},
+ Char: "๐Ÿฅ”",
+ Category: "food_and_drink",
+ },
+ "pouch": Emoji{
+ Keywords: []string{"bag", "accessories", "shopping"},
+ Char: "๐Ÿ‘",
+ Category: "people",
+ },
+ "poultry_leg": Emoji{
+ Keywords: []string{"food", "meat", "drumstick", "bird", "chicken", "turkey"},
+ Char: "๐Ÿ—",
+ Category: "food_and_drink",
+ },
+ "pound": Emoji{
+ Keywords: []string{"british", "sterling", "money", "sales", "bills", "uk", "england", "currency"},
+ Char: "๐Ÿ’ท",
+ Category: "objects",
+ },
+ "pouting_cat": Emoji{
+ Keywords: []string{"animal", "cats"},
+ Char: "๐Ÿ˜พ",
+ Category: "people",
+ },
+ "pouting_man": Emoji{
+ Keywords: []string{"male", "boy", "man"},
+ Char: "๐Ÿ™Žโ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "pouting_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman"},
+ Char: "๐Ÿ™Ž",
+ Category: "people",
+ },
+ "pray": Emoji{
+ Keywords: []string{"please", "hope", "wish", "namaste", "highfive"},
+ Char: "๐Ÿ™",
+ Category: "people",
+ },
+ "prayer_beads": Emoji{
+ Keywords: []string{"dhikr", "religious"},
+ Char: "๐Ÿ“ฟ",
+ Category: "objects",
+ },
+ "pregnant_woman": Emoji{
+ Keywords: []string{"baby"},
+ Char: "๐Ÿคฐ",
+ Category: "people",
+ },
+ "previous_track_button": Emoji{
+ Keywords: []string{"backward"},
+ Char: "โฎ",
+ Category: "symbols",
+ },
+ "prince": Emoji{
+ Keywords: []string{"boy", "man", "male", "crown", "royal", "king"},
+ Char: "๐Ÿคด",
+ Category: "people",
+ },
+ "princess": Emoji{
+ Keywords: []string{"girl", "woman", "female", "blond", "crown", "royal", "queen"},
+ Char: "๐Ÿ‘ธ",
+ Category: "people",
+ },
+ "printer": Emoji{
+ Keywords: []string{"paper", "ink"},
+ Char: "๐Ÿ–จ",
+ Category: "objects",
+ },
+ "puerto_rico": Emoji{
+ Keywords: []string{"puerto", "rico", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "purple_heart": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’œ",
+ Category: "symbols",
+ },
+ "purse": Emoji{
+ Keywords: []string{"fashion", "accessories", "money", "sales", "shopping"},
+ Char: "๐Ÿ‘›",
+ Category: "people",
+ },
+ "pushpin": Emoji{
+ Keywords: []string{"stationery", "mark", "here"},
+ Char: "๐Ÿ“Œ",
+ Category: "objects",
+ },
+ "put_litter_in_its_place": Emoji{
+ Keywords: []string{"blue-square", "sign", "human", "info"},
+ Char: "๐Ÿšฎ",
+ Category: "symbols",
+ },
+ "qatar": Emoji{
+ Keywords: []string{"qa", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ถ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "question": Emoji{
+ Keywords: []string{"doubt", "confused"},
+ Char: "โ“",
+ Category: "symbols",
+ },
+ "rabbit": Emoji{
+ Keywords: []string{"animal", "nature", "pet", "spring", "magic", "bunny"},
+ Char: "๐Ÿฐ",
+ Category: "animals_and_nature",
+ },
+ "rabbit2": Emoji{
+ Keywords: []string{"animal", "nature", "pet", "magic", "spring"},
+ Char: "๐Ÿ‡",
+ Category: "animals_and_nature",
+ },
+ "racehorse": Emoji{
+ Keywords: []string{"animal", "gamble", "luck"},
+ Char: "๐ŸŽ",
+ Category: "animals_and_nature",
+ },
+ "racing_car": Emoji{
+ Keywords: []string{"sports", "race", "fast", "formula", "f1"},
+ Char: "๐ŸŽ",
+ Category: "travel_and_places",
+ },
+ "radio": Emoji{
+ Keywords: []string{"communication", "music", "podcast", "program"},
+ Char: "๐Ÿ“ป",
+ Category: "objects",
+ },
+ "radio_button": Emoji{
+ Keywords: []string{"input", "old", "music", "circle"},
+ Char: "๐Ÿ”˜",
+ Category: "symbols",
+ },
+ "radioactive": Emoji{
+ Keywords: []string{"nuclear", "danger"},
+ Char: "โ˜ข",
+ Category: "symbols",
+ },
+ "rage": Emoji{
+ Keywords: []string{"angry", "mad", "hate", "despise"},
+ Char: "๐Ÿ˜ก",
+ Category: "people",
+ },
+ "rage1": Emoji{
+ Keywords: []string{"angry", "mad", "hate", "despise"},
+ Char: "",
+ Category: "_custom",
+ },
+ "rage2": Emoji{
+ Keywords: []string{"angry", "mad", "hate", "despise"},
+ Char: "",
+ Category: "_custom",
+ },
+ "rage3": Emoji{
+ Keywords: []string{"angry", "mad", "hate", "despise"},
+ Char: "",
+ Category: "_custom",
+ },
+ "rage4": Emoji{
+ Keywords: []string{"angry", "mad", "hate", "despise"},
+ Char: "",
+ Category: "_custom",
+ },
+ "railway_car": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿšƒ",
+ Category: "travel_and_places",
+ },
+ "railway_track": Emoji{
+ Keywords: []string{"train", "transportation"},
+ Char: "๐Ÿ›ค",
+ Category: "travel_and_places",
+ },
+ "rainbow": Emoji{
+ Keywords: []string{"nature", "happy", "unicorn_face", "photo", "sky", "spring"},
+ Char: "๐ŸŒˆ",
+ Category: "travel_and_places",
+ },
+ "rainbow_flag": Emoji{
+ Keywords: []string{"flag", "rainbow", "pride", "gay", "lgbt", "glbt", "queer", "homosexual", "lesbian", "bisexual", "transgender"},
+ Char: "๐Ÿณ๏ธโ€๐ŸŒˆ",
+ Category: "objects",
+ },
+ "raised_back_of_hand": Emoji{
+ Keywords: []string{"fingers", "raised", "backhand"},
+ Char: "๐Ÿคš",
+ Category: "people",
+ },
+ "raised_hand": Emoji{
+ Keywords: []string{"fingers", "stop", "highfive", "palm", "ban"},
+ Char: "โœ‹",
+ Category: "people",
+ },
+ "raised_hand_with_fingers_splayed": Emoji{
+ Keywords: []string{"hand", "fingers", "palm"},
+ Char: "๐Ÿ–",
+ Category: "people",
+ },
+ "raised_hands": Emoji{
+ Keywords: []string{"gesture", "hooray", "yea", "celebration", "hands"},
+ Char: "๐Ÿ™Œ",
+ Category: "people",
+ },
+ "raising_hand_man": Emoji{
+ Keywords: []string{"male", "boy", "man"},
+ Char: "๐Ÿ™‹โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "raising_hand_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman"},
+ Char: "๐Ÿ™‹",
+ Category: "people",
+ },
+ "ram": Emoji{
+ Keywords: []string{"animal", "sheep", "nature"},
+ Char: "๐Ÿ",
+ Category: "animals_and_nature",
+ },
+ "ramen": Emoji{
+ Keywords: []string{"food", "japanese", "noodle", "chopsticks"},
+ Char: "๐Ÿœ",
+ Category: "food_and_drink",
+ },
+ "rat": Emoji{
+ Keywords: []string{"animal", "mouse", "rodent"},
+ Char: "๐Ÿ€",
+ Category: "animals_and_nature",
+ },
+ "record_button": Emoji{
+ Keywords: []string{"blue-square"},
+ Char: "โบ",
+ Category: "symbols",
+ },
+ "recycle": Emoji{
+ Keywords: []string{"arrow", "environment", "garbage", "trash"},
+ Char: "โ™ป๏ธ",
+ Category: "symbols",
+ },
+ "red_car": Emoji{
+ Keywords: []string{"red", "transportation", "vehicle"},
+ Char: "๐Ÿš—",
+ Category: "travel_and_places",
+ },
+ "red_circle": Emoji{
+ Keywords: []string{"shape", "error", "danger"},
+ Char: "๐Ÿ”ด",
+ Category: "symbols",
+ },
+ "registered": Emoji{
+ Keywords: []string{"alphabet", "circle"},
+ Char: "ยฎ๏ธ",
+ Category: "symbols",
+ },
+ "relaxed": Emoji{
+ Keywords: []string{"face", "blush", "massage", "happiness"},
+ Char: "โ˜บ๏ธ",
+ Category: "people",
+ },
+ "relieved": Emoji{
+ Keywords: []string{"face", "relaxed", "phew", "massage", "happiness"},
+ Char: "๐Ÿ˜Œ",
+ Category: "people",
+ },
+ "reminder_ribbon": Emoji{
+ Keywords: []string{"sports", "cause", "support", "awareness"},
+ Char: "๐ŸŽ—",
+ Category: "activity",
+ },
+ "repeat": Emoji{
+ Keywords: []string{"loop", "record"},
+ Char: "๐Ÿ”",
+ Category: "symbols",
+ },
+ "repeat_one": Emoji{
+ Keywords: []string{"blue-square", "loop"},
+ Char: "๐Ÿ”‚",
+ Category: "symbols",
+ },
+ "rescue_worker_helmet": Emoji{
+ Keywords: []string{"construction", "build"},
+ Char: "โ›‘",
+ Category: "people",
+ },
+ "restroom": Emoji{
+ Keywords: []string{"blue-square", "toilet", "refresh", "wc", "gender"},
+ Char: "๐Ÿšป",
+ Category: "symbols",
+ },
+ "reunion": Emoji{
+ Keywords: []string{"rรฉunion", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ท๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "revolving_hearts": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’ž",
+ Category: "symbols",
+ },
+ "rewind": Emoji{
+ Keywords: []string{"play", "blue-square"},
+ Char: "โช",
+ Category: "symbols",
+ },
+ "rhinoceros": Emoji{
+ Keywords: []string{"animal", "nature", "horn"},
+ Char: "๐Ÿฆ",
+ Category: "animals_and_nature",
+ },
+ "ribbon": Emoji{
+ Keywords: []string{"decoration", "pink", "girl", "bowtie"},
+ Char: "๐ŸŽ€",
+ Category: "objects",
+ },
+ "rice": Emoji{
+ Keywords: []string{"food", "china", "asian"},
+ Char: "๐Ÿš",
+ Category: "food_and_drink",
+ },
+ "rice_ball": Emoji{
+ Keywords: []string{"food", "japanese"},
+ Char: "๐Ÿ™",
+ Category: "food_and_drink",
+ },
+ "rice_cracker": Emoji{
+ Keywords: []string{"food", "japanese"},
+ Char: "๐Ÿ˜",
+ Category: "food_and_drink",
+ },
+ "rice_scene": Emoji{
+ Keywords: []string{"photo", "japan", "asia", "tsukimi"},
+ Char: "๐ŸŽ‘",
+ Category: "travel_and_places",
+ },
+ "right_anger_bubble": Emoji{
+ Keywords: []string{"caption", "speech", "thinking", "mad"},
+ Char: "๐Ÿ—ฏ",
+ Category: "symbols",
+ },
+ "ring": Emoji{
+ Keywords: []string{"wedding", "propose", "marriage", "valentines", "diamond", "fashion", "jewelry", "gem", "engagement"},
+ Char: "๐Ÿ’",
+ Category: "people",
+ },
+ "robot": Emoji{
+ Keywords: []string{"computer", "machine", "bot"},
+ Char: "๐Ÿค–",
+ Category: "people",
+ },
+ "rocket": Emoji{
+ Keywords: []string{"launch", "ship", "staffmode", "NASA", "outer space", "outer_space", "fly"},
+ Char: "๐Ÿš€",
+ Category: "travel_and_places",
+ },
+ "rofl": Emoji{
+ Keywords: []string{"face", "rolling", "floor", "laughing", "lol", "haha"},
+ Char: "๐Ÿคฃ",
+ Category: "people",
+ },
+ "roll_eyes": Emoji{
+ Keywords: []string{"face", "eyeroll", "frustrated"},
+ Char: "๐Ÿ™„",
+ Category: "people",
+ },
+ "roller_coaster": Emoji{
+ Keywords: []string{"carnival", "playground", "photo", "fun"},
+ Char: "๐ŸŽข",
+ Category: "travel_and_places",
+ },
+ "romania": Emoji{
+ Keywords: []string{"ro", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ท๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "rooster": Emoji{
+ Keywords: []string{"animal", "nature", "chicken"},
+ Char: "๐Ÿ“",
+ Category: "animals_and_nature",
+ },
+ "rose": Emoji{
+ Keywords: []string{"flowers", "valentines", "love", "spring"},
+ Char: "๐ŸŒน",
+ Category: "animals_and_nature",
+ },
+ "rosette": Emoji{
+ Keywords: []string{"flower", "decoration", "military"},
+ Char: "๐Ÿต",
+ Category: "activity",
+ },
+ "rotating_light": Emoji{
+ Keywords: []string{"police", "ambulance", "911", "emergency", "alert", "error", "pinged", "law", "legal"},
+ Char: "๐Ÿšจ",
+ Category: "travel_and_places",
+ },
+ "round_pushpin": Emoji{
+ Keywords: []string{"stationery", "location", "map", "here"},
+ Char: "๐Ÿ“",
+ Category: "objects",
+ },
+ "rowing_man": Emoji{
+ Keywords: []string{"sports", "hobby", "water", "ship"},
+ Char: "๐Ÿšฃ",
+ Category: "activity",
+ },
+ "rowing_woman": Emoji{
+ Keywords: []string{"sports", "hobby", "water", "ship", "woman", "female"},
+ Char: "๐Ÿšฃโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "ru": Emoji{
+ Keywords: []string{"russian", "federation", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ท๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "rugby_football": Emoji{
+ Keywords: []string{"sports", "team"},
+ Char: "๐Ÿ‰",
+ Category: "activity",
+ },
+ "running_man": Emoji{
+ Keywords: []string{"man", "walking", "exercise", "race", "running"},
+ Char: "๐Ÿƒ",
+ Category: "people",
+ },
+ "running_shirt_with_sash": Emoji{
+ Keywords: []string{"play", "pageant"},
+ Char: "๐ŸŽฝ",
+ Category: "activity",
+ },
+ "running_woman": Emoji{
+ Keywords: []string{"woman", "walking", "exercise", "race", "running", "female"},
+ Char: "๐Ÿƒโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "rwanda": Emoji{
+ Keywords: []string{"rw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ท๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "sa": Emoji{
+ Keywords: []string{"japanese", "blue-square", "katakana"},
+ Char: "๐Ÿˆ‚๏ธ",
+ Category: "symbols",
+ },
+ "sagittarius": Emoji{
+ Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
+ Char: "โ™",
+ Category: "symbols",
+ },
+ "sailboat": Emoji{
+ Keywords: []string{"ship", "summer", "transportation", "water", "sailing"},
+ Char: "โ›ต",
+ Category: "travel_and_places",
+ },
+ "sake": Emoji{
+ Keywords: []string{"wine", "drink", "drunk", "beverage", "japanese", "alcohol", "booze"},
+ Char: "๐Ÿถ",
+ Category: "food_and_drink",
+ },
+ "samoa": Emoji{
+ Keywords: []string{"ws", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ผ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "san_marino": Emoji{
+ Keywords: []string{"san", "marino", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "sandal": Emoji{
+ Keywords: []string{"shoes", "fashion", "flip flops"},
+ Char: "๐Ÿ‘ก",
+ Category: "people",
+ },
+ "santa": Emoji{
+ Keywords: []string{"festival", "man", "male", "xmas", "father christmas"},
+ Char: "๐ŸŽ…",
+ Category: "people",
+ },
+ "sao_tome_principe": Emoji{
+ Keywords: []string{"sao", "tome", "principe", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡น",
+ Category: "flags",
+ },
+ "satellite": Emoji{
+ Keywords: []string{"communication", "future", "radio", "space"},
+ Char: "๐Ÿ“ก",
+ Category: "objects",
+ },
+ "saudi_arabia": Emoji{
+ Keywords: []string{"flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "saxophone": Emoji{
+ Keywords: []string{"music", "instrument", "jazz", "blues"},
+ Char: "๐ŸŽท",
+ Category: "activity",
+ },
+ "school": Emoji{
+ Keywords: []string{"building", "student", "education", "learn", "teach"},
+ Char: "๐Ÿซ",
+ Category: "travel_and_places",
+ },
+ "school_satchel": Emoji{
+ Keywords: []string{"student", "education", "bag", "backpack"},
+ Char: "๐ŸŽ’",
+ Category: "people",
+ },
+ "scissors": Emoji{
+ Keywords: []string{"stationery", "cut"},
+ Char: "โœ‚๏ธ",
+ Category: "objects",
+ },
+ "scorpion": Emoji{
+ Keywords: []string{"animal", "arachnid"},
+ Char: "๐Ÿฆ‚",
+ Category: "animals_and_nature",
+ },
+ "scorpius": Emoji{
+ Keywords: []string{"sign", "zodiac", "purple-square", "astrology", "scorpio"},
+ Char: "โ™",
+ Category: "symbols",
+ },
+ "scream": Emoji{
+ Keywords: []string{"face", "munch", "scared", "omg"},
+ Char: "๐Ÿ˜ฑ",
+ Category: "people",
+ },
+ "scream_cat": Emoji{
+ Keywords: []string{"animal", "cats", "munch", "scared", "scream"},
+ Char: "๐Ÿ™€",
+ Category: "people",
+ },
+ "scroll": Emoji{
+ Keywords: []string{"documents", "ancient", "history", "paper"},
+ Char: "๐Ÿ“œ",
+ Category: "objects",
+ },
+ "seat": Emoji{
+ Keywords: []string{"sit", "airplane", "transport", "bus", "flight", "fly"},
+ Char: "๐Ÿ’บ",
+ Category: "travel_and_places",
+ },
+ "secret": Emoji{
+ Keywords: []string{"privacy", "chinese", "sshh", "kanji", "red-circle"},
+ Char: "ใŠ™๏ธ",
+ Category: "symbols",
+ },
+ "see_no_evil": Emoji{
+ Keywords: []string{"monkey", "animal", "nature", "haha"},
+ Char: "๐Ÿ™ˆ",
+ Category: "animals_and_nature",
+ },
+ "seedling": Emoji{
+ Keywords: []string{"plant", "nature", "grass", "lawn", "spring"},
+ Char: "๐ŸŒฑ",
+ Category: "animals_and_nature",
+ },
+ "selfie": Emoji{
+ Keywords: []string{"camera", "phone"},
+ Char: "๐Ÿคณ",
+ Category: "people",
+ },
+ "senegal": Emoji{
+ Keywords: []string{"sn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "serbia": Emoji{
+ Keywords: []string{"rs", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ท๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "seven": Emoji{
+ Keywords: []string{"7", "numbers", "blue-square", "prime"},
+ Char: "7๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "seychelles": Emoji{
+ Keywords: []string{"sc", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "shallow_pan_of_food": Emoji{
+ Keywords: []string{"food", "cooking", "casserole", "paella"},
+ Char: "๐Ÿฅ˜",
+ Category: "food_and_drink",
+ },
+ "shamrock": Emoji{
+ Keywords: []string{"vegetable", "plant", "nature", "irish", "clover"},
+ Char: "โ˜˜",
+ Category: "animals_and_nature",
+ },
+ "shark": Emoji{
+ Keywords: []string{"animal", "nature", "fish", "sea", "ocean", "jaws", "fins", "beach"},
+ Char: "๐Ÿฆˆ",
+ Category: "animals_and_nature",
+ },
+ "shaved_ice": Emoji{
+ Keywords: []string{"hot", "dessert", "summer"},
+ Char: "๐Ÿง",
+ Category: "food_and_drink",
+ },
+ "sheep": Emoji{
+ Keywords: []string{"animal", "nature", "wool", "shipit"},
+ Char: "๐Ÿ‘",
+ Category: "animals_and_nature",
+ },
+ "shell": Emoji{
+ Keywords: []string{"nature", "sea", "beach"},
+ Char: "๐Ÿš",
+ Category: "animals_and_nature",
+ },
+ "shield": Emoji{
+ Keywords: []string{"protection", "security"},
+ Char: "๐Ÿ›ก",
+ Category: "objects",
+ },
+ "shinto_shrine": Emoji{
+ Keywords: []string{"temple", "japan", "kyoto"},
+ Char: "โ›ฉ",
+ Category: "travel_and_places",
+ },
+ "ship": Emoji{
+ Keywords: []string{"transportation", "titanic", "deploy"},
+ Char: "๐Ÿšข",
+ Category: "travel_and_places",
+ },
+ "shipit": Emoji{
+ Keywords: []string{"squirrel", "detective", "animal", "sherlock", "inspector", "custom_"},
+ Char: "",
+ Category: "_custom",
+ },
+ "shopping": Emoji{
+ Keywords: []string{"mall", "buy", "purchase"},
+ Char: "๐Ÿ›",
+ Category: "objects",
+ },
+ "shopping_cart": Emoji{
+ Keywords: []string{"trolley"},
+ Char: "๐Ÿ›’",
+ Category: "objects",
+ },
+ "shower": Emoji{
+ Keywords: []string{"clean", "water", "bathroom"},
+ Char: "๐Ÿšฟ",
+ Category: "objects",
+ },
+ "shrimp": Emoji{
+ Keywords: []string{"animal", "ocean", "nature", "seafood"},
+ Char: "๐Ÿฆ",
+ Category: "animals_and_nature",
+ },
+ "sierra_leone": Emoji{
+ Keywords: []string{"sierra", "leone", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "signal_strength": Emoji{
+ Keywords: []string{"blue-square", "reception", "phone", "internet", "connection", "wifi", "bluetooth", "bars"},
+ Char: "๐Ÿ“ถ",
+ Category: "symbols",
+ },
+ "singapore": Emoji{
+ Keywords: []string{"sg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "sint_maarten": Emoji{
+ Keywords: []string{"sint", "maarten", "dutch", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฝ",
+ Category: "flags",
+ },
+ "six": Emoji{
+ Keywords: []string{"6", "numbers", "blue-square"},
+ Char: "6๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "six_pointed_star": Emoji{
+ Keywords: []string{"purple-square", "religion", "jewish", "hexagram"},
+ Char: "๐Ÿ”ฏ",
+ Category: "symbols",
+ },
+ "ski": Emoji{
+ Keywords: []string{"sports", "winter", "cold", "snow"},
+ Char: "๐ŸŽฟ",
+ Category: "activity",
+ },
+ "skier": Emoji{
+ Keywords: []string{"sports", "winter", "snow"},
+ Char: "โ›ท",
+ Category: "activity",
+ },
+ "skull": Emoji{
+ Keywords: []string{"dead", "skeleton", "creepy"},
+ Char: "๐Ÿ’€",
+ Category: "people",
+ },
+ "skull_and_crossbones": Emoji{
+ Keywords: []string{"poison", "danger", "deadly", "scary"},
+ Char: "โ˜ ",
+ Category: "objects",
+ },
+ "sleeping": Emoji{
+ Keywords: []string{"face", "tired", "sleepy", "night", "zzz"},
+ Char: "๐Ÿ˜ด",
+ Category: "people",
+ },
+ "sleeping_bed": Emoji{
+ Keywords: []string{"bed", "rest"},
+ Char: "๐Ÿ›Œ",
+ Category: "objects",
+ },
+ "sleepy": Emoji{
+ Keywords: []string{"face", "tired", "rest", "nap"},
+ Char: "๐Ÿ˜ช",
+ Category: "people",
+ },
+ "slightly_frowning_face": Emoji{
+ Keywords: []string{"face", "frowning", "disappointed", "sad", "upset"},
+ Char: "๐Ÿ™",
+ Category: "people",
+ },
+ "slightly_smiling_face": Emoji{
+ Keywords: []string{"face", "smile"},
+ Char: "๐Ÿ™‚",
+ Category: "people",
+ },
+ "slot_machine": Emoji{
+ Keywords: []string{"bet", "gamble", "vegas", "fruit machine", "luck", "casino"},
+ Char: "๐ŸŽฐ",
+ Category: "activity",
+ },
+ "slovakia": Emoji{
+ Keywords: []string{"sk", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "slovenia": Emoji{
+ Keywords: []string{"si", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "small_airplane": Emoji{
+ Keywords: []string{"flight", "transportation", "fly", "vehicle"},
+ Char: "๐Ÿ›ฉ",
+ Category: "travel_and_places",
+ },
+ "small_blue_diamond": Emoji{
+ Keywords: []string{"shape", "jewel", "gem"},
+ Char: "๐Ÿ”น",
+ Category: "symbols",
+ },
+ "small_orange_diamond": Emoji{
+ Keywords: []string{"shape", "jewel", "gem"},
+ Char: "๐Ÿ”ธ",
+ Category: "symbols",
+ },
+ "small_red_triangle": Emoji{
+ Keywords: []string{"shape", "direction", "up", "top"},
+ Char: "๐Ÿ”บ",
+ Category: "symbols",
+ },
+ "small_red_triangle_down": Emoji{
+ Keywords: []string{"shape", "direction", "bottom"},
+ Char: "๐Ÿ”ป",
+ Category: "symbols",
+ },
+ "smile": Emoji{
+ Keywords: []string{"face", "happy", "joy", "funny", "haha", "laugh", "like", ":D", ":)"},
+ Char: "๐Ÿ˜„",
+ Category: "people",
+ },
+ "smile_cat": Emoji{
+ Keywords: []string{"animal", "cats", "smile"},
+ Char: "๐Ÿ˜ธ",
+ Category: "people",
+ },
+ "smiley": Emoji{
+ Keywords: []string{"face", "happy", "joy", "haha", ":D", ":)", "smile", "funny"},
+ Char: "๐Ÿ˜ƒ",
+ Category: "people",
+ },
+ "smiley_cat": Emoji{
+ Keywords: []string{"animal", "cats", "happy", "smile"},
+ Char: "๐Ÿ˜บ",
+ Category: "people",
+ },
+ "smiling_imp": Emoji{
+ Keywords: []string{"devil", "horns"},
+ Char: "๐Ÿ˜ˆ",
+ Category: "people",
+ },
+ "smirk": Emoji{
+ Keywords: []string{"face", "smile", "mean", "prank", "smug", "sarcasm"},
+ Char: "๐Ÿ˜",
+ Category: "people",
+ },
+ "smirk_cat": Emoji{
+ Keywords: []string{"animal", "cats", "smirk"},
+ Char: "๐Ÿ˜ผ",
+ Category: "people",
+ },
+ "smoking": Emoji{
+ Keywords: []string{"kills", "tobacco", "cigarette", "joint", "smoke"},
+ Char: "๐Ÿšฌ",
+ Category: "objects",
+ },
+ "snail": Emoji{
+ Keywords: []string{"slow", "animal", "shell"},
+ Char: "๐ŸŒ",
+ Category: "animals_and_nature",
+ },
+ "snake": Emoji{
+ Keywords: []string{"animal", "evil", "nature", "hiss", "python"},
+ Char: "๐Ÿ",
+ Category: "animals_and_nature",
+ },
+ "sneezing_face": Emoji{
+ Keywords: []string{"face", "gesundheit", "sneeze", "sick", "allergy"},
+ Char: "๐Ÿคง",
+ Category: "people",
+ },
+ "snowboarder": Emoji{
+ Keywords: []string{"sports", "winter"},
+ Char: "๐Ÿ‚",
+ Category: "activity",
+ },
+ "snowflake": Emoji{
+ Keywords: []string{"winter", "season", "cold", "weather", "christmas", "xmas"},
+ Char: "โ„๏ธ",
+ Category: "animals_and_nature",
+ },
+ "snowman": Emoji{
+ Keywords: []string{"winter", "season", "cold", "weather", "christmas", "xmas", "frozen", "without_snow"},
+ Char: "โ›„",
+ Category: "animals_and_nature",
+ },
+ "snowman_with_snow": Emoji{
+ Keywords: []string{"winter", "season", "cold", "weather", "christmas", "xmas", "frozen"},
+ Char: "โ˜ƒ",
+ Category: "animals_and_nature",
+ },
+ "sob": Emoji{
+ Keywords: []string{"face", "cry", "tears", "sad", "upset", "depressed"},
+ Char: "๐Ÿ˜ญ",
+ Category: "people",
+ },
+ "soccer": Emoji{
+ Keywords: []string{"sports", "football"},
+ Char: "โšฝ",
+ Category: "activity",
+ },
+ "solomon_islands": Emoji{
+ Keywords: []string{"solomon", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ง",
+ Category: "flags",
+ },
+ "somalia": Emoji{
+ Keywords: []string{"so", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "soon": Emoji{
+ Keywords: []string{"arrow", "words"},
+ Char: "๐Ÿ”œ",
+ Category: "symbols",
+ },
+ "sos": Emoji{
+ Keywords: []string{"help", "red-square", "words", "emergency", "911"},
+ Char: "๐Ÿ†˜",
+ Category: "symbols",
+ },
+ "sound": Emoji{
+ Keywords: []string{"volume", "speaker", "broadcast"},
+ Char: "๐Ÿ”‰",
+ Category: "symbols",
+ },
+ "south_africa": Emoji{
+ Keywords: []string{"south", "africa", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฟ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "south_georgia_south_sandwich_islands": Emoji{
+ Keywords: []string{"south", "georgia", "sandwich", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "south_sudan": Emoji{
+ Keywords: []string{"south", "sd", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "space_invader": Emoji{
+ Keywords: []string{"game", "arcade", "play"},
+ Char: "๐Ÿ‘พ",
+ Category: "activity",
+ },
+ "spades": Emoji{
+ Keywords: []string{"poker", "cards", "suits", "magic"},
+ Char: "โ™ ๏ธ",
+ Category: "symbols",
+ },
+ "spaghetti": Emoji{
+ Keywords: []string{"food", "italian", "noodle"},
+ Char: "๐Ÿ",
+ Category: "food_and_drink",
+ },
+ "sparkle": Emoji{
+ Keywords: []string{"stars", "green-square", "awesome", "good", "fireworks"},
+ Char: "โ‡๏ธ",
+ Category: "symbols",
+ },
+ "sparkler": Emoji{
+ Keywords: []string{"stars", "night", "shine"},
+ Char: "๐ŸŽ‡",
+ Category: "travel_and_places",
+ },
+ "sparkles": Emoji{
+ Keywords: []string{"stars", "shine", "shiny", "cool", "awesome", "good", "magic"},
+ Char: "โœจ",
+ Category: "animals_and_nature",
+ },
+ "sparkling_heart": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’–",
+ Category: "symbols",
+ },
+ "speak_no_evil": Emoji{
+ Keywords: []string{"monkey", "animal", "nature", "omg"},
+ Char: "๐Ÿ™Š",
+ Category: "animals_and_nature",
+ },
+ "speaker": Emoji{
+ Keywords: []string{"sound", "volume", "silence", "broadcast"},
+ Char: "๐Ÿ”ˆ",
+ Category: "symbols",
+ },
+ "speaking_head": Emoji{
+ Keywords: []string{"user", "person", "human", "sing", "say", "talk"},
+ Char: "๐Ÿ—ฃ",
+ Category: "people",
+ },
+ "speech_balloon": Emoji{
+ Keywords: []string{"bubble", "words", "message", "talk", "chatting"},
+ Char: "๐Ÿ’ฌ",
+ Category: "symbols",
+ },
+ "speedboat": Emoji{
+ Keywords: []string{"ship", "transportation", "vehicle", "summer"},
+ Char: "๐Ÿšค",
+ Category: "travel_and_places",
+ },
+ "spider": Emoji{
+ Keywords: []string{"animal", "arachnid"},
+ Char: "๐Ÿ•ท",
+ Category: "animals_and_nature",
+ },
+ "spider_web": Emoji{
+ Keywords: []string{"animal", "insect", "arachnid", "silk"},
+ Char: "๐Ÿ•ธ",
+ Category: "animals_and_nature",
+ },
+ "spiral_calendar": Emoji{
+ Keywords: []string{"date", "schedule", "planning"},
+ Char: "๐Ÿ—“",
+ Category: "objects",
+ },
+ "spiral_notepad": Emoji{
+ Keywords: []string{"memo", "stationery"},
+ Char: "๐Ÿ—’",
+ Category: "objects",
+ },
+ "spoon": Emoji{
+ Keywords: []string{"cutlery", "kitchen", "tableware"},
+ Char: "๐Ÿฅ„",
+ Category: "food_and_drink",
+ },
+ "squid": Emoji{
+ Keywords: []string{"animal", "nature", "ocean", "sea"},
+ Char: "๐Ÿฆ‘",
+ Category: "animals_and_nature",
+ },
+ "sri_lanka": Emoji{
+ Keywords: []string{"sri", "lanka", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "st_barthelemy": Emoji{
+ Keywords: []string{"saint", "barthรฉlemy", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ง๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "st_helena": Emoji{
+ Keywords: []string{"saint", "helena", "ascension", "tristan", "cunha", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "st_kitts_nevis": Emoji{
+ Keywords: []string{"saint", "kitts", "nevis", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฐ๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "st_lucia": Emoji{
+ Keywords: []string{"saint", "lucia", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฑ๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "st_pierre_miquelon": Emoji{
+ Keywords: []string{"saint", "pierre", "miquelon", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ต๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "st_vincent_grenadines": Emoji{
+ Keywords: []string{"saint", "vincent", "grenadines", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "stadium": Emoji{
+ Keywords: []string{"photo", "place", "sports", "concert", "venue"},
+ Char: "๐ŸŸ",
+ Category: "travel_and_places",
+ },
+ "star": Emoji{
+ Keywords: []string{"night", "yellow"},
+ Char: "โญ",
+ Category: "animals_and_nature",
+ },
+ "star2": Emoji{
+ Keywords: []string{"night", "sparkle", "awesome", "good", "magic"},
+ Char: "๐ŸŒŸ",
+ Category: "animals_and_nature",
+ },
+ "star_and_crescent": Emoji{
+ Keywords: []string{"islam"},
+ Char: "โ˜ช",
+ Category: "symbols",
+ },
+ "star_of_david": Emoji{
+ Keywords: []string{"judaism"},
+ Char: "โœก",
+ Category: "symbols",
+ },
+ "stars": Emoji{
+ Keywords: []string{"night", "photo"},
+ Char: "๐ŸŒ ",
+ Category: "travel_and_places",
+ },
+ "station": Emoji{
+ Keywords: []string{"transportation", "vehicle", "public"},
+ Char: "๐Ÿš‰",
+ Category: "travel_and_places",
+ },
+ "statue_of_liberty": Emoji{
+ Keywords: []string{"american", "newyork"},
+ Char: "๐Ÿ—ฝ",
+ Category: "travel_and_places",
+ },
+ "steam_locomotive": Emoji{
+ Keywords: []string{"transportation", "vehicle", "train"},
+ Char: "๐Ÿš‚",
+ Category: "travel_and_places",
+ },
+ "stew": Emoji{
+ Keywords: []string{"food", "meat", "soup"},
+ Char: "๐Ÿฒ",
+ Category: "food_and_drink",
+ },
+ "stop_button": Emoji{
+ Keywords: []string{"blue-square"},
+ Char: "โน",
+ Category: "symbols",
+ },
+ "stop_sign": Emoji{
+ Keywords: []string{"stop"},
+ Char: "๐Ÿ›‘",
+ Category: "symbols",
+ },
+ "stopwatch": Emoji{
+ Keywords: []string{"time", "deadline"},
+ Char: "โฑ",
+ Category: "objects",
+ },
+ "straight_ruler": Emoji{
+ Keywords: []string{"stationery", "calculate", "length", "math", "school", "drawing", "architect", "sketch"},
+ Char: "๐Ÿ“",
+ Category: "objects",
+ },
+ "strawberry": Emoji{
+ Keywords: []string{"fruit", "food", "nature"},
+ Char: "๐Ÿ“",
+ Category: "food_and_drink",
+ },
+ "stuck_out_tongue": Emoji{
+ Keywords: []string{"face", "prank", "childish", "playful", "mischievous", "smile", "tongue"},
+ Char: "๐Ÿ˜›",
+ Category: "people",
+ },
+ "stuck_out_tongue_closed_eyes": Emoji{
+ Keywords: []string{"face", "prank", "playful", "mischievous", "smile", "tongue"},
+ Char: "๐Ÿ˜",
+ Category: "people",
+ },
+ "stuck_out_tongue_winking_eye": Emoji{
+ Keywords: []string{"face", "prank", "childish", "playful", "mischievous", "smile", "wink", "tongue"},
+ Char: "๐Ÿ˜œ",
+ Category: "people",
+ },
+ "studio_microphone": Emoji{
+ Keywords: []string{"sing", "recording", "artist", "talkshow"},
+ Char: "๐ŸŽ™",
+ Category: "objects",
+ },
+ "stuffed_flatbread": Emoji{
+ Keywords: []string{"food", "flatbread", "stuffed", "gyro"},
+ Char: "๐Ÿฅ™",
+ Category: "food_and_drink",
+ },
+ "sudan": Emoji{
+ Keywords: []string{"sd", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฉ",
+ Category: "flags",
+ },
+ "sun_behind_large_cloud": Emoji{
+ Keywords: []string{"weather"},
+ Char: "๐ŸŒฅ",
+ Category: "animals_and_nature",
+ },
+ "sun_behind_rain_cloud": Emoji{
+ Keywords: []string{"weather"},
+ Char: "๐ŸŒฆ",
+ Category: "animals_and_nature",
+ },
+ "sun_behind_small_cloud": Emoji{
+ Keywords: []string{"weather"},
+ Char: "๐ŸŒค",
+ Category: "animals_and_nature",
+ },
+ "sun_with_face": Emoji{
+ Keywords: []string{"nature", "morning", "sky"},
+ Char: "๐ŸŒž",
+ Category: "animals_and_nature",
+ },
+ "sunflower": Emoji{
+ Keywords: []string{"nature", "plant", "fall"},
+ Char: "๐ŸŒป",
+ Category: "animals_and_nature",
+ },
+ "sunglasses": Emoji{
+ Keywords: []string{"face", "cool", "smile", "summer", "beach", "sunglass"},
+ Char: "๐Ÿ˜Ž",
+ Category: "people",
+ },
+ "sunny": Emoji{
+ Keywords: []string{"weather", "nature", "brightness", "summer", "beach", "spring"},
+ Char: "โ˜€๏ธ",
+ Category: "animals_and_nature",
+ },
+ "sunrise": Emoji{
+ Keywords: []string{"morning", "view", "vacation", "photo"},
+ Char: "๐ŸŒ…",
+ Category: "travel_and_places",
+ },
+ "sunrise_over_mountains": Emoji{
+ Keywords: []string{"view", "vacation", "photo"},
+ Char: "๐ŸŒ„",
+ Category: "travel_and_places",
+ },
+ "surfing_man": Emoji{
+ Keywords: []string{"sports", "ocean", "sea", "summer", "beach"},
+ Char: "๐Ÿ„",
+ Category: "activity",
+ },
+ "surfing_woman": Emoji{
+ Keywords: []string{"sports", "ocean", "sea", "summer", "beach", "woman", "female"},
+ Char: "๐Ÿ„โ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "suriname": Emoji{
+ Keywords: []string{"sr", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "sushi": Emoji{
+ Keywords: []string{"food", "fish", "japanese", "rice"},
+ Char: "๐Ÿฃ",
+ Category: "food_and_drink",
+ },
+ "suspect": Emoji{
+ Keywords: []string{"mad", "custom_"},
+ Char: "",
+ Category: "_custom",
+ },
+ "suspension_railway": Emoji{
+ Keywords: []string{"vehicle", "transportation"},
+ Char: "๐ŸšŸ",
+ Category: "travel_and_places",
+ },
+ "swaziland": Emoji{
+ Keywords: []string{"sz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "sweat": Emoji{
+ Keywords: []string{"face", "hot", "sad", "tired", "exercise"},
+ Char: "๐Ÿ˜“",
+ Category: "people",
+ },
+ "sweat_drops": Emoji{
+ Keywords: []string{"water", "drip", "oops"},
+ Char: "๐Ÿ’ฆ",
+ Category: "animals_and_nature",
+ },
+ "sweat_smile": Emoji{
+ Keywords: []string{"face", "hot", "happy", "laugh", "sweat", "smile", "relief"},
+ Char: "๐Ÿ˜…",
+ Category: "people",
+ },
+ "sweden": Emoji{
+ Keywords: []string{"se", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "sweet_potato": Emoji{
+ Keywords: []string{"food", "nature"},
+ Char: "๐Ÿ ",
+ Category: "food_and_drink",
+ },
+ "swimming_man": Emoji{
+ Keywords: []string{"sports", "exercise", "human", "athlete", "water", "summer"},
+ Char: "๐ŸŠ",
+ Category: "activity",
+ },
+ "swimming_woman": Emoji{
+ Keywords: []string{"sports", "exercise", "human", "athlete", "water", "summer", "woman", "female"},
+ Char: "๐ŸŠโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "switzerland": Emoji{
+ Keywords: []string{"ch", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡จ๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "symbols": Emoji{
+ Keywords: []string{"blue-square", "music", "note", "ampersand", "percent", "glyphs", "characters"},
+ Char: "๐Ÿ”ฃ",
+ Category: "symbols",
+ },
+ "synagogue": Emoji{
+ Keywords: []string{"judaism", "worship", "temple", "jewish"},
+ Char: "๐Ÿ•",
+ Category: "travel_and_places",
+ },
+ "syria": Emoji{
+ Keywords: []string{"syrian", "arab", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ธ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "syringe": Emoji{
+ Keywords: []string{"health", "hospital", "drugs", "blood", "medicine", "needle", "doctor", "nurse"},
+ Char: "๐Ÿ’‰",
+ Category: "objects",
+ },
+ "taco": Emoji{
+ Keywords: []string{"food", "mexican"},
+ Char: "๐ŸŒฎ",
+ Category: "food_and_drink",
+ },
+ "tada": Emoji{
+ Keywords: []string{"party", "congratulations", "birthday", "magic", "circus", "celebration"},
+ Char: "๐ŸŽ‰",
+ Category: "objects",
+ },
+ "taiwan": Emoji{
+ Keywords: []string{"tw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "tajikistan": Emoji{
+ Keywords: []string{"tj", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฏ",
+ Category: "flags",
+ },
+ "tanabata_tree": Emoji{
+ Keywords: []string{"plant", "nature", "branch", "summer"},
+ Char: "๐ŸŽ‹",
+ Category: "animals_and_nature",
+ },
+ "tangerine": Emoji{
+ Keywords: []string{"food", "fruit", "nature", "orange"},
+ Char: "๐ŸŠ",
+ Category: "food_and_drink",
+ },
+ "tanzania": Emoji{
+ Keywords: []string{"tanzania,", "united", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "taurus": Emoji{
+ Keywords: []string{"purple-square", "sign", "zodiac", "astrology"},
+ Char: "โ™‰",
+ Category: "symbols",
+ },
+ "taxi": Emoji{
+ Keywords: []string{"uber", "vehicle", "cars", "transportation"},
+ Char: "๐Ÿš•",
+ Category: "travel_and_places",
+ },
+ "tea": Emoji{
+ Keywords: []string{"drink", "bowl", "breakfast", "green", "british"},
+ Char: "๐Ÿต",
+ Category: "food_and_drink",
+ },
+ "telephone_receiver": Emoji{
+ Keywords: []string{"technology", "communication", "dial"},
+ Char: "๐Ÿ“ž",
+ Category: "objects",
+ },
+ "telescope": Emoji{
+ Keywords: []string{"stars", "space", "zoom"},
+ Char: "๐Ÿ”ญ",
+ Category: "objects",
+ },
+ "tennis": Emoji{
+ Keywords: []string{"sports", "balls", "green"},
+ Char: "๐ŸŽพ",
+ Category: "activity",
+ },
+ "tent": Emoji{
+ Keywords: []string{"photo", "camping", "outdoors"},
+ Char: "โ›บ",
+ Category: "travel_and_places",
+ },
+ "thailand": Emoji{
+ Keywords: []string{"th", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "thermometer": Emoji{
+ Keywords: []string{"weather", "temperature", "hot", "cold"},
+ Char: "๐ŸŒก",
+ Category: "objects",
+ },
+ "thinking": Emoji{
+ Keywords: []string{"face", "hmmm", "think", "consider"},
+ Char: "๐Ÿค”",
+ Category: "people",
+ },
+ "thought_balloon": Emoji{
+ Keywords: []string{"bubble", "cloud", "speech", "thinking", "dream"},
+ Char: "๐Ÿ’ญ",
+ Category: "symbols",
+ },
+ "three": Emoji{
+ Keywords: []string{"3", "numbers", "prime", "blue-square"},
+ Char: "3๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "ticket": Emoji{
+ Keywords: []string{"event", "concert", "pass"},
+ Char: "๐ŸŽซ",
+ Category: "activity",
+ },
+ "tickets": Emoji{
+ Keywords: []string{"sports", "concert", "entrance"},
+ Char: "๐ŸŽŸ",
+ Category: "activity",
+ },
+ "tiger": Emoji{
+ Keywords: []string{"animal", "cat", "danger", "wild", "nature", "roar"},
+ Char: "๐Ÿฏ",
+ Category: "animals_and_nature",
+ },
+ "tiger2": Emoji{
+ Keywords: []string{"animal", "nature", "roar"},
+ Char: "๐Ÿ…",
+ Category: "animals_and_nature",
+ },
+ "timer_clock": Emoji{
+ Keywords: []string{"alarm"},
+ Char: "โฒ",
+ Category: "objects",
+ },
+ "timor_leste": Emoji{
+ Keywords: []string{"timor", "leste", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฑ",
+ Category: "flags",
+ },
+ "tipping_hand_man": Emoji{
+ Keywords: []string{"male", "boy", "man", "human", "information"},
+ Char: "๐Ÿ’โ€โ™‚๏ธ",
+ Category: "people",
+ },
+ "tipping_hand_woman": Emoji{
+ Keywords: []string{"female", "girl", "woman", "human", "information"},
+ Char: "๐Ÿ’",
+ Category: "people",
+ },
+ "tired_face": Emoji{
+ Keywords: []string{"sick", "whine", "upset", "frustrated"},
+ Char: "๐Ÿ˜ซ",
+ Category: "people",
+ },
+ "tm": Emoji{
+ Keywords: []string{"trademark", "brand", "law", "legal"},
+ Char: "โ„ข๏ธ",
+ Category: "symbols",
+ },
+ "togo": Emoji{
+ Keywords: []string{"tg", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "toilet": Emoji{
+ Keywords: []string{"restroom", "wc", "washroom", "bathroom", "potty"},
+ Char: "๐Ÿšฝ",
+ Category: "objects",
+ },
+ "tokelau": Emoji{
+ Keywords: []string{"tk", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฐ",
+ Category: "flags",
+ },
+ "tokyo_tower": Emoji{
+ Keywords: []string{"photo", "japanese"},
+ Char: "๐Ÿ—ผ",
+ Category: "travel_and_places",
+ },
+ "tomato": Emoji{
+ Keywords: []string{"fruit", "vegetable", "nature", "food"},
+ Char: "๐Ÿ…",
+ Category: "food_and_drink",
+ },
+ "tonga": Emoji{
+ Keywords: []string{"to", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ด",
+ Category: "flags",
+ },
+ "tongue": Emoji{
+ Keywords: []string{"mouth", "playful"},
+ Char: "๐Ÿ‘…",
+ Category: "people",
+ },
+ "top": Emoji{
+ Keywords: []string{"words", "blue-square"},
+ Char: "๐Ÿ”",
+ Category: "symbols",
+ },
+ "tophat": Emoji{
+ Keywords: []string{"magic", "gentleman", "classy", "circus"},
+ Char: "๐ŸŽฉ",
+ Category: "people",
+ },
+ "tornado": Emoji{
+ Keywords: []string{"weather", "cyclone", "twister"},
+ Char: "๐ŸŒช",
+ Category: "animals_and_nature",
+ },
+ "tr": Emoji{
+ Keywords: []string{"turkey", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ท",
+ Category: "flags",
+ },
+ "trackball": Emoji{
+ Keywords: []string{"technology", "trackpad"},
+ Char: "๐Ÿ–ฒ",
+ Category: "objects",
+ },
+ "tractor": Emoji{
+ Keywords: []string{"vehicle", "car", "farming", "agriculture"},
+ Char: "๐Ÿšœ",
+ Category: "travel_and_places",
+ },
+ "traffic_light": Emoji{
+ Keywords: []string{"transportation", "signal"},
+ Char: "๐Ÿšฅ",
+ Category: "travel_and_places",
+ },
+ "train": Emoji{
+ Keywords: []string{"transportation", "vehicle", "carriage", "public", "travel"},
+ Char: "๐Ÿš‹",
+ Category: "travel_and_places",
+ },
+ "train2": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐Ÿš†",
+ Category: "travel_and_places",
+ },
+ "tram": Emoji{
+ Keywords: []string{"transportation", "vehicle"},
+ Char: "๐ŸšŠ",
+ Category: "travel_and_places",
+ },
+ "triangular_flag_on_post": Emoji{
+ Keywords: []string{"mark", "milestone", "place"},
+ Char: "๐Ÿšฉ",
+ Category: "objects",
+ },
+ "triangular_ruler": Emoji{
+ Keywords: []string{"stationery", "math", "architect", "sketch"},
+ Char: "๐Ÿ“",
+ Category: "objects",
+ },
+ "trident": Emoji{
+ Keywords: []string{"weapon", "spear"},
+ Char: "๐Ÿ”ฑ",
+ Category: "symbols",
+ },
+ "trinidad_tobago": Emoji{
+ Keywords: []string{"trinidad", "tobago", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡น",
+ Category: "flags",
+ },
+ "triumph": Emoji{
+ Keywords: []string{"face", "gas", "phew", "proud", "pride"},
+ Char: "๐Ÿ˜ค",
+ Category: "people",
+ },
+ "trolleybus": Emoji{
+ Keywords: []string{"bart", "transportation", "vehicle"},
+ Char: "๐ŸšŽ",
+ Category: "travel_and_places",
+ },
+ "trollface": Emoji{
+ Keywords: []string{"internet", "meme", "custom_"},
+ Char: "",
+ Category: "_custom",
+ },
+ "trophy": Emoji{
+ Keywords: []string{"win", "award", "contest", "place", "ftw", "ceremony"},
+ Char: "๐Ÿ†",
+ Category: "activity",
+ },
+ "tropical_drink": Emoji{
+ Keywords: []string{"beverage", "cocktail", "summer", "beach", "alcohol", "booze", "mojito"},
+ Char: "๐Ÿน",
+ Category: "food_and_drink",
+ },
+ "tropical_fish": Emoji{
+ Keywords: []string{"animal", "swim", "ocean", "beach", "nemo"},
+ Char: "๐Ÿ ",
+ Category: "animals_and_nature",
+ },
+ "truck": Emoji{
+ Keywords: []string{"cars", "transportation"},
+ Char: "๐Ÿšš",
+ Category: "travel_and_places",
+ },
+ "trumpet": Emoji{
+ Keywords: []string{"music", "brass"},
+ Char: "๐ŸŽบ",
+ Category: "activity",
+ },
+ "tshirt": Emoji{
+ Keywords: []string{"fashion", "cloth", "casual", "shirt", "tee"},
+ Char: "๐Ÿ‘•",
+ Category: "people",
+ },
+ "tulip": Emoji{
+ Keywords: []string{"flowers", "plant", "nature", "summer", "spring"},
+ Char: "๐ŸŒท",
+ Category: "animals_and_nature",
+ },
+ "tumbler_glass": Emoji{
+ Keywords: []string{"drink", "beverage", "drunk", "alcohol", "liquor", "booze", "bourbon", "scotch", "whisky", "glass", "shot"},
+ Char: "๐Ÿฅƒ",
+ Category: "food_and_drink",
+ },
+ "tunisia": Emoji{
+ Keywords: []string{"tn", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "turkey": Emoji{
+ Keywords: []string{"animal", "bird"},
+ Char: "๐Ÿฆƒ",
+ Category: "animals_and_nature",
+ },
+ "turkmenistan": Emoji{
+ Keywords: []string{"flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "turks_caicos_islands": Emoji{
+ Keywords: []string{"turks", "caicos", "islands", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡จ",
+ Category: "flags",
+ },
+ "turtle": Emoji{
+ Keywords: []string{"animal", "slow", "nature", "tortoise"},
+ Char: "๐Ÿข",
+ Category: "animals_and_nature",
+ },
+ "tuvalu": Emoji{
+ Keywords: []string{"flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡น๐Ÿ‡ป",
+ Category: "flags",
+ },
+ "tv": Emoji{
+ Keywords: []string{"technology", "program", "oldschool", "show", "television"},
+ Char: "๐Ÿ“บ",
+ Category: "objects",
+ },
+ "twisted_rightwards_arrows": Emoji{
+ Keywords: []string{"blue-square", "shuffle", "music", "random"},
+ Char: "๐Ÿ”€",
+ Category: "symbols",
+ },
+ "two": Emoji{
+ Keywords: []string{"numbers", "2", "prime", "blue-square"},
+ Char: "2๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "two_hearts": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines", "heart"},
+ Char: "๐Ÿ’•",
+ Category: "symbols",
+ },
+ "two_men_holding_hands": Emoji{
+ Keywords: []string{"pair", "couple", "love", "like", "bromance", "friendship", "people", "human"},
+ Char: "๐Ÿ‘ฌ",
+ Category: "people",
+ },
+ "two_women_holding_hands": Emoji{
+ Keywords: []string{"pair", "friendship", "couple", "love", "like", "female", "people", "human"},
+ Char: "๐Ÿ‘ญ",
+ Category: "people",
+ },
+ "u5272": Emoji{
+ Keywords: []string{"cut", "divide", "chinese", "kanji", "pink-square"},
+ Char: "๐Ÿˆน",
+ Category: "symbols",
+ },
+ "u5408": Emoji{
+ Keywords: []string{"japanese", "chinese", "join", "kanji", "red-square"},
+ Char: "๐Ÿˆด",
+ Category: "symbols",
+ },
+ "u55b6": Emoji{
+ Keywords: []string{"japanese", "opening hours", "orange-square"},
+ Char: "๐Ÿˆบ",
+ Category: "symbols",
+ },
+ "u6307": Emoji{
+ Keywords: []string{"chinese", "point", "green-square", "kanji"},
+ Char: "๐Ÿˆฏ",
+ Category: "symbols",
+ },
+ "u6708": Emoji{
+ Keywords: []string{"chinese", "month", "moon", "japanese", "orange-square", "kanji"},
+ Char: "๐Ÿˆท๏ธ",
+ Category: "symbols",
+ },
+ "u6709": Emoji{
+ Keywords: []string{"orange-square", "chinese", "have", "kanji"},
+ Char: "๐Ÿˆถ",
+ Category: "symbols",
+ },
+ "u6e80": Emoji{
+ Keywords: []string{"full", "chinese", "japanese", "red-square", "kanji"},
+ Char: "๐Ÿˆต",
+ Category: "symbols",
+ },
+ "u7121": Emoji{
+ Keywords: []string{"nothing", "chinese", "kanji", "japanese", "orange-square"},
+ Char: "๐Ÿˆš",
+ Category: "symbols",
+ },
+ "u7533": Emoji{
+ Keywords: []string{"chinese", "japanese", "kanji", "orange-square"},
+ Char: "๐Ÿˆธ",
+ Category: "symbols",
+ },
+ "u7981": Emoji{
+ Keywords: []string{"kanji", "japanese", "chinese", "forbidden", "limit", "restricted", "red-square"},
+ Char: "๐Ÿˆฒ",
+ Category: "symbols",
+ },
+ "u7a7a": Emoji{
+ Keywords: []string{"kanji", "japanese", "chinese", "empty", "sky", "blue-square"},
+ Char: "๐Ÿˆณ",
+ Category: "symbols",
+ },
+ "uganda": Emoji{
+ Keywords: []string{"ug", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡บ๐Ÿ‡ฌ",
+ Category: "flags",
+ },
+ "uk": Emoji{
+ Keywords: []string{"united", "kingdom", "great", "britain", "northern", "ireland", "flag", "nation", "country", "banner", "british", "UK", "english", "england", "union jack"},
+ Char: "๐Ÿ‡ฌ๐Ÿ‡ง",
+ Category: "flags",
+ },
+ "ukraine": Emoji{
+ Keywords: []string{"ua", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡บ๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "umbrella": Emoji{
+ Keywords: []string{"rainy", "weather", "spring"},
+ Char: "โ˜”",
+ Category: "animals_and_nature",
+ },
+ "unamused": Emoji{
+ Keywords: []string{"indifference", "bored", "straight face", "serious", "sarcasm"},
+ Char: "๐Ÿ˜’",
+ Category: "people",
+ },
+ "underage": Emoji{
+ Keywords: []string{"18", "drink", "pub", "night", "minor", "circle"},
+ Char: "๐Ÿ”ž",
+ Category: "symbols",
+ },
+ "unicorn": Emoji{
+ Keywords: []string{"animal", "nature", "mystical"},
+ Char: "๐Ÿฆ„",
+ Category: "animals_and_nature",
+ },
+ "united_arab_emirates": Emoji{
+ Keywords: []string{"united", "arab", "emirates", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฆ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "unlock": Emoji{
+ Keywords: []string{"privacy", "security"},
+ Char: "๐Ÿ”“",
+ Category: "objects",
+ },
+ "up": Emoji{
+ Keywords: []string{"blue-square", "above", "high"},
+ Char: "๐Ÿ†™",
+ Category: "symbols",
+ },
+ "upside_down_face": Emoji{
+ Keywords: []string{"face", "flipped", "silly", "smile"},
+ Char: "๐Ÿ™ƒ",
+ Category: "people",
+ },
+ "uruguay": Emoji{
+ Keywords: []string{"uy", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡บ๐Ÿ‡พ",
+ Category: "flags",
+ },
+ "us": Emoji{
+ Keywords: []string{"united", "states", "america", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡บ๐Ÿ‡ธ",
+ Category: "flags",
+ },
+ "us_virgin_islands": Emoji{
+ Keywords: []string{"virgin", "islands", "us", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡ฎ",
+ Category: "flags",
+ },
+ "uzbekistan": Emoji{
+ Keywords: []string{"uz", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡บ๐Ÿ‡ฟ",
+ Category: "flags",
+ },
+ "v": Emoji{
+ Keywords: []string{"fingers", "ohyeah", "hand", "peace", "victory", "two"},
+ Char: "โœŒ",
+ Category: "people",
+ },
+ "vanuatu": Emoji{
+ Keywords: []string{"vu", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡บ",
+ Category: "flags",
+ },
+ "vatican_city": Emoji{
+ Keywords: []string{"vatican", "city", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡ฆ",
+ Category: "flags",
+ },
+ "venezuela": Emoji{
+ Keywords: []string{"ve", "bolivarian", "republic", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "vertical_traffic_light": Emoji{
+ Keywords: []string{"transportation", "driving"},
+ Char: "๐Ÿšฆ",
+ Category: "travel_and_places",
+ },
+ "vhs": Emoji{
+ Keywords: []string{"record", "video", "oldschool", "90s", "80s"},
+ Char: "๐Ÿ“ผ",
+ Category: "objects",
+ },
+ "vibration_mode": Emoji{
+ Keywords: []string{"orange-square", "phone"},
+ Char: "๐Ÿ“ณ",
+ Category: "symbols",
+ },
+ "video_camera": Emoji{
+ Keywords: []string{"film", "record"},
+ Char: "๐Ÿ“น",
+ Category: "objects",
+ },
+ "video_game": Emoji{
+ Keywords: []string{"play", "console", "PS4", "controller"},
+ Char: "๐ŸŽฎ",
+ Category: "activity",
+ },
+ "vietnam": Emoji{
+ Keywords: []string{"viet", "nam", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ป๐Ÿ‡ณ",
+ Category: "flags",
+ },
+ "violin": Emoji{
+ Keywords: []string{"music", "instrument", "orchestra", "symphony"},
+ Char: "๐ŸŽป",
+ Category: "activity",
+ },
+ "virgo": Emoji{
+ Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
+ Char: "โ™",
+ Category: "symbols",
+ },
+ "volcano": Emoji{
+ Keywords: []string{"photo", "nature", "disaster"},
+ Char: "๐ŸŒ‹",
+ Category: "travel_and_places",
+ },
+ "volleyball": Emoji{
+ Keywords: []string{"sports", "balls"},
+ Char: "๐Ÿ",
+ Category: "activity",
+ },
+ "vs": Emoji{
+ Keywords: []string{"words", "orange-square"},
+ Char: "๐Ÿ†š",
+ Category: "symbols",
+ },
+ "vulcan_salute": Emoji{
+ Keywords: []string{"hand", "fingers", "spock", "star trek"},
+ Char: "๐Ÿ––",
+ Category: "people",
+ },
+ "walking_man": Emoji{
+ Keywords: []string{"human", "feet", "steps"},
+ Char: "๐Ÿšถ",
+ Category: "people",
+ },
+ "walking_woman": Emoji{
+ Keywords: []string{"human", "feet", "steps", "woman", "female"},
+ Char: "๐Ÿšถโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "wallis_futuna": Emoji{
+ Keywords: []string{"wallis", "futuna", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ผ๐Ÿ‡ซ",
+ Category: "flags",
+ },
+ "waning_crescent_moon": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ˜",
+ Category: "animals_and_nature",
+ },
+ "waning_gibbous_moon": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep", "waxing_gibbous_moon"},
+ Char: "๐ŸŒ–",
+ Category: "animals_and_nature",
+ },
+ "warning": Emoji{
+ Keywords: []string{"exclamation", "wip", "alert", "error", "problem", "issue"},
+ Char: "โš ๏ธ",
+ Category: "symbols",
+ },
+ "wastebasket": Emoji{
+ Keywords: []string{"bin", "trash", "rubbish", "garbage", "toss"},
+ Char: "๐Ÿ—‘",
+ Category: "objects",
+ },
+ "watch": Emoji{
+ Keywords: []string{"time", "accessories"},
+ Char: "โŒš",
+ Category: "objects",
+ },
+ "water_buffalo": Emoji{
+ Keywords: []string{"animal", "nature", "ox", "cow"},
+ Char: "๐Ÿƒ",
+ Category: "animals_and_nature",
+ },
+ "watermelon": Emoji{
+ Keywords: []string{"fruit", "food", "picnic", "summer"},
+ Char: "๐Ÿ‰",
+ Category: "food_and_drink",
+ },
+ "wave": Emoji{
+ Keywords: []string{"hands", "gesture", "goodbye", "solong", "farewell", "hello", "hi", "palm"},
+ Char: "๐Ÿ‘‹",
+ Category: "people",
+ },
+ "wavy_dash": Emoji{
+ Keywords: []string{"draw", "line", "moustache", "mustache", "squiggle", "scribble"},
+ Char: "ใ€ฐ๏ธ",
+ Category: "symbols",
+ },
+ "waxing_crescent_moon": Emoji{
+ Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
+ Char: "๐ŸŒ’",
+ Category: "animals_and_nature",
+ },
+ "waxing_gibbous_moon": Emoji{
+ Keywords: []string{"nature", "night", "sky", "gray", "twilight", "planet", "space", "evening", "sleep"},
+ Char: "๐ŸŒ”",
+ Category: "animals_and_nature",
+ },
+ "wc": Emoji{
+ Keywords: []string{"toilet", "restroom", "blue-square"},
+ Char: "๐Ÿšพ",
+ Category: "symbols",
+ },
+ "weary": Emoji{
+ Keywords: []string{"face", "tired", "sleepy", "sad", "frustrated", "upset"},
+ Char: "๐Ÿ˜ฉ",
+ Category: "people",
+ },
+ "wedding": Emoji{
+ Keywords: []string{"love", "like", "affection", "couple", "marriage", "bride", "groom"},
+ Char: "๐Ÿ’’",
+ Category: "travel_and_places",
+ },
+ "weight_lifting_man": Emoji{
+ Keywords: []string{"sports", "training", "exercise"},
+ Char: "๐Ÿ‹",
+ Category: "activity",
+ },
+ "weight_lifting_woman": Emoji{
+ Keywords: []string{"sports", "training", "exercise", "woman", "female"},
+ Char: "๐Ÿ‹๏ธโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "western_sahara": Emoji{
+ Keywords: []string{"western", "sahara", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ช๐Ÿ‡ญ",
+ Category: "flags",
+ },
+ "whale": Emoji{
+ Keywords: []string{"animal", "nature", "sea", "ocean"},
+ Char: "๐Ÿณ",
+ Category: "animals_and_nature",
+ },
+ "whale2": Emoji{
+ Keywords: []string{"animal", "nature", "sea", "ocean"},
+ Char: "๐Ÿ‹",
+ Category: "animals_and_nature",
+ },
+ "wheel_of_dharma": Emoji{
+ Keywords: []string{"hinduism", "buddhism", "sikhism", "jainism"},
+ Char: "โ˜ธ",
+ Category: "symbols",
+ },
+ "wheelchair": Emoji{
+ Keywords: []string{"blue-square", "disabled", "a11y", "accessibility"},
+ Char: "โ™ฟ",
+ Category: "symbols",
+ },
+ "white_check_mark": Emoji{
+ Keywords: []string{"green-square", "ok", "agree", "vote", "election", "answer", "tick"},
+ Char: "โœ…",
+ Category: "symbols",
+ },
+ "white_circle": Emoji{
+ Keywords: []string{"shape", "round"},
+ Char: "โšช",
+ Category: "symbols",
+ },
+ "white_flag": Emoji{
+ Keywords: []string{"losing", "loser", "lost", "surrender", "give up", "fail"},
+ Char: "๐Ÿณ",
+ Category: "objects",
+ },
+ "white_flower": Emoji{
+ Keywords: []string{"japanese", "spring"},
+ Char: "๐Ÿ’ฎ",
+ Category: "symbols",
+ },
+ "white_large_square": Emoji{
+ Keywords: []string{"shape", "icon", "stone", "button"},
+ Char: "โฌœ",
+ Category: "symbols",
+ },
+ "white_medium_small_square": Emoji{
+ Keywords: []string{"shape", "stone", "icon", "button"},
+ Char: "โ—ฝ",
+ Category: "symbols",
+ },
+ "white_medium_square": Emoji{
+ Keywords: []string{"shape", "stone", "icon"},
+ Char: "โ—ป๏ธ",
+ Category: "symbols",
+ },
+ "white_small_square": Emoji{
+ Keywords: []string{"shape", "icon"},
+ Char: "โ–ซ๏ธ",
+ Category: "symbols",
+ },
+ "white_square_button": Emoji{
+ Keywords: []string{"shape", "input"},
+ Char: "๐Ÿ”ณ",
+ Category: "symbols",
+ },
+ "wilted_flower": Emoji{
+ Keywords: []string{"plant", "nature", "flower"},
+ Char: "๐Ÿฅ€",
+ Category: "animals_and_nature",
+ },
+ "wind_chime": Emoji{
+ Keywords: []string{"nature", "ding", "spring", "bell"},
+ Char: "๐ŸŽ",
+ Category: "objects",
+ },
+ "wind_face": Emoji{
+ Keywords: []string{"gust", "air"},
+ Char: "๐ŸŒฌ",
+ Category: "animals_and_nature",
+ },
+ "wine_glass": Emoji{
+ Keywords: []string{"drink", "beverage", "drunk", "alcohol", "booze"},
+ Char: "๐Ÿท",
+ Category: "food_and_drink",
+ },
+ "wink": Emoji{
+ Keywords: []string{"face", "happy", "mischievous", "secret", ";)", "smile", "eye"},
+ Char: "๐Ÿ˜‰",
+ Category: "people",
+ },
+ "wolf": Emoji{
+ Keywords: []string{"animal", "nature", "wild"},
+ Char: "๐Ÿบ",
+ Category: "animals_and_nature",
+ },
+ "woman": Emoji{
+ Keywords: []string{"female", "girls", "lady"},
+ Char: "๐Ÿ‘ฉ",
+ Category: "people",
+ },
+ "woman_artist": Emoji{
+ Keywords: []string{"painter", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐ŸŽจ",
+ Category: "people",
+ },
+ "woman_astronaut": Emoji{
+ Keywords: []string{"space", "rocket", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿš€",
+ Category: "people",
+ },
+ "woman_cartwheeling": Emoji{
+ Keywords: []string{"gymnastics"},
+ Char: "๐Ÿคธโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "woman_cook": Emoji{
+ Keywords: []string{"chef", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿณ",
+ Category: "people",
+ },
+ "woman_facepalming": Emoji{
+ Keywords: []string{"woman", "female", "girl", "disbelief"},
+ Char: "๐Ÿคฆโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "woman_factory_worker": Emoji{
+ Keywords: []string{"assembly", "industrial", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿญ",
+ Category: "people",
+ },
+ "woman_farmer": Emoji{
+ Keywords: []string{"rancher", "gardener", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐ŸŒพ",
+ Category: "people",
+ },
+ "woman_firefighter": Emoji{
+ Keywords: []string{"fireman", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿš’",
+ Category: "people",
+ },
+ "woman_health_worker": Emoji{
+ Keywords: []string{"doctor", "nurse", "therapist", "healthcare", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€โš•๏ธ",
+ Category: "people",
+ },
+ "woman_judge": Emoji{
+ Keywords: []string{"justice", "court", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€โš–๏ธ",
+ Category: "people",
+ },
+ "woman_juggling": Emoji{
+ Keywords: []string{"juggle", "balance", "skill", "multitask"},
+ Char: "๐Ÿคนโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "woman_mechanic": Emoji{
+ Keywords: []string{"plumber", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ”ง",
+ Category: "people",
+ },
+ "woman_office_worker": Emoji{
+ Keywords: []string{"business", "manager", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ’ผ",
+ Category: "people",
+ },
+ "woman_pilot": Emoji{
+ Keywords: []string{"aviator", "plane", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€โœˆ๏ธ",
+ Category: "people",
+ },
+ "woman_playing_handball": Emoji{
+ Keywords: []string{"sports"},
+ Char: "๐Ÿคพโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "woman_playing_water_polo": Emoji{
+ Keywords: []string{"sports", "pool"},
+ Char: "๐Ÿคฝโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "woman_scientist": Emoji{
+ Keywords: []string{"biologist", "chemist", "engineer", "physicist", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ”ฌ",
+ Category: "people",
+ },
+ "woman_shrugging": Emoji{
+ Keywords: []string{"woman", "female", "girl", "confused", "indifferent", "doubt"},
+ Char: "๐Ÿคท",
+ Category: "people",
+ },
+ "woman_singer": Emoji{
+ Keywords: []string{"rockstar", "entertainer", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐ŸŽค",
+ Category: "people",
+ },
+ "woman_student": Emoji{
+ Keywords: []string{"graduate", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐ŸŽ“",
+ Category: "people",
+ },
+ "woman_teacher": Emoji{
+ Keywords: []string{"instructor", "professor", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿซ",
+ Category: "people",
+ },
+ "woman_technologist": Emoji{
+ Keywords: []string{"coder", "developer", "engineer", "programmer", "software", "woman", "human"},
+ Char: "๐Ÿ‘ฉโ€๐Ÿ’ป",
+ Category: "people",
+ },
+ "woman_with_turban": Emoji{
+ Keywords: []string{"female", "indian", "hinduism", "arabs", "woman"},
+ Char: "๐Ÿ‘ณโ€โ™€๏ธ",
+ Category: "people",
+ },
+ "womans_clothes": Emoji{
+ Keywords: []string{"fashion", "shopping_bags", "female"},
+ Char: "๐Ÿ‘š",
+ Category: "people",
+ },
+ "womans_hat": Emoji{
+ Keywords: []string{"fashion", "accessories", "female", "lady", "spring"},
+ Char: "๐Ÿ‘’",
+ Category: "people",
+ },
+ "women_wrestling": Emoji{
+ Keywords: []string{"sports", "wrestlers"},
+ Char: "๐Ÿคผโ€โ™€๏ธ",
+ Category: "activity",
+ },
+ "womens": Emoji{
+ Keywords: []string{"purple-square", "woman", "female", "toilet", "loo", "restroom", "gender"},
+ Char: "๐Ÿšบ",
+ Category: "symbols",
+ },
+ "world_map": Emoji{
+ Keywords: []string{"location", "direction"},
+ Char: "๐Ÿ—บ",
+ Category: "objects",
+ },
+ "worried": Emoji{
+ Keywords: []string{"face", "concern", "nervous", ":("},
+ Char: "๐Ÿ˜Ÿ",
+ Category: "people",
+ },
+ "wrench": Emoji{
+ Keywords: []string{"tools", "diy", "ikea", "fix", "maintainer"},
+ Char: "๐Ÿ”ง",
+ Category: "objects",
+ },
+ "writing_hand": Emoji{
+ Keywords: []string{"lower_left_ballpoint_pen", "stationery", "write", "compose"},
+ Char: "โœ",
+ Category: "people",
+ },
+ "x": Emoji{
+ Keywords: []string{"no", "delete", "remove", "cancel"},
+ Char: "โŒ",
+ Category: "symbols",
+ },
+ "yellow_heart": Emoji{
+ Keywords: []string{"love", "like", "affection", "valentines"},
+ Char: "๐Ÿ’›",
+ Category: "symbols",
+ },
+ "yemen": Emoji{
+ Keywords: []string{"ye", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡พ๐Ÿ‡ช",
+ Category: "flags",
+ },
+ "yen": Emoji{
+ Keywords: []string{"money", "sales", "japanese", "dollar", "currency"},
+ Char: "๐Ÿ’ด",
+ Category: "objects",
+ },
+ "yin_yang": Emoji{
+ Keywords: []string{"balance"},
+ Char: "โ˜ฏ",
+ Category: "symbols",
+ },
+ "yum": Emoji{
+ Keywords: []string{"happy", "joy", "tongue", "smile", "face", "silly", "yummy", "nom", "delicious", "savouring"},
+ Char: "๐Ÿ˜‹",
+ Category: "people",
+ },
+ "zambia": Emoji{
+ Keywords: []string{"zm", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฟ๐Ÿ‡ฒ",
+ Category: "flags",
+ },
+ "zap": Emoji{
+ Keywords: []string{"thunder", "weather", "lightning bolt", "fast"},
+ Char: "โšก",
+ Category: "animals_and_nature",
+ },
+ "zero": Emoji{
+ Keywords: []string{"0", "numbers", "blue-square", "null"},
+ Char: "0๏ธโƒฃ",
+ Category: "symbols",
+ },
+ "zimbabwe": Emoji{
+ Keywords: []string{"zw", "flag", "nation", "country", "banner"},
+ Char: "๐Ÿ‡ฟ๐Ÿ‡ผ",
+ Category: "flags",
+ },
+ "zipper_mouth_face": Emoji{
+ Keywords: []string{"face", "sealed", "zipper", "secret"},
+ Char: "๐Ÿค",
+ Category: "people",
+ },
+ "zzz": Emoji{
+ Keywords: []string{"sleepy", "tired", "dream"},
+ Char: "๐Ÿ’ค",
+ Category: "people",
+ },
+}
+
+var keywordLookup = map[string][]string{
+ "-_-": []string{
+ "expressionless",
+ },
+ "0": []string{
+ "zero",
+ },
+ "1": []string{
+ "one",
+ },
+ "10": []string{
+ "keycap_ten",
+ },
+ "101": []string{
+ "poodle",
+ },
+ "18": []string{
+ "underage",
+ },
+ "2": []string{
+ "two",
+ },
+ "3": []string{
+ "kissing",
+ "three",
+ },
+ "4": []string{
+ "four",
+ },
+ "5": []string{
+ "five",
+ },
+ "6": []string{
+ "six",
+ },
+ "7": []string{
+ "seven",
+ },
+ "8": []string{
+ "eight",
+ },
+ "80s": []string{
+ "floppy_disk",
+ "vhs",
+ },
+ "9": []string{
+ "nine",
+ },
+ "90s": []string{
+ "cd",
+ "floppy_disk",
+ "minidisc",
+ "pager",
+ "vhs",
+ },
+ "911": []string{
+ "ambulance",
+ "oncoming_police_car",
+ "policeman",
+ "policewoman",
+ "rotating_light",
+ "sos",
+ },
+ ":'(": []string{
+ "cry",
+ },
+ ":(": []string{
+ "disappointed",
+ "worried",
+ },
+ ":)": []string{
+ "smile",
+ "smiley",
+ },
+ ":/": []string{
+ "confused",
+ },
+ ":D": []string{
+ "grinning",
+ "smile",
+ "smiley",
+ },
+ ":O": []string{
+ "open_mouth",
+ },
+ ":S": []string{
+ "confounded",
+ },
+ ":|": []string{
+ "neutral_face",
+ },
+ ";)": []string{
+ "wink",
+ },
+ "ISS": []string{
+ "artificial_satellite",
+ },
+ "NASA": []string{
+ "artificial_satellite",
+ "rocket",
+ },
+ "NBA": []string{
+ "basketball",
+ },
+ "NFL": []string{
+ "football",
+ },
+ "PA": []string{
+ "microphone",
+ },
+ "PS4": []string{
+ "video_game",
+ },
+ "UFO": []string{
+ "alien",
+ },
+ "UK": []string{
+ "uk",
+ },
+ "USA": []string{
+ "earth_americas",
+ },
+ "XD": []string{
+ "laughing",
+ },
+ "a11y": []string{
+ "wheelchair",
+ },
+ "abandon": []string{
+ "derelict_house",
+ },
+ "above": []string{
+ "up",
+ },
+ "accept": []string{
+ "+1",
+ },
+ "accessibility": []string{
+ "wheelchair",
+ },
+ "accessories": []string{
+ "dark_sunglasses",
+ "eyeglasses",
+ "handbag",
+ "pouch",
+ "purse",
+ "watch",
+ "womans_hat",
+ },
+ "accessory": []string{
+ "handbag",
+ },
+ "accomodation": []string{
+ "hotel",
+ },
+ "acting": []string{
+ "performing_arts",
+ },
+ "ad": []string{
+ "andorra",
+ },
+ "addition": []string{
+ "heavy_plus_sign",
+ },
+ "af": []string{
+ "afghanistan",
+ },
+ "affection": []string{
+ "blue_heart",
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "cupid",
+ "green_heart",
+ "heart_eyes",
+ "heart_eyes_cat",
+ "heartbeat",
+ "heartpulse",
+ "kiss",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "kissing_smiling_eyes",
+ "love_hotel",
+ "love_letter",
+ "purple_heart",
+ "revolving_hearts",
+ "sparkling_heart",
+ "two_hearts",
+ "wedding",
+ "yellow_heart",
+ },
+ "africa": []string{
+ "south_africa",
+ },
+ "african": []string{
+ "central_african_republic",
+ },
+ "afternoon": []string{
+ "low_brightness",
+ },
+ "agree": []string{
+ "+1",
+ "accept",
+ "ballot_box_with_check",
+ "ok",
+ "white_check_mark",
+ },
+ "agreement": []string{
+ "handshake",
+ },
+ "agriculture": []string{
+ "tractor",
+ },
+ "ai": []string{
+ "anguilla",
+ },
+ "air": []string{
+ "dash",
+ "wind_face",
+ },
+ "airplane": []string{
+ "seat",
+ },
+ "airport": []string{
+ "baggage_claim",
+ "flight_arrival",
+ "flight_departure",
+ },
+ "al": []string{
+ "albania",
+ },
+ "alarm": []string{
+ "timer_clock",
+ },
+ "alcohol": []string{
+ "beer",
+ "beers",
+ "clinking_glasses",
+ "cocktail",
+ "sake",
+ "tropical_drink",
+ "tumbler_glass",
+ "wine_glass",
+ },
+ "alert": []string{
+ "rotating_light",
+ "warning",
+ },
+ "allergy": []string{
+ "sneezing_face",
+ },
+ "alligator": []string{
+ "crocodile",
+ },
+ "alphabet": []string{
+ "a",
+ "ab",
+ "abc",
+ "abcd",
+ "b",
+ "capital_abcd",
+ "cl",
+ "information_source",
+ "m",
+ "o2",
+ "parking",
+ "registered",
+ },
+ "am": []string{
+ "armenia",
+ },
+ "ambulance": []string{
+ "rotating_light",
+ },
+ "america": []string{
+ "us",
+ },
+ "american": []string{
+ "american_samoa",
+ "statue_of_liberty",
+ },
+ "ampersand": []string{
+ "symbols",
+ },
+ "ancient": []string{
+ "scroll",
+ },
+ "angel": []string{
+ "innocent",
+ },
+ "angry": []string{
+ "anger",
+ "facepunch",
+ "imp",
+ "rage",
+ "rage1",
+ "rage2",
+ "rage3",
+ "rage4",
+ },
+ "animal": []string{
+ "ant",
+ "baby_chick",
+ "bat",
+ "bear",
+ "beetle",
+ "bird",
+ "blowfish",
+ "boar",
+ "bug",
+ "butterfly",
+ "camel",
+ "cat",
+ "cat2",
+ "chicken",
+ "chipmunk",
+ "cow",
+ "cow2",
+ "crab",
+ "crocodile",
+ "crying_cat_face",
+ "deer",
+ "dog",
+ "dog2",
+ "dolphin",
+ "dove",
+ "dragon",
+ "dragon_face",
+ "dromedary_camel",
+ "duck",
+ "eagle",
+ "elephant",
+ "fish",
+ "fox_face",
+ "fried_shrimp",
+ "frog",
+ "goat",
+ "gorilla",
+ "hamster",
+ "hatched_chick",
+ "hatching_chick",
+ "hear_no_evil",
+ "heart_eyes_cat",
+ "honeybee",
+ "horse",
+ "horse_racing",
+ "joy_cat",
+ "kissing_cat",
+ "koala",
+ "leopard",
+ "lion",
+ "lizard",
+ "monkey",
+ "monkey_face",
+ "mouse",
+ "mouse2",
+ "octocat",
+ "octopus",
+ "owl",
+ "ox",
+ "panda_face",
+ "paw_prints",
+ "penguin",
+ "pig",
+ "pig2",
+ "pig_nose",
+ "poodle",
+ "pouting_cat",
+ "rabbit",
+ "rabbit2",
+ "racehorse",
+ "ram",
+ "rat",
+ "rhinoceros",
+ "rooster",
+ "scorpion",
+ "scream_cat",
+ "see_no_evil",
+ "shark",
+ "sheep",
+ "shipit",
+ "shrimp",
+ "smile_cat",
+ "smiley_cat",
+ "smirk_cat",
+ "snail",
+ "snake",
+ "speak_no_evil",
+ "spider",
+ "spider_web",
+ "squid",
+ "tiger",
+ "tiger2",
+ "tropical_fish",
+ "turkey",
+ "turtle",
+ "unicorn",
+ "water_buffalo",
+ "whale",
+ "whale2",
+ "wolf",
+ },
+ "annoyed": []string{
+ "angry",
+ },
+ "answer": []string{
+ "heavy_check_mark",
+ "white_check_mark",
+ },
+ "antigua": []string{
+ "antigua_barbuda",
+ },
+ "ao": []string{
+ "angola",
+ },
+ "appetizer": []string{
+ "fried_shrimp",
+ },
+ "applause": []string{
+ "clap",
+ },
+ "apple": []string{
+ "iphone",
+ },
+ "aq": []string{
+ "antarctica",
+ },
+ "ar": []string{
+ "argentina",
+ },
+ "arab": []string{
+ "syria",
+ "united_arab_emirates",
+ },
+ "arabs": []string{
+ "man_with_turban",
+ "woman_with_turban",
+ },
+ "arachnid": []string{
+ "scorpion",
+ "spider",
+ "spider_web",
+ },
+ "arcade": []string{
+ "space_invader",
+ },
+ "architect": []string{
+ "straight_ruler",
+ "triangular_ruler",
+ },
+ "arm": []string{
+ "muscle",
+ },
+ "army": []string{
+ "medal_military",
+ },
+ "arrest": []string{
+ "chains",
+ "policeman",
+ "policewoman",
+ },
+ "arrow": []string{
+ "back",
+ "end",
+ "on",
+ "recycle",
+ "soon",
+ },
+ "art": []string{
+ "classical_building",
+ "paintbrush",
+ },
+ "artist": []string{
+ "studio_microphone",
+ },
+ "ascension": []string{
+ "st_helena",
+ },
+ "ashes": []string{
+ "funeral_urn",
+ },
+ "asia": []string{
+ "japan",
+ "rice_scene",
+ },
+ "asian": []string{
+ "rice",
+ },
+ "assembly": []string{
+ "man_factory_worker",
+ "woman_factory_worker",
+ },
+ "astrology": []string{
+ "aquarius",
+ "aries",
+ "cancer",
+ "capricorn",
+ "gemini",
+ "leo",
+ "libra",
+ "ophiuchus",
+ "pisces",
+ "sagittarius",
+ "scorpius",
+ "taurus",
+ "virgo",
+ },
+ "at": []string{
+ "austria",
+ },
+ "athlete": []string{
+ "swimming_man",
+ "swimming_woman",
+ },
+ "attack": []string{
+ "facepunch",
+ },
+ "au": []string{
+ "australia",
+ },
+ "aubergine": []string{
+ "eggplant",
+ },
+ "aviator": []string{
+ "man_pilot",
+ "woman_pilot",
+ },
+ "aw": []string{
+ "aruba",
+ "frowning",
+ },
+ "award": []string{
+ "1st_place_medal",
+ "2nd_place_medal",
+ "3rd_place_medal",
+ "medal_military",
+ "medal_sports",
+ "trophy",
+ },
+ "awareness": []string{
+ "reminder_ribbon",
+ },
+ "awesome": []string{
+ "+1",
+ "sparkle",
+ "sparkles",
+ "star2",
+ },
+ "az": []string{
+ "azerbaijan",
+ },
+ "baby": []string{
+ "hatched_chick",
+ "hatching_chick",
+ "pregnant_woman",
+ },
+ "back": []string{
+ "arrow_left",
+ "leftwards_arrow_with_hook",
+ },
+ "backhand": []string{
+ "raised_back_of_hand",
+ },
+ "backpack": []string{
+ "school_satchel",
+ },
+ "backward": []string{
+ "previous_track_button",
+ },
+ "bad": []string{
+ "chart_with_downwards_trend",
+ "no_entry",
+ "part_alternation_mark",
+ },
+ "badge": []string{
+ "beginner",
+ },
+ "bag": []string{
+ "pouch",
+ "school_satchel",
+ },
+ "balance": []string{
+ "man_juggling",
+ "woman_juggling",
+ "yin_yang",
+ },
+ "balls": []string{
+ "baseball",
+ "basketball",
+ "football",
+ "tennis",
+ "volleyball",
+ },
+ "ban": []string{
+ "raised_hand",
+ },
+ "banana": []string{
+ "monkey",
+ },
+ "bandage": []string{
+ "face_with_head_bandage",
+ },
+ "bank": []string{
+ "atm",
+ },
+ "banner": []string{
+ "afghanistan",
+ "aland_islands",
+ "albania",
+ "algeria",
+ "american_samoa",
+ "andorra",
+ "angola",
+ "anguilla",
+ "antarctica",
+ "antigua_barbuda",
+ "argentina",
+ "armenia",
+ "aruba",
+ "australia",
+ "austria",
+ "azerbaijan",
+ "bahamas",
+ "bahrain",
+ "bangladesh",
+ "barbados",
+ "belarus",
+ "belgium",
+ "belize",
+ "benin",
+ "bermuda",
+ "bhutan",
+ "bolivia",
+ "bosnia_herzegovina",
+ "botswana",
+ "brazil",
+ "british_indian_ocean_territory",
+ "british_virgin_islands",
+ "brunei",
+ "bulgaria",
+ "burkina_faso",
+ "burundi",
+ "cambodia",
+ "cameroon",
+ "canada",
+ "canary_islands",
+ "cape_verde",
+ "caribbean_netherlands",
+ "cayman_islands",
+ "central_african_republic",
+ "chad",
+ "chile",
+ "christmas_island",
+ "cn",
+ "cocos_islands",
+ "colombia",
+ "comoros",
+ "congo_brazzaville",
+ "congo_kinshasa",
+ "cook_islands",
+ "costa_rica",
+ "cote_divoire",
+ "croatia",
+ "cuba",
+ "curacao",
+ "cyprus",
+ "czech_republic",
+ "de",
+ "denmark",
+ "djibouti",
+ "dominica",
+ "dominican_republic",
+ "ecuador",
+ "egypt",
+ "el_salvador",
+ "equatorial_guinea",
+ "eritrea",
+ "es",
+ "estonia",
+ "ethiopia",
+ "eu",
+ "falkland_islands",
+ "faroe_islands",
+ "fiji",
+ "finland",
+ "flags",
+ "fr",
+ "french_guiana",
+ "french_polynesia",
+ "french_southern_territories",
+ "gabon",
+ "gambia",
+ "georgia",
+ "ghana",
+ "gibraltar",
+ "greece",
+ "greenland",
+ "grenada",
+ "guadeloupe",
+ "guam",
+ "guatemala",
+ "guernsey",
+ "guinea",
+ "guinea_bissau",
+ "guyana",
+ "haiti",
+ "honduras",
+ "hong_kong",
+ "hungary",
+ "iceland",
+ "india",
+ "indonesia",
+ "iran",
+ "iraq",
+ "ireland",
+ "isle_of_man",
+ "israel",
+ "it",
+ "jamaica",
+ "jersey",
+ "jordan",
+ "jp",
+ "kazakhstan",
+ "kenya",
+ "kiribati",
+ "kosovo",
+ "kr",
+ "kuwait",
+ "kyrgyzstan",
+ "laos",
+ "latvia",
+ "lebanon",
+ "lesotho",
+ "liberia",
+ "libya",
+ "liechtenstein",
+ "lithuania",
+ "luxembourg",
+ "macau",
+ "macedonia",
+ "madagascar",
+ "malawi",
+ "malaysia",
+ "maldives",
+ "mali",
+ "malta",
+ "marshall_islands",
+ "martinique",
+ "mauritania",
+ "mauritius",
+ "mayotte",
+ "mexico",
+ "micronesia",
+ "moldova",
+ "monaco",
+ "mongolia",
+ "montenegro",
+ "montserrat",
+ "morocco",
+ "mozambique",
+ "myanmar",
+ "namibia",
+ "nauru",
+ "nepal",
+ "netherlands",
+ "new_caledonia",
+ "new_zealand",
+ "nicaragua",
+ "niger",
+ "nigeria",
+ "niue",
+ "norfolk_island",
+ "north_korea",
+ "northern_mariana_islands",
+ "norway",
+ "oman",
+ "pakistan",
+ "palau",
+ "palestinian_territories",
+ "panama",
+ "papua_new_guinea",
+ "paraguay",
+ "peru",
+ "philippines",
+ "pitcairn_islands",
+ "poland",
+ "portugal",
+ "puerto_rico",
+ "qatar",
+ "reunion",
+ "romania",
+ "ru",
+ "rwanda",
+ "samoa",
+ "san_marino",
+ "sao_tome_principe",
+ "saudi_arabia",
+ "senegal",
+ "serbia",
+ "seychelles",
+ "sierra_leone",
+ "singapore",
+ "sint_maarten",
+ "slovakia",
+ "slovenia",
+ "solomon_islands",
+ "somalia",
+ "south_africa",
+ "south_georgia_south_sandwich_islands",
+ "south_sudan",
+ "sri_lanka",
+ "st_barthelemy",
+ "st_helena",
+ "st_kitts_nevis",
+ "st_lucia",
+ "st_pierre_miquelon",
+ "st_vincent_grenadines",
+ "sudan",
+ "suriname",
+ "swaziland",
+ "sweden",
+ "switzerland",
+ "syria",
+ "taiwan",
+ "tajikistan",
+ "tanzania",
+ "thailand",
+ "timor_leste",
+ "togo",
+ "tokelau",
+ "tonga",
+ "tr",
+ "trinidad_tobago",
+ "tunisia",
+ "turkmenistan",
+ "turks_caicos_islands",
+ "tuvalu",
+ "uganda",
+ "uk",
+ "ukraine",
+ "united_arab_emirates",
+ "uruguay",
+ "us",
+ "us_virgin_islands",
+ "uzbekistan",
+ "vanuatu",
+ "vatican_city",
+ "venezuela",
+ "vietnam",
+ "wallis_futuna",
+ "western_sahara",
+ "yemen",
+ "zambia",
+ "zimbabwe",
+ },
+ "bar": []string{
+ "dart",
+ },
+ "barbecue": []string{
+ "dango",
+ },
+ "barbuda": []string{
+ "antigua_barbuda",
+ },
+ "barrell": []string{
+ "oil_drum",
+ },
+ "bars": []string{
+ "signal_strength",
+ },
+ "bart": []string{
+ "trolleybus",
+ },
+ "barthรฉlemy": []string{
+ "st_barthelemy",
+ },
+ "bath": []string{
+ "hotsprings",
+ },
+ "bathroom": []string{
+ "bath",
+ "bathtub",
+ "shower",
+ "toilet",
+ },
+ "bb": []string{
+ "barbados",
+ },
+ "bbcall": []string{
+ "pager",
+ },
+ "bd": []string{
+ "bangladesh",
+ },
+ "be": []string{
+ "belgium",
+ },
+ "beach": []string{
+ "bikini",
+ "dolphin",
+ "fish_cake",
+ "footprints",
+ "hibiscus",
+ "octopus",
+ "palm_tree",
+ "shark",
+ "shell",
+ "sunglasses",
+ "sunny",
+ "surfing_man",
+ "surfing_woman",
+ "tropical_drink",
+ "tropical_fish",
+ },
+ "beauty": []string{
+ "nail_care",
+ },
+ "bed": []string{
+ "sleeping_bed",
+ },
+ "beef": []string{
+ "cow",
+ "cow2",
+ "hamburger",
+ "ox",
+ },
+ "bees": []string{
+ "honey_pot",
+ },
+ "bell": []string{
+ "wind_chime",
+ },
+ "bet": []string{
+ "slot_machine",
+ },
+ "betting": []string{
+ "horse_racing",
+ },
+ "beverage": []string{
+ "beer",
+ "beers",
+ "clinking_glasses",
+ "cocktail",
+ "coffee",
+ "milk_glass",
+ "sake",
+ "tropical_drink",
+ "tumbler_glass",
+ "wine_glass",
+ },
+ "bg": []string{
+ "bulgaria",
+ },
+ "bh": []string{
+ "bahrain",
+ },
+ "bi": []string{
+ "burundi",
+ },
+ "biceps": []string{
+ "muscle",
+ },
+ "bicycle": []string{
+ "bike",
+ },
+ "bike": []string{
+ "biking_man",
+ "biking_woman",
+ "mountain_biking_man",
+ "mountain_biking_woman",
+ },
+ "bill": []string{
+ "credit_card",
+ "dollar",
+ },
+ "bills": []string{
+ "money_with_wings",
+ "pound",
+ },
+ "bin": []string{
+ "do_not_litter",
+ "wastebasket",
+ },
+ "biologist": []string{
+ "man_scientist",
+ "woman_scientist",
+ },
+ "bird": []string{
+ "baby_chick",
+ "chicken",
+ "dove",
+ "duck",
+ "eagle",
+ "hatched_chick",
+ "hatching_chick",
+ "owl",
+ "poultry_leg",
+ "turkey",
+ },
+ "birthday": []string{
+ "balloon",
+ "confetti_ball",
+ "gift",
+ "tada",
+ },
+ "bisexual": []string{
+ "rainbow_flag",
+ },
+ "bissau": []string{
+ "guinea_bissau",
+ },
+ "bj": []string{
+ "benin",
+ },
+ "black-square": []string{
+ "ballot_box_with_check",
+ },
+ "blade": []string{
+ "hocho",
+ },
+ "blind": []string{
+ "bat",
+ },
+ "blond": []string{
+ "princess",
+ },
+ "blonde": []string{
+ "blonde_man",
+ "blonde_woman",
+ },
+ "blood": []string{
+ "syringe",
+ },
+ "bloody": []string{
+ "goberserk",
+ },
+ "blown": []string{
+ "boom",
+ },
+ "blue": []string{
+ "cyclone",
+ "diamond_shape_with_a_dot_inside",
+ "gem",
+ "ok_man",
+ },
+ "blue-circle": []string{
+ "m",
+ },
+ "blue-square": []string{
+ "1234",
+ "abc",
+ "abcd",
+ "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_counterclockwise",
+ "atm",
+ "baggage_claim",
+ "capital_abcd",
+ "cinema",
+ "cool",
+ "customs",
+ "eight",
+ "fast_forward",
+ "five",
+ "four",
+ "free",
+ "hash",
+ "information_source",
+ "keycap_ten",
+ "koko",
+ "left_luggage",
+ "leftwards_arrow_with_hook",
+ "mens",
+ "metro",
+ "new",
+ "next_track_button",
+ "ng",
+ "nine",
+ "no_smoking",
+ "ok",
+ "one",
+ "parking",
+ "passport_control",
+ "pause_button",
+ "play_or_pause_button",
+ "potable_water",
+ "put_litter_in_its_place",
+ "record_button",
+ "repeat_one",
+ "restroom",
+ "rewind",
+ "sa",
+ "seven",
+ "signal_strength",
+ "six",
+ "stop_button",
+ "symbols",
+ "three",
+ "top",
+ "twisted_rightwards_arrows",
+ "two",
+ "u7a7a",
+ "up",
+ "wc",
+ "wheelchair",
+ "zero",
+ },
+ "blues": []string{
+ "saxophone",
+ },
+ "bluetooth": []string{
+ "signal_strength",
+ },
+ "blush": []string{
+ "flushed",
+ "relaxed",
+ },
+ "bm": []string{
+ "bermuda",
+ },
+ "bn": []string{
+ "brunei",
+ },
+ "bo": []string{
+ "bolivia",
+ },
+ "boarding": []string{
+ "flight_arrival",
+ },
+ "boat": []string{
+ "anchor",
+ "canoe",
+ "ferry",
+ },
+ "bolivarian": []string{
+ "venezuela",
+ },
+ "bomb": []string{
+ "boom",
+ },
+ "bonaire": []string{
+ "caribbean_netherlands",
+ },
+ "book": []string{
+ "open_book",
+ },
+ "boom": []string{
+ "bomb",
+ },
+ "booze": []string{
+ "beer",
+ "beers",
+ "cocktail",
+ "sake",
+ "tropical_drink",
+ "tumbler_glass",
+ "wine_glass",
+ },
+ "border": []string{
+ "crossed_flags",
+ "customs",
+ },
+ "bored": []string{
+ "unamused",
+ },
+ "born": []string{
+ "hatching_chick",
+ },
+ "bosnia": []string{
+ "bosnia_herzegovina",
+ },
+ "bot": []string{
+ "robot",
+ },
+ "bottle": []string{
+ "champagne",
+ },
+ "bottom": []string{
+ "arrow_double_down",
+ "arrow_down",
+ "arrow_down_small",
+ "arrow_heading_down",
+ "small_red_triangle_down",
+ },
+ "bourbon": []string{
+ "tumbler_glass",
+ },
+ "bowl": []string{
+ "tea",
+ },
+ "bowtie": []string{
+ "ribbon",
+ },
+ "box": []string{
+ "bento",
+ "package",
+ },
+ "boy": []string{
+ "baby",
+ "blonde_man",
+ "bowing_man",
+ "frowning_man",
+ "haircut_man",
+ "man_dancing",
+ "man_facepalming",
+ "man_shrugging",
+ "man_with_gua_pi_mao",
+ "massage_man",
+ "no_good_man",
+ "ok_man",
+ "pouting_man",
+ "prince",
+ "raising_hand_man",
+ "tipping_hand_man",
+ },
+ "boys": []string{
+ "dancing_men",
+ },
+ "br": []string{
+ "brazil",
+ },
+ "branch": []string{
+ "tanabata_tree",
+ },
+ "brand": []string{
+ "tm",
+ },
+ "brass": []string{
+ "trumpet",
+ },
+ "bread": []string{
+ "baguette_bread",
+ "croissant",
+ },
+ "break": []string{
+ "broken_heart",
+ },
+ "breakfast": []string{
+ "bacon",
+ "bread",
+ "egg",
+ "fried_egg",
+ "pancakes",
+ "tea",
+ },
+ "bride": []string{
+ "bride_with_veil",
+ "wedding",
+ },
+ "brightness": []string{
+ "sunny",
+ },
+ "britain": []string{
+ "uk",
+ },
+ "british": []string{
+ "british_indian_ocean_territory",
+ "british_virgin_islands",
+ "guardsman",
+ "guardswoman",
+ "pound",
+ "tea",
+ "uk",
+ },
+ "broadcast": []string{
+ "loud_sound",
+ "sound",
+ "speaker",
+ },
+ "broken": []string{
+ "derelict_house",
+ },
+ "bromance": []string{
+ "two_men_holding_hands",
+ },
+ "brown": []string{
+ "horse",
+ },
+ "bs": []string{
+ "bahamas",
+ },
+ "bt": []string{
+ "bhutan",
+ },
+ "bubble": []string{
+ "speech_balloon",
+ "thought_balloon",
+ },
+ "buck": []string{
+ "heavy_dollar_sign",
+ },
+ "buddhism": []string{
+ "om",
+ "wheel_of_dharma",
+ },
+ "bug": []string{
+ "ant",
+ "honeybee",
+ },
+ "build": []string{
+ "construction_worker_man",
+ "construction_worker_woman",
+ "hammer",
+ "hammer_and_pick",
+ "hammer_and_wrench",
+ "rescue_worker_helmet",
+ },
+ "building": []string{
+ "bank",
+ "church",
+ "convenience_store",
+ "department_store",
+ "derelict_house",
+ "european_castle",
+ "european_post_office",
+ "factory",
+ "hospital",
+ "hotel",
+ "house",
+ "japanese_castle",
+ "office",
+ "post_office",
+ "school",
+ },
+ "buildings": []string{
+ "city_sunset",
+ "houses",
+ },
+ "bunny": []string{
+ "dancing_men",
+ "dancing_women",
+ "rabbit",
+ },
+ "bureau": []string{
+ "office",
+ },
+ "burger king": []string{
+ "hamburger",
+ },
+ "burkina": []string{
+ "burkina_faso",
+ },
+ "bus": []string{
+ "seat",
+ },
+ "business": []string{
+ "bank",
+ "briefcase",
+ "business_suit_levitating",
+ "card_file_box",
+ "card_index",
+ "card_index_dividers",
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "file_folder",
+ "golf",
+ "golfing_man",
+ "golfing_woman",
+ "man_office_worker",
+ "necktie",
+ "part_alternation_mark",
+ "woman_office_worker",
+ },
+ "butterfly": []string{
+ "open_hands",
+ },
+ "button": []string{
+ "black_circle",
+ "black_large_square",
+ "black_medium_small_square",
+ "black_medium_square",
+ "large_blue_circle",
+ "white_large_square",
+ "white_medium_small_square",
+ },
+ "buy": []string{
+ "shopping",
+ },
+ "bvi": []string{
+ "british_virgin_islands",
+ },
+ "bw": []string{
+ "botswana",
+ },
+ "by": []string{
+ "belarus",
+ },
+ "bz": []string{
+ "belize",
+ },
+ "ca": []string{
+ "canada",
+ "maple_leaf",
+ },
+ "cabo": []string{
+ "cape_verde",
+ },
+ "caffeine": []string{
+ "coffee",
+ },
+ "caicos": []string{
+ "turks_caicos_islands",
+ },
+ "cake": []string{
+ "birthday",
+ },
+ "calculate": []string{
+ "straight_ruler",
+ },
+ "calculation": []string{
+ "heavy_division_sign",
+ "heavy_minus_sign",
+ "heavy_multiplication_x",
+ "heavy_plus_sign",
+ },
+ "caledonia": []string{
+ "new_caledonia",
+ },
+ "calendar": []string{
+ "date",
+ },
+ "camera": []string{
+ "selfie",
+ },
+ "camping": []string{
+ "flashlight",
+ "tent",
+ },
+ "canary": []string{
+ "canary_islands",
+ },
+ "cancel": []string{
+ "x",
+ },
+ "candles": []string{
+ "menorah",
+ },
+ "candy": []string{
+ "lollipop",
+ },
+ "cap": []string{
+ "mortar_board",
+ },
+ "caption": []string{
+ "right_anger_bubble",
+ },
+ "car": []string{
+ "bus",
+ "minibus",
+ "oncoming_automobile",
+ "tractor",
+ },
+ "cardboard": []string{
+ "package",
+ },
+ "cards": []string{
+ "black_joker",
+ "clubs",
+ "diamonds",
+ "hearts",
+ "spades",
+ },
+ "carnival": []string{
+ "carousel_horse",
+ "circus_tent",
+ "ferris_wheel",
+ "fireworks",
+ "roller_coaster",
+ },
+ "carp": []string{
+ "flags",
+ },
+ "carriage": []string{
+ "train",
+ },
+ "cars": []string{
+ "articulated_lorry",
+ "fire_engine",
+ "oncoming_taxi",
+ "parking",
+ "police_car",
+ "taxi",
+ "truck",
+ },
+ "cash": []string{
+ "atm",
+ "bank",
+ },
+ "casino": []string{
+ "slot_machine",
+ },
+ "casserole": []string{
+ "shallow_pan_of_food",
+ },
+ "cassette": []string{
+ "loop",
+ },
+ "casual": []string{
+ "tshirt",
+ },
+ "cat": []string{
+ "paw_prints",
+ "tiger",
+ },
+ "caterpillar": []string{
+ "butterfly",
+ },
+ "cats": []string{
+ "cat2",
+ "crying_cat_face",
+ "heart_eyes_cat",
+ "joy_cat",
+ "kissing_cat",
+ "pouting_cat",
+ "scream_cat",
+ "smile_cat",
+ "smiley_cat",
+ "smirk_cat",
+ },
+ "cause": []string{
+ "reminder_ribbon",
+ },
+ "caution": []string{
+ "construction",
+ },
+ "cayman": []string{
+ "cayman_islands",
+ },
+ "cd": []string{
+ "dvd",
+ },
+ "celebrate": []string{
+ "clinking_glasses",
+ },
+ "celebration": []string{
+ "balloon",
+ "champagne",
+ "christmas_tree",
+ "raised_hands",
+ "tada",
+ },
+ "cemetery": []string{
+ "coffin",
+ },
+ "central": []string{
+ "central_african_republic",
+ },
+ "century": []string{
+ "100",
+ },
+ "ceremony": []string{
+ "trophy",
+ },
+ "ch": []string{
+ "switzerland",
+ },
+ "chadder": []string{
+ "cheese",
+ },
+ "characters": []string{
+ "symbols",
+ },
+ "charger": []string{
+ "electric_plug",
+ },
+ "chatting": []string{
+ "left_speech_bubble",
+ "speech_balloon",
+ },
+ "checkin": []string{
+ "hotel",
+ },
+ "cheers": []string{
+ "clinking_glasses",
+ },
+ "cheese_wedge": []string{
+ "mouse",
+ },
+ "cheeseburger": []string{
+ "hamburger",
+ },
+ "chef": []string{
+ "man_cook",
+ "woman_cook",
+ },
+ "chemist": []string{
+ "man_scientist",
+ "woman_scientist",
+ },
+ "chicken": []string{
+ "baby_chick",
+ "egg",
+ "hatched_chick",
+ "hatching_chick",
+ "poultry_leg",
+ "rooster",
+ },
+ "child": []string{
+ "baby",
+ "baby_symbol",
+ "family_man_boy",
+ "family_man_girl",
+ "family_man_woman_boy",
+ "family_man_woman_girl",
+ "family_woman_boy",
+ "family_woman_girl",
+ },
+ "childish": []string{
+ "stuck_out_tongue",
+ "stuck_out_tongue_winking_eye",
+ },
+ "children": []string{
+ "family_man_boy_boy",
+ "family_man_girl_boy",
+ "family_man_girl_girl",
+ "family_man_man_boy",
+ "family_man_man_boy_boy",
+ "family_man_man_girl",
+ "family_man_man_girl_boy",
+ "family_man_man_girl_girl",
+ "family_man_woman_boy_boy",
+ "family_man_woman_girl_boy",
+ "family_man_woman_girl_girl",
+ "family_woman_boy_boy",
+ "family_woman_girl_boy",
+ "family_woman_girl_girl",
+ "family_woman_woman_boy",
+ "family_woman_woman_boy_boy",
+ "family_woman_woman_girl",
+ "family_woman_woman_girl_boy",
+ "family_woman_woman_girl_girl",
+ },
+ "chili": []string{
+ "hot_pepper",
+ },
+ "chill": []string{
+ "couch_and_lamp",
+ },
+ "chilli": []string{
+ "hot_pepper",
+ },
+ "chime": []string{
+ "bell",
+ },
+ "china": []string{
+ "cn",
+ "rice",
+ },
+ "chinese": []string{
+ "accept",
+ "cn",
+ "congratulations",
+ "dragon",
+ "dragon_face",
+ "ideograph_advantage",
+ "mahjong",
+ "man_with_gua_pi_mao",
+ "secret",
+ "u5272",
+ "u5408",
+ "u6307",
+ "u6708",
+ "u6709",
+ "u6e80",
+ "u7121",
+ "u7533",
+ "u7981",
+ "u7a7a",
+ },
+ "chips": []string{
+ "fries",
+ },
+ "chocolate": []string{
+ "cookie",
+ },
+ "chopsticks": []string{
+ "ramen",
+ },
+ "christ": []string{
+ "church",
+ },
+ "christianity": []string{
+ "latin_cross",
+ },
+ "christmas": []string{
+ "bell",
+ "christmas_island",
+ "gift",
+ "snowflake",
+ "snowman",
+ "snowman_with_snow",
+ },
+ "church": []string{
+ "place_of_worship",
+ },
+ "cigarette": []string{
+ "no_smoking",
+ "smoking",
+ },
+ "circle": []string{
+ "copyright",
+ "do_not_litter",
+ "ideograph_advantage",
+ "no_bicycles",
+ "no_entry",
+ "no_entry_sign",
+ "no_mobile_phones",
+ "no_pedestrians",
+ "non-potable_water",
+ "o",
+ "radio_button",
+ "registered",
+ "underage",
+ },
+ "circus": []string{
+ "balloon",
+ "bowtie",
+ "confetti_ball",
+ "crystal_ball",
+ "elephant",
+ "gorilla",
+ "monkey",
+ "monkey_face",
+ "tada",
+ "tophat",
+ },
+ "city": []string{
+ "night_with_stars",
+ "vatican_city",
+ },
+ "classroom": []string{
+ "notebook_with_decorative_cover",
+ },
+ "classy": []string{
+ "bowtie",
+ "man",
+ "tophat",
+ },
+ "clean": []string{
+ "bath",
+ "bathtub",
+ "shower",
+ },
+ "cleaning": []string{
+ "potable_water",
+ },
+ "clef": []string{
+ "musical_score",
+ },
+ "click": []string{
+ "computer_mouse",
+ },
+ "clock": []string{
+ "hourglass",
+ },
+ "cloth": []string{
+ "necktie",
+ "tshirt",
+ },
+ "clothes": []string{
+ "dress",
+ },
+ "cloud": []string{
+ "cyclone",
+ "thought_balloon",
+ },
+ "cloudy": []string{
+ "partly_sunny",
+ },
+ "clover": []string{
+ "shamrock",
+ },
+ "cluck": []string{
+ "chicken",
+ },
+ "clumsy": []string{
+ "face_with_head_bandage",
+ },
+ "cm": []string{
+ "cameroon",
+ },
+ "co": []string{
+ "colombia",
+ },
+ "coast": []string{
+ "cote_divoire",
+ },
+ "cocktail": []string{
+ "tropical_drink",
+ },
+ "cocos": []string{
+ "cocos_islands",
+ },
+ "coder": []string{
+ "man_technologist",
+ "woman_technologist",
+ },
+ "cog": []string{
+ "gear",
+ },
+ "coins": []string{
+ "moneybag",
+ },
+ "cold": []string{
+ "face_with_thermometer",
+ "mountain_snow",
+ "ski",
+ "snowflake",
+ "snowman",
+ "snowman_with_snow",
+ "thermometer",
+ },
+ "college": []string{
+ "mortar_board",
+ },
+ "collision": []string{
+ "boom",
+ },
+ "colors": []string{
+ "art",
+ },
+ "communication": []string{
+ "artificial_satellite",
+ "e-mail",
+ "email",
+ "envelope_with_arrow",
+ "fax",
+ "mailbox",
+ "mailbox_closed",
+ "mailbox_with_mail",
+ "phone",
+ "post_office",
+ "radio",
+ "satellite",
+ "telephone_receiver",
+ },
+ "competition": []string{
+ "horse_racing",
+ },
+ "compose": []string{
+ "memo",
+ "musical_keyboard",
+ "musical_score",
+ "writing_hand",
+ },
+ "computer": []string{
+ "keyboard",
+ "robot",
+ },
+ "computing": []string{
+ "desktop_computer",
+ },
+ "concern": []string{
+ "worried",
+ },
+ "concert": []string{
+ "stadium",
+ "ticket",
+ "tickets",
+ },
+ "confirm": []string{
+ "ballot_box_with_check",
+ },
+ "confused": []string{
+ "confounded",
+ "grey_question",
+ "man_shrugging",
+ "question",
+ "woman_shrugging",
+ },
+ "congo": []string{
+ "congo_brazzaville",
+ "congo_kinshasa",
+ },
+ "congrats": []string{
+ "clap",
+ },
+ "congratulations": []string{
+ "fireworks",
+ "tada",
+ },
+ "connection": []string{
+ "signal_strength",
+ },
+ "consider": []string{
+ "thinking",
+ },
+ "console": []string{
+ "video_game",
+ },
+ "constellation": []string{
+ "ophiuchus",
+ },
+ "construction": []string{
+ "construction_worker_man",
+ "construction_worker_woman",
+ "rescue_worker_helmet",
+ },
+ "container": []string{
+ "baby_bottle",
+ },
+ "contest": []string{
+ "checkered_flag",
+ "trophy",
+ },
+ "continue": []string{
+ "arrow_up",
+ "fast_forward",
+ },
+ "controller": []string{
+ "video_game",
+ },
+ "cook": []string{
+ "cook_islands",
+ "fire",
+ },
+ "cooking": []string{
+ "shallow_pan_of_food",
+ },
+ "cool": []string{
+ "+1",
+ "dark_sunglasses",
+ "sparkles",
+ "sunglasses",
+ },
+ "costa": []string{
+ "costa_rica",
+ },
+ "countdown": []string{
+ "hourglass_flowing_sand",
+ },
+ "country": []string{
+ "afghanistan",
+ "aland_islands",
+ "albania",
+ "algeria",
+ "american_samoa",
+ "andorra",
+ "angola",
+ "anguilla",
+ "antarctica",
+ "antigua_barbuda",
+ "argentina",
+ "armenia",
+ "aruba",
+ "australia",
+ "austria",
+ "azerbaijan",
+ "bahamas",
+ "bahrain",
+ "bangladesh",
+ "barbados",
+ "belarus",
+ "belgium",
+ "belize",
+ "benin",
+ "bermuda",
+ "bhutan",
+ "bolivia",
+ "bosnia_herzegovina",
+ "botswana",
+ "brazil",
+ "british_indian_ocean_territory",
+ "british_virgin_islands",
+ "brunei",
+ "bulgaria",
+ "burkina_faso",
+ "burundi",
+ "cambodia",
+ "cameroon",
+ "canada",
+ "canary_islands",
+ "cape_verde",
+ "caribbean_netherlands",
+ "cayman_islands",
+ "central_african_republic",
+ "chad",
+ "chile",
+ "christmas_island",
+ "cn",
+ "cocos_islands",
+ "colombia",
+ "comoros",
+ "congo_brazzaville",
+ "congo_kinshasa",
+ "cook_islands",
+ "costa_rica",
+ "cote_divoire",
+ "croatia",
+ "crossed_flags",
+ "cuba",
+ "curacao",
+ "cyprus",
+ "czech_republic",
+ "de",
+ "denmark",
+ "djibouti",
+ "dominica",
+ "dominican_republic",
+ "ecuador",
+ "egypt",
+ "el_salvador",
+ "equatorial_guinea",
+ "eritrea",
+ "es",
+ "estonia",
+ "ethiopia",
+ "falkland_islands",
+ "faroe_islands",
+ "fiji",
+ "finland",
+ "fr",
+ "french_guiana",
+ "french_polynesia",
+ "french_southern_territories",
+ "gabon",
+ "gambia",
+ "georgia",
+ "ghana",
+ "gibraltar",
+ "greece",
+ "greenland",
+ "grenada",
+ "guadeloupe",
+ "guam",
+ "guatemala",
+ "guernsey",
+ "guinea",
+ "guinea_bissau",
+ "guyana",
+ "haiti",
+ "honduras",
+ "hong_kong",
+ "hungary",
+ "iceland",
+ "india",
+ "indonesia",
+ "iran",
+ "iraq",
+ "ireland",
+ "isle_of_man",
+ "israel",
+ "it",
+ "jamaica",
+ "japan",
+ "jersey",
+ "jordan",
+ "jp",
+ "kazakhstan",
+ "kenya",
+ "kiribati",
+ "kosovo",
+ "kr",
+ "kuwait",
+ "kyrgyzstan",
+ "laos",
+ "latvia",
+ "lebanon",
+ "lesotho",
+ "liberia",
+ "libya",
+ "liechtenstein",
+ "lithuania",
+ "luxembourg",
+ "macau",
+ "macedonia",
+ "madagascar",
+ "malawi",
+ "malaysia",
+ "maldives",
+ "mali",
+ "malta",
+ "marshall_islands",
+ "martinique",
+ "mauritania",
+ "mauritius",
+ "mayotte",
+ "mexico",
+ "micronesia",
+ "moldova",
+ "monaco",
+ "mongolia",
+ "montenegro",
+ "montserrat",
+ "morocco",
+ "mozambique",
+ "myanmar",
+ "namibia",
+ "nauru",
+ "nepal",
+ "netherlands",
+ "new_caledonia",
+ "new_zealand",
+ "nicaragua",
+ "niger",
+ "nigeria",
+ "niue",
+ "norfolk_island",
+ "north_korea",
+ "northern_mariana_islands",
+ "norway",
+ "oman",
+ "pakistan",
+ "palau",
+ "palestinian_territories",
+ "panama",
+ "papua_new_guinea",
+ "paraguay",
+ "peru",
+ "philippines",
+ "pitcairn_islands",
+ "poland",
+ "portugal",
+ "puerto_rico",
+ "qatar",
+ "reunion",
+ "romania",
+ "ru",
+ "rwanda",
+ "samoa",
+ "san_marino",
+ "sao_tome_principe",
+ "saudi_arabia",
+ "senegal",
+ "serbia",
+ "seychelles",
+ "sierra_leone",
+ "singapore",
+ "sint_maarten",
+ "slovakia",
+ "slovenia",
+ "solomon_islands",
+ "somalia",
+ "south_africa",
+ "south_georgia_south_sandwich_islands",
+ "south_sudan",
+ "sri_lanka",
+ "st_barthelemy",
+ "st_helena",
+ "st_kitts_nevis",
+ "st_lucia",
+ "st_pierre_miquelon",
+ "st_vincent_grenadines",
+ "sudan",
+ "suriname",
+ "swaziland",
+ "sweden",
+ "switzerland",
+ "syria",
+ "taiwan",
+ "tajikistan",
+ "tanzania",
+ "thailand",
+ "timor_leste",
+ "togo",
+ "tokelau",
+ "tonga",
+ "tr",
+ "trinidad_tobago",
+ "tunisia",
+ "turkmenistan",
+ "turks_caicos_islands",
+ "tuvalu",
+ "uganda",
+ "uk",
+ "ukraine",
+ "united_arab_emirates",
+ "uruguay",
+ "us",
+ "us_virgin_islands",
+ "uzbekistan",
+ "vanuatu",
+ "vatican_city",
+ "venezuela",
+ "vietnam",
+ "wallis_futuna",
+ "western_sahara",
+ "yemen",
+ "zambia",
+ "zimbabwe",
+ },
+ "couple": []string{
+ "bride_with_veil",
+ "man_in_tuxedo",
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ "wedding",
+ },
+ "court": []string{
+ "man_judge",
+ "woman_judge",
+ },
+ "cow": []string{
+ "milk_glass",
+ "ox",
+ "water_buffalo",
+ },
+ "cowgirl": []string{
+ "cowboy_hat_face",
+ },
+ "create": []string{
+ "hammer",
+ "hammer_and_pick",
+ "hammer_and_wrench",
+ },
+ "creativity": []string{
+ "crayon",
+ "paintbrush",
+ },
+ "creature": []string{
+ "octopus",
+ },
+ "creepy": []string{
+ "jack_o_lantern",
+ "japanese_goblin",
+ "japanese_ogre",
+ "skull",
+ },
+ "croak": []string{
+ "frog",
+ },
+ "crossing": []string{
+ "no_pedestrians",
+ },
+ "crown": []string{
+ "prince",
+ "princess",
+ },
+ "cruise": []string{
+ "passenger_ship",
+ },
+ "crush": []string{
+ "blush",
+ "heart_eyes",
+ },
+ "crustacean": []string{
+ "crab",
+ },
+ "cry": []string{
+ "crying_cat_face",
+ "joy",
+ "sob",
+ },
+ "crystal": []string{
+ "diamond_shape_with_a_dot_inside",
+ },
+ "cu": []string{
+ "cuba",
+ },
+ "culture": []string{
+ "classical_building",
+ },
+ "cunha": []string{
+ "st_helena",
+ },
+ "cupertino": []string{
+ "motorway",
+ },
+ "curaรงao": []string{
+ "curacao",
+ },
+ "currency": []string{
+ "dollar",
+ "euro",
+ "heavy_dollar_sign",
+ "pound",
+ "yen",
+ },
+ "curtain": []string{
+ "cinema",
+ },
+ "custom": []string{
+ "passport_control",
+ },
+ "custom_": []string{
+ "hurtrealbad",
+ "neckbeard",
+ "octocat",
+ "shipit",
+ "suspect",
+ "trollface",
+ },
+ "cut": []string{
+ "scissors",
+ "u5272",
+ },
+ "cutlery": []string{
+ "fork_and_knife",
+ "hocho",
+ "spoon",
+ },
+ "cy": []string{
+ "cyprus",
+ },
+ "cycle": []string{
+ "arrows_clockwise",
+ "arrows_counterclockwise",
+ },
+ "cyclist": []string{
+ "no_bicycles",
+ },
+ "cyclone": []string{
+ "tornado",
+ },
+ "cz": []string{
+ "czech_republic",
+ },
+ "dad": []string{
+ "family_man_woman_boy",
+ "man",
+ },
+ "dancer": []string{
+ "man_dancing",
+ },
+ "danger": []string{
+ "biohazard",
+ "children_crossing",
+ "exclamation",
+ "radioactive",
+ "red_circle",
+ "skull_and_crossbones",
+ "tiger",
+ },
+ "dark": []string{
+ "flashlight",
+ },
+ "darussalam": []string{
+ "brunei",
+ },
+ "data": []string{
+ "minidisc",
+ },
+ "date": []string{
+ "calendar",
+ "couple",
+ "spiral_calendar",
+ },
+ "dating": []string{
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "couplekiss_man_man",
+ "couplekiss_man_woman",
+ "couplekiss_woman_woman",
+ "love_hotel",
+ },
+ "dawn": []string{
+ "city_sunrise",
+ "clock6",
+ },
+ "dead": []string{
+ "coffin",
+ "funeral_urn",
+ "skull",
+ },
+ "deadline": []string{
+ "stopwatch",
+ },
+ "deadly": []string{
+ "skull_and_crossbones",
+ },
+ "deadpan": []string{
+ "expressionless",
+ },
+ "death": []string{
+ "coffin",
+ "funeral_urn",
+ },
+ "december": []string{
+ "christmas_tree",
+ },
+ "decoration": []string{
+ "heavy_heart_exclamation",
+ "ribbon",
+ "rosette",
+ },
+ "decorative": []string{
+ "fleur_de_lis",
+ },
+ "degree": []string{
+ "mortar_board",
+ },
+ "delete": []string{
+ "x",
+ },
+ "delicious": []string{
+ "yum",
+ },
+ "democratic": []string{
+ "congo_kinshasa",
+ "laos",
+ },
+ "demon": []string{
+ "japanese_ogre",
+ },
+ "denied": []string{
+ "no_entry",
+ "no_entry_sign",
+ },
+ "deny": []string{
+ "negative_squared_cross_mark",
+ },
+ "deploy": []string{
+ "ship",
+ },
+ "depressed": []string{
+ "cry",
+ "disappointed",
+ "frowning_man",
+ "frowning_woman",
+ "pensive",
+ "sob",
+ },
+ "desert": []string{
+ "camel",
+ "dromedary_camel",
+ },
+ "design": []string{
+ "art",
+ },
+ "despise": []string{
+ "rage",
+ "rage1",
+ "rage2",
+ "rage3",
+ "rage4",
+ },
+ "dessert": []string{
+ "birthday",
+ "cake",
+ "candy",
+ "chocolate_bar",
+ "cookie",
+ "custard",
+ "dango",
+ "doughnut",
+ "ice_cream",
+ "icecream",
+ "shaved_ice",
+ },
+ "destination": []string{
+ "koko",
+ },
+ "detective": []string{
+ "female_detective",
+ "mag",
+ "mag_right",
+ "male_detective",
+ "shipit",
+ },
+ "developer": []string{
+ "man_technologist",
+ "woman_technologist",
+ },
+ "devil": []string{
+ "imp",
+ "japanese_ogre",
+ "smiling_imp",
+ },
+ "dhikr": []string{
+ "prayer_beads",
+ },
+ "diagonal": []string{
+ "arrow_lower_left",
+ "arrow_lower_right",
+ "arrow_upper_left",
+ "arrow_upper_right",
+ },
+ "dial": []string{
+ "control_knobs",
+ "iphone",
+ "phone",
+ "telephone_receiver",
+ },
+ "diamond": []string{
+ "gem",
+ "ring",
+ },
+ "dice": []string{
+ "game_die",
+ },
+ "die": []string{
+ "coffin",
+ "funeral_urn",
+ },
+ "dig": []string{
+ "pick",
+ },
+ "ding": []string{
+ "wind_chime",
+ },
+ "dinner": []string{
+ "plate_with_cutlery",
+ },
+ "direction": []string{
+ "arrow_backward",
+ "arrow_double_down",
+ "arrow_double_up",
+ "arrow_down",
+ "arrow_down_small",
+ "arrow_forward",
+ "arrow_heading_down",
+ "arrow_heading_up",
+ "arrow_lower_left",
+ "arrow_lower_right",
+ "arrow_right_hook",
+ "arrow_up",
+ "arrow_up_down",
+ "arrow_up_small",
+ "arrow_upper_left",
+ "arrow_upper_right",
+ "left_right_arrow",
+ "point_down",
+ "point_left",
+ "point_right",
+ "point_up",
+ "point_up_2",
+ "small_red_triangle",
+ "small_red_triangle_down",
+ "world_map",
+ },
+ "disabled": []string{
+ "wheelchair",
+ },
+ "disallow": []string{
+ "no_entry_sign",
+ },
+ "disappointed": []string{
+ "slightly_frowning_face",
+ },
+ "disaster": []string{
+ "ocean",
+ "volcano",
+ },
+ "disbelief": []string{
+ "man_facepalming",
+ "woman_facepalming",
+ },
+ "disc": []string{
+ "cd",
+ "dvd",
+ },
+ "disco": []string{
+ "crystal_ball",
+ },
+ "discouraged": []string{
+ "frowning_man",
+ "frowning_woman",
+ },
+ "disease": []string{
+ "mask",
+ },
+ "disk": []string{
+ "cd",
+ "dvd",
+ "minidisc",
+ },
+ "dislike": []string{
+ "-1",
+ },
+ "display": []string{
+ "computer",
+ },
+ "distilling": []string{
+ "alembic",
+ },
+ "divide": []string{
+ "heavy_division_sign",
+ "u5272",
+ },
+ "diy": []string{
+ "wrench",
+ },
+ "dizzy": []string{
+ "dizzy_face",
+ },
+ "dj": []string{
+ "djibouti",
+ },
+ "dk": []string{
+ "denmark",
+ },
+ "dm": []string{
+ "dominica",
+ },
+ "doctor": []string{
+ "hospital",
+ "man_health_worker",
+ "pill",
+ "syringe",
+ "woman_health_worker",
+ },
+ "documents": []string{
+ "briefcase",
+ "clipboard",
+ "file_folder",
+ "inbox_tray",
+ "memo",
+ "open_file_folder",
+ "page_facing_up",
+ "page_with_curl",
+ "paperclip",
+ "paperclips",
+ "scroll",
+ },
+ "dog": []string{
+ "paw_prints",
+ "poodle",
+ },
+ "doge": []string{
+ "dog2",
+ },
+ "dollar": []string{
+ "credit_card",
+ "currency_exchange",
+ "euro",
+ "money_mouth_face",
+ "money_with_wings",
+ "moneybag",
+ "yen",
+ },
+ "dominican": []string{
+ "dominican_republic",
+ },
+ "donut": []string{
+ "doughnut",
+ },
+ "doom": []string{
+ "feelsgood",
+ "finnadie",
+ "goberserk",
+ "godmode",
+ "hurtrealbad",
+ },
+ "door": []string{
+ "key",
+ "old_key",
+ },
+ "dork": []string{
+ "eyeglasses",
+ "nerd_face",
+ },
+ "doubt": []string{
+ "man_shrugging",
+ "question",
+ "woman_shrugging",
+ },
+ "doubts": []string{
+ "grey_question",
+ },
+ "down": []string{
+ "point_down",
+ },
+ "downtown": []string{
+ "night_with_stars",
+ },
+ "drama": []string{
+ "performing_arts",
+ },
+ "draw": []string{
+ "art",
+ "curly_loop",
+ "wavy_dash",
+ },
+ "drawing": []string{
+ "crayon",
+ "paintbrush",
+ "straight_ruler",
+ },
+ "dream": []string{
+ "thought_balloon",
+ "zzz",
+ },
+ "dress": []string{
+ "kimono",
+ },
+ "drink": []string{
+ "beer",
+ "beers",
+ "champagne",
+ "clinking_glasses",
+ "cocktail",
+ "milk_glass",
+ "non-potable_water",
+ "sake",
+ "tea",
+ "tumbler_glass",
+ "underage",
+ "wine_glass",
+ },
+ "drip": []string{
+ "droplet",
+ "sweat_drops",
+ },
+ "driving": []string{
+ "children_crossing",
+ "vertical_traffic_light",
+ },
+ "drizzle": []string{
+ "closed_umbrella",
+ },
+ "drug": []string{
+ "pill",
+ },
+ "drugs": []string{
+ "syringe",
+ },
+ "drumstick": []string{
+ "meat_on_bone",
+ "poultry_leg",
+ },
+ "drumsticks": []string{
+ "drum",
+ },
+ "drunk": []string{
+ "beer",
+ "beers",
+ "cocktail",
+ "sake",
+ "tumbler_glass",
+ "wine_glass",
+ },
+ "dusk": []string{
+ "clock6",
+ },
+ "dutch": []string{
+ "sint_maarten",
+ },
+ "dvd": []string{
+ "cd",
+ },
+ "dz": []string{
+ "algeria",
+ },
+ "early": []string{
+ "clock1",
+ "clock10",
+ "clock1030",
+ "clock11",
+ "clock1130",
+ "clock12",
+ "clock1230",
+ "clock130",
+ "clock2",
+ "clock230",
+ "clock3",
+ "clock330",
+ "clock4",
+ "clock430",
+ "clock5",
+ "clock530",
+ "clock6",
+ "clock630",
+ "clock7",
+ "clock730",
+ "clock8",
+ "clock830",
+ "clock9",
+ "clock930",
+ },
+ "earth": []string{
+ "globe_with_meridians",
+ },
+ "east": []string{
+ "earth_asia",
+ },
+ "easter island": []string{
+ "moyai",
+ },
+ "eat": []string{
+ "plate_with_cutlery",
+ },
+ "ec": []string{
+ "ecuador",
+ },
+ "economics": []string{
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "part_alternation_mark",
+ },
+ "education": []string{
+ "mortar_board",
+ "school",
+ "school_satchel",
+ },
+ "ee": []string{
+ "estonia",
+ },
+ "eg": []string{
+ "egypt",
+ },
+ "egg": []string{
+ "fried_egg",
+ "hatching_chick",
+ },
+ "el": []string{
+ "el_salvador",
+ },
+ "elder": []string{
+ "older_man",
+ "older_woman",
+ },
+ "election": []string{
+ "ballot_box",
+ "ballot_box_with_check",
+ "white_check_mark",
+ },
+ "electricity": []string{
+ "bulb",
+ },
+ "email": []string{
+ "envelope_with_arrow",
+ "european_post_office",
+ "inbox_tray",
+ "incoming_envelope",
+ "love_letter",
+ "mailbox",
+ "mailbox_closed",
+ "mailbox_with_mail",
+ "mailbox_with_no_mail",
+ "outbox_tray",
+ "postbox",
+ },
+ "embarrassed": []string{
+ "blush",
+ },
+ "embarrassing": []string{
+ "hole",
+ },
+ "emergency": []string{
+ "rotating_light",
+ "sos",
+ },
+ "emirates": []string{
+ "united_arab_emirates",
+ },
+ "empty": []string{
+ "u7a7a",
+ },
+ "energy": []string{
+ "battery",
+ },
+ "enforcement": []string{
+ "oncoming_police_car",
+ "police_car",
+ "policeman",
+ "policewoman",
+ },
+ "engagement": []string{
+ "ring",
+ },
+ "engineer": []string{
+ "man_scientist",
+ "man_technologist",
+ "woman_scientist",
+ "woman_technologist",
+ },
+ "england": []string{
+ "pound",
+ "uk",
+ },
+ "english": []string{
+ "uk",
+ },
+ "enter": []string{
+ "leftwards_arrow_with_hook",
+ },
+ "enterprise": []string{
+ "bank",
+ },
+ "entertainer": []string{
+ "man_singer",
+ "woman_singer",
+ },
+ "entrance": []string{
+ "tickets",
+ },
+ "entry": []string{
+ "door",
+ },
+ "envelope": []string{
+ "love_letter",
+ "post_office",
+ "postbox",
+ },
+ "environment": []string{
+ "mountain",
+ "mountain_snow",
+ "national_park",
+ "recycle",
+ },
+ "equatorial": []string{
+ "equatorial_guinea",
+ },
+ "er": []string{
+ "eritrea",
+ },
+ "error": []string{
+ "red_circle",
+ "rotating_light",
+ "warning",
+ },
+ "espresso": []string{
+ "coffee",
+ },
+ "et": []string{
+ "ethiopia",
+ },
+ "european": []string{
+ "eu",
+ },
+ "evening": []string{
+ "city_sunset",
+ "crescent_moon",
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "full_moon",
+ "full_moon_with_face",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "new_moon",
+ "new_moon_with_face",
+ "night_with_stars",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ },
+ "event": []string{
+ "ticket",
+ },
+ "evict": []string{
+ "derelict_house",
+ },
+ "evil": []string{
+ "black_heart",
+ "japanese_goblin",
+ "snake",
+ },
+ "evil_eye": []string{
+ "metal",
+ },
+ "exam": []string{
+ "100",
+ "hourglass",
+ "memo",
+ },
+ "exclamation": []string{
+ "bangbang",
+ "warning",
+ },
+ "exercise": []string{
+ "bike",
+ "biking_man",
+ "biking_woman",
+ "running_man",
+ "running_woman",
+ "sweat",
+ "swimming_man",
+ "swimming_woman",
+ "weight_lifting_man",
+ "weight_lifting_woman",
+ },
+ "exit": []string{
+ "door",
+ },
+ "experiment": []string{
+ "alembic",
+ "microscope",
+ },
+ "explode": []string{
+ "bomb",
+ "boom",
+ },
+ "explosion": []string{
+ "bomb",
+ "boom",
+ },
+ "express": []string{
+ "articulated_lorry",
+ },
+ "eye": []string{
+ "wink",
+ },
+ "eyeroll": []string{
+ "roll_eyes",
+ },
+ "eyesight": []string{
+ "eyeglasses",
+ },
+ "f1": []string{
+ "racing_car",
+ },
+ "face": []string{
+ "angry",
+ "anguished",
+ "astonished",
+ "blush",
+ "bowtie",
+ "clown_face",
+ "cold_sweat",
+ "confounded",
+ "confused",
+ "cowboy_hat_face",
+ "cry",
+ "dark_sunglasses",
+ "disappointed",
+ "disappointed_relieved",
+ "drooling_face",
+ "ear",
+ "expressionless",
+ "eye",
+ "fearful",
+ "flushed",
+ "fox_face",
+ "frowning",
+ "frowning_face",
+ "grimacing",
+ "grin",
+ "grinning",
+ "heart_eyes",
+ "hugs",
+ "hushed",
+ "innocent",
+ "joy",
+ "kiss",
+ "kissing",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "kissing_smiling_eyes",
+ "laughing",
+ "lying_face",
+ "mask",
+ "money_mouth_face",
+ "nauseated_face",
+ "neckbeard",
+ "nerd_face",
+ "no_mouth",
+ "open_mouth",
+ "pensive",
+ "persevere",
+ "relaxed",
+ "relieved",
+ "rofl",
+ "roll_eyes",
+ "scream",
+ "sleeping",
+ "sleepy",
+ "slightly_frowning_face",
+ "slightly_smiling_face",
+ "smile",
+ "smiley",
+ "smirk",
+ "sneezing_face",
+ "sob",
+ "stuck_out_tongue",
+ "stuck_out_tongue_closed_eyes",
+ "stuck_out_tongue_winking_eye",
+ "sunglasses",
+ "sweat",
+ "sweat_smile",
+ "thinking",
+ "triumph",
+ "upside_down_face",
+ "weary",
+ "wink",
+ "worried",
+ "yum",
+ "zipper_mouth_face",
+ },
+ "fail": []string{
+ "poop",
+ "white_flag",
+ },
+ "failure": []string{
+ "chart_with_downwards_trend",
+ },
+ "fairness": []string{
+ "balance_scale",
+ },
+ "faithful": []string{
+ "dog",
+ "dog2",
+ },
+ "falkland": []string{
+ "falkland_islands",
+ },
+ "fall": []string{
+ "jack_o_lantern",
+ "maple_leaf",
+ "partly_sunny",
+ "sunflower",
+ },
+ "fancy": []string{
+ "diamond_shape_with_a_dot_inside",
+ },
+ "farewell": []string{
+ "wave",
+ },
+ "farming": []string{
+ "tractor",
+ },
+ "faroe": []string{
+ "faroe_islands",
+ },
+ "fart": []string{
+ "dash",
+ },
+ "fashion": []string{
+ "bikini",
+ "boot",
+ "bowtie",
+ "dress",
+ "eyeglasses",
+ "handbag",
+ "high_heel",
+ "jeans",
+ "kimono",
+ "lipstick",
+ "mans_shoe",
+ "nail_care",
+ "necktie",
+ "purse",
+ "ring",
+ "sandal",
+ "tshirt",
+ "womans_clothes",
+ "womans_hat",
+ },
+ "faso": []string{
+ "burkina_faso",
+ },
+ "fast": []string{
+ "bullettrain_front",
+ "dash",
+ "motorcycle",
+ "racing_car",
+ "zap",
+ },
+ "fast food": []string{
+ "fries",
+ "hamburger",
+ },
+ "father": []string{
+ "family_man_woman_boy",
+ "man",
+ },
+ "father christmas": []string{
+ "santa",
+ },
+ "faucet": []string{
+ "droplet",
+ "non-potable_water",
+ "potable_water",
+ },
+ "favorite": []string{
+ "bookmark",
+ "bookmark_tabs",
+ },
+ "federated": []string{
+ "micronesia",
+ },
+ "federation": []string{
+ "ru",
+ },
+ "feet": []string{
+ "footprints",
+ "paw_prints",
+ "walking_man",
+ "walking_woman",
+ },
+ "female": []string{
+ "basketball_woman",
+ "biking_woman",
+ "bikini",
+ "blonde_woman",
+ "bowing_woman",
+ "construction_worker_woman",
+ "dancer",
+ "dancing_women",
+ "female_detective",
+ "frowning_woman",
+ "girl",
+ "golfing_woman",
+ "guardswoman",
+ "haircut_woman",
+ "high_heel",
+ "kimono",
+ "lipstick",
+ "massage_woman",
+ "mountain_biking_woman",
+ "mrs_claus",
+ "no_good_woman",
+ "ok_woman",
+ "older_woman",
+ "policewoman",
+ "pouting_woman",
+ "princess",
+ "raising_hand_woman",
+ "rowing_woman",
+ "running_woman",
+ "surfing_woman",
+ "swimming_woman",
+ "tipping_hand_woman",
+ "two_women_holding_hands",
+ "walking_woman",
+ "weight_lifting_woman",
+ "woman",
+ "woman_facepalming",
+ "woman_shrugging",
+ "woman_with_turban",
+ "womans_clothes",
+ "womans_hat",
+ "womens",
+ },
+ "fencing": []string{
+ "person_fencing",
+ },
+ "ferry": []string{
+ "anchor",
+ "passenger_ship",
+ },
+ "festival": []string{
+ "christmas_tree",
+ "circus_tent",
+ "confetti_ball",
+ "fireworks",
+ "santa",
+ },
+ "fever": []string{
+ "face_with_thermometer",
+ },
+ "fi": []string{
+ "finland",
+ },
+ "fighting": []string{
+ "boxing_glove",
+ },
+ "filing": []string{
+ "file_cabinet",
+ },
+ "film": []string{
+ "cinema",
+ "clapper",
+ "movie_camera",
+ "video_camera",
+ },
+ "films": []string{
+ "popcorn",
+ },
+ "find": []string{
+ "mag",
+ "mag_right",
+ },
+ "finger": []string{
+ "nail_care",
+ },
+ "fingers": []string{
+ "fist",
+ "fu",
+ "metal",
+ "ok_hand",
+ "open_hands",
+ "point_down",
+ "point_left",
+ "point_right",
+ "point_up",
+ "point_up_2",
+ "raised_back_of_hand",
+ "raised_hand",
+ "raised_hand_with_fingers_splayed",
+ "v",
+ "vulcan_salute",
+ },
+ "finishline": []string{
+ "checkered_flag",
+ },
+ "fins": []string{
+ "dolphin",
+ "shark",
+ },
+ "fire": []string{
+ "candle",
+ "name_badge",
+ },
+ "fireman": []string{
+ "man_firefighter",
+ "woman_firefighter",
+ },
+ "fireworks": []string{
+ "sparkle",
+ },
+ "first": []string{
+ "1st_place_medal",
+ },
+ "fish": []string{
+ "dolphin",
+ "flags",
+ "shark",
+ "sushi",
+ },
+ "fist": []string{
+ "facepunch",
+ },
+ "fistbump": []string{
+ "fist_left",
+ "fist_right",
+ },
+ "fix": []string{
+ "nut_and_bolt",
+ "wrench",
+ },
+ "fj": []string{
+ "fiji",
+ },
+ "flag": []string{
+ "afghanistan",
+ "aland_islands",
+ "albania",
+ "algeria",
+ "american_samoa",
+ "andorra",
+ "angola",
+ "anguilla",
+ "antarctica",
+ "antigua_barbuda",
+ "argentina",
+ "armenia",
+ "aruba",
+ "australia",
+ "austria",
+ "azerbaijan",
+ "bahamas",
+ "bahrain",
+ "bangladesh",
+ "barbados",
+ "belarus",
+ "belgium",
+ "belize",
+ "benin",
+ "bermuda",
+ "bhutan",
+ "bolivia",
+ "bosnia_herzegovina",
+ "botswana",
+ "brazil",
+ "british_indian_ocean_territory",
+ "british_virgin_islands",
+ "brunei",
+ "bulgaria",
+ "burkina_faso",
+ "burundi",
+ "cambodia",
+ "cameroon",
+ "canada",
+ "canary_islands",
+ "cape_verde",
+ "caribbean_netherlands",
+ "cayman_islands",
+ "central_african_republic",
+ "chad",
+ "chile",
+ "christmas_island",
+ "cn",
+ "cocos_islands",
+ "colombia",
+ "comoros",
+ "congo_brazzaville",
+ "congo_kinshasa",
+ "cook_islands",
+ "costa_rica",
+ "cote_divoire",
+ "croatia",
+ "cuba",
+ "curacao",
+ "cyprus",
+ "czech_republic",
+ "de",
+ "denmark",
+ "djibouti",
+ "dominica",
+ "dominican_republic",
+ "ecuador",
+ "egypt",
+ "el_salvador",
+ "equatorial_guinea",
+ "eritrea",
+ "es",
+ "estonia",
+ "ethiopia",
+ "eu",
+ "falkland_islands",
+ "faroe_islands",
+ "fiji",
+ "finland",
+ "fr",
+ "french_guiana",
+ "french_polynesia",
+ "french_southern_territories",
+ "gabon",
+ "gambia",
+ "georgia",
+ "ghana",
+ "gibraltar",
+ "golf",
+ "greece",
+ "greenland",
+ "grenada",
+ "guadeloupe",
+ "guam",
+ "guatemala",
+ "guernsey",
+ "guinea",
+ "guinea_bissau",
+ "guyana",
+ "haiti",
+ "honduras",
+ "hong_kong",
+ "hungary",
+ "iceland",
+ "india",
+ "indonesia",
+ "iran",
+ "iraq",
+ "ireland",
+ "isle_of_man",
+ "israel",
+ "it",
+ "jamaica",
+ "jersey",
+ "jordan",
+ "jp",
+ "kazakhstan",
+ "kenya",
+ "kiribati",
+ "kosovo",
+ "kr",
+ "kuwait",
+ "kyrgyzstan",
+ "laos",
+ "latvia",
+ "lebanon",
+ "lesotho",
+ "liberia",
+ "libya",
+ "liechtenstein",
+ "lithuania",
+ "luxembourg",
+ "macau",
+ "macedonia",
+ "madagascar",
+ "malawi",
+ "malaysia",
+ "maldives",
+ "mali",
+ "malta",
+ "marshall_islands",
+ "martinique",
+ "mauritania",
+ "mauritius",
+ "mayotte",
+ "mexico",
+ "micronesia",
+ "moldova",
+ "monaco",
+ "mongolia",
+ "montenegro",
+ "montserrat",
+ "morocco",
+ "mozambique",
+ "myanmar",
+ "namibia",
+ "nauru",
+ "nepal",
+ "netherlands",
+ "new_caledonia",
+ "new_zealand",
+ "nicaragua",
+ "niger",
+ "nigeria",
+ "niue",
+ "norfolk_island",
+ "north_korea",
+ "northern_mariana_islands",
+ "norway",
+ "oman",
+ "pakistan",
+ "palau",
+ "palestinian_territories",
+ "panama",
+ "papua_new_guinea",
+ "paraguay",
+ "peru",
+ "philippines",
+ "pitcairn_islands",
+ "poland",
+ "portugal",
+ "puerto_rico",
+ "qatar",
+ "rainbow_flag",
+ "reunion",
+ "romania",
+ "ru",
+ "rwanda",
+ "samoa",
+ "san_marino",
+ "sao_tome_principe",
+ "saudi_arabia",
+ "senegal",
+ "serbia",
+ "seychelles",
+ "sierra_leone",
+ "singapore",
+ "sint_maarten",
+ "slovakia",
+ "slovenia",
+ "solomon_islands",
+ "somalia",
+ "south_africa",
+ "south_georgia_south_sandwich_islands",
+ "south_sudan",
+ "sri_lanka",
+ "st_barthelemy",
+ "st_helena",
+ "st_kitts_nevis",
+ "st_lucia",
+ "st_pierre_miquelon",
+ "st_vincent_grenadines",
+ "sudan",
+ "suriname",
+ "swaziland",
+ "sweden",
+ "switzerland",
+ "syria",
+ "taiwan",
+ "tajikistan",
+ "tanzania",
+ "thailand",
+ "timor_leste",
+ "togo",
+ "tokelau",
+ "tonga",
+ "tr",
+ "trinidad_tobago",
+ "tunisia",
+ "turkmenistan",
+ "turks_caicos_islands",
+ "tuvalu",
+ "uganda",
+ "uk",
+ "ukraine",
+ "united_arab_emirates",
+ "uruguay",
+ "us",
+ "us_virgin_islands",
+ "uzbekistan",
+ "vanuatu",
+ "vatican_city",
+ "venezuela",
+ "vietnam",
+ "wallis_futuna",
+ "western_sahara",
+ "yemen",
+ "zambia",
+ "zimbabwe",
+ },
+ "flame": []string{
+ "fire",
+ },
+ "flapjacks": []string{
+ "pancakes",
+ },
+ "flatbread": []string{
+ "stuffed_flatbread",
+ },
+ "flattered": []string{
+ "flushed",
+ },
+ "flex": []string{
+ "muscle",
+ },
+ "flight": []string{
+ "airplane",
+ "flight_arrival",
+ "flight_departure",
+ "seat",
+ "small_airplane",
+ },
+ "flip flops": []string{
+ "sandal",
+ },
+ "flipped": []string{
+ "upside_down_face",
+ },
+ "flipper": []string{
+ "dolphin",
+ },
+ "flipping": []string{
+ "fu",
+ },
+ "floor": []string{
+ "rofl",
+ },
+ "flower": []string{
+ "cherry_blossom",
+ "rosette",
+ "wilted_flower",
+ },
+ "flowers": []string{
+ "blossom",
+ "bouquet",
+ "hibiscus",
+ "rose",
+ "tulip",
+ },
+ "flushed": []string{
+ "blush",
+ },
+ "fly": []string{
+ "airplane",
+ "bird",
+ "helicopter",
+ "rocket",
+ "seat",
+ "small_airplane",
+ },
+ "food": []string{
+ "avocado",
+ "baby_bottle",
+ "bacon",
+ "baguette_bread",
+ "banana",
+ "bento",
+ "birthday",
+ "blowfish",
+ "bread",
+ "burrito",
+ "cake",
+ "carrot",
+ "cheese",
+ "cherries",
+ "chestnut",
+ "chocolate_bar",
+ "cookie",
+ "corn",
+ "croissant",
+ "cucumber",
+ "curry",
+ "custard",
+ "dango",
+ "doughnut",
+ "egg",
+ "eggplant",
+ "fish",
+ "fish_cake",
+ "fishing_pole_and_fish",
+ "fried_egg",
+ "fried_shrimp",
+ "grapes",
+ "green_salad",
+ "hot_pepper",
+ "hotdog",
+ "ice_cream",
+ "icecream",
+ "kiwi_fruit",
+ "lollipop",
+ "meat_on_bone",
+ "melon",
+ "oden",
+ "pancakes",
+ "peach",
+ "peanuts",
+ "pear",
+ "pineapple",
+ "pizza",
+ "plate_with_cutlery",
+ "popcorn",
+ "potato",
+ "poultry_leg",
+ "ramen",
+ "rice",
+ "rice_ball",
+ "rice_cracker",
+ "shallow_pan_of_food",
+ "spaghetti",
+ "stew",
+ "strawberry",
+ "stuffed_flatbread",
+ "sushi",
+ "sweet_potato",
+ "taco",
+ "tangerine",
+ "tomato",
+ "watermelon",
+ },
+ "football": []string{
+ "soccer",
+ },
+ "footprints": []string{
+ "paw_prints",
+ },
+ "forbid": []string{
+ "name_badge",
+ "no_entry_sign",
+ },
+ "forbidden": []string{
+ "u7981",
+ },
+ "formal": []string{
+ "bowtie",
+ "necktie",
+ },
+ "formula": []string{
+ "racing_car",
+ },
+ "fortune_teller": []string{
+ "crystal_ball",
+ },
+ "forward": []string{
+ "arrow_up_small",
+ "next_track_button",
+ },
+ "frame": []string{
+ "black_square_button",
+ },
+ "france": []string{
+ "fr",
+ },
+ "frankfurter": []string{
+ "hotdog",
+ },
+ "french": []string{
+ "baguette_bread",
+ "croissant",
+ "fr",
+ "french_guiana",
+ "french_polynesia",
+ "french_southern_territories",
+ },
+ "fresh": []string{
+ "fountain",
+ },
+ "friend": []string{
+ "dog",
+ "dog2",
+ },
+ "friendship": []string{
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ },
+ "frown": []string{
+ "frowning_face",
+ },
+ "frowning": []string{
+ "slightly_frowning_face",
+ },
+ "frozen": []string{
+ "snowman",
+ "snowman_with_snow",
+ },
+ "fruit": []string{
+ "apple",
+ "avocado",
+ "banana",
+ "cherries",
+ "cucumber",
+ "grapes",
+ "green_apple",
+ "kiwi_fruit",
+ "lemon",
+ "melon",
+ "peach",
+ "pear",
+ "pineapple",
+ "strawberry",
+ "tangerine",
+ "tomato",
+ "watermelon",
+ },
+ "fruit machine": []string{
+ "slot_machine",
+ },
+ "frustrated": []string{
+ "angry",
+ "roll_eyes",
+ "tired_face",
+ "weary",
+ },
+ "ftw": []string{
+ "trophy",
+ },
+ "full": []string{
+ "u6e80",
+ },
+ "fun": []string{
+ "bowling",
+ "dancer",
+ "man_dancing",
+ "roller_coaster",
+ },
+ "funny": []string{
+ "smile",
+ "smiley",
+ },
+ "futuna": []string{
+ "wallis_futuna",
+ },
+ "future": []string{
+ "satellite",
+ },
+ "ga": []string{
+ "gabon",
+ },
+ "gadgets": []string{
+ "camera",
+ "camera_flash",
+ "headphones",
+ "iphone",
+ },
+ "gamble": []string{
+ "racehorse",
+ "slot_machine",
+ },
+ "gambling": []string{
+ "horse_racing",
+ },
+ "game": []string{
+ "8ball",
+ "black_joker",
+ "dart",
+ "flower_playing_cards",
+ "joystick",
+ "mahjong",
+ "space_invader",
+ },
+ "garbage": []string{
+ "do_not_litter",
+ "recycle",
+ "wastebasket",
+ },
+ "gardener": []string{
+ "man_farmer",
+ "woman_farmer",
+ },
+ "gas": []string{
+ "triumph",
+ },
+ "gas station": []string{
+ "fuelpump",
+ },
+ "gay": []string{
+ "rainbow_flag",
+ },
+ "gb": []string{
+ "guardsman",
+ "guardswoman",
+ },
+ "gd": []string{
+ "grenada",
+ },
+ "ge": []string{
+ "georgia",
+ },
+ "geek": []string{
+ "eyeglasses",
+ "nerd_face",
+ },
+ "gem": []string{
+ "diamond_shape_with_a_dot_inside",
+ "large_blue_diamond",
+ "large_orange_diamond",
+ "ring",
+ "small_blue_diamond",
+ "small_orange_diamond",
+ },
+ "gender": []string{
+ "mens",
+ "restroom",
+ "womens",
+ },
+ "gentleman": []string{
+ "tophat",
+ },
+ "georgia": []string{
+ "south_georgia_south_sandwich_islands",
+ },
+ "german": []string{
+ "de",
+ },
+ "gesture": []string{
+ "call_me_hand",
+ "raised_hands",
+ "wave",
+ },
+ "gesundheit": []string{
+ "sneezing_face",
+ },
+ "get": []string{
+ "ideograph_advantage",
+ },
+ "gg": []string{
+ "guernsey",
+ },
+ "gh": []string{
+ "ghana",
+ },
+ "gi": []string{
+ "gibraltar",
+ },
+ "gift": []string{
+ "package",
+ },
+ "girl": []string{
+ "baby",
+ "bikini",
+ "blonde_woman",
+ "bowing_woman",
+ "dancer",
+ "frowning_woman",
+ "haircut_woman",
+ "lipstick",
+ "massage_woman",
+ "no_good_woman",
+ "ok_woman",
+ "pouting_woman",
+ "princess",
+ "raising_hand_woman",
+ "ribbon",
+ "tipping_hand_woman",
+ "woman_facepalming",
+ "woman_shrugging",
+ },
+ "girls": []string{
+ "dancing_women",
+ "woman",
+ },
+ "github": []string{
+ "octocat",
+ },
+ "give up": []string{
+ "white_flag",
+ },
+ "gl": []string{
+ "greenland",
+ },
+ "glad": []string{
+ "laughing",
+ },
+ "glass": []string{
+ "tumbler_glass",
+ },
+ "glbt": []string{
+ "rainbow_flag",
+ },
+ "globe": []string{
+ "earth_africa",
+ "earth_americas",
+ "earth_asia",
+ },
+ "glyphs": []string{
+ "symbols",
+ },
+ "gm": []string{
+ "gambia",
+ },
+ "gn": []string{
+ "equatorial_guinea",
+ "guinea",
+ },
+ "goblin": []string{
+ "japanese_goblin",
+ },
+ "gokart": []string{
+ "checkered_flag",
+ },
+ "good": []string{
+ "+1",
+ "accept",
+ "chart_with_upwards_trend",
+ "crossed_fingers",
+ "meat_on_bone",
+ "ok",
+ "sparkle",
+ "sparkles",
+ "star2",
+ },
+ "good morning": []string{
+ "city_sunrise",
+ },
+ "goodbye": []string{
+ "wave",
+ },
+ "gp": []string{
+ "guadeloupe",
+ },
+ "gps": []string{
+ "artificial_satellite",
+ },
+ "gr": []string{
+ "greece",
+ },
+ "graduate": []string{
+ "man_student",
+ "woman_student",
+ },
+ "graduation": []string{
+ "mortar_board",
+ },
+ "graph": []string{
+ "bar_chart",
+ "chart",
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "part_alternation_mark",
+ },
+ "grasp": []string{
+ "fist",
+ },
+ "grass": []string{
+ "herb",
+ "leaves",
+ "seedling",
+ },
+ "graveyard": []string{
+ "coffin",
+ },
+ "gray": []string{
+ "grey_exclamation",
+ "grey_question",
+ "waxing_gibbous_moon",
+ },
+ "great": []string{
+ "uk",
+ },
+ "green": []string{
+ "dragon",
+ "dragon_face",
+ "nauseated_face",
+ "tea",
+ "tennis",
+ },
+ "green-square": []string{
+ "chart",
+ "eight_spoked_asterisk",
+ "negative_squared_cross_mark",
+ "sparkle",
+ "u6307",
+ "white_check_mark",
+ },
+ "grenadines": []string{
+ "st_vincent_grenadines",
+ },
+ "grimace": []string{
+ "grimacing",
+ },
+ "grin": []string{
+ "grinning",
+ },
+ "groceries": []string{
+ "convenience_store",
+ },
+ "groom": []string{
+ "man_in_tuxedo",
+ "wedding",
+ },
+ "gross": []string{
+ "nauseated_face",
+ },
+ "group": []string{
+ "busts_in_silhouette",
+ },
+ "gt": []string{
+ "guatemala",
+ },
+ "gu": []string{
+ "guam",
+ },
+ "guiana": []string{
+ "french_guiana",
+ },
+ "guinea": []string{
+ "papua_new_guinea",
+ },
+ "gust": []string{
+ "wind_face",
+ },
+ "guy": []string{
+ "blonde_man",
+ "boy",
+ "construction_worker_man",
+ "guardsman",
+ "man",
+ },
+ "gw": []string{
+ "guinea_bissau",
+ },
+ "gy": []string{
+ "guyana",
+ },
+ "gymnastics": []string{
+ "man_cartwheeling",
+ "woman_cartwheeling",
+ },
+ "gyro": []string{
+ "stuffed_flatbread",
+ },
+ "haha": []string{
+ "joy",
+ "joy_cat",
+ "laughing",
+ "rofl",
+ "see_no_evil",
+ "smile",
+ "smiley",
+ },
+ "hair": []string{
+ "barber",
+ },
+ "halloween": []string{
+ "ghost",
+ "izakaya_lantern",
+ "jack_o_lantern",
+ "japanese_ogre",
+ },
+ "halo": []string{
+ "angel",
+ "innocent",
+ },
+ "hand": []string{
+ "+1",
+ "-1",
+ "facepunch",
+ "fist",
+ "fist_left",
+ "fist_right",
+ "fu",
+ "metal",
+ "muscle",
+ "point_down",
+ "point_left",
+ "point_right",
+ "point_up",
+ "point_up_2",
+ "raised_hand_with_fingers_splayed",
+ "v",
+ "vulcan_salute",
+ },
+ "hands": []string{
+ "call_me_hand",
+ "clap",
+ "open_hands",
+ "raised_hands",
+ "wave",
+ },
+ "handy": []string{
+ "nut_and_bolt",
+ },
+ "hankey": []string{
+ "poop",
+ },
+ "hanukkah": []string{
+ "menorah",
+ },
+ "happiness": []string{
+ "relaxed",
+ "relieved",
+ },
+ "happy": []string{
+ "blush",
+ "grin",
+ "grinning",
+ "joy",
+ "joy_cat",
+ "laughing",
+ "rainbow",
+ "smile",
+ "smiley",
+ "smiley_cat",
+ "sweat_smile",
+ "wink",
+ "yum",
+ },
+ "happytears": []string{
+ "joy",
+ },
+ "hat": []string{
+ "cowboy_hat_face",
+ "mortar_board",
+ },
+ "hate": []string{
+ "rage",
+ "rage1",
+ "rage2",
+ "rage3",
+ "rage4",
+ },
+ "have": []string{
+ "u6709",
+ },
+ "head": []string{
+ "massage_man",
+ "massage_woman",
+ },
+ "headline": []string{
+ "newspaper",
+ "newspaper_roll",
+ },
+ "health": []string{
+ "ambulance",
+ "hospital",
+ "pill",
+ "syringe",
+ },
+ "healthcare": []string{
+ "man_health_worker",
+ "woman_health_worker",
+ },
+ "healthy": []string{
+ "green_salad",
+ },
+ "hear": []string{
+ "ear",
+ },
+ "heart": []string{
+ "broken_heart",
+ "cupid",
+ "heart_eyes",
+ "heart_eyes_cat",
+ "heartbeat",
+ "two_hearts",
+ },
+ "heartbreak": []string{
+ "broken_heart",
+ },
+ "heaven": []string{
+ "angel",
+ "innocent",
+ },
+ "heavy_exclamation_mark": []string{
+ "exclamation",
+ },
+ "helena": []string{
+ "st_helena",
+ },
+ "hello": []string{
+ "wave",
+ },
+ "hellokitty": []string{
+ "no_mouth",
+ },
+ "help": []string{
+ "sos",
+ },
+ "here": []string{
+ "koko",
+ "pushpin",
+ "round_pushpin",
+ },
+ "herzegovina": []string{
+ "bosnia_herzegovina",
+ },
+ "hexagram": []string{
+ "six_pointed_star",
+ },
+ "hi": []string{
+ "wave",
+ },
+ "high": []string{
+ "up",
+ },
+ "highfive": []string{
+ "pray",
+ "raised_hand",
+ },
+ "highway": []string{
+ "motorway",
+ },
+ "hinduism": []string{
+ "man_with_turban",
+ "om",
+ "wheel_of_dharma",
+ "woman_with_turban",
+ },
+ "hippie": []string{
+ "peace_symbol",
+ },
+ "hipster": []string{
+ "bike",
+ "biking_man",
+ "biking_woman",
+ },
+ "hiss": []string{
+ "snake",
+ },
+ "history": []string{
+ "classical_building",
+ "european_castle",
+ "scroll",
+ },
+ "hit": []string{
+ "facepunch",
+ },
+ "hmmm": []string{
+ "confused",
+ "thinking",
+ },
+ "hn": []string{
+ "honduras",
+ },
+ "hobby": []string{
+ "8ball",
+ "fishing_pole_and_fish",
+ "rowing_man",
+ "rowing_woman",
+ },
+ "hole": []string{
+ "golf",
+ },
+ "home": []string{
+ "family_man_boy",
+ "family_man_boy_boy",
+ "family_man_girl",
+ "family_man_girl_boy",
+ "family_man_girl_girl",
+ "family_man_man_boy",
+ "family_man_man_boy_boy",
+ "family_man_man_girl",
+ "family_man_man_girl_boy",
+ "family_man_man_girl_girl",
+ "family_man_woman_boy",
+ "family_man_woman_boy_boy",
+ "family_man_woman_girl",
+ "family_man_woman_girl_boy",
+ "family_man_woman_girl_girl",
+ "family_woman_boy",
+ "family_woman_boy_boy",
+ "family_woman_girl",
+ "family_woman_girl_boy",
+ "family_woman_girl_girl",
+ "family_woman_woman_boy",
+ "family_woman_woman_boy_boy",
+ "family_woman_woman_girl",
+ "family_woman_woman_girl_boy",
+ "family_woman_woman_girl_girl",
+ "house",
+ "house_with_garden",
+ },
+ "homosexual": []string{
+ "rainbow_flag",
+ },
+ "honey": []string{
+ "honeybee",
+ },
+ "hong": []string{
+ "hong_kong",
+ },
+ "hooray": []string{
+ "raised_hands",
+ },
+ "hoot": []string{
+ "owl",
+ },
+ "hope": []string{
+ "pray",
+ },
+ "horizontal": []string{
+ "left_right_arrow",
+ },
+ "horn": []string{
+ "rhinoceros",
+ },
+ "horns": []string{
+ "deer",
+ "imp",
+ "smiling_imp",
+ },
+ "hospital": []string{
+ "ambulance",
+ "syringe",
+ },
+ "hot": []string{
+ "camel",
+ "curry",
+ "dromedary_camel",
+ "fire",
+ "ice_cream",
+ "icecream",
+ "shaved_ice",
+ "sweat",
+ "sweat_smile",
+ "thermometer",
+ },
+ "hotcakes": []string{
+ "pancakes",
+ },
+ "house": []string{
+ "door",
+ },
+ "hover": []string{
+ "business_suit_levitating",
+ },
+ "hr": []string{
+ "croatia",
+ },
+ "ht": []string{
+ "haiti",
+ },
+ "hu": []string{
+ "hungary",
+ },
+ "hug": []string{
+ "hugs",
+ },
+ "huh": []string{
+ "confused",
+ "fearful",
+ "grey_question",
+ },
+ "human": []string{
+ "basketball_man",
+ "basketball_woman",
+ "bust_in_silhouette",
+ "busts_in_silhouette",
+ "construction_worker_man",
+ "construction_worker_woman",
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "family_man_boy",
+ "family_man_boy_boy",
+ "family_man_girl",
+ "family_man_girl_boy",
+ "family_man_girl_girl",
+ "family_man_man_boy",
+ "family_man_man_boy_boy",
+ "family_man_man_girl",
+ "family_man_man_girl_boy",
+ "family_man_man_girl_girl",
+ "family_man_woman_boy",
+ "family_man_woman_boy_boy",
+ "family_man_woman_girl",
+ "family_man_woman_girl_boy",
+ "family_man_woman_girl_girl",
+ "family_woman_boy",
+ "family_woman_boy_boy",
+ "family_woman_girl",
+ "family_woman_girl_boy",
+ "family_woman_girl_girl",
+ "family_woman_woman_boy",
+ "family_woman_woman_boy_boy",
+ "family_woman_woman_girl",
+ "family_woman_woman_girl_boy",
+ "family_woman_woman_girl_girl",
+ "female_detective",
+ "male_detective",
+ "man_artist",
+ "man_astronaut",
+ "man_cook",
+ "man_factory_worker",
+ "man_farmer",
+ "man_firefighter",
+ "man_health_worker",
+ "man_judge",
+ "man_mechanic",
+ "man_office_worker",
+ "man_pilot",
+ "man_scientist",
+ "man_singer",
+ "man_student",
+ "man_teacher",
+ "man_technologist",
+ "mountain_biking_man",
+ "mountain_biking_woman",
+ "ok_man",
+ "ok_woman",
+ "older_man",
+ "older_woman",
+ "put_litter_in_its_place",
+ "speaking_head",
+ "swimming_man",
+ "swimming_woman",
+ "tipping_hand_man",
+ "tipping_hand_woman",
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ "walking_man",
+ "walking_woman",
+ "woman_artist",
+ "woman_astronaut",
+ "woman_cook",
+ "woman_factory_worker",
+ "woman_farmer",
+ "woman_firefighter",
+ "woman_health_worker",
+ "woman_judge",
+ "woman_mechanic",
+ "woman_office_worker",
+ "woman_pilot",
+ "woman_scientist",
+ "woman_singer",
+ "woman_student",
+ "woman_teacher",
+ "woman_technologist",
+ },
+ "hump": []string{
+ "camel",
+ "dromedary_camel",
+ },
+ "hundred": []string{
+ "100",
+ },
+ "hurt": []string{
+ "face_with_head_bandage",
+ "goberserk",
+ },
+ "i18n": []string{
+ "globe_with_meridians",
+ },
+ "icon": []string{
+ "black_large_square",
+ "black_medium_small_square",
+ "black_medium_square",
+ "black_small_square",
+ "large_blue_circle",
+ "ng",
+ "white_large_square",
+ "white_medium_small_square",
+ "white_medium_square",
+ "white_small_square",
+ },
+ "idea": []string{
+ "bulb",
+ },
+ "ie": []string{
+ "ireland",
+ },
+ "ikea": []string{
+ "wrench",
+ },
+ "il": []string{
+ "israel",
+ },
+ "ill": []string{
+ "mask",
+ "nauseated_face",
+ },
+ "impressed": []string{
+ "open_mouth",
+ },
+ "in": []string{
+ "india",
+ },
+ "inbox": []string{
+ "e-mail",
+ "email",
+ "incoming_envelope",
+ "mailbox",
+ "mailbox_closed",
+ "mailbox_with_mail",
+ "mailbox_with_no_mail",
+ "outbox_tray",
+ },
+ "incoming": []string{
+ "calling",
+ },
+ "increase": []string{
+ "heavy_plus_sign",
+ },
+ "indian": []string{
+ "british_indian_ocean_territory",
+ "curry",
+ "man_with_turban",
+ "woman_with_turban",
+ },
+ "indifference": []string{
+ "confused",
+ "neutral_face",
+ "unamused",
+ },
+ "indifferent": []string{
+ "expressionless",
+ "man_shrugging",
+ "woman_shrugging",
+ },
+ "industrial": []string{
+ "man_factory_worker",
+ "woman_factory_worker",
+ },
+ "industry": []string{
+ "factory",
+ },
+ "infatuation": []string{
+ "heart_eyes",
+ "kissing",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "kissing_smiling_eyes",
+ },
+ "info": []string{
+ "put_litter_in_its_place",
+ },
+ "information": []string{
+ "page_facing_up",
+ "tipping_hand_man",
+ "tipping_hand_woman",
+ },
+ "injured": []string{
+ "face_with_head_bandage",
+ "hurtrealbad",
+ },
+ "ink": []string{
+ "printer",
+ },
+ "input": []string{
+ "black_square_button",
+ "keyboard",
+ "radio_button",
+ "white_square_button",
+ },
+ "insect": []string{
+ "ant",
+ "beetle",
+ "bug",
+ "butterfly",
+ "honeybee",
+ "spider_web",
+ },
+ "inspector": []string{
+ "shipit",
+ },
+ "instructor": []string{
+ "man_teacher",
+ "woman_teacher",
+ },
+ "instrument": []string{
+ "drum",
+ "guitar",
+ "musical_keyboard",
+ "postal_horn",
+ "saxophone",
+ "violin",
+ },
+ "international": []string{
+ "earth_africa",
+ "earth_americas",
+ "earth_asia",
+ "globe_with_meridians",
+ },
+ "internet": []string{
+ "globe_with_meridians",
+ "signal_strength",
+ "trollface",
+ },
+ "interstate": []string{
+ "motorway",
+ },
+ "interweb": []string{
+ "globe_with_meridians",
+ },
+ "ip": []string{
+ "copyright",
+ },
+ "iphone": []string{
+ "calling",
+ "no_mobile_phones",
+ },
+ "iq": []string{
+ "iraq",
+ },
+ "iran,": []string{
+ "iran",
+ },
+ "ireland": []string{
+ "uk",
+ },
+ "irish": []string{
+ "four_leaf_clover",
+ "shamrock",
+ },
+ "is": []string{
+ "iceland",
+ },
+ "islam": []string{
+ "kaaba",
+ "mosque",
+ "star_and_crescent",
+ },
+ "islamic": []string{
+ "iran",
+ },
+ "island": []string{
+ "christmas_island",
+ "norfolk_island",
+ },
+ "islands": []string{
+ "aland_islands",
+ "british_virgin_islands",
+ "canary_islands",
+ "cayman_islands",
+ "cocos_islands",
+ "cook_islands",
+ "falkland_islands",
+ "faroe_islands",
+ "marshall_islands",
+ "northern_mariana_islands",
+ "solomon_islands",
+ "south_georgia_south_sandwich_islands",
+ "turks_caicos_islands",
+ "us_virgin_islands",
+ },
+ "isle": []string{
+ "isle_of_man",
+ },
+ "issue": []string{
+ "warning",
+ },
+ "italian": []string{
+ "spaghetti",
+ },
+ "italy": []string{
+ "it",
+ },
+ "ivory": []string{
+ "cote_divoire",
+ },
+ "jainism": []string{
+ "om",
+ "wheel_of_dharma",
+ },
+ "japan": []string{
+ "fish_cake",
+ "rice_scene",
+ "shinto_shrine",
+ },
+ "japanese": []string{
+ "bento",
+ "congratulations",
+ "crossed_flags",
+ "dango",
+ "dolls",
+ "flags",
+ "japan",
+ "japanese_goblin",
+ "japanese_ogre",
+ "jp",
+ "kimono",
+ "koko",
+ "mount_fuji",
+ "oden",
+ "ramen",
+ "rice_ball",
+ "rice_cracker",
+ "sa",
+ "sake",
+ "sushi",
+ "tokyo_tower",
+ "u5408",
+ "u55b6",
+ "u6708",
+ "u6e80",
+ "u7121",
+ "u7533",
+ "u7981",
+ "u7a7a",
+ "white_flower",
+ "yen",
+ },
+ "jar": []string{
+ "amphora",
+ },
+ "jaws": []string{
+ "shark",
+ },
+ "jazz": []string{
+ "saxophone",
+ },
+ "je": []string{
+ "jersey",
+ },
+ "jewel": []string{
+ "diamond_shape_with_a_dot_inside",
+ "large_blue_diamond",
+ "large_orange_diamond",
+ "small_blue_diamond",
+ "small_orange_diamond",
+ },
+ "jewelry": []string{
+ "gem",
+ "ring",
+ },
+ "jewish": []string{
+ "menorah",
+ "six_pointed_star",
+ "synagogue",
+ },
+ "jm": []string{
+ "jamaica",
+ },
+ "jo": []string{
+ "jordan",
+ },
+ "join": []string{
+ "u5408",
+ },
+ "joint": []string{
+ "smoking",
+ },
+ "joy": []string{
+ "blush",
+ "grin",
+ "grinning",
+ "laughing",
+ "smile",
+ "smiley",
+ "yum",
+ },
+ "judaism": []string{
+ "star_of_david",
+ "synagogue",
+ },
+ "judo": []string{
+ "martial_arts_uniform",
+ },
+ "juggle": []string{
+ "man_juggling",
+ "woman_juggling",
+ },
+ "jump": []string{
+ "business_suit_levitating",
+ },
+ "justice": []string{
+ "man_judge",
+ "woman_judge",
+ },
+ "kanji": []string{
+ "accept",
+ "congratulations",
+ "ideograph_advantage",
+ "mahjong",
+ "secret",
+ "u5272",
+ "u5408",
+ "u6307",
+ "u6708",
+ "u6709",
+ "u6e80",
+ "u7121",
+ "u7533",
+ "u7981",
+ "u7a7a",
+ },
+ "karate": []string{
+ "martial_arts_uniform",
+ },
+ "katakana": []string{
+ "koko",
+ "sa",
+ },
+ "kawaii": []string{
+ "grin",
+ },
+ "ke": []string{
+ "kenya",
+ },
+ "keeling": []string{
+ "cocos_islands",
+ },
+ "keycap": []string{
+ "asterisk",
+ },
+ "kg": []string{
+ "kyrgyzstan",
+ },
+ "kh": []string{
+ "cambodia",
+ },
+ "ki": []string{
+ "kiribati",
+ },
+ "kick": []string{
+ "kick_scooter",
+ },
+ "kills": []string{
+ "smoking",
+ },
+ "kimono": []string{
+ "dolls",
+ },
+ "king": []string{
+ "crown",
+ "prince",
+ },
+ "kingdom": []string{
+ "uk",
+ },
+ "kiss": []string{
+ "kissing",
+ "kissing_cat",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "kissing_smiling_eyes",
+ "lips",
+ },
+ "kitchen": []string{
+ "fork_and_knife",
+ "fried_egg",
+ "hocho",
+ "honey_pot",
+ "spoon",
+ },
+ "kitten": []string{
+ "cat",
+ },
+ "kitts": []string{
+ "st_kitts_nevis",
+ },
+ "km": []string{
+ "comoros",
+ },
+ "knife": []string{
+ "hocho",
+ },
+ "knowledge": []string{
+ "blue_book",
+ "closed_book",
+ "green_book",
+ "open_book",
+ "orange_book",
+ },
+ "kod": []string{
+ "crown",
+ },
+ "koinobori": []string{
+ "flags",
+ },
+ "kong": []string{
+ "hong_kong",
+ },
+ "korea": []string{
+ "kr",
+ "north_korea",
+ },
+ "kw": []string{
+ "kuwait",
+ },
+ "kyoto": []string{
+ "shinto_shrine",
+ },
+ "kz": []string{
+ "kazakhstan",
+ },
+ "label": []string{
+ "bookmark",
+ },
+ "labor": []string{
+ "construction_worker_man",
+ "construction_worker_woman",
+ },
+ "laboratory": []string{
+ "microscope",
+ },
+ "lady": []string{
+ "older_woman",
+ "woman",
+ "womans_hat",
+ },
+ "ladybug": []string{
+ "beetle",
+ },
+ "landing": []string{
+ "flight_departure",
+ },
+ "lanka": []string{
+ "sri_lanka",
+ },
+ "lao": []string{
+ "laos",
+ },
+ "laptop": []string{
+ "computer",
+ },
+ "late": []string{
+ "clock1",
+ "clock10",
+ "clock1030",
+ "clock11",
+ "clock1130",
+ "clock12",
+ "clock1230",
+ "clock130",
+ "clock2",
+ "clock230",
+ "clock3",
+ "clock330",
+ "clock4",
+ "clock430",
+ "clock5",
+ "clock530",
+ "clock6",
+ "clock630",
+ "clock7",
+ "clock730",
+ "clock8",
+ "clock830",
+ "clock9",
+ "clock930",
+ },
+ "latte": []string{
+ "coffee",
+ },
+ "laugh": []string{
+ "laughing",
+ "smile",
+ "sweat_smile",
+ },
+ "laughing": []string{
+ "rofl",
+ },
+ "launch": []string{
+ "rocket",
+ },
+ "law": []string{
+ "balance_scale",
+ "briefcase",
+ "copyright",
+ "oncoming_police_car",
+ "police_car",
+ "policeman",
+ "policewoman",
+ "rotating_light",
+ "tm",
+ },
+ "lawn": []string{
+ "herb",
+ "leaves",
+ "seedling",
+ },
+ "lb": []string{
+ "lebanon",
+ },
+ "leader": []string{
+ "crown",
+ },
+ "learn": []string{
+ "blue_book",
+ "closed_book",
+ "mortar_board",
+ "open_book",
+ "school",
+ },
+ "leaves": []string{
+ "fallen_leaf",
+ },
+ "left": []string{
+ "arrow_backward",
+ "point_left",
+ },
+ "legal": []string{
+ "briefcase",
+ "copyright",
+ "memo",
+ "mortar_board",
+ "oncoming_police_car",
+ "police_car",
+ "policeman",
+ "policewoman",
+ "rotating_light",
+ "tm",
+ },
+ "length": []string{
+ "straight_ruler",
+ },
+ "leone": []string{
+ "sierra_leone",
+ },
+ "lesbian": []string{
+ "rainbow_flag",
+ },
+ "less": []string{
+ "heavy_minus_sign",
+ },
+ "leste": []string{
+ "timor_leste",
+ },
+ "letter": []string{
+ "a",
+ "b",
+ "email",
+ "information_source",
+ "m",
+ "o2",
+ "parking",
+ "postbox",
+ },
+ "lettuce": []string{
+ "green_salad",
+ },
+ "levitate": []string{
+ "business_suit_levitating",
+ },
+ "lgbt": []string{
+ "rainbow_flag",
+ },
+ "li": []string{
+ "liechtenstein",
+ },
+ "library": []string{
+ "blue_book",
+ "books",
+ "closed_book",
+ "green_book",
+ "open_book",
+ "orange_book",
+ },
+ "license": []string{
+ "copyright",
+ },
+ "lie": []string{
+ "lying_face",
+ },
+ "light": []string{
+ "bulb",
+ "high_brightness",
+ "izakaya_lantern",
+ "jack_o_lantern",
+ },
+ "lightning": []string{
+ "cloud_with_lightning_and_rain",
+ },
+ "lightning bolt": []string{
+ "zap",
+ },
+ "like": []string{
+ "+1",
+ "blue_heart",
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "couplekiss_man_man",
+ "couplekiss_man_woman",
+ "couplekiss_woman_woman",
+ "cupid",
+ "green_heart",
+ "heart",
+ "heart_decoration",
+ "heart_eyes",
+ "heart_eyes_cat",
+ "heartbeat",
+ "heartpulse",
+ "kiss",
+ "kissing",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "love_hotel",
+ "love_letter",
+ "purple_heart",
+ "revolving_hearts",
+ "smile",
+ "sparkling_heart",
+ "two_hearts",
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ "wedding",
+ "yellow_heart",
+ },
+ "limbs": []string{
+ "ok_hand",
+ },
+ "limit": []string{
+ "hourglass",
+ "no_entry",
+ "no_entry_sign",
+ "u7981",
+ },
+ "line": []string{
+ "wavy_dash",
+ },
+ "lips": []string{
+ "kiss",
+ },
+ "liquid": []string{
+ "potable_water",
+ },
+ "liquor": []string{
+ "tumbler_glass",
+ },
+ "listen": []string{
+ "ear",
+ },
+ "literature": []string{
+ "books",
+ "open_book",
+ },
+ "lizard": []string{
+ "crocodile",
+ },
+ "load": []string{
+ "open_file_folder",
+ },
+ "location": []string{
+ "round_pushpin",
+ "world_map",
+ },
+ "lock": []string{
+ "chains",
+ "key",
+ "old_key",
+ },
+ "lol": []string{
+ "laughing",
+ "rofl",
+ },
+ "lolly": []string{
+ "candy",
+ },
+ "londoneye": []string{
+ "ferris_wheel",
+ },
+ "loo": []string{
+ "womens",
+ },
+ "look": []string{
+ "eye",
+ "eyes",
+ },
+ "loop": []string{
+ "repeat",
+ "repeat_one",
+ },
+ "lord": []string{
+ "crown",
+ },
+ "loser": []string{
+ "white_flag",
+ },
+ "losing": []string{
+ "white_flag",
+ },
+ "lost": []string{
+ "white_flag",
+ },
+ "love": []string{
+ "blue_heart",
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "couplekiss_man_man",
+ "couplekiss_man_woman",
+ "couplekiss_woman_woman",
+ "cupid",
+ "gift_heart",
+ "green_heart",
+ "heart",
+ "heart_decoration",
+ "heart_eyes",
+ "heart_eyes_cat",
+ "heartbeat",
+ "heartpulse",
+ "heavy_heart_exclamation",
+ "kiss",
+ "kissing",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "purple_heart",
+ "revolving_hearts",
+ "rose",
+ "sparkling_heart",
+ "two_hearts",
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ "wedding",
+ "yellow_heart",
+ },
+ "lower_left_ballpoint_pen": []string{
+ "writing_hand",
+ },
+ "lr": []string{
+ "liberia",
+ },
+ "ls": []string{
+ "lesotho",
+ },
+ "lt": []string{
+ "lithuania",
+ },
+ "lu": []string{
+ "luxembourg",
+ },
+ "lucia": []string{
+ "st_lucia",
+ },
+ "luck": []string{
+ "8ball",
+ "game_die",
+ "horse_racing",
+ "racehorse",
+ "slot_machine",
+ },
+ "lucky": []string{
+ "crossed_fingers",
+ "four_leaf_clover",
+ },
+ "lunch": []string{
+ "plate_with_cutlery",
+ },
+ "lv": []string{
+ "latvia",
+ },
+ "ly": []string{
+ "libya",
+ },
+ "ma": []string{
+ "morocco",
+ },
+ "maarten": []string{
+ "sint_maarten",
+ },
+ "mac": []string{
+ "apple",
+ },
+ "macao": []string{
+ "macau",
+ },
+ "macedonia,": []string{
+ "macedonia",
+ },
+ "machine": []string{
+ "robot",
+ },
+ "mad": []string{
+ "anger",
+ "angry",
+ "hurtrealbad",
+ "rage",
+ "rage1",
+ "rage2",
+ "rage3",
+ "rage4",
+ "right_anger_bubble",
+ "suspect",
+ },
+ "magic": []string{
+ "8ball",
+ "black_joker",
+ "bowtie",
+ "clubs",
+ "crescent_moon",
+ "crystal_ball",
+ "diamonds",
+ "dizzy",
+ "hearts",
+ "rabbit",
+ "rabbit2",
+ "spades",
+ "sparkles",
+ "star2",
+ "tada",
+ "tophat",
+ },
+ "mail": []string{
+ "package",
+ },
+ "maintainer": []string{
+ "wrench",
+ },
+ "male": []string{
+ "blonde_man",
+ "bowing_man",
+ "boy",
+ "construction_worker_man",
+ "dancing_men",
+ "frowning_man",
+ "guardsman",
+ "haircut_man",
+ "man_dancing",
+ "man_facepalming",
+ "man_shrugging",
+ "man_with_gua_pi_mao",
+ "man_with_turban",
+ "mans_shoe",
+ "massage_man",
+ "mens",
+ "no_good_man",
+ "ok_man",
+ "older_man",
+ "pouting_man",
+ "prince",
+ "raising_hand_man",
+ "santa",
+ "tipping_hand_man",
+ },
+ "mall": []string{
+ "department_store",
+ "shopping",
+ },
+ "mallard": []string{
+ "duck",
+ },
+ "malvinas": []string{
+ "falkland_islands",
+ },
+ "man": []string{
+ "blonde_man",
+ "bowing_man",
+ "boy",
+ "frowning_man",
+ "haircut_man",
+ "isle_of_man",
+ "man_artist",
+ "man_astronaut",
+ "man_cook",
+ "man_facepalming",
+ "man_factory_worker",
+ "man_farmer",
+ "man_firefighter",
+ "man_health_worker",
+ "man_judge",
+ "man_mechanic",
+ "man_office_worker",
+ "man_pilot",
+ "man_scientist",
+ "man_shrugging",
+ "man_singer",
+ "man_student",
+ "man_teacher",
+ "man_technologist",
+ "massage_man",
+ "no_good_man",
+ "ok_man",
+ "policeman",
+ "pouting_man",
+ "prince",
+ "raising_hand_man",
+ "running_man",
+ "santa",
+ "tipping_hand_man",
+ },
+ "manager": []string{
+ "man_office_worker",
+ "woman_office_worker",
+ },
+ "manicure": []string{
+ "nail_care",
+ },
+ "map": []string{
+ "round_pushpin",
+ },
+ "mariana": []string{
+ "northern_mariana_islands",
+ },
+ "marino": []string{
+ "san_marino",
+ },
+ "mark": []string{
+ "pushpin",
+ "triangular_flag_on_post",
+ },
+ "marriage": []string{
+ "bride_with_veil",
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "couplekiss_man_man",
+ "couplekiss_man_woman",
+ "couplekiss_woman_woman",
+ "man_in_tuxedo",
+ "ring",
+ "wedding",
+ },
+ "marshall": []string{
+ "marshall_islands",
+ },
+ "mask": []string{
+ "japanese_goblin",
+ "japanese_ogre",
+ },
+ "massage": []string{
+ "relaxed",
+ "relieved",
+ },
+ "math": []string{
+ "heavy_division_sign",
+ "heavy_minus_sign",
+ "heavy_multiplication_x",
+ "heavy_plus_sign",
+ "straight_ruler",
+ "triangular_ruler",
+ },
+ "mc": []string{
+ "monaco",
+ },
+ "mcdonalds": []string{
+ "hamburger",
+ },
+ "me": []string{
+ "montenegro",
+ },
+ "meal": []string{
+ "plate_with_cutlery",
+ },
+ "mean": []string{
+ "smirk",
+ },
+ "meat": []string{
+ "bacon",
+ "dango",
+ "hamburger",
+ "poultry_leg",
+ "stew",
+ },
+ "mecca": []string{
+ "kaaba",
+ },
+ "medicine": []string{
+ "herb",
+ "pill",
+ "syringe",
+ },
+ "meh": []string{
+ "expressionless",
+ "neutral_face",
+ },
+ "meme": []string{
+ "trollface",
+ },
+ "memo": []string{
+ "spiral_notepad",
+ },
+ "men": []string{
+ "dancing_men",
+ "ok_man",
+ "older_man",
+ },
+ "meow": []string{
+ "cat",
+ "cat2",
+ },
+ "message": []string{
+ "left_speech_bubble",
+ "speech_balloon",
+ },
+ "mexican": []string{
+ "burrito",
+ "taco",
+ },
+ "mg": []string{
+ "madagascar",
+ },
+ "micronesia,": []string{
+ "micronesia",
+ },
+ "midday": []string{
+ "clock12",
+ },
+ "middle": []string{
+ "fu",
+ },
+ "midnight": []string{
+ "clock12",
+ },
+ "milestone": []string{
+ "triangular_flag_on_post",
+ },
+ "military": []string{
+ "rosette",
+ },
+ "milk": []string{
+ "baby_bottle",
+ "cow",
+ "cow2",
+ },
+ "minaret": []string{
+ "mosque",
+ },
+ "minor": []string{
+ "underage",
+ },
+ "miquelon": []string{
+ "st_pierre_miquelon",
+ },
+ "mischievous": []string{
+ "stuck_out_tongue",
+ "stuck_out_tongue_closed_eyes",
+ "stuck_out_tongue_winking_eye",
+ "wink",
+ },
+ "ml": []string{
+ "mali",
+ },
+ "mm": []string{
+ "myanmar",
+ },
+ "mn": []string{
+ "mongolia",
+ },
+ "moai": []string{
+ "moyai",
+ },
+ "mojito": []string{
+ "beach_umbrella",
+ "cocktail",
+ "desert_island",
+ "palm_tree",
+ "tropical_drink",
+ },
+ "moldova,": []string{
+ "moldova",
+ },
+ "mom": []string{
+ "family_man_woman_boy",
+ },
+ "money": []string{
+ "atm",
+ "bank",
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "credit_card",
+ "currency_exchange",
+ "dollar",
+ "euro",
+ "heavy_dollar_sign",
+ "money_mouth_face",
+ "pound",
+ "purse",
+ "yen",
+ },
+ "monitor": []string{
+ "computer",
+ },
+ "monkey": []string{
+ "banana",
+ "hear_no_evil",
+ "see_no_evil",
+ "speak_no_evil",
+ },
+ "monster": []string{
+ "japanese_goblin",
+ "japanese_ogre",
+ },
+ "month": []string{
+ "u6708",
+ },
+ "moo": []string{
+ "cow",
+ "cow2",
+ },
+ "moon": []string{
+ "u6708",
+ },
+ "more": []string{
+ "heavy_plus_sign",
+ },
+ "morning": []string{
+ "partly_sunny",
+ "sun_with_face",
+ "sunrise",
+ },
+ "mosque": []string{
+ "kaaba",
+ },
+ "mother": []string{
+ "family_man_woman_boy",
+ },
+ "mother christmas": []string{
+ "mrs_claus",
+ },
+ "mountain": []string{
+ "foggy",
+ "mount_fuji",
+ },
+ "mouse": []string{
+ "rat",
+ },
+ "moustache": []string{
+ "man",
+ "wavy_dash",
+ },
+ "mouth": []string{
+ "lips",
+ "tongue",
+ },
+ "movie": []string{
+ "cinema",
+ "clapper",
+ "film_projector",
+ "film_strip",
+ },
+ "movie theater": []string{
+ "popcorn",
+ },
+ "moving": []string{
+ "package",
+ },
+ "mq": []string{
+ "martinique",
+ },
+ "mr": []string{
+ "mauritania",
+ },
+ "mrt": []string{
+ "metro",
+ },
+ "ms": []string{
+ "montserrat",
+ },
+ "mt": []string{
+ "malta",
+ },
+ "mu": []string{
+ "mauritius",
+ },
+ "multitask": []string{
+ "man_juggling",
+ "woman_juggling",
+ },
+ "munch": []string{
+ "scream",
+ "scream_cat",
+ },
+ "music": []string{
+ "drum",
+ "guitar",
+ "headphones",
+ "microphone",
+ "notes",
+ "postal_horn",
+ "radio",
+ "radio_button",
+ "saxophone",
+ "symbols",
+ "trumpet",
+ "twisted_rightwards_arrows",
+ "violin",
+ },
+ "mustache": []string{
+ "man",
+ "wavy_dash",
+ },
+ "mute": []string{
+ "mobile_phone_off",
+ "no_bell",
+ "no_mobile_phones",
+ },
+ "mv": []string{
+ "maldives",
+ },
+ "mw": []string{
+ "malawi",
+ },
+ "mx": []string{
+ "mexico",
+ },
+ "my": []string{
+ "malaysia",
+ },
+ "mystical": []string{
+ "unicorn",
+ },
+ "myth": []string{
+ "dragon",
+ "dragon_face",
+ },
+ "mz": []string{
+ "mozambique",
+ },
+ "na": []string{
+ "namibia",
+ },
+ "nail": []string{
+ "nail_care",
+ },
+ "nam": []string{
+ "vietnam",
+ },
+ "namaste": []string{
+ "pray",
+ },
+ "nap": []string{
+ "sleepy",
+ },
+ "nation": []string{
+ "afghanistan",
+ "aland_islands",
+ "albania",
+ "algeria",
+ "american_samoa",
+ "andorra",
+ "angola",
+ "anguilla",
+ "antarctica",
+ "antigua_barbuda",
+ "argentina",
+ "armenia",
+ "aruba",
+ "australia",
+ "austria",
+ "azerbaijan",
+ "bahamas",
+ "bahrain",
+ "bangladesh",
+ "barbados",
+ "belarus",
+ "belgium",
+ "belize",
+ "benin",
+ "bermuda",
+ "bhutan",
+ "bolivia",
+ "bosnia_herzegovina",
+ "botswana",
+ "brazil",
+ "british_indian_ocean_territory",
+ "british_virgin_islands",
+ "brunei",
+ "bulgaria",
+ "burkina_faso",
+ "burundi",
+ "cambodia",
+ "cameroon",
+ "canada",
+ "canary_islands",
+ "cape_verde",
+ "caribbean_netherlands",
+ "cayman_islands",
+ "central_african_republic",
+ "chad",
+ "chile",
+ "christmas_island",
+ "cn",
+ "cocos_islands",
+ "colombia",
+ "comoros",
+ "congo_brazzaville",
+ "congo_kinshasa",
+ "cook_islands",
+ "costa_rica",
+ "cote_divoire",
+ "croatia",
+ "crossed_flags",
+ "cuba",
+ "curacao",
+ "cyprus",
+ "czech_republic",
+ "de",
+ "denmark",
+ "djibouti",
+ "dominica",
+ "dominican_republic",
+ "ecuador",
+ "egypt",
+ "el_salvador",
+ "equatorial_guinea",
+ "eritrea",
+ "es",
+ "estonia",
+ "ethiopia",
+ "falkland_islands",
+ "faroe_islands",
+ "fiji",
+ "finland",
+ "fr",
+ "french_guiana",
+ "french_polynesia",
+ "french_southern_territories",
+ "gabon",
+ "gambia",
+ "georgia",
+ "ghana",
+ "gibraltar",
+ "greece",
+ "greenland",
+ "grenada",
+ "guadeloupe",
+ "guam",
+ "guatemala",
+ "guernsey",
+ "guinea",
+ "guinea_bissau",
+ "guyana",
+ "haiti",
+ "honduras",
+ "hong_kong",
+ "hungary",
+ "iceland",
+ "india",
+ "indonesia",
+ "iran",
+ "iraq",
+ "ireland",
+ "isle_of_man",
+ "israel",
+ "it",
+ "jamaica",
+ "japan",
+ "jersey",
+ "jordan",
+ "jp",
+ "kazakhstan",
+ "kenya",
+ "kiribati",
+ "kosovo",
+ "kr",
+ "kuwait",
+ "kyrgyzstan",
+ "laos",
+ "latvia",
+ "lebanon",
+ "lesotho",
+ "liberia",
+ "libya",
+ "liechtenstein",
+ "lithuania",
+ "luxembourg",
+ "macau",
+ "macedonia",
+ "madagascar",
+ "malawi",
+ "malaysia",
+ "maldives",
+ "mali",
+ "malta",
+ "marshall_islands",
+ "martinique",
+ "mauritania",
+ "mauritius",
+ "mayotte",
+ "mexico",
+ "micronesia",
+ "moldova",
+ "monaco",
+ "mongolia",
+ "montenegro",
+ "montserrat",
+ "morocco",
+ "mozambique",
+ "myanmar",
+ "namibia",
+ "nauru",
+ "nepal",
+ "netherlands",
+ "new_caledonia",
+ "new_zealand",
+ "nicaragua",
+ "niger",
+ "nigeria",
+ "niue",
+ "norfolk_island",
+ "north_korea",
+ "northern_mariana_islands",
+ "norway",
+ "oman",
+ "pakistan",
+ "palau",
+ "palestinian_territories",
+ "panama",
+ "papua_new_guinea",
+ "paraguay",
+ "peru",
+ "philippines",
+ "pitcairn_islands",
+ "poland",
+ "portugal",
+ "puerto_rico",
+ "qatar",
+ "reunion",
+ "romania",
+ "ru",
+ "rwanda",
+ "samoa",
+ "san_marino",
+ "sao_tome_principe",
+ "saudi_arabia",
+ "senegal",
+ "serbia",
+ "seychelles",
+ "sierra_leone",
+ "singapore",
+ "sint_maarten",
+ "slovakia",
+ "slovenia",
+ "solomon_islands",
+ "somalia",
+ "south_africa",
+ "south_georgia_south_sandwich_islands",
+ "south_sudan",
+ "sri_lanka",
+ "st_barthelemy",
+ "st_helena",
+ "st_kitts_nevis",
+ "st_lucia",
+ "st_pierre_miquelon",
+ "st_vincent_grenadines",
+ "sudan",
+ "suriname",
+ "swaziland",
+ "sweden",
+ "switzerland",
+ "syria",
+ "taiwan",
+ "tajikistan",
+ "tanzania",
+ "thailand",
+ "timor_leste",
+ "togo",
+ "tokelau",
+ "tonga",
+ "tr",
+ "trinidad_tobago",
+ "tunisia",
+ "turkmenistan",
+ "turks_caicos_islands",
+ "tuvalu",
+ "uganda",
+ "uk",
+ "ukraine",
+ "united_arab_emirates",
+ "uruguay",
+ "us",
+ "us_virgin_islands",
+ "uzbekistan",
+ "vanuatu",
+ "vatican_city",
+ "venezuela",
+ "vietnam",
+ "wallis_futuna",
+ "western_sahara",
+ "yemen",
+ "zambia",
+ "zimbabwe",
+ },
+ "nature": []string{
+ "ant",
+ "bamboo",
+ "bat",
+ "bear",
+ "beetle",
+ "bird",
+ "blossom",
+ "blowfish",
+ "boar",
+ "bouquet",
+ "bug",
+ "butterfly",
+ "cactus",
+ "camel",
+ "cat",
+ "cherry_blossom",
+ "chicken",
+ "chipmunk",
+ "cow",
+ "cow2",
+ "crocodile",
+ "deciduous_tree",
+ "deer",
+ "dog",
+ "dog2",
+ "dolphin",
+ "dragon",
+ "dragon_face",
+ "duck",
+ "eagle",
+ "ear_of_rice",
+ "eggplant",
+ "elephant",
+ "evergreen_tree",
+ "fallen_leaf",
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "fish",
+ "four_leaf_clover",
+ "fox_face",
+ "frog",
+ "full_moon",
+ "full_moon_with_face",
+ "goat",
+ "gorilla",
+ "green_apple",
+ "hamster",
+ "hear_no_evil",
+ "honeybee",
+ "horse",
+ "house_with_garden",
+ "koala",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "leaves",
+ "lemon",
+ "leopard",
+ "lion",
+ "lizard",
+ "maple_leaf",
+ "melon",
+ "monkey",
+ "monkey_face",
+ "mount_fuji",
+ "mountain",
+ "mountain_snow",
+ "mouse",
+ "mouse2",
+ "national_park",
+ "new_moon",
+ "new_moon_with_face",
+ "ocean",
+ "octopus",
+ "owl",
+ "palm_tree",
+ "panda_face",
+ "partly_sunny",
+ "peach",
+ "pear",
+ "penguin",
+ "pig",
+ "pig2",
+ "pineapple",
+ "poodle",
+ "rabbit",
+ "rabbit2",
+ "rainbow",
+ "ram",
+ "rhinoceros",
+ "rooster",
+ "see_no_evil",
+ "seedling",
+ "shamrock",
+ "shark",
+ "sheep",
+ "shell",
+ "shrimp",
+ "snake",
+ "speak_no_evil",
+ "squid",
+ "strawberry",
+ "sun_with_face",
+ "sunflower",
+ "sunny",
+ "sweet_potato",
+ "tanabata_tree",
+ "tangerine",
+ "tiger",
+ "tiger2",
+ "tomato",
+ "tulip",
+ "turtle",
+ "unicorn",
+ "volcano",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "water_buffalo",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ "whale",
+ "whale2",
+ "wilted_flower",
+ "wind_chime",
+ "wolf",
+ },
+ "ne": []string{
+ "niger",
+ },
+ "needle": []string{
+ "syringe",
+ },
+ "nemo": []string{
+ "tropical_fish",
+ },
+ "nerdy": []string{
+ "eyeglasses",
+ "neckbeard",
+ "nerd_face",
+ },
+ "nervous": []string{
+ "anguished",
+ "cold_sweat",
+ "disappointed_relieved",
+ "fearful",
+ "worried",
+ },
+ "neutral": []string{
+ "neutral_face",
+ },
+ "nevis": []string{
+ "st_kitts_nevis",
+ },
+ "new": []string{
+ "new_caledonia",
+ "new_zealand",
+ "papua_new_guinea",
+ },
+ "newyork": []string{
+ "statue_of_liberty",
+ },
+ "next": []string{
+ "arrow_right",
+ "next_track_button",
+ },
+ "ni": []string{
+ "nicaragua",
+ },
+ "night": []string{
+ "crescent_moon",
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "flashlight",
+ "full_moon",
+ "full_moon_with_face",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "new_moon",
+ "new_moon_with_face",
+ "sleeping",
+ "sparkler",
+ "star",
+ "star2",
+ "stars",
+ "underage",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ },
+ "night life": []string{
+ "cityscape",
+ },
+ "nike": []string{
+ "heavy_check_mark",
+ },
+ "nl": []string{
+ "netherlands",
+ },
+ "no": []string{
+ "-1",
+ "negative_squared_cross_mark",
+ "norway",
+ "persevere",
+ "x",
+ },
+ "noise": []string{
+ "loud_sound",
+ },
+ "noisy": []string{
+ "loud_sound",
+ },
+ "nom": []string{
+ "yum",
+ },
+ "noodle": []string{
+ "ramen",
+ "spaghetti",
+ },
+ "noon": []string{
+ "clock12",
+ },
+ "nope": []string{
+ "no_good_man",
+ "no_good_woman",
+ },
+ "norfolk": []string{
+ "norfolk_island",
+ },
+ "north": []string{
+ "north_korea",
+ },
+ "northeast": []string{
+ "arrow_upper_right",
+ },
+ "northern": []string{
+ "northern_mariana_islands",
+ "uk",
+ },
+ "northwest": []string{
+ "arrow_upper_left",
+ },
+ "nose": []string{
+ "elephant",
+ },
+ "note": []string{
+ "symbols",
+ },
+ "notes": []string{
+ "ledger",
+ "notebook",
+ "notebook_with_decorative_cover",
+ },
+ "nothing": []string{
+ "u7121",
+ },
+ "notification": []string{
+ "bell",
+ },
+ "np": []string{
+ "nepal",
+ },
+ "nr": []string{
+ "nauru",
+ },
+ "nu": []string{
+ "niue",
+ },
+ "nuclear": []string{
+ "radioactive",
+ },
+ "null": []string{
+ "zero",
+ },
+ "numbers": []string{
+ "100",
+ "1234",
+ "eight",
+ "five",
+ "four",
+ "keycap_ten",
+ "nine",
+ "one",
+ "seven",
+ "six",
+ "three",
+ "two",
+ "zero",
+ },
+ "nurse": []string{
+ "man_health_worker",
+ "syringe",
+ "woman_health_worker",
+ },
+ "nut": []string{
+ "peanuts",
+ },
+ "obtain": []string{
+ "ideograph_advantage",
+ },
+ "ocean": []string{
+ "blowfish",
+ "british_indian_ocean_territory",
+ "dolphin",
+ "octopus",
+ "shark",
+ "shrimp",
+ "squid",
+ "surfing_man",
+ "surfing_woman",
+ "tropical_fish",
+ "whale",
+ "whale2",
+ },
+ "octopus": []string{
+ "octocat",
+ },
+ "office": []string{
+ "file_folder",
+ "page_facing_up",
+ "page_with_curl",
+ },
+ "ogre": []string{
+ "japanese_ogre",
+ },
+ "ohyeah": []string{
+ "v",
+ },
+ "oink": []string{
+ "pig",
+ "pig_nose",
+ },
+ "ok": []string{
+ "accept",
+ "ballot_box_with_check",
+ "heavy_check_mark",
+ "ok_hand",
+ "white_check_mark",
+ },
+ "okay": []string{
+ "pensive",
+ },
+ "old": []string{
+ "older_man",
+ "older_woman",
+ "radio_button",
+ },
+ "oldschool": []string{
+ "feelsgood",
+ "finnadie",
+ "floppy_disk",
+ "godmode",
+ "hourglass",
+ "hourglass_flowing_sand",
+ "hurtrealbad",
+ "pager",
+ "tv",
+ "vhs",
+ },
+ "om_symbol": []string{
+ "oman",
+ },
+ "omg": []string{
+ "scream",
+ "speak_no_evil",
+ },
+ "oops": []string{
+ "confounded",
+ "fearful",
+ "persevere",
+ "sweat_drops",
+ },
+ "open": []string{
+ "open_hands",
+ },
+ "opening hours": []string{
+ "u55b6",
+ },
+ "orange": []string{
+ "carrot",
+ "tangerine",
+ },
+ "orange-circle": []string{
+ "accept",
+ },
+ "orange-square": []string{
+ "baby_symbol",
+ "eight_pointed_black_star",
+ "mobile_phone_off",
+ "u55b6",
+ "u6708",
+ "u6709",
+ "u7121",
+ "u7533",
+ "vibration_mode",
+ "vs",
+ },
+ "orbit": []string{
+ "artificial_satellite",
+ },
+ "orchestra": []string{
+ "violin",
+ },
+ "order": []string{
+ "bookmark_tabs",
+ },
+ "oreo": []string{
+ "cookie",
+ },
+ "organizing": []string{
+ "card_index_dividers",
+ "file_cabinet",
+ },
+ "outdoors": []string{
+ "camping",
+ "tent",
+ },
+ "outer space": []string{
+ "rocket",
+ },
+ "outer_space": []string{
+ "alien",
+ "rocket",
+ },
+ "ox": []string{
+ "cow",
+ "cow2",
+ "water_buffalo",
+ },
+ "pa": []string{
+ "panama",
+ },
+ "paddle": []string{
+ "canoe",
+ },
+ "padlock": []string{
+ "lock",
+ },
+ "paella": []string{
+ "shallow_pan_of_food",
+ },
+ "pageant": []string{
+ "running_shirt_with_sash",
+ },
+ "paint": []string{
+ "art",
+ },
+ "painter": []string{
+ "man_artist",
+ "woman_artist",
+ },
+ "pair": []string{
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "couplekiss_man_man",
+ "couplekiss_man_woman",
+ "couplekiss_woman_woman",
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ },
+ "palestine": []string{
+ "palestinian_territories",
+ },
+ "palestinian": []string{
+ "palestinian_territories",
+ },
+ "palm": []string{
+ "raised_hand",
+ "raised_hand_with_fingers_splayed",
+ "wave",
+ },
+ "panda": []string{
+ "bamboo",
+ "panda_face",
+ },
+ "paper": []string{
+ "izakaya_lantern",
+ "ledger",
+ "memo",
+ "notebook",
+ "notebook_with_decorative_cover",
+ "page_facing_up",
+ "page_with_curl",
+ "pencil2",
+ "printer",
+ "scroll",
+ },
+ "papua": []string{
+ "papua_new_guinea",
+ },
+ "parent": []string{
+ "family_man_boy",
+ "family_man_boy_boy",
+ "family_man_girl",
+ "family_man_girl_boy",
+ "family_man_girl_girl",
+ "family_woman_boy",
+ "family_woman_boy_boy",
+ "family_woman_girl",
+ "family_woman_girl_boy",
+ "family_woman_girl_girl",
+ },
+ "parents": []string{
+ "family_man_man_boy",
+ "family_man_man_boy_boy",
+ "family_man_man_girl",
+ "family_man_man_girl_boy",
+ "family_man_man_girl_girl",
+ "family_man_woman_boy",
+ "family_man_woman_boy_boy",
+ "family_man_woman_girl",
+ "family_man_woman_girl_boy",
+ "family_man_woman_girl_girl",
+ "family_woman_woman_boy",
+ "family_woman_woman_boy_boy",
+ "family_woman_woman_girl",
+ "family_woman_woman_girl_boy",
+ "family_woman_woman_girl_girl",
+ },
+ "party": []string{
+ "balloon",
+ "beer",
+ "beers",
+ "circus_tent",
+ "clinking_glasses",
+ "confetti_ball",
+ "crystal_ball",
+ "pizza",
+ "tada",
+ },
+ "pass": []string{
+ "100",
+ "ticket",
+ },
+ "passport": []string{
+ "customs",
+ },
+ "password": []string{
+ "key",
+ "lock",
+ "old_key",
+ },
+ "paul": []string{
+ "alien",
+ },
+ "pause": []string{
+ "pause_button",
+ "play_or_pause_button",
+ },
+ "payment": []string{
+ "atm",
+ "credit_card",
+ "heavy_dollar_sign",
+ "money_with_wings",
+ "moneybag",
+ },
+ "pe": []string{
+ "peru",
+ },
+ "peace": []string{
+ "v",
+ },
+ "peek": []string{
+ "eyes",
+ },
+ "pen": []string{
+ "black_nib",
+ },
+ "pencil": []string{
+ "memo",
+ },
+ "people": []string{
+ "couple",
+ "family_man_boy",
+ "family_man_boy_boy",
+ "family_man_girl",
+ "family_man_girl_boy",
+ "family_man_girl_girl",
+ "family_man_man_boy",
+ "family_man_man_boy_boy",
+ "family_man_man_girl",
+ "family_man_man_girl_boy",
+ "family_man_man_girl_girl",
+ "family_man_woman_boy",
+ "family_man_woman_boy_boy",
+ "family_man_woman_girl",
+ "family_man_woman_girl_boy",
+ "family_man_woman_girl_girl",
+ "family_woman_boy",
+ "family_woman_boy_boy",
+ "family_woman_girl",
+ "family_woman_girl_boy",
+ "family_woman_girl_girl",
+ "family_woman_woman_boy",
+ "family_woman_woman_boy_boy",
+ "family_woman_woman_girl",
+ "family_woman_woman_girl_boy",
+ "family_woman_woman_girl_girl",
+ "two_men_holding_hands",
+ "two_women_holding_hands",
+ },
+ "percent": []string{
+ "symbols",
+ },
+ "perfect": []string{
+ "100",
+ "ok_hand",
+ },
+ "person": []string{
+ "blonde_man",
+ "blonde_woman",
+ "bust_in_silhouette",
+ "busts_in_silhouette",
+ "speaking_head",
+ },
+ "pet": []string{
+ "cat",
+ "cat2",
+ "dog",
+ "dog2",
+ "paw_prints",
+ "poodle",
+ "rabbit",
+ "rabbit2",
+ },
+ "petroleum": []string{
+ "fuelpump",
+ },
+ "ph": []string{
+ "philippines",
+ },
+ "pharmacy": []string{
+ "pill",
+ },
+ "phew": []string{
+ "disappointed_relieved",
+ "relieved",
+ "triumph",
+ },
+ "phone": []string{
+ "selfie",
+ "signal_strength",
+ "vibration_mode",
+ },
+ "photo": []string{
+ "bridge_at_night",
+ "camping",
+ "carousel_horse",
+ "city_sunrise",
+ "city_sunset",
+ "cityscape",
+ "desert",
+ "desert_island",
+ "ferris_wheel",
+ "fireworks",
+ "foggy",
+ "fountain",
+ "houses",
+ "japanese_castle",
+ "milky_way",
+ "mount_fuji",
+ "mountain",
+ "mountain_snow",
+ "national_park",
+ "rainbow",
+ "rice_scene",
+ "roller_coaster",
+ "stadium",
+ "stars",
+ "sunrise",
+ "sunrise_over_mountains",
+ "tent",
+ "tokyo_tower",
+ "volcano",
+ },
+ "photography": []string{
+ "camera",
+ "camera_flash",
+ "framed_picture",
+ },
+ "physicist": []string{
+ "man_scientist",
+ "woman_scientist",
+ },
+ "piano": []string{
+ "musical_keyboard",
+ },
+ "pickle": []string{
+ "cucumber",
+ },
+ "picnic": []string{
+ "watermelon",
+ },
+ "pierre": []string{
+ "st_pierre_miquelon",
+ },
+ "pig": []string{
+ "bacon",
+ },
+ "pine_decoration": []string{
+ "bamboo",
+ },
+ "pinged": []string{
+ "rotating_light",
+ },
+ "pingpong": []string{
+ "ping_pong",
+ },
+ "pink": []string{
+ "heartbeat",
+ "heartpulse",
+ "ok_woman",
+ "ribbon",
+ },
+ "pink-square": []string{
+ "u5272",
+ },
+ "pinocchio": []string{
+ "lying_face",
+ },
+ "pirate": []string{
+ "black_flag",
+ },
+ "pistol": []string{
+ "gun",
+ },
+ "pitcairn": []string{
+ "pitcairn_islands",
+ },
+ "pk": []string{
+ "pakistan",
+ },
+ "pl": []string{
+ "poland",
+ },
+ "place": []string{
+ "stadium",
+ "triangular_flag_on_post",
+ "trophy",
+ },
+ "plane": []string{
+ "man_pilot",
+ "woman_pilot",
+ },
+ "planet": []string{
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "full_moon",
+ "full_moon_with_face",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "new_moon",
+ "new_moon_with_face",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ },
+ "planning": []string{
+ "calendar",
+ "spiral_calendar",
+ },
+ "plant": []string{
+ "bamboo",
+ "cactus",
+ "cherry_blossom",
+ "corn",
+ "deciduous_tree",
+ "ear_of_rice",
+ "evergreen_tree",
+ "fallen_leaf",
+ "four_leaf_clover",
+ "herb",
+ "hibiscus",
+ "house_with_garden",
+ "leaves",
+ "maple_leaf",
+ "mushroom",
+ "palm_tree",
+ "seedling",
+ "shamrock",
+ "sunflower",
+ "tanabata_tree",
+ "tulip",
+ "wilted_flower",
+ },
+ "play": []string{
+ "arrow_forward",
+ "black_joker",
+ "bowling",
+ "dart",
+ "fast_forward",
+ "game_die",
+ "joystick",
+ "mahjong",
+ "play_or_pause_button",
+ "rewind",
+ "running_shirt_with_sash",
+ "space_invader",
+ "video_game",
+ },
+ "playful": []string{
+ "stuck_out_tongue",
+ "stuck_out_tongue_closed_eyes",
+ "stuck_out_tongue_winking_eye",
+ "tongue",
+ },
+ "playground": []string{
+ "roller_coaster",
+ },
+ "please": []string{
+ "pray",
+ },
+ "plumber": []string{
+ "man_mechanic",
+ "woman_mechanic",
+ },
+ "podcast": []string{
+ "radio",
+ },
+ "point": []string{
+ "arrow_up_small",
+ "arrow_upper_left",
+ "arrow_upper_right",
+ "u6307",
+ },
+ "poison": []string{
+ "skull_and_crossbones",
+ },
+ "poisoned": []string{
+ "astonished",
+ },
+ "poker": []string{
+ "black_joker",
+ "clubs",
+ "diamonds",
+ "hearts",
+ "spades",
+ },
+ "police": []string{
+ "policeman",
+ "policewoman",
+ "rotating_light",
+ },
+ "pollution": []string{
+ "factory",
+ },
+ "polygon": []string{
+ "eight_pointed_black_star",
+ },
+ "polynesia": []string{
+ "french_polynesia",
+ },
+ "pool": []string{
+ "8ball",
+ "man_playing_water_polo",
+ "woman_playing_water_polo",
+ },
+ "pork": []string{
+ "bacon",
+ },
+ "postal": []string{
+ "email",
+ },
+ "potty": []string{
+ "toilet",
+ },
+ "power": []string{
+ "battery",
+ "electric_plug",
+ },
+ "praise": []string{
+ "clap",
+ },
+ "prank": []string{
+ "smirk",
+ "stuck_out_tongue",
+ "stuck_out_tongue_closed_eyes",
+ "stuck_out_tongue_winking_eye",
+ },
+ "prayer": []string{
+ "place_of_worship",
+ },
+ "prc": []string{
+ "cn",
+ },
+ "present": []string{
+ "gift",
+ },
+ "presentation": []string{
+ "bar_chart",
+ "chart",
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "part_alternation_mark",
+ },
+ "press": []string{
+ "newspaper",
+ "newspaper_roll",
+ },
+ "previous": []string{
+ "arrow_left",
+ },
+ "pride": []string{
+ "rainbow_flag",
+ "triumph",
+ },
+ "prime": []string{
+ "five",
+ "seven",
+ "three",
+ "two",
+ },
+ "principe": []string{
+ "sao_tome_principe",
+ },
+ "privacy": []string{
+ "closed_lock_with_key",
+ "no_entry",
+ "secret",
+ "unlock",
+ },
+ "problem": []string{
+ "warning",
+ },
+ "professor": []string{
+ "man_teacher",
+ "woman_teacher",
+ },
+ "program": []string{
+ "radio",
+ "tv",
+ },
+ "programmer": []string{
+ "man_technologist",
+ "woman_technologist",
+ },
+ "progress": []string{
+ "building_construction",
+ "construction",
+ },
+ "prohibited": []string{
+ "no_bicycles",
+ },
+ "propose": []string{
+ "ring",
+ },
+ "protection": []string{
+ "shield",
+ },
+ "proud": []string{
+ "triumph",
+ },
+ "pt": []string{
+ "portugal",
+ },
+ "pub": []string{
+ "beer",
+ "beers",
+ "underage",
+ },
+ "public": []string{
+ "bullettrain_front",
+ "station",
+ "train",
+ },
+ "puerto": []string{
+ "puerto_rico",
+ },
+ "puff": []string{
+ "dash",
+ },
+ "pumpkin": []string{
+ "jack_o_lantern",
+ },
+ "pumps": []string{
+ "high_heel",
+ },
+ "punctuation": []string{
+ "exclamation",
+ "grey_exclamation",
+ "interrobang",
+ },
+ "puppy": []string{
+ "dog",
+ },
+ "purchase": []string{
+ "shopping",
+ },
+ "purple-square": []string{
+ "aquarius",
+ "aries",
+ "cancer",
+ "capricorn",
+ "gemini",
+ "heart_decoration",
+ "id",
+ "leo",
+ "libra",
+ "ophiuchus",
+ "pisces",
+ "sagittarius",
+ "scorpius",
+ "six_pointed_star",
+ "taurus",
+ "virgo",
+ "womens",
+ },
+ "pw": []string{
+ "palau",
+ },
+ "py": []string{
+ "paraguay",
+ },
+ "python": []string{
+ "snake",
+ },
+ "qa": []string{
+ "qatar",
+ },
+ "queen": []string{
+ "princess",
+ },
+ "queer": []string{
+ "rainbow_flag",
+ },
+ "quiet": []string{
+ "mobile_phone_off",
+ "mute",
+ "no_bell",
+ },
+ "quiz": []string{
+ "100",
+ "hourglass",
+ "memo",
+ },
+ "race": []string{
+ "checkered_flag",
+ "motorcycle",
+ "mountain_biking_man",
+ "mountain_biking_woman",
+ "racing_car",
+ "running_man",
+ "running_woman",
+ },
+ "radio": []string{
+ "satellite",
+ },
+ "rage": []string{
+ "goberserk",
+ },
+ "rain": []string{
+ "closed_umbrella",
+ },
+ "rainbow": []string{
+ "rainbow_flag",
+ },
+ "rainy": []string{
+ "umbrella",
+ },
+ "raised": []string{
+ "raised_back_of_hand",
+ },
+ "rancher": []string{
+ "man_farmer",
+ "woman_farmer",
+ },
+ "random": []string{
+ "game_die",
+ "twisted_rightwards_arrows",
+ },
+ "razor": []string{
+ "kick_scooter",
+ },
+ "read": []string{
+ "blue_book",
+ "closed_book",
+ "couch_and_lamp",
+ "green_book",
+ "open_book",
+ "orange_book",
+ },
+ "reception": []string{
+ "signal_strength",
+ },
+ "recession": []string{
+ "chart_with_downwards_trend",
+ },
+ "record": []string{
+ "cinema",
+ "clapper",
+ "film_projector",
+ "minidisc",
+ "movie_camera",
+ "notebook",
+ "notebook_with_decorative_cover",
+ "repeat",
+ "vhs",
+ "video_camera",
+ },
+ "recording": []string{
+ "studio_microphone",
+ },
+ "recovery": []string{
+ "chart_with_upwards_trend",
+ },
+ "red": []string{
+ "flower_playing_cards",
+ "japanese_goblin",
+ "japanese_ogre",
+ "red_car",
+ },
+ "red-circle": []string{
+ "congratulations",
+ "secret",
+ },
+ "red-square": []string{
+ "a",
+ "ab",
+ "b",
+ "cl",
+ "o2",
+ "sos",
+ "u5408",
+ "u6e80",
+ "u7981",
+ },
+ "refresh": []string{
+ "restroom",
+ },
+ "relax": []string{
+ "beer",
+ "beers",
+ "hotsprings",
+ },
+ "relaxed": []string{
+ "relieved",
+ },
+ "relief": []string{
+ "sweat_smile",
+ },
+ "religion": []string{
+ "church",
+ "orthodox_cross",
+ "place_of_worship",
+ "six_pointed_star",
+ },
+ "religious": []string{
+ "prayer_beads",
+ },
+ "remove": []string{
+ "x",
+ },
+ "repeat": []string{
+ "arrows_clockwise",
+ },
+ "reptile": []string{
+ "crocodile",
+ "lizard",
+ },
+ "republic": []string{
+ "central_african_republic",
+ "congo_kinshasa",
+ "dominican_republic",
+ "iran",
+ "laos",
+ "moldova",
+ "syria",
+ "tanzania",
+ "venezuela",
+ },
+ "rest": []string{
+ "bed",
+ "sleeping_bed",
+ "sleepy",
+ },
+ "restaurant": []string{
+ "plate_with_cutlery",
+ },
+ "restricted": []string{
+ "u7981",
+ },
+ "restroom": []string{
+ "mens",
+ "potable_water",
+ "toilet",
+ "wc",
+ "womens",
+ },
+ "return": []string{
+ "arrow_right_hook",
+ "back",
+ "leftwards_arrow_with_hook",
+ },
+ "revolver": []string{
+ "gun",
+ },
+ "rica": []string{
+ "costa_rica",
+ },
+ "rice": []string{
+ "sushi",
+ },
+ "rich": []string{
+ "money_mouth_face",
+ },
+ "rico": []string{
+ "puerto_rico",
+ },
+ "right": []string{
+ "arrow_forward",
+ "point_right",
+ },
+ "rings": []string{
+ "link",
+ },
+ "rip": []string{
+ "coffin",
+ "funeral_urn",
+ },
+ "ro": []string{
+ "romania",
+ },
+ "road": []string{
+ "motorway",
+ },
+ "roar": []string{
+ "tiger",
+ "tiger2",
+ },
+ "rock": []string{
+ "moyai",
+ },
+ "rock_on": []string{
+ "metal",
+ },
+ "rocket": []string{
+ "man_astronaut",
+ "woman_astronaut",
+ },
+ "rockstar": []string{
+ "man_singer",
+ "woman_singer",
+ },
+ "rodent": []string{
+ "chipmunk",
+ "mouse",
+ "mouse2",
+ "rat",
+ },
+ "rolling": []string{
+ "rofl",
+ },
+ "rotate": []string{
+ "arrow_right_hook",
+ },
+ "round": []string{
+ "arrows_clockwise",
+ "black_circle",
+ "o",
+ "white_circle",
+ },
+ "royal": []string{
+ "guardsman",
+ "guardswoman",
+ "prince",
+ "princess",
+ },
+ "royalty": []string{
+ "crown",
+ "european_castle",
+ },
+ "rs": []string{
+ "serbia",
+ },
+ "rubbish": []string{
+ "wastebasket",
+ },
+ "ruby": []string{
+ "gem",
+ },
+ "rude": []string{
+ "fu",
+ },
+ "rules": []string{
+ "no_pedestrians",
+ },
+ "running": []string{
+ "running_man",
+ "running_woman",
+ },
+ "russian": []string{
+ "ru",
+ },
+ "rw": []string{
+ "rwanda",
+ },
+ "rรฉunion": []string{
+ "reunion",
+ },
+ "sad": []string{
+ "broken_heart",
+ "cry",
+ "crying_cat_face",
+ "disappointed",
+ "frowning_face",
+ "frowning_man",
+ "frowning_woman",
+ "pensive",
+ "slightly_frowning_face",
+ "sob",
+ "sweat",
+ "weary",
+ },
+ "sahara": []string{
+ "western_sahara",
+ },
+ "saharah": []string{
+ "desert",
+ },
+ "sailing": []string{
+ "sailboat",
+ },
+ "saint": []string{
+ "st_barthelemy",
+ "st_helena",
+ "st_kitts_nevis",
+ "st_lucia",
+ "st_pierre_miquelon",
+ "st_vincent_grenadines",
+ },
+ "sale": []string{
+ "label",
+ "money_with_wings",
+ "moneybag",
+ },
+ "sales": []string{
+ "atm",
+ "bank",
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "credit_card",
+ "currency_exchange",
+ "dollar",
+ "euro",
+ "heavy_dollar_sign",
+ "pound",
+ "purse",
+ "yen",
+ },
+ "salon": []string{
+ "barber",
+ },
+ "salvador": []string{
+ "el_salvador",
+ },
+ "san": []string{
+ "san_marino",
+ },
+ "sand": []string{
+ "beach_umbrella",
+ },
+ "sandwich": []string{
+ "south_georgia_south_sandwich_islands",
+ },
+ "sanfrancisco": []string{
+ "bridge_at_night",
+ },
+ "sao": []string{
+ "sao_tome_principe",
+ },
+ "sarcasm": []string{
+ "smirk",
+ "unamused",
+ },
+ "sasha": []string{
+ "motor_scooter",
+ },
+ "satisfied": []string{
+ "laughing",
+ },
+ "save": []string{
+ "bookmark",
+ "bookmark_tabs",
+ "floppy_disk",
+ },
+ "savouring": []string{
+ "yum",
+ },
+ "say": []string{
+ "speaking_head",
+ },
+ "sc": []string{
+ "seychelles",
+ },
+ "scale": []string{
+ "level_slider",
+ },
+ "scared": []string{
+ "fearful",
+ "scream",
+ "scream_cat",
+ },
+ "scary": []string{
+ "ghost",
+ "japanese_goblin",
+ "japanese_ogre",
+ "skull_and_crossbones",
+ },
+ "schedule": []string{
+ "calendar",
+ "clock1",
+ "clock10",
+ "clock1030",
+ "clock11",
+ "clock1130",
+ "clock12",
+ "clock1230",
+ "clock130",
+ "clock2",
+ "clock230",
+ "clock3",
+ "clock330",
+ "clock4",
+ "clock430",
+ "clock5",
+ "clock530",
+ "clock6",
+ "clock630",
+ "clock7",
+ "clock730",
+ "clock8",
+ "clock830",
+ "clock9",
+ "clock930",
+ "date",
+ "spiral_calendar",
+ },
+ "school": []string{
+ "apple",
+ "children_crossing",
+ "mortar_board",
+ "pencil2",
+ "straight_ruler",
+ },
+ "science": []string{
+ "alembic",
+ "atom_symbol",
+ "microscope",
+ },
+ "score": []string{
+ "100",
+ "headphones",
+ "musical_note",
+ "notes",
+ },
+ "scorpio": []string{
+ "scorpius",
+ },
+ "scotch": []string{
+ "tumbler_glass",
+ },
+ "scout": []string{
+ "fleur_de_lis",
+ },
+ "scream": []string{
+ "scream_cat",
+ },
+ "screen": []string{
+ "computer",
+ "desktop_computer",
+ },
+ "scribble": []string{
+ "curly_loop",
+ "wavy_dash",
+ },
+ "sd": []string{
+ "south_sudan",
+ "sudan",
+ },
+ "se": []string{
+ "sweden",
+ },
+ "sea": []string{
+ "anchor",
+ "blowfish",
+ "dolphin",
+ "fish_cake",
+ "ocean",
+ "octopus",
+ "shark",
+ "shell",
+ "squid",
+ "surfing_man",
+ "surfing_woman",
+ "whale",
+ "whale2",
+ },
+ "seafood": []string{
+ "shrimp",
+ },
+ "sealed": []string{
+ "zipper_mouth_face",
+ },
+ "search": []string{
+ "mag",
+ "mag_right",
+ },
+ "season": []string{
+ "snowflake",
+ "snowman",
+ "snowman_with_snow",
+ },
+ "second": []string{
+ "2nd_place_medal",
+ },
+ "secret": []string{
+ "lock_with_ink_pen",
+ "wink",
+ "zipper_mouth_face",
+ },
+ "security": []string{
+ "closed_lock_with_key",
+ "lock",
+ "lock_with_ink_pen",
+ "no_entry",
+ "shield",
+ "unlock",
+ },
+ "see": []string{
+ "eye",
+ "eyes",
+ },
+ "senior": []string{
+ "older_man",
+ "older_woman",
+ },
+ "serious": []string{
+ "unamused",
+ },
+ "service": []string{
+ "bellhop_bell",
+ },
+ "sg": []string{
+ "singapore",
+ },
+ "shake": []string{
+ "handshake",
+ },
+ "shape": []string{
+ "black_circle",
+ "black_large_square",
+ "black_medium_small_square",
+ "black_medium_square",
+ "black_small_square",
+ "black_square_button",
+ "curly_loop",
+ "eight_pointed_black_star",
+ "large_blue_circle",
+ "large_blue_diamond",
+ "large_orange_diamond",
+ "left_right_arrow",
+ "ng",
+ "red_circle",
+ "small_blue_diamond",
+ "small_orange_diamond",
+ "small_red_triangle",
+ "small_red_triangle_down",
+ "white_circle",
+ "white_large_square",
+ "white_medium_small_square",
+ "white_medium_square",
+ "white_small_square",
+ "white_square_button",
+ },
+ "sheep": []string{
+ "ram",
+ },
+ "shell": []string{
+ "snail",
+ },
+ "sherlock": []string{
+ "shipit",
+ },
+ "shh": []string{
+ "hushed",
+ },
+ "shield": []string{
+ "beginner",
+ },
+ "shine": []string{
+ "sparkler",
+ "sparkles",
+ },
+ "shiny": []string{
+ "sparkles",
+ },
+ "ship": []string{
+ "anchor",
+ "canoe",
+ "ferry",
+ "motor_boat",
+ "rocket",
+ "rowing_man",
+ "rowing_woman",
+ "sailboat",
+ "speedboat",
+ },
+ "shipit": []string{
+ "sheep",
+ },
+ "shirt": []string{
+ "necktie",
+ "tshirt",
+ },
+ "shit": []string{
+ "poop",
+ },
+ "shitface": []string{
+ "poop",
+ },
+ "shoes": []string{
+ "athletic_shoe",
+ "boot",
+ "high_heel",
+ "sandal",
+ },
+ "shoo": []string{
+ "dash",
+ },
+ "shoot": []string{
+ "dizzy",
+ },
+ "shopping": []string{
+ "convenience_store",
+ "credit_card",
+ "department_store",
+ "dress",
+ "handbag",
+ "jeans",
+ "pouch",
+ "purse",
+ },
+ "shopping_bags": []string{
+ "womans_clothes",
+ },
+ "shot": []string{
+ "tumbler_glass",
+ },
+ "show": []string{
+ "tv",
+ },
+ "shower": []string{
+ "bath",
+ "bathtub",
+ },
+ "shuffle": []string{
+ "twisted_rightwards_arrows",
+ },
+ "shy": []string{
+ "blush",
+ "flushed",
+ },
+ "si": []string{
+ "slovenia",
+ },
+ "sick": []string{
+ "confounded",
+ "face_with_thermometer",
+ "mask",
+ "nauseated_face",
+ "persevere",
+ "sneezing_face",
+ "tired_face",
+ },
+ "sideways": []string{
+ "left_right_arrow",
+ },
+ "sierra": []string{
+ "sierra_leone",
+ },
+ "sight": []string{
+ "flashlight",
+ },
+ "sign": []string{
+ "aquarius",
+ "aries",
+ "cancer",
+ "capricorn",
+ "children_crossing",
+ "gemini",
+ "leo",
+ "libra",
+ "ophiuchus",
+ "pisces",
+ "put_litter_in_its_place",
+ "sagittarius",
+ "scorpius",
+ "taurus",
+ "virgo",
+ },
+ "sign_of_horns": []string{
+ "metal",
+ },
+ "signal": []string{
+ "traffic_light",
+ },
+ "sikhism": []string{
+ "om",
+ "wheel_of_dharma",
+ },
+ "silence": []string{
+ "mobile_phone_off",
+ "mute",
+ "speaker",
+ },
+ "silent": []string{
+ "no_bell",
+ },
+ "silk": []string{
+ "spider_web",
+ },
+ "silly": []string{
+ "upside_down_face",
+ "yum",
+ },
+ "sing": []string{
+ "microphone",
+ "speaking_head",
+ "studio_microphone",
+ },
+ "sint": []string{
+ "sint_maarten",
+ },
+ "sir": []string{
+ "man",
+ },
+ "sit": []string{
+ "seat",
+ },
+ "sk": []string{
+ "slovakia",
+ },
+ "skeleton": []string{
+ "skull",
+ },
+ "sketch": []string{
+ "straight_ruler",
+ "triangular_ruler",
+ },
+ "ski": []string{
+ "aerial_tramway",
+ "mountain_cableway",
+ },
+ "skill": []string{
+ "man_juggling",
+ "woman_juggling",
+ },
+ "sky": []string{
+ "city_sunset",
+ "cloud",
+ "crescent_moon",
+ "rainbow",
+ "sun_with_face",
+ "u7a7a",
+ "waxing_gibbous_moon",
+ },
+ "sleep": []string{
+ "bed",
+ "crescent_moon",
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "full_moon",
+ "full_moon_with_face",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "new_moon",
+ "new_moon_with_face",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ },
+ "sleepy": []string{
+ "sleeping",
+ "weary",
+ "zzz",
+ },
+ "slow": []string{
+ "snail",
+ "turtle",
+ },
+ "smell": []string{
+ "no_smoking",
+ "nose",
+ },
+ "smile": []string{
+ "blush",
+ "grin",
+ "grinning",
+ "hugs",
+ "slightly_smiling_face",
+ "smile_cat",
+ "smiley",
+ "smiley_cat",
+ "smirk",
+ "stuck_out_tongue",
+ "stuck_out_tongue_closed_eyes",
+ "stuck_out_tongue_winking_eye",
+ "sunglasses",
+ "sweat_smile",
+ "upside_down_face",
+ "wink",
+ "yum",
+ },
+ "smirk": []string{
+ "smirk_cat",
+ },
+ "smoke": []string{
+ "dash",
+ "factory",
+ "no_smoking",
+ "smoking",
+ },
+ "smug": []string{
+ "smirk",
+ },
+ "sn": []string{
+ "senegal",
+ },
+ "snack": []string{
+ "candy",
+ "chocolate_bar",
+ "cookie",
+ "doughnut",
+ "fries",
+ "lollipop",
+ "popcorn",
+ },
+ "sneakers": []string{
+ "athletic_shoe",
+ },
+ "sneeze": []string{
+ "sneezing_face",
+ },
+ "sniff": []string{
+ "nose",
+ },
+ "snow": []string{
+ "ski",
+ "skier",
+ },
+ "so": []string{
+ "somalia",
+ },
+ "software": []string{
+ "man_technologist",
+ "woman_technologist",
+ },
+ "solomon": []string{
+ "solomon_islands",
+ },
+ "solong": []string{
+ "wave",
+ },
+ "sorry": []string{
+ "broken_heart",
+ },
+ "sound": []string{
+ "bell",
+ "ear",
+ "loudspeaker",
+ "mega",
+ "microphone",
+ "musical_note",
+ "mute",
+ "no_bell",
+ "speaker",
+ },
+ "soup": []string{
+ "stew",
+ },
+ "south": []string{
+ "kr",
+ "south_africa",
+ "south_georgia_south_sandwich_islands",
+ "south_sudan",
+ },
+ "southeast": []string{
+ "arrow_lower_right",
+ },
+ "southern": []string{
+ "french_southern_territories",
+ },
+ "southwest": []string{
+ "arrow_lower_left",
+ },
+ "space": []string{
+ "comet",
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "full_moon",
+ "full_moon_with_face",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "man_astronaut",
+ "milky_way",
+ "new_moon",
+ "new_moon_with_face",
+ "satellite",
+ "telescope",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ "woman_astronaut",
+ },
+ "spaceflight": []string{
+ "artificial_satellite",
+ },
+ "spain": []string{
+ "es",
+ },
+ "sparkle": []string{
+ "dizzy",
+ "eight_spoked_asterisk",
+ "star2",
+ },
+ "speaker": []string{
+ "loud_sound",
+ "mega",
+ "sound",
+ },
+ "spear": []string{
+ "trident",
+ },
+ "speech": []string{
+ "right_anger_bubble",
+ "thought_balloon",
+ },
+ "speed": []string{
+ "bullettrain_front",
+ "fast_forward",
+ },
+ "spent": []string{
+ "dizzy_face",
+ },
+ "spicy": []string{
+ "curry",
+ "hot_pepper",
+ },
+ "spin": []string{
+ "cyclone",
+ },
+ "spiral": []string{
+ "cyclone",
+ },
+ "spock": []string{
+ "vulcan_salute",
+ },
+ "spooky": []string{
+ "ghost",
+ "izakaya_lantern",
+ },
+ "sports": []string{
+ "athletic_shoe",
+ "badminton",
+ "baseball",
+ "basketball",
+ "basketball_man",
+ "basketball_woman",
+ "bike",
+ "biking_man",
+ "biking_woman",
+ "bow_and_arrow",
+ "bowling",
+ "boxing_glove",
+ "cricket",
+ "field_hockey",
+ "football",
+ "goal_net",
+ "golf",
+ "golfing_man",
+ "golfing_woman",
+ "ice_hockey",
+ "ice_skate",
+ "man_playing_handball",
+ "man_playing_water_polo",
+ "men_wrestling",
+ "motorcycle",
+ "mountain_biking_man",
+ "mountain_biking_woman",
+ "person_fencing",
+ "ping_pong",
+ "racing_car",
+ "reminder_ribbon",
+ "rowing_man",
+ "rowing_woman",
+ "rugby_football",
+ "ski",
+ "skier",
+ "snowboarder",
+ "soccer",
+ "stadium",
+ "surfing_man",
+ "surfing_woman",
+ "swimming_man",
+ "swimming_woman",
+ "tennis",
+ "tickets",
+ "volleyball",
+ "weight_lifting_man",
+ "weight_lifting_woman",
+ "woman_playing_handball",
+ "woman_playing_water_polo",
+ "women_wrestling",
+ },
+ "spring": []string{
+ "bird",
+ "bouquet",
+ "cherry_blossom",
+ "droplet",
+ "honeybee",
+ "leaves",
+ "open_umbrella",
+ "partly_sunny",
+ "rabbit",
+ "rabbit2",
+ "rainbow",
+ "rose",
+ "seedling",
+ "sunny",
+ "tulip",
+ "umbrella",
+ "white_flower",
+ "wind_chime",
+ "womans_hat",
+ },
+ "spy": []string{
+ "female_detective",
+ "male_detective",
+ },
+ "squiggle": []string{
+ "curly_loop",
+ "wavy_dash",
+ },
+ "squirrel": []string{
+ "chestnut",
+ "chipmunk",
+ "shipit",
+ },
+ "sr": []string{
+ "suriname",
+ },
+ "sri": []string{
+ "sri_lanka",
+ },
+ "sshh": []string{
+ "secret",
+ },
+ "staffmode": []string{
+ "rocket",
+ },
+ "stage": []string{
+ "cinema",
+ },
+ "stalk": []string{
+ "eyes",
+ },
+ "star": []string{
+ "asterisk",
+ "dizzy",
+ "eight_spoked_asterisk",
+ },
+ "star trek": []string{
+ "vulcan_salute",
+ },
+ "starch": []string{
+ "potato",
+ },
+ "stare": []string{
+ "eye",
+ },
+ "stars": []string{
+ "milky_way",
+ "sparkle",
+ "sparkler",
+ "sparkles",
+ "telescope",
+ },
+ "start": []string{
+ "new",
+ },
+ "states": []string{
+ "micronesia",
+ "us",
+ },
+ "stationery": []string{
+ "black_nib",
+ "card_file_box",
+ "card_index",
+ "card_index_dividers",
+ "clipboard",
+ "fountain_pen",
+ "memo",
+ "notebook",
+ "paperclip",
+ "paperclips",
+ "pen",
+ "pencil2",
+ "pushpin",
+ "round_pushpin",
+ "scissors",
+ "spiral_notepad",
+ "straight_ruler",
+ "triangular_ruler",
+ "writing_hand",
+ },
+ "stats": []string{
+ "bar_chart",
+ "chart",
+ "chart_with_downwards_trend",
+ "chart_with_upwards_trend",
+ "part_alternation_mark",
+ },
+ "steps": []string{
+ "walking_man",
+ "walking_woman",
+ },
+ "sterling": []string{
+ "pound",
+ },
+ "stiletto": []string{
+ "high_heel",
+ },
+ "stone": []string{
+ "white_large_square",
+ "white_medium_small_square",
+ "white_medium_square",
+ },
+ "stop": []string{
+ "no_entry",
+ "no_entry_sign",
+ "raised_hand",
+ "stop_sign",
+ },
+ "straight face": []string{
+ "unamused",
+ },
+ "strong": []string{
+ "muscle",
+ },
+ "student": []string{
+ "school",
+ "school_satchel",
+ },
+ "study": []string{
+ "blue_book",
+ "books",
+ "green_book",
+ "memo",
+ "microscope",
+ "notebook",
+ "notebook_with_decorative_cover",
+ "open_book",
+ "orange_book",
+ "pencil2",
+ },
+ "stuffed": []string{
+ "stuffed_flatbread",
+ },
+ "stunned": []string{
+ "anguished",
+ },
+ "style": []string{
+ "barber",
+ },
+ "subtract": []string{
+ "heavy_minus_sign",
+ },
+ "success": []string{
+ "chart_with_upwards_trend",
+ },
+ "suit": []string{
+ "bowtie",
+ "business_suit_levitating",
+ },
+ "suits": []string{
+ "clubs",
+ "diamonds",
+ "hearts",
+ "spades",
+ },
+ "suitup": []string{
+ "necktie",
+ },
+ "summer": []string{
+ "beach_umbrella",
+ "beer",
+ "beers",
+ "bikini",
+ "fishing_pole_and_fish",
+ "fountain",
+ "fried_shrimp",
+ "golf",
+ "icecream",
+ "low_brightness",
+ "muscle",
+ "palm_tree",
+ "parasol_on_ground",
+ "sailboat",
+ "shaved_ice",
+ "speedboat",
+ "sunglasses",
+ "sunny",
+ "surfing_man",
+ "surfing_woman",
+ "swimming_man",
+ "swimming_woman",
+ "tanabata_tree",
+ "tropical_drink",
+ "tulip",
+ "watermelon",
+ },
+ "sun": []string{
+ "high_brightness",
+ "low_brightness",
+ },
+ "sunglass": []string{
+ "sunglasses",
+ },
+ "sunny": []string{
+ "beach_umbrella",
+ },
+ "sunset": []string{
+ "flower_playing_cards",
+ },
+ "suppedaneum": []string{
+ "orthodox_cross",
+ },
+ "support": []string{
+ "reminder_ribbon",
+ },
+ "surgery": []string{
+ "hospital",
+ },
+ "surprise": []string{
+ "bangbang",
+ "exclamation",
+ "grey_exclamation",
+ "interrobang",
+ "open_mouth",
+ },
+ "surprised": []string{
+ "astonished",
+ },
+ "surrender": []string{
+ "white_flag",
+ },
+ "sustain": []string{
+ "battery",
+ },
+ "sweat": []string{
+ "cold_sweat",
+ "disappointed_relieved",
+ "sweat_smile",
+ },
+ "sweet": []string{
+ "candy",
+ "chocolate_bar",
+ "cookie",
+ "dango",
+ "doughnut",
+ "honey_pot",
+ "lollipop",
+ },
+ "swim": []string{
+ "tropical_fish",
+ },
+ "swimming": []string{
+ "bikini",
+ },
+ "swirl": []string{
+ "cyclone",
+ },
+ "sword": []string{
+ "person_fencing",
+ },
+ "symbol": []string{
+ "hash",
+ },
+ "symphony": []string{
+ "violin",
+ },
+ "sync": []string{
+ "arrows_clockwise",
+ "arrows_counterclockwise",
+ },
+ "syrian": []string{
+ "syria",
+ },
+ "sz": []string{
+ "swaziland",
+ },
+ "tabletop": []string{
+ "game_die",
+ },
+ "tableware": []string{
+ "spoon",
+ },
+ "taekwondo": []string{
+ "martial_arts_uniform",
+ },
+ "tag": []string{
+ "label",
+ },
+ "talk": []string{
+ "left_speech_bubble",
+ "speaking_head",
+ "speech_balloon",
+ },
+ "talkshow": []string{
+ "microphone",
+ "studio_microphone",
+ },
+ "tanzania,": []string{
+ "tanzania",
+ },
+ "tap": []string{
+ "non-potable_water",
+ },
+ "tape": []string{
+ "film_projector",
+ "loop",
+ },
+ "td": []string{
+ "chad",
+ },
+ "teach": []string{
+ "school",
+ },
+ "team": []string{
+ "busts_in_silhouette",
+ "rugby_football",
+ },
+ "tears": []string{
+ "cry",
+ "crying_cat_face",
+ "joy",
+ "joy_cat",
+ "sob",
+ },
+ "technology": []string{
+ "cd",
+ "computer",
+ "desktop_computer",
+ "fax",
+ "floppy_disk",
+ "iphone",
+ "keyboard",
+ "minidisc",
+ "phone",
+ "telephone_receiver",
+ "trackball",
+ "tv",
+ },
+ "tee": []string{
+ "tshirt",
+ },
+ "teenager": []string{
+ "boy",
+ "girl",
+ },
+ "teeth": []string{
+ "grimacing",
+ },
+ "telephone": []string{
+ "phone",
+ },
+ "television": []string{
+ "tv",
+ },
+ "temperature": []string{
+ "face_with_thermometer",
+ "thermometer",
+ },
+ "temple": []string{
+ "place_of_worship",
+ "shinto_shrine",
+ "synagogue",
+ },
+ "tent": []string{
+ "camping",
+ },
+ "terrified": []string{
+ "fearful",
+ },
+ "territories": []string{
+ "french_southern_territories",
+ "palestinian_territories",
+ },
+ "territory": []string{
+ "british_indian_ocean_territory",
+ },
+ "terrorism": []string{
+ "bomb",
+ },
+ "test": []string{
+ "100",
+ "hourglass",
+ "memo",
+ },
+ "text": []string{
+ "keyboard",
+ },
+ "textbook": []string{
+ "closed_book",
+ "orange_book",
+ },
+ "tg": []string{
+ "togo",
+ },
+ "th": []string{
+ "elephant",
+ "thailand",
+ },
+ "theater": []string{
+ "cinema",
+ "performing_arts",
+ },
+ "therapist": []string{
+ "man_health_worker",
+ "woman_health_worker",
+ },
+ "thermometer": []string{
+ "face_with_thermometer",
+ },
+ "think": []string{
+ "thinking",
+ },
+ "thinking": []string{
+ "right_anger_bubble",
+ "thought_balloon",
+ },
+ "third": []string{
+ "3rd_place_medal",
+ },
+ "throw up": []string{
+ "nauseated_face",
+ },
+ "thumbsdown": []string{
+ "-1",
+ },
+ "thumbsup": []string{
+ "+1",
+ },
+ "thunder": []string{
+ "cloud_with_lightning",
+ "zap",
+ },
+ "tick": []string{
+ "ballot_box_with_check",
+ "heavy_check_mark",
+ "white_check_mark",
+ },
+ "tidy": []string{
+ "bookmark_tabs",
+ },
+ "time": []string{
+ "alarm_clock",
+ "clock1",
+ "clock10",
+ "clock1030",
+ "clock11",
+ "clock1130",
+ "clock12",
+ "clock1230",
+ "clock130",
+ "clock2",
+ "clock230",
+ "clock3",
+ "clock330",
+ "clock4",
+ "clock430",
+ "clock5",
+ "clock530",
+ "clock6",
+ "clock630",
+ "clock7",
+ "clock730",
+ "clock8",
+ "clock830",
+ "clock9",
+ "clock930",
+ "hourglass",
+ "hourglass_flowing_sand",
+ "mantelpiece_clock",
+ "stopwatch",
+ "watch",
+ },
+ "timor": []string{
+ "timor_leste",
+ },
+ "tired": []string{
+ "sleeping",
+ "sleepy",
+ "sweat",
+ "weary",
+ "zzz",
+ },
+ "titanic": []string{
+ "ship",
+ },
+ "tj": []string{
+ "tajikistan",
+ },
+ "tk": []string{
+ "tokelau",
+ },
+ "tn": []string{
+ "tunisia",
+ },
+ "to": []string{
+ "tonga",
+ },
+ "toad": []string{
+ "frog",
+ },
+ "toast": []string{
+ "bread",
+ },
+ "tobacco": []string{
+ "smoking",
+ },
+ "tobago": []string{
+ "trinidad_tobago",
+ },
+ "toddler": []string{
+ "baby",
+ },
+ "toilet": []string{
+ "mens",
+ "restroom",
+ "wc",
+ "womens",
+ },
+ "tome": []string{
+ "sao_tome_principe",
+ },
+ "tone": []string{
+ "musical_note",
+ },
+ "tongue": []string{
+ "stuck_out_tongue",
+ "stuck_out_tongue_closed_eyes",
+ "stuck_out_tongue_winking_eye",
+ "yum",
+ },
+ "tool": []string{
+ "clamp",
+ },
+ "tools": []string{
+ "hammer",
+ "hammer_and_pick",
+ "hammer_and_wrench",
+ "nut_and_bolt",
+ "pick",
+ "wrench",
+ },
+ "top": []string{
+ "arrow_double_up",
+ "arrow_heading_up",
+ "arrow_up",
+ "arrow_up_small",
+ "small_red_triangle",
+ },
+ "tortoise": []string{
+ "turtle",
+ },
+ "toss": []string{
+ "wastebasket",
+ },
+ "toy": []string{
+ "dolls",
+ },
+ "tracking": []string{
+ "footprints",
+ "paw_prints",
+ },
+ "trackpad": []string{
+ "trackball",
+ },
+ "trademark": []string{
+ "tm",
+ },
+ "train": []string{
+ "railway_track",
+ "steam_locomotive",
+ },
+ "training": []string{
+ "weight_lifting_man",
+ "weight_lifting_woman",
+ },
+ "transgender": []string{
+ "rainbow_flag",
+ },
+ "transport": []string{
+ "baggage_claim",
+ "seat",
+ },
+ "transportation": []string{
+ "aerial_tramway",
+ "airplane",
+ "articulated_lorry",
+ "blue_car",
+ "bullettrain_front",
+ "bullettrain_side",
+ "bus",
+ "busstop",
+ "fire_engine",
+ "helicopter",
+ "light_rail",
+ "metro",
+ "minibus",
+ "monorail",
+ "mountain_biking_man",
+ "mountain_biking_woman",
+ "mountain_cableway",
+ "mountain_railway",
+ "oncoming_automobile",
+ "oncoming_bus",
+ "police_car",
+ "railway_car",
+ "railway_track",
+ "red_car",
+ "sailboat",
+ "ship",
+ "small_airplane",
+ "speedboat",
+ "station",
+ "steam_locomotive",
+ "suspension_railway",
+ "taxi",
+ "traffic_light",
+ "train",
+ "train2",
+ "tram",
+ "trolleybus",
+ "truck",
+ "vertical_traffic_light",
+ },
+ "trash": []string{
+ "do_not_litter",
+ "recycle",
+ "wastebasket",
+ },
+ "travel": []string{
+ "bullettrain_front",
+ "currency_exchange",
+ "left_luggage",
+ "train",
+ },
+ "treble": []string{
+ "musical_score",
+ },
+ "tree": []string{
+ "leaves",
+ },
+ "triangle": []string{
+ "arrow_up_small",
+ },
+ "trinidad": []string{
+ "trinidad_tobago",
+ },
+ "tristan": []string{
+ "st_helena",
+ },
+ "trolley": []string{
+ "shopping_cart",
+ },
+ "tropical": []string{
+ "desert_island",
+ "palm_tree",
+ },
+ "tsukimi": []string{
+ "rice_scene",
+ },
+ "tsunami": []string{
+ "ocean",
+ },
+ "tube": []string{
+ "metro",
+ },
+ "tuber": []string{
+ "potato",
+ },
+ "turd": []string{
+ "poop",
+ },
+ "turkey": []string{
+ "poultry_leg",
+ "tr",
+ },
+ "turks": []string{
+ "turks_caicos_islands",
+ },
+ "tw": []string{
+ "taiwan",
+ },
+ "tweet": []string{
+ "bird",
+ },
+ "twilight": []string{
+ "first_quarter_moon",
+ "first_quarter_moon_with_face",
+ "full_moon",
+ "full_moon_with_face",
+ "last_quarter_moon",
+ "last_quarter_moon_with_face",
+ "new_moon",
+ "new_moon_with_face",
+ "waning_crescent_moon",
+ "waning_gibbous_moon",
+ "waxing_crescent_moon",
+ "waxing_gibbous_moon",
+ },
+ "twister": []string{
+ "tornado",
+ },
+ "twitter": []string{
+ "hash",
+ },
+ "two": []string{
+ "v",
+ },
+ "type": []string{
+ "keyboard",
+ },
+ "ua": []string{
+ "ukraine",
+ },
+ "uber": []string{
+ "oncoming_taxi",
+ "taxi",
+ },
+ "ug": []string{
+ "uganda",
+ },
+ "uk": []string{
+ "guardsman",
+ "guardswoman",
+ "pound",
+ },
+ "unconscious": []string{
+ "dizzy_face",
+ },
+ "underground": []string{
+ "metro",
+ },
+ "undo": []string{
+ "leftwards_arrow_with_hook",
+ },
+ "unhappy": []string{
+ "frowning_man",
+ "frowning_woman",
+ },
+ "unicorn_face": []string{
+ "rainbow",
+ },
+ "union": []string{
+ "eu",
+ },
+ "union jack": []string{
+ "uk",
+ },
+ "united": []string{
+ "tanzania",
+ "uk",
+ "united_arab_emirates",
+ "us",
+ },
+ "university": []string{
+ "mortar_board",
+ },
+ "unwell": []string{
+ "confounded",
+ },
+ "up": []string{
+ "point_up",
+ "point_up_2",
+ "small_red_triangle",
+ },
+ "upset": []string{
+ "cry",
+ "crying_cat_face",
+ "disappointed",
+ "frowning_face",
+ "pensive",
+ "persevere",
+ "slightly_frowning_face",
+ "sob",
+ "tired_face",
+ "weary",
+ },
+ "urban": []string{
+ "cityscape",
+ },
+ "url": []string{
+ "link",
+ },
+ "us": []string{
+ "us_virgin_islands",
+ },
+ "user": []string{
+ "bust_in_silhouette",
+ "busts_in_silhouette",
+ "speaking_head",
+ },
+ "uy": []string{
+ "uruguay",
+ },
+ "uz": []string{
+ "uzbekistan",
+ },
+ "vacation": []string{
+ "christmas_tree",
+ "sunrise",
+ "sunrise_over_mountains",
+ },
+ "valentines": []string{
+ "blue_heart",
+ "couple",
+ "couple_with_heart_man_man",
+ "couple_with_heart_woman_man",
+ "couple_with_heart_woman_woman",
+ "couplekiss_man_man",
+ "couplekiss_man_woman",
+ "couplekiss_woman_woman",
+ "cupid",
+ "gift_heart",
+ "green_heart",
+ "heart",
+ "heart_eyes",
+ "heart_eyes_cat",
+ "heartbeat",
+ "heartpulse",
+ "kiss",
+ "kissing",
+ "kissing_closed_eyes",
+ "kissing_heart",
+ "kissing_smiling_eyes",
+ "love_letter",
+ "purple_heart",
+ "revolving_hearts",
+ "ring",
+ "rose",
+ "sparkling_heart",
+ "two_hearts",
+ "yellow_heart",
+ },
+ "vampire": []string{
+ "bat",
+ "coffin",
+ },
+ "vase": []string{
+ "amphora",
+ },
+ "vatican": []string{
+ "vatican_city",
+ },
+ "ve": []string{
+ "venezuela",
+ },
+ "vegas": []string{
+ "slot_machine",
+ },
+ "vegatable": []string{
+ "potato",
+ },
+ "vegetable": []string{
+ "bamboo",
+ "cactus",
+ "carrot",
+ "corn",
+ "eggplant",
+ "fallen_leaf",
+ "four_leaf_clover",
+ "herb",
+ "hibiscus",
+ "leaves",
+ "maple_leaf",
+ "mushroom",
+ "palm_tree",
+ "shamrock",
+ "tomato",
+ },
+ "vehicle": []string{
+ "aerial_tramway",
+ "airplane",
+ "articulated_lorry",
+ "blue_car",
+ "bullettrain_front",
+ "bullettrain_side",
+ "bus",
+ "fire_engine",
+ "helicopter",
+ "kick_scooter",
+ "light_rail",
+ "minibus",
+ "monorail",
+ "motor_scooter",
+ "mountain_cableway",
+ "mountain_railway",
+ "oncoming_automobile",
+ "oncoming_bus",
+ "oncoming_police_car",
+ "oncoming_taxi",
+ "police_car",
+ "railway_car",
+ "red_car",
+ "small_airplane",
+ "speedboat",
+ "station",
+ "steam_locomotive",
+ "suspension_railway",
+ "taxi",
+ "tractor",
+ "train",
+ "train2",
+ "tram",
+ "trolleybus",
+ },
+ "venison": []string{
+ "deer",
+ },
+ "venue": []string{
+ "stadium",
+ },
+ "verde": []string{
+ "cape_verde",
+ },
+ "vertical": []string{
+ "arrow_up_down",
+ },
+ "vespa": []string{
+ "motor_scooter",
+ },
+ "victory": []string{
+ "v",
+ },
+ "video": []string{
+ "film_projector",
+ "vhs",
+ },
+ "viet": []string{
+ "vietnam",
+ },
+ "view": []string{
+ "sunrise",
+ "sunrise_over_mountains",
+ },
+ "vincent": []string{
+ "st_vincent_grenadines",
+ },
+ "violence": []string{
+ "facepunch",
+ "gun",
+ },
+ "virgin": []string{
+ "british_virgin_islands",
+ "us_virgin_islands",
+ },
+ "volume": []string{
+ "loud_sound",
+ "loudspeaker",
+ "mega",
+ "mute",
+ "no_bell",
+ "sound",
+ "speaker",
+ },
+ "vomit": []string{
+ "nauseated_face",
+ },
+ "vortex": []string{
+ "cyclone",
+ },
+ "vote": []string{
+ "ballot_box",
+ "ballot_box_with_check",
+ "white_check_mark",
+ },
+ "vu": []string{
+ "vanuatu",
+ },
+ "wait": []string{
+ "busstop",
+ },
+ "wake": []string{
+ "alarm_clock",
+ },
+ "walking": []string{
+ "footprints",
+ "no_pedestrians",
+ "running_man",
+ "running_woman",
+ },
+ "wallis": []string{
+ "wallis_futuna",
+ },
+ "warm": []string{
+ "desert",
+ "hotsprings",
+ "low_brightness",
+ },
+ "warning": []string{
+ "children_crossing",
+ "construction",
+ "exclamation",
+ "grey_exclamation",
+ },
+ "washroom": []string{
+ "toilet",
+ },
+ "wat": []string{
+ "interrobang",
+ },
+ "watch": []string{
+ "eye",
+ "eyes",
+ },
+ "water": []string{
+ "canoe",
+ "droplet",
+ "fountain",
+ "ocean",
+ "rowing_man",
+ "rowing_woman",
+ "sailboat",
+ "shower",
+ "sweat_drops",
+ "swimming_man",
+ "swimming_woman",
+ },
+ "wave": []string{
+ "ocean",
+ },
+ "wax": []string{
+ "candle",
+ },
+ "waxing_gibbous_moon": []string{
+ "waning_gibbous_moon",
+ },
+ "way": []string{
+ "arrow_up_down",
+ },
+ "wc": []string{
+ "mens",
+ "restroom",
+ "toilet",
+ },
+ "weapon": []string{
+ "crossed_swords",
+ "dagger",
+ "gun",
+ "hocho",
+ "trident",
+ },
+ "weather": []string{
+ "beach_umbrella",
+ "closed_umbrella",
+ "cloud",
+ "cloud_with_lightning",
+ "cloud_with_lightning_and_rain",
+ "cloud_with_rain",
+ "cloud_with_snow",
+ "cyclone",
+ "fog",
+ "open_umbrella",
+ "parasol_on_ground",
+ "partly_sunny",
+ "snowflake",
+ "snowman",
+ "snowman_with_snow",
+ "sun_behind_large_cloud",
+ "sun_behind_rain_cloud",
+ "sun_behind_small_cloud",
+ "sunny",
+ "thermometer",
+ "tornado",
+ "umbrella",
+ "zap",
+ },
+ "wedding": []string{
+ "bride_with_veil",
+ "man_in_tuxedo",
+ "ring",
+ },
+ "weed": []string{
+ "herb",
+ },
+ "weep": []string{
+ "crying_cat_face",
+ "joy",
+ },
+ "weight": []string{
+ "balance_scale",
+ },
+ "weird": []string{
+ "alien",
+ "confused",
+ },
+ "western": []string{
+ "western_sahara",
+ },
+ "what": []string{
+ "frowning",
+ },
+ "wheat": []string{
+ "bread",
+ },
+ "whine": []string{
+ "tired_face",
+ },
+ "whirlpool": []string{
+ "cyclone",
+ },
+ "whisky": []string{
+ "tumbler_glass",
+ },
+ "whoa": []string{
+ "open_mouth",
+ },
+ "wifi": []string{
+ "signal_strength",
+ },
+ "wild": []string{
+ "bear",
+ "tiger",
+ "wolf",
+ },
+ "win": []string{
+ "trophy",
+ },
+ "wind": []string{
+ "dash",
+ },
+ "wine": []string{
+ "champagne",
+ "grapes",
+ "sake",
+ },
+ "wings": []string{
+ "angel",
+ },
+ "wink": []string{
+ "stuck_out_tongue_winking_eye",
+ },
+ "winning": []string{
+ "1st_place_medal",
+ "medal_military",
+ "medal_sports",
+ },
+ "winter": []string{
+ "mountain_snow",
+ "ski",
+ "skier",
+ "snowboarder",
+ "snowflake",
+ "snowman",
+ "snowman_with_snow",
+ },
+ "wip": []string{
+ "building_construction",
+ "construction",
+ "construction_worker_man",
+ "construction_worker_woman",
+ "warning",
+ },
+ "wish": []string{
+ "pray",
+ },
+ "without_snow": []string{
+ "snowman",
+ },
+ "woman": []string{
+ "basketball_woman",
+ "biking_woman",
+ "bikini",
+ "blonde_woman",
+ "bowing_woman",
+ "bride_with_veil",
+ "construction_worker_woman",
+ "dancer",
+ "female_detective",
+ "frowning_woman",
+ "girl",
+ "golfing_woman",
+ "guardswoman",
+ "haircut_woman",
+ "lipstick",
+ "massage_woman",
+ "mountain_biking_woman",
+ "mrs_claus",
+ "no_good_woman",
+ "ok_woman",
+ "policewoman",
+ "pouting_woman",
+ "princess",
+ "raising_hand_woman",
+ "rowing_woman",
+ "running_woman",
+ "surfing_woman",
+ "swimming_woman",
+ "tipping_hand_woman",
+ "walking_woman",
+ "weight_lifting_woman",
+ "woman_artist",
+ "woman_astronaut",
+ "woman_cook",
+ "woman_facepalming",
+ "woman_factory_worker",
+ "woman_farmer",
+ "woman_firefighter",
+ "woman_health_worker",
+ "woman_judge",
+ "woman_mechanic",
+ "woman_office_worker",
+ "woman_pilot",
+ "woman_scientist",
+ "woman_shrugging",
+ "woman_singer",
+ "woman_student",
+ "woman_teacher",
+ "woman_technologist",
+ "woman_with_turban",
+ "womens",
+ },
+ "women": []string{
+ "dancing_women",
+ "kimono",
+ "ok_woman",
+ "older_woman",
+ },
+ "woo": []string{
+ "hushed",
+ },
+ "woof": []string{
+ "dog",
+ },
+ "wool": []string{
+ "sheep",
+ },
+ "words": []string{
+ "back",
+ "capital_abcd",
+ "cl",
+ "cool",
+ "end",
+ "free",
+ "id",
+ "left_speech_bubble",
+ "new",
+ "ng",
+ "on",
+ "soon",
+ "sos",
+ "speech_balloon",
+ "top",
+ "vs",
+ },
+ "work": []string{
+ "briefcase",
+ "office",
+ },
+ "worker": []string{
+ "construction_worker_man",
+ "construction_worker_woman",
+ },
+ "working": []string{
+ "building_construction",
+ },
+ "world": []string{
+ "earth_africa",
+ "earth_americas",
+ "earth_asia",
+ "globe_with_meridians",
+ },
+ "worm": []string{
+ "bug",
+ },
+ "worship": []string{
+ "mosque",
+ "synagogue",
+ },
+ "wow": []string{
+ "exclamation",
+ "grey_exclamation",
+ "open_mouth",
+ },
+ "wrestlers": []string{
+ "men_wrestling",
+ "women_wrestling",
+ },
+ "write": []string{
+ "black_nib",
+ "fountain_pen",
+ "memo",
+ "pen",
+ "pencil2",
+ "writing_hand",
+ },
+ "writing": []string{
+ "black_nib",
+ "fountain_pen",
+ "memo",
+ "pen",
+ "pencil2",
+ },
+ "ws": []string{
+ "american_samoa",
+ "samoa",
+ },
+ "x": []string{
+ "negative_squared_cross_mark",
+ },
+ "xk": []string{
+ "kosovo",
+ },
+ "xmas": []string{
+ "bell",
+ "christmas_tree",
+ "gift",
+ "mrs_claus",
+ "santa",
+ "snowflake",
+ "snowman",
+ "snowman_with_snow",
+ },
+ "xox": []string{
+ "astonished",
+ "dizzy_face",
+ },
+ "yacht": []string{
+ "ferry",
+ "passenger_ship",
+ },
+ "yay": []string{
+ "clap",
+ },
+ "ye": []string{
+ "yemen",
+ },
+ "yea": []string{
+ "raised_hands",
+ },
+ "yellow": []string{
+ "blossom",
+ "full_moon",
+ "star",
+ },
+ "yellow-diamond": []string{
+ "children_crossing",
+ },
+ "yes": []string{
+ "+1",
+ "accept",
+ "ballot_box_with_check",
+ "heavy_check_mark",
+ "ok",
+ },
+ "yt": []string{
+ "mayotte",
+ },
+ "yummy": []string{
+ "yum",
+ },
+ "zealand": []string{
+ "new_zealand",
+ },
+ "zipper": []string{
+ "zipper_mouth_face",
+ },
+ "zm": []string{
+ "zambia",
+ },
+ "zodiac": []string{
+ "aquarius",
+ "aries",
+ "cancer",
+ "capricorn",
+ "gemini",
+ "leo",
+ "libra",
+ "pisces",
+ "sagittarius",
+ "scorpius",
+ "taurus",
+ "virgo",
+ },
+ "zoom": []string{
+ "mag",
+ "mag_right",
+ "telescope",
+ },
+ "zoomin": []string{
+ "microscope",
+ },
+ "zw": []string{
+ "zimbabwe",
+ },
+ "zzz": []string{
+ "sleeping",
+ },
+ "ร…land": []string{
+ "aland_islands",
+ },
+}
+
+var emojiReplacer = strings.NewReplacer(
+ ":+1:", "๐Ÿ‘",
+ ":-1:", "๐Ÿ‘Ž",
+ ":100:", "๐Ÿ’ฏ",
+ ":1234:", "๐Ÿ”ข",
+ ":1st_place_medal:", "๐Ÿฅ‡",
+ ":2nd_place_medal:", "๐Ÿฅˆ",
+ ":3rd_place_medal:", "๐Ÿฅ‰",
+ ":8ball:", "๐ŸŽฑ",
+ ":a:", "๐Ÿ…ฐ๏ธ",
+ ":ab:", "๐Ÿ†Ž",
+ ":abc:", "๐Ÿ”ค",
+ ":abcd:", "๐Ÿ”ก",
+ ":accept:", "๐Ÿ‰‘",
+ ":aerial_tramway:", "๐Ÿšก",
+ ":afghanistan:", "๐Ÿ‡ฆ๐Ÿ‡ซ",
+ ":airplane:", "โœˆ๏ธ",
+ ":aland_islands:", "๐Ÿ‡ฆ๐Ÿ‡ฝ",
+ ":alarm_clock:", "โฐ",
+ ":albania:", "๐Ÿ‡ฆ๐Ÿ‡ฑ",
+ ":alembic:", "โš—",
+ ":algeria:", "๐Ÿ‡ฉ๐Ÿ‡ฟ",
+ ":alien:", "๐Ÿ‘ฝ",
+ ":ambulance:", "๐Ÿš‘",
+ ":american_samoa:", "๐Ÿ‡ฆ๐Ÿ‡ธ",
+ ":amphora:", "๐Ÿบ",
+ ":anchor:", "โš“",
+ ":andorra:", "๐Ÿ‡ฆ๐Ÿ‡ฉ",
+ ":angel:", "๐Ÿ‘ผ",
+ ":anger:", "๐Ÿ’ข",
+ ":angola:", "๐Ÿ‡ฆ๐Ÿ‡ด",
+ ":angry:", "๐Ÿ˜ ",
+ ":anguilla:", "๐Ÿ‡ฆ๐Ÿ‡ฎ",
+ ":anguished:", "๐Ÿ˜ง",
+ ":ant:", "๐Ÿœ",
+ ":antarctica:", "๐Ÿ‡ฆ๐Ÿ‡ถ",
+ ":antigua_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:", "๐Ÿš›",
+ ":artificial_satellite:", "๐Ÿ›ฐ",
+ ":aruba:", "๐Ÿ‡ฆ๐Ÿ‡ผ",
+ ":asterisk:", "*โƒฃ",
+ ":astonished:", "๐Ÿ˜ฒ",
+ ":athletic_shoe:", "๐Ÿ‘Ÿ",
+ ":atm:", "๐Ÿง",
+ ":atom_symbol:", "โš›",
+ ":australia:", "๐Ÿ‡ฆ๐Ÿ‡บ",
+ ":austria:", "๐Ÿ‡ฆ๐Ÿ‡น",
+ ":avocado:", "๐Ÿฅ‘",
+ ":azerbaijan:", "๐Ÿ‡ฆ๐Ÿ‡ฟ",
+ ":b:", "๐Ÿ…ฑ๏ธ",
+ ":baby:", "๐Ÿ‘ถ",
+ ":baby_bottle:", "๐Ÿผ",
+ ":baby_chick:", "๐Ÿค",
+ ":baby_symbol:", "๐Ÿšผ",
+ ":back:", "๐Ÿ”™",
+ ":bacon:", "๐Ÿฅ“",
+ ":badminton:", "๐Ÿธ",
+ ":baggage_claim:", "๐Ÿ›„",
+ ":baguette_bread:", "๐Ÿฅ–",
+ ":bahamas:", "๐Ÿ‡ง๐Ÿ‡ธ",
+ ":bahrain:", "๐Ÿ‡ง๐Ÿ‡ญ",
+ ":balance_scale:", "โš–",
+ ":balloon:", "๐ŸŽˆ",
+ ":ballot_box:", "๐Ÿ—ณ",
+ ":ballot_box_with_check:", "โ˜‘๏ธ",
+ ":bamboo:", "๐ŸŽ",
+ ":banana:", "๐ŸŒ",
+ ":bangbang:", "โ€ผ๏ธ",
+ ":bangladesh:", "๐Ÿ‡ง๐Ÿ‡ฉ",
+ ":bank:", "๐Ÿฆ",
+ ":bar_chart:", "๐Ÿ“Š",
+ ":barbados:", "๐Ÿ‡ง๐Ÿ‡ง",
+ ":barber:", "๐Ÿ’ˆ",
+ ":baseball:", "โšพ",
+ ":basketball:", "๐Ÿ€",
+ ":basketball_man:", "โ›น",
+ ":basketball_woman:", "โ›น๏ธโ€โ™€๏ธ",
+ ":bat:", "๐Ÿฆ‡",
+ ":bath:", "๐Ÿ›€",
+ ":bathtub:", "๐Ÿ›",
+ ":battery:", "๐Ÿ”‹",
+ ":beach_umbrella:", "๐Ÿ–",
+ ":bear:", "๐Ÿป",
+ ":bed:", "๐Ÿ›",
+ ":beer:", "๐Ÿบ",
+ ":beers:", "๐Ÿป",
+ ":beetle:", "๐Ÿž",
+ ":beginner:", "๐Ÿ”ฐ",
+ ":belarus:", "๐Ÿ‡ง๐Ÿ‡พ",
+ ":belgium:", "๐Ÿ‡ง๐Ÿ‡ช",
+ ":belize:", "๐Ÿ‡ง๐Ÿ‡ฟ",
+ ":bell:", "๐Ÿ””",
+ ":bellhop_bell:", "๐Ÿ›Ž",
+ ":benin:", "๐Ÿ‡ง๐Ÿ‡ฏ",
+ ":bento:", "๐Ÿฑ",
+ ":bermuda:", "๐Ÿ‡ง๐Ÿ‡ฒ",
+ ":bhutan:", "๐Ÿ‡ง๐Ÿ‡น",
+ ":bike:", "๐Ÿšฒ",
+ ":biking_man:", "๐Ÿšด",
+ ":biking_woman:", "๐Ÿšดโ€โ™€๏ธ",
+ ":bikini:", "๐Ÿ‘™",
+ ":biohazard:", "โ˜ฃ",
+ ":bird:", "๐Ÿฆ",
+ ":birthday:", "๐ŸŽ‚",
+ ":black_circle:", "โšซ",
+ ":black_flag:", "๐Ÿด",
+ ":black_heart:", "๐Ÿ–ค",
+ ":black_joker:", "๐Ÿƒ",
+ ":black_large_square:", "โฌ›",
+ ":black_medium_small_square:", "โ—พ",
+ ":black_medium_square:", "โ—ผ๏ธ",
+ ":black_nib:", "โœ’๏ธ",
+ ":black_small_square:", "โ–ช๏ธ",
+ ":black_square_button:", "๐Ÿ”ฒ",
+ ":blonde_man:", "๐Ÿ‘ฑ",
+ ":blonde_woman:", "๐Ÿ‘ฑโ€โ™€๏ธ",
+ ":blossom:", "๐ŸŒผ",
+ ":blowfish:", "๐Ÿก",
+ ":blue_book:", "๐Ÿ“˜",
+ ":blue_car:", "๐Ÿš™",
+ ":blue_heart:", "๐Ÿ’™",
+ ":blush:", "๐Ÿ˜Š",
+ ":boar:", "๐Ÿ—",
+ ":bolivia:", "๐Ÿ‡ง๐Ÿ‡ด",
+ ":bomb:", "๐Ÿ’ฃ",
+ ":bookmark:", "๐Ÿ”–",
+ ":bookmark_tabs:", "๐Ÿ“‘",
+ ":books:", "๐Ÿ“š",
+ ":boom:", "๐Ÿ’ฅ",
+ ":boot:", "๐Ÿ‘ข",
+ ":bosnia_herzegovina:", "๐Ÿ‡ง๐Ÿ‡ฆ",
+ ":botswana:", "๐Ÿ‡ง๐Ÿ‡ผ",
+ ":bouquet:", "๐Ÿ’",
+ ":bow_and_arrow:", "๐Ÿน",
+ ":bowing_man:", "๐Ÿ™‡",
+ ":bowing_woman:", "๐Ÿ™‡โ€โ™€๏ธ",
+ ":bowling:", "๐ŸŽณ",
+ ":bowtie:", "",
+ ":boxing_glove:", "๐ŸฅŠ",
+ ":boy:", "๐Ÿ‘ฆ",
+ ":brazil:", "๐Ÿ‡ง๐Ÿ‡ท",
+ ":bread:", "๐Ÿž",
+ ":bride_with_veil:", "๐Ÿ‘ฐ",
+ ":bridge_at_night:", "๐ŸŒ‰",
+ ":briefcase:", "๐Ÿ’ผ",
+ ":british_indian_ocean_territory:", "๐Ÿ‡ฎ๐Ÿ‡ด",
+ ":british_virgin_islands:", "๐Ÿ‡ป๐Ÿ‡ฌ",
+ ":broken_heart:", "๐Ÿ’”",
+ ":brunei:", "๐Ÿ‡ง๐Ÿ‡ณ",
+ ":bug:", "๐Ÿ›",
+ ":building_construction:", "๐Ÿ—",
+ ":bulb:", "๐Ÿ’ก",
+ ":bulgaria:", "๐Ÿ‡ง๐Ÿ‡ฌ",
+ ":bullettrain_front:", "๐Ÿš…",
+ ":bullettrain_side:", "๐Ÿš„",
+ ":burkina_faso:", "๐Ÿ‡ง๐Ÿ‡ซ",
+ ":burrito:", "๐ŸŒฏ",
+ ":burundi:", "๐Ÿ‡ง๐Ÿ‡ฎ",
+ ":bus:", "๐ŸšŒ",
+ ":business_suit_levitating:", "๐Ÿ•ด",
+ ":busstop:", "๐Ÿš",
+ ":bust_in_silhouette:", "๐Ÿ‘ค",
+ ":busts_in_silhouette:", "๐Ÿ‘ฅ",
+ ":butterfly:", "๐Ÿฆ‹",
+ ":cactus:", "๐ŸŒต",
+ ":cake:", "๐Ÿฐ",
+ ":calendar:", "๐Ÿ“†",
+ ":call_me_hand:", "๐Ÿค™",
+ ":calling:", "๐Ÿ“ฒ",
+ ":cambodia:", "๐Ÿ‡ฐ๐Ÿ‡ญ",
+ ":camel:", "๐Ÿซ",
+ ":camera:", "๐Ÿ“ท",
+ ":camera_flash:", "๐Ÿ“ธ",
+ ":cameroon:", "๐Ÿ‡จ๐Ÿ‡ฒ",
+ ":camping:", "๐Ÿ•",
+ ":canada:", "๐Ÿ‡จ๐Ÿ‡ฆ",
+ ":canary_islands:", "๐Ÿ‡ฎ๐Ÿ‡จ",
+ ":cancer:", "โ™‹",
+ ":candle:", "๐Ÿ•ฏ",
+ ":candy:", "๐Ÿฌ",
+ ":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:", "๐Ÿ‡จ๐Ÿ‡ซ",
+ ":chad:", "๐Ÿ‡น๐Ÿ‡ฉ",
+ ":chains:", "โ›“",
+ ":champagne:", "๐Ÿพ",
+ ":chart:", "๐Ÿ’น",
+ ":chart_with_downwards_trend:", "๐Ÿ“‰",
+ ":chart_with_upwards_trend:", "๐Ÿ“ˆ",
+ ":checkered_flag:", "๐Ÿ",
+ ":cheese:", "๐Ÿง€",
+ ":cherries:", "๐Ÿ’",
+ ":cherry_blossom:", "๐ŸŒธ",
+ ":chestnut:", "๐ŸŒฐ",
+ ":chicken:", "๐Ÿ”",
+ ":children_crossing:", "๐Ÿšธ",
+ ":chile:", "๐Ÿ‡จ๐Ÿ‡ฑ",
+ ":chipmunk:", "๐Ÿฟ",
+ ":chocolate_bar:", "๐Ÿซ",
+ ":christmas_island:", "๐Ÿ‡จ๐Ÿ‡ฝ",
+ ":christmas_tree:", "๐ŸŽ„",
+ ":church:", "โ›ช",
+ ":cinema:", "๐ŸŽฆ",
+ ":circus_tent:", "๐ŸŽช",
+ ":city_sunrise:", "๐ŸŒ‡",
+ ":city_sunset:", "๐ŸŒ†",
+ ":cityscape:", "๐Ÿ™",
+ ":cl:", "๐Ÿ†‘",
+ ":clamp:", "๐Ÿ—œ",
+ ":clap:", "๐Ÿ‘",
+ ":clapper:", "๐ŸŽฌ",
+ ":classical_building:", "๐Ÿ›",
+ ":clinking_glasses:", "๐Ÿฅ‚",
+ ":clipboard:", "๐Ÿ“‹",
+ ":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_face:", "๐Ÿคก",
+ ":clubs:", "โ™ฃ๏ธ",
+ ":cn:", "๐Ÿ‡จ๐Ÿ‡ณ",
+ ":cocktail:", "๐Ÿธ",
+ ":cocos_islands:", "๐Ÿ‡จ๐Ÿ‡จ",
+ ":coffee:", "โ˜•",
+ ":coffin:", "โšฐ",
+ ":cold_sweat:", "๐Ÿ˜ฐ",
+ ":colombia:", "๐Ÿ‡จ๐Ÿ‡ด",
+ ":comet:", "โ˜„",
+ ":comoros:", "๐Ÿ‡ฐ๐Ÿ‡ฒ",
+ ":computer:", "๐Ÿ’ป",
+ ":computer_mouse:", "๐Ÿ–ฑ",
+ ":confetti_ball:", "๐ŸŽŠ",
+ ":confounded:", "๐Ÿ˜–",
+ ":confused:", "๐Ÿ˜•",
+ ":congo_brazzaville:", "๐Ÿ‡จ๐Ÿ‡ฌ",
+ ":congo_kinshasa:", "๐Ÿ‡จ๐Ÿ‡ฉ",
+ ":congratulations:", "ใŠ—๏ธ",
+ ":construction:", "๐Ÿšง",
+ ":construction_worker_man:", "๐Ÿ‘ท",
+ ":construction_worker_woman:", "๐Ÿ‘ทโ€โ™€๏ธ",
+ ":control_knobs:", "๐ŸŽ›",
+ ":convenience_store:", "๐Ÿช",
+ ":cook_islands:", "๐Ÿ‡จ๐Ÿ‡ฐ",
+ ":cookie:", "๐Ÿช",
+ ":cool:", "๐Ÿ†’",
+ ":copyright:", "ยฉ๏ธ",
+ ":corn:", "๐ŸŒฝ",
+ ":costa_rica:", "๐Ÿ‡จ๐Ÿ‡ท",
+ ":cote_divoire:", "๐Ÿ‡จ๐Ÿ‡ฎ",
+ ":couch_and_lamp:", "๐Ÿ›‹",
+ ":couple:", "๐Ÿ‘ซ",
+ ":couple_with_heart_man_man:", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ",
+ ":couple_with_heart_woman_man:", "๐Ÿ’‘",
+ ":couple_with_heart_woman_woman:", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ",
+ ":couplekiss_man_man:", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ",
+ ":couplekiss_man_woman:", "๐Ÿ’",
+ ":couplekiss_woman_woman:", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ",
+ ":cow:", "๐Ÿฎ",
+ ":cow2:", "๐Ÿ„",
+ ":cowboy_hat_face:", "๐Ÿค ",
+ ":crab:", "๐Ÿฆ€",
+ ":crayon:", "๐Ÿ–",
+ ":credit_card:", "๐Ÿ’ณ",
+ ":crescent_moon:", "๐ŸŒ™",
+ ":cricket:", "๐Ÿ",
+ ":croatia:", "๐Ÿ‡ญ๐Ÿ‡ท",
+ ":crocodile:", "๐ŸŠ",
+ ":croissant:", "๐Ÿฅ",
+ ":crossed_fingers:", "๐Ÿคž",
+ ":crossed_flags:", "๐ŸŽŒ",
+ ":crossed_swords:", "โš”",
+ ":crown:", "๐Ÿ‘‘",
+ ":cry:", "๐Ÿ˜ข",
+ ":crying_cat_face:", "๐Ÿ˜ฟ",
+ ":crystal_ball:", "๐Ÿ”ฎ",
+ ":cuba:", "๐Ÿ‡จ๐Ÿ‡บ",
+ ":cucumber:", "๐Ÿฅ’",
+ ":cupid:", "๐Ÿ’˜",
+ ":curacao:", "๐Ÿ‡จ๐Ÿ‡ผ",
+ ":curly_loop:", "โžฐ",
+ ":currency_exchange:", "๐Ÿ’ฑ",
+ ":curry:", "๐Ÿ›",
+ ":custard:", "๐Ÿฎ",
+ ":customs:", "๐Ÿ›ƒ",
+ ":cyclone:", "๐ŸŒ€",
+ ":cyprus:", "๐Ÿ‡จ๐Ÿ‡พ",
+ ":czech_republic:", "๐Ÿ‡จ๐Ÿ‡ฟ",
+ ":dagger:", "๐Ÿ—ก",
+ ":dancer:", "๐Ÿ’ƒ",
+ ":dancing_men:", "๐Ÿ‘ฏโ€โ™‚๏ธ",
+ ":dancing_women:", "๐Ÿ‘ฏ",
+ ":dango:", "๐Ÿก",
+ ":dark_sunglasses:", "๐Ÿ•ถ",
+ ":dart:", "๐ŸŽฏ",
+ ":dash:", "๐Ÿ’จ",
+ ":date:", "๐Ÿ“…",
+ ":de:", "๐Ÿ‡ฉ๐Ÿ‡ช",
+ ":deciduous_tree:", "๐ŸŒณ",
+ ":deer:", "๐ŸฆŒ",
+ ":denmark:", "๐Ÿ‡ฉ๐Ÿ‡ฐ",
+ ":department_store:", "๐Ÿฌ",
+ ":derelict_house:", "๐Ÿš",
+ ":desert:", "๐Ÿœ",
+ ":desert_island:", "๐Ÿ",
+ ":desktop_computer:", "๐Ÿ–ฅ",
+ ":diamond_shape_with_a_dot_inside:", "๐Ÿ’ ",
+ ":diamonds:", "โ™ฆ๏ธ",
+ ":disappointed:", "๐Ÿ˜ž",
+ ":disappointed_relieved:", "๐Ÿ˜ฅ",
+ ":dizzy:", "๐Ÿ’ซ",
+ ":dizzy_face:", "๐Ÿ˜ต",
+ ":djibouti:", "๐Ÿ‡ฉ๐Ÿ‡ฏ",
+ ":do_not_litter:", "๐Ÿšฏ",
+ ":dog:", "๐Ÿถ",
+ ":dog2:", "๐Ÿ•",
+ ":dollar:", "๐Ÿ’ต",
+ ":dolls:", "๐ŸŽŽ",
+ ":dolphin:", "๐Ÿฌ",
+ ":dominica:", "๐Ÿ‡ฉ๐Ÿ‡ฒ",
+ ":dominican_republic:", "๐Ÿ‡ฉ๐Ÿ‡ด",
+ ":door:", "๐Ÿšช",
+ ":doughnut:", "๐Ÿฉ",
+ ":dove:", "๐Ÿ•Š",
+ ":dragon:", "๐Ÿ‰",
+ ":dragon_face:", "๐Ÿฒ",
+ ":dress:", "๐Ÿ‘—",
+ ":dromedary_camel:", "๐Ÿช",
+ ":drooling_face:", "๐Ÿคค",
+ ":droplet:", "๐Ÿ’ง",
+ ":drum:", "๐Ÿฅ",
+ ":duck:", "๐Ÿฆ†",
+ ":dvd:", "๐Ÿ“€",
+ ":e-mail:", "๐Ÿ“ง",
+ ":eagle:", "๐Ÿฆ…",
+ ":ear:", "๐Ÿ‘‚",
+ ":ear_of_rice:", "๐ŸŒพ",
+ ":earth_africa:", "๐ŸŒ",
+ ":earth_americas:", "๐ŸŒŽ",
+ ":earth_asia:", "๐ŸŒ",
+ ":ecuador:", "๐Ÿ‡ช๐Ÿ‡จ",
+ ":egg:", "๐Ÿฅš",
+ ":eggplant:", "๐Ÿ†",
+ ":egypt:", "๐Ÿ‡ช๐Ÿ‡ฌ",
+ ":eight:", "8๏ธโƒฃ",
+ ":eight_pointed_black_star:", "โœด๏ธ",
+ ":eight_spoked_asterisk:", "โœณ๏ธ",
+ ":el_salvador:", "๐Ÿ‡ธ๐Ÿ‡ป",
+ ":electric_plug:", "๐Ÿ”Œ",
+ ":elephant:", "๐Ÿ˜",
+ ":email:", "โœ‰๏ธ",
+ ":end:", "๐Ÿ”š",
+ ":envelope_with_arrow:", "๐Ÿ“ฉ",
+ ":equatorial_guinea:", "๐Ÿ‡ฌ๐Ÿ‡ถ",
+ ":eritrea:", "๐Ÿ‡ช๐Ÿ‡ท",
+ ":es:", "๐Ÿ‡ช๐Ÿ‡ธ",
+ ":estonia:", "๐Ÿ‡ช๐Ÿ‡ช",
+ ":ethiopia:", "๐Ÿ‡ช๐Ÿ‡น",
+ ":eu:", "๐Ÿ‡ช๐Ÿ‡บ",
+ ":euro:", "๐Ÿ’ถ",
+ ":european_castle:", "๐Ÿฐ",
+ ":european_post_office:", "๐Ÿค",
+ ":evergreen_tree:", "๐ŸŒฒ",
+ ":exclamation:", "โ—",
+ ":expressionless:", "๐Ÿ˜‘",
+ ":eye:", "๐Ÿ‘",
+ ":eyeglasses:", "๐Ÿ‘“",
+ ":eyes:", "๐Ÿ‘€",
+ ":face_with_head_bandage:", "๐Ÿค•",
+ ":face_with_thermometer:", "๐Ÿค’",
+ ":facepunch:", "๐Ÿ‘Š",
+ ":factory:", "๐Ÿญ",
+ ":falkland_islands:", "๐Ÿ‡ซ๐Ÿ‡ฐ",
+ ":fallen_leaf:", "๐Ÿ‚",
+ ":family_man_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฆ",
+ ":family_man_boy_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ ":family_man_girl:", "๐Ÿ‘จโ€๐Ÿ‘ง",
+ ":family_man_girl_boy:", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ ":family_man_girl_girl:", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ ":family_man_man_boy:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ",
+ ":family_man_man_boy_boy:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ ":family_man_man_girl:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง",
+ ":family_man_man_girl_boy:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ ":family_man_man_girl_girl:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ ":family_man_woman_boy:", "๐Ÿ‘ช",
+ ":family_man_woman_boy_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ ":family_man_woman_girl:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",
+ ":family_man_woman_girl_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ ":family_man_woman_girl_girl:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ ":family_woman_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
+ ":family_woman_boy_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ ":family_woman_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘ง",
+ ":family_woman_girl_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ ":family_woman_girl_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ ":family_woman_woman_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ",
+ ":family_woman_woman_boy_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ",
+ ":family_woman_woman_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง",
+ ":family_woman_woman_girl_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ",
+ ":family_woman_woman_girl_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง",
+ ":faroe_islands:", "๐Ÿ‡ซ๐Ÿ‡ด",
+ ":fast_forward:", "โฉ",
+ ":fax:", "๐Ÿ“ ",
+ ":fearful:", "๐Ÿ˜จ",
+ ":feelsgood:", "",
+ ":female_detective:", "๐Ÿ•ต๏ธโ€โ™€๏ธ",
+ ":ferris_wheel:", "๐ŸŽก",
+ ":ferry:", "โ›ด",
+ ":field_hockey:", "๐Ÿ‘",
+ ":fiji:", "๐Ÿ‡ซ๐Ÿ‡ฏ",
+ ":file_cabinet:", "๐Ÿ—„",
+ ":file_folder:", "๐Ÿ“",
+ ":film_projector:", "๐Ÿ“ฝ",
+ ":film_strip:", "๐ŸŽž",
+ ":finland:", "๐Ÿ‡ซ๐Ÿ‡ฎ",
+ ":finnadie:", "",
+ ":fire:", "๐Ÿ”ฅ",
+ ":fire_engine:", "๐Ÿš’",
+ ":fireworks:", "๐ŸŽ†",
+ ":first_quarter_moon:", "๐ŸŒ“",
+ ":first_quarter_moon_with_face:", "๐ŸŒ›",
+ ":fish:", "๐ŸŸ",
+ ":fish_cake:", "๐Ÿฅ",
+ ":fishing_pole_and_fish:", "๐ŸŽฃ",
+ ":fist:", "โœŠ",
+ ":fist_left:", "๐Ÿค›",
+ ":fist_right:", "๐Ÿคœ",
+ ":five:", "5๏ธโƒฃ",
+ ":flags:", "๐ŸŽ",
+ ":flashlight:", "๐Ÿ”ฆ",
+ ":fleur_de_lis:", "โšœ",
+ ":flight_arrival:", "๐Ÿ›ฌ",
+ ":flight_departure:", "๐Ÿ›ซ",
+ ":floppy_disk:", "๐Ÿ’พ",
+ ":flower_playing_cards:", "๐ŸŽด",
+ ":flushed:", "๐Ÿ˜ณ",
+ ":fog:", "๐ŸŒซ",
+ ":foggy:", "๐ŸŒ",
+ ":football:", "๐Ÿˆ",
+ ":footprints:", "๐Ÿ‘ฃ",
+ ":fork_and_knife:", "๐Ÿด",
+ ":fountain:", "โ›ฒ",
+ ":fountain_pen:", "๐Ÿ–‹",
+ ":four:", "4๏ธโƒฃ",
+ ":four_leaf_clover:", "๐Ÿ€",
+ ":fox_face:", "๐ŸฆŠ",
+ ":fr:", "๐Ÿ‡ซ๐Ÿ‡ท",
+ ":framed_picture:", "๐Ÿ–ผ",
+ ":free:", "๐Ÿ†“",
+ ":french_guiana:", "๐Ÿ‡ฌ๐Ÿ‡ซ",
+ ":french_polynesia:", "๐Ÿ‡ต๐Ÿ‡ซ",
+ ":french_southern_territories:", "๐Ÿ‡น๐Ÿ‡ซ",
+ ":fried_egg:", "๐Ÿณ",
+ ":fried_shrimp:", "๐Ÿค",
+ ":fries:", "๐ŸŸ",
+ ":frog:", "๐Ÿธ",
+ ":frowning:", "๐Ÿ˜ฆ",
+ ":frowning_face:", "โ˜น",
+ ":frowning_man:", "๐Ÿ™โ€โ™‚๏ธ",
+ ":frowning_woman:", "๐Ÿ™",
+ ":fu:", "๐Ÿ–•",
+ ":fuelpump:", "โ›ฝ",
+ ":full_moon:", "๐ŸŒ•",
+ ":full_moon_with_face:", "๐ŸŒ",
+ ":funeral_urn:", "โšฑ",
+ ":gabon:", "๐Ÿ‡ฌ๐Ÿ‡ฆ",
+ ":gambia:", "๐Ÿ‡ฌ๐Ÿ‡ฒ",
+ ":game_die:", "๐ŸŽฒ",
+ ":gear:", "โš™",
+ ":gem:", "๐Ÿ’Ž",
+ ":gemini:", "โ™Š",
+ ":georgia:", "๐Ÿ‡ฌ๐Ÿ‡ช",
+ ":ghana:", "๐Ÿ‡ฌ๐Ÿ‡ญ",
+ ":ghost:", "๐Ÿ‘ป",
+ ":gibraltar:", "๐Ÿ‡ฌ๐Ÿ‡ฎ",
+ ":gift:", "๐ŸŽ",
+ ":gift_heart:", "๐Ÿ’",
+ ":girl:", "๐Ÿ‘ง",
+ ":globe_with_meridians:", "๐ŸŒ",
+ ":goal_net:", "๐Ÿฅ…",
+ ":goat:", "๐Ÿ",
+ ":goberserk:", "",
+ ":godmode:", "",
+ ":golf:", "โ›ณ",
+ ":golfing_man:", "๐ŸŒ",
+ ":golfing_woman:", "๐ŸŒ๏ธโ€โ™€๏ธ",
+ ":gorilla:", "๐Ÿฆ",
+ ":grapes:", "๐Ÿ‡",
+ ":greece:", "๐Ÿ‡ฌ๐Ÿ‡ท",
+ ":green_apple:", "๐Ÿ",
+ ":green_book:", "๐Ÿ“—",
+ ":green_heart:", "๐Ÿ’š",
+ ":green_salad:", "๐Ÿฅ—",
+ ":greenland:", "๐Ÿ‡ฌ๐Ÿ‡ฑ",
+ ":grenada:", "๐Ÿ‡ฌ๐Ÿ‡ฉ",
+ ":grey_exclamation:", "โ•",
+ ":grey_question:", "โ”",
+ ":grimacing:", "๐Ÿ˜ฌ",
+ ":grin:", "๐Ÿ˜",
+ ":grinning:", "๐Ÿ˜€",
+ ":guadeloupe:", "๐Ÿ‡ฌ๐Ÿ‡ต",
+ ":guam:", "๐Ÿ‡ฌ๐Ÿ‡บ",
+ ":guardsman:", "๐Ÿ’‚",
+ ":guardswoman:", "๐Ÿ’‚โ€โ™€๏ธ",
+ ":guatemala:", "๐Ÿ‡ฌ๐Ÿ‡น",
+ ":guernsey:", "๐Ÿ‡ฌ๐Ÿ‡ฌ",
+ ":guinea:", "๐Ÿ‡ฌ๐Ÿ‡ณ",
+ ":guinea_bissau:", "๐Ÿ‡ฌ๐Ÿ‡ผ",
+ ":guitar:", "๐ŸŽธ",
+ ":gun:", "๐Ÿ”ซ",
+ ":guyana:", "๐Ÿ‡ฌ๐Ÿ‡พ",
+ ":haircut_man:", "๐Ÿ’‡โ€โ™‚๏ธ",
+ ":haircut_woman:", "๐Ÿ’‡",
+ ":haiti:", "๐Ÿ‡ญ๐Ÿ‡น",
+ ":hamburger:", "๐Ÿ”",
+ ":hammer:", "๐Ÿ”จ",
+ ":hammer_and_pick:", "โš’",
+ ":hammer_and_wrench:", "๐Ÿ› ",
+ ":hamster:", "๐Ÿน",
+ ":handbag:", "๐Ÿ‘œ",
+ ":handshake:", "๐Ÿค",
+ ":hash:", "#๏ธโƒฃ",
+ ":hatched_chick:", "๐Ÿฅ",
+ ":hatching_chick:", "๐Ÿฃ",
+ ":headphones:", "๐ŸŽง",
+ ":hear_no_evil:", "๐Ÿ™‰",
+ ":heart:", "โค๏ธ",
+ ":heart_decoration:", "๐Ÿ’Ÿ",
+ ":heart_eyes:", "๐Ÿ˜",
+ ":heart_eyes_cat:", "๐Ÿ˜ป",
+ ":heartbeat:", "๐Ÿ’“",
+ ":heartpulse:", "๐Ÿ’—",
+ ":hearts:", "โ™ฅ๏ธ",
+ ":heavy_check_mark:", "โœ”๏ธ",
+ ":heavy_division_sign:", "โž—",
+ ":heavy_dollar_sign:", "๐Ÿ’ฒ",
+ ":heavy_heart_exclamation:", "โฃ",
+ ":heavy_minus_sign:", "โž–",
+ ":heavy_multiplication_x:", "โœ–๏ธ",
+ ":heavy_plus_sign:", "โž•",
+ ":helicopter:", "๐Ÿš",
+ ":herb:", "๐ŸŒฟ",
+ ":hibiscus:", "๐ŸŒบ",
+ ":high_brightness:", "๐Ÿ”†",
+ ":high_heel:", "๐Ÿ‘ ",
+ ":hocho:", "๐Ÿ”ช",
+ ":hole:", "๐Ÿ•ณ",
+ ":honduras:", "๐Ÿ‡ญ๐Ÿ‡ณ",
+ ":honey_pot:", "๐Ÿฏ",
+ ":honeybee:", "๐Ÿ",
+ ":hong_kong:", "๐Ÿ‡ญ๐Ÿ‡ฐ",
+ ":horse:", "๐Ÿด",
+ ":horse_racing:", "๐Ÿ‡",
+ ":hospital:", "๐Ÿฅ",
+ ":hot_pepper:", "๐ŸŒถ",
+ ":hotdog:", "๐ŸŒญ",
+ ":hotel:", "๐Ÿจ",
+ ":hotsprings:", "โ™จ๏ธ",
+ ":hourglass:", "โŒ›",
+ ":hourglass_flowing_sand:", "โณ",
+ ":house:", "๐Ÿ ",
+ ":house_with_garden:", "๐Ÿก",
+ ":houses:", "๐Ÿ˜",
+ ":hugs:", "๐Ÿค—",
+ ":hungary:", "๐Ÿ‡ญ๐Ÿ‡บ",
+ ":hurtrealbad:", "",
+ ":hushed:", "๐Ÿ˜ฏ",
+ ":ice_cream:", "๐Ÿจ",
+ ":ice_hockey:", "๐Ÿ’",
+ ":ice_skate:", "โ›ธ",
+ ":icecream:", "๐Ÿฆ",
+ ":iceland:", "๐Ÿ‡ฎ๐Ÿ‡ธ",
+ ":id:", "๐Ÿ†”",
+ ":ideograph_advantage:", "๐Ÿ‰",
+ ":imp:", "๐Ÿ‘ฟ",
+ ":inbox_tray:", "๐Ÿ“ฅ",
+ ":incoming_envelope:", "๐Ÿ“จ",
+ ":india:", "๐Ÿ‡ฎ๐Ÿ‡ณ",
+ ":indonesia:", "๐Ÿ‡ฎ๐Ÿ‡ฉ",
+ ":information_source:", "โ„น๏ธ",
+ ":innocent:", "๐Ÿ˜‡",
+ ":interrobang:", "โ‰๏ธ",
+ ":iphone:", "๐Ÿ“ฑ",
+ ":iran:", "๐Ÿ‡ฎ๐Ÿ‡ท",
+ ":iraq:", "๐Ÿ‡ฎ๐Ÿ‡ถ",
+ ":ireland:", "๐Ÿ‡ฎ๐Ÿ‡ช",
+ ":isle_of_man:", "๐Ÿ‡ฎ๐Ÿ‡ฒ",
+ ":israel:", "๐Ÿ‡ฎ๐Ÿ‡ฑ",
+ ":it:", "๐Ÿ‡ฎ๐Ÿ‡น",
+ ":izakaya_lantern:", "๐Ÿฎ",
+ ":jack_o_lantern:", "๐ŸŽƒ",
+ ":jamaica:", "๐Ÿ‡ฏ๐Ÿ‡ฒ",
+ ":japan:", "๐Ÿ—พ",
+ ":japanese_castle:", "๐Ÿฏ",
+ ":japanese_goblin:", "๐Ÿ‘บ",
+ ":japanese_ogre:", "๐Ÿ‘น",
+ ":jeans:", "๐Ÿ‘–",
+ ":jersey:", "๐Ÿ‡ฏ๐Ÿ‡ช",
+ ":jordan:", "๐Ÿ‡ฏ๐Ÿ‡ด",
+ ":joy:", "๐Ÿ˜‚",
+ ":joy_cat:", "๐Ÿ˜น",
+ ":joystick:", "๐Ÿ•น",
+ ":jp:", "๐Ÿ‡ฏ๐Ÿ‡ต",
+ ":kaaba:", "๐Ÿ•‹",
+ ":kazakhstan:", "๐Ÿ‡ฐ๐Ÿ‡ฟ",
+ ":kenya:", "๐Ÿ‡ฐ๐Ÿ‡ช",
+ ":key:", "๐Ÿ”‘",
+ ":keyboard:", "โŒจ",
+ ":keycap_ten:", "๐Ÿ”Ÿ",
+ ":kick_scooter:", "๐Ÿ›ด",
+ ":kimono:", "๐Ÿ‘˜",
+ ":kiribati:", "๐Ÿ‡ฐ๐Ÿ‡ฎ",
+ ":kiss:", "๐Ÿ’‹",
+ ":kissing:", "๐Ÿ˜—",
+ ":kissing_cat:", "๐Ÿ˜ฝ",
+ ":kissing_closed_eyes:", "๐Ÿ˜š",
+ ":kissing_heart:", "๐Ÿ˜˜",
+ ":kissing_smiling_eyes:", "๐Ÿ˜™",
+ ":kiwi_fruit:", "๐Ÿฅ",
+ ":koala:", "๐Ÿจ",
+ ":koko:", "๐Ÿˆ",
+ ":kosovo:", "๐Ÿ‡ฝ๐Ÿ‡ฐ",
+ ":kr:", "๐Ÿ‡ฐ๐Ÿ‡ท",
+ ":kuwait:", "๐Ÿ‡ฐ๐Ÿ‡ผ",
+ ":kyrgyzstan:", "๐Ÿ‡ฐ๐Ÿ‡ฌ",
+ ":label:", "๐Ÿท",
+ ":laos:", "๐Ÿ‡ฑ๐Ÿ‡ฆ",
+ ":large_blue_circle:", "๐Ÿ”ต",
+ ":large_blue_diamond:", "๐Ÿ”ท",
+ ":large_orange_diamond:", "๐Ÿ”ถ",
+ ":last_quarter_moon:", "๐ŸŒ—",
+ ":last_quarter_moon_with_face:", "๐ŸŒœ",
+ ":latin_cross:", "โœ",
+ ":latvia:", "๐Ÿ‡ฑ๐Ÿ‡ป",
+ ":laughing:", "๐Ÿ˜†",
+ ":leaves:", "๐Ÿƒ",
+ ":lebanon:", "๐Ÿ‡ฑ๐Ÿ‡ง",
+ ":ledger:", "๐Ÿ“’",
+ ":left_luggage:", "๐Ÿ›…",
+ ":left_right_arrow:", "โ†”๏ธ",
+ ":left_speech_bubble:", "๐Ÿ—จ",
+ ":leftwards_arrow_with_hook:", "โ†ฉ๏ธ",
+ ":lemon:", "๐Ÿ‹",
+ ":leo:", "โ™Œ",
+ ":leopard:", "๐Ÿ†",
+ ":lesotho:", "๐Ÿ‡ฑ๐Ÿ‡ธ",
+ ":level_slider:", "๐ŸŽš",
+ ":liberia:", "๐Ÿ‡ฑ๐Ÿ‡ท",
+ ":libra:", "โ™Ž",
+ ":libya:", "๐Ÿ‡ฑ๐Ÿ‡พ",
+ ":liechtenstein:", "๐Ÿ‡ฑ๐Ÿ‡ฎ",
+ ":light_rail:", "๐Ÿšˆ",
+ ":link:", "๐Ÿ”—",
+ ":lion:", "๐Ÿฆ",
+ ":lips:", "๐Ÿ‘„",
+ ":lipstick:", "๐Ÿ’„",
+ ":lithuania:", "๐Ÿ‡ฑ๐Ÿ‡น",
+ ":lizard:", "๐ŸฆŽ",
+ ":lock:", "๐Ÿ”’",
+ ":lock_with_ink_pen:", "๐Ÿ”",
+ ":lollipop:", "๐Ÿญ",
+ ":loop:", "โžฟ",
+ ":loud_sound:", "๐Ÿ”Š",
+ ":loudspeaker:", "๐Ÿ“ข",
+ ":love_hotel:", "๐Ÿฉ",
+ ":love_letter:", "๐Ÿ’Œ",
+ ":low_brightness:", "๐Ÿ”…",
+ ":luxembourg:", "๐Ÿ‡ฑ๐Ÿ‡บ",
+ ":lying_face:", "๐Ÿคฅ",
+ ":m:", "โ“‚๏ธ",
+ ":macau:", "๐Ÿ‡ฒ๐Ÿ‡ด",
+ ":macedonia:", "๐Ÿ‡ฒ๐Ÿ‡ฐ",
+ ":madagascar:", "๐Ÿ‡ฒ๐Ÿ‡ฌ",
+ ":mag:", "๐Ÿ”",
+ ":mag_right:", "๐Ÿ”Ž",
+ ":mahjong:", "๐Ÿ€„",
+ ":mailbox:", "๐Ÿ“ซ",
+ ":mailbox_closed:", "๐Ÿ“ช",
+ ":mailbox_with_mail:", "๐Ÿ“ฌ",
+ ":mailbox_with_no_mail:", "๐Ÿ“ญ",
+ ":malawi:", "๐Ÿ‡ฒ๐Ÿ‡ผ",
+ ":malaysia:", "๐Ÿ‡ฒ๐Ÿ‡พ",
+ ":maldives:", "๐Ÿ‡ฒ๐Ÿ‡ป",
+ ":male_detective:", "๐Ÿ•ต",
+ ":mali:", "๐Ÿ‡ฒ๐Ÿ‡ฑ",
+ ":malta:", "๐Ÿ‡ฒ๐Ÿ‡น",
+ ":man:", "๐Ÿ‘จ",
+ ":man_artist:", "๐Ÿ‘จโ€๐ŸŽจ",
+ ":man_astronaut:", "๐Ÿ‘จโ€๐Ÿš€",
+ ":man_cartwheeling:", "๐Ÿคธโ€โ™‚๏ธ",
+ ":man_cook:", "๐Ÿ‘จโ€๐Ÿณ",
+ ":man_dancing:", "๐Ÿ•บ",
+ ":man_facepalming:", "๐Ÿคฆ",
+ ":man_factory_worker:", "๐Ÿ‘จโ€๐Ÿญ",
+ ":man_farmer:", "๐Ÿ‘จโ€๐ŸŒพ",
+ ":man_firefighter:", "๐Ÿ‘จโ€๐Ÿš’",
+ ":man_health_worker:", "๐Ÿ‘จโ€โš•๏ธ",
+ ":man_in_tuxedo:", "๐Ÿคต",
+ ":man_judge:", "๐Ÿ‘จโ€โš–๏ธ",
+ ":man_juggling:", "๐Ÿคนโ€โ™‚๏ธ",
+ ":man_mechanic:", "๐Ÿ‘จโ€๐Ÿ”ง",
+ ":man_office_worker:", "๐Ÿ‘จโ€๐Ÿ’ผ",
+ ":man_pilot:", "๐Ÿ‘จโ€โœˆ๏ธ",
+ ":man_playing_handball:", "๐Ÿคพโ€โ™‚๏ธ",
+ ":man_playing_water_polo:", "๐Ÿคฝโ€โ™‚๏ธ",
+ ":man_scientist:", "๐Ÿ‘จโ€๐Ÿ”ฌ",
+ ":man_shrugging:", "๐Ÿคทโ€โ™‚๏ธ",
+ ":man_singer:", "๐Ÿ‘จโ€๐ŸŽค",
+ ":man_student:", "๐Ÿ‘จโ€๐ŸŽ“",
+ ":man_teacher:", "๐Ÿ‘จโ€๐Ÿซ",
+ ":man_technologist:", "๐Ÿ‘จโ€๐Ÿ’ป",
+ ":man_with_gua_pi_mao:", "๐Ÿ‘ฒ",
+ ":man_with_turban:", "๐Ÿ‘ณ",
+ ":mans_shoe:", "๐Ÿ‘ž",
+ ":mantelpiece_clock:", "๐Ÿ•ฐ",
+ ":maple_leaf:", "๐Ÿ",
+ ":marshall_islands:", "๐Ÿ‡ฒ๐Ÿ‡ญ",
+ ":martial_arts_uniform:", "๐Ÿฅ‹",
+ ":martinique:", "๐Ÿ‡ฒ๐Ÿ‡ถ",
+ ":mask:", "๐Ÿ˜ท",
+ ":massage_man:", "๐Ÿ’†โ€โ™‚๏ธ",
+ ":massage_woman:", "๐Ÿ’†",
+ ":mauritania:", "๐Ÿ‡ฒ๐Ÿ‡ท",
+ ":mauritius:", "๐Ÿ‡ฒ๐Ÿ‡บ",
+ ":mayotte:", "๐Ÿ‡พ๐Ÿ‡น",
+ ":meat_on_bone:", "๐Ÿ–",
+ ":medal_military:", "๐ŸŽ–",
+ ":medal_sports:", "๐Ÿ…",
+ ":mega:", "๐Ÿ“ฃ",
+ ":melon:", "๐Ÿˆ",
+ ":memo:", "๐Ÿ“",
+ ":men_wrestling:", "๐Ÿคผโ€โ™‚๏ธ",
+ ":menorah:", "๐Ÿ•Ž",
+ ":mens:", "๐Ÿšน",
+ ":metal:", "๐Ÿค˜",
+ ":metro:", "๐Ÿš‡",
+ ":mexico:", "๐Ÿ‡ฒ๐Ÿ‡ฝ",
+ ":micronesia:", "๐Ÿ‡ซ๐Ÿ‡ฒ",
+ ":microphone:", "๐ŸŽค",
+ ":microscope:", "๐Ÿ”ฌ",
+ ":milk_glass:", "๐Ÿฅ›",
+ ":milky_way:", "๐ŸŒŒ",
+ ":minibus:", "๐Ÿš",
+ ":minidisc:", "๐Ÿ’ฝ",
+ ":mobile_phone_off:", "๐Ÿ“ด",
+ ":moldova:", "๐Ÿ‡ฒ๐Ÿ‡ฉ",
+ ":monaco:", "๐Ÿ‡ฒ๐Ÿ‡จ",
+ ":money_mouth_face:", "๐Ÿค‘",
+ ":money_with_wings:", "๐Ÿ’ธ",
+ ":moneybag:", "๐Ÿ’ฐ",
+ ":mongolia:", "๐Ÿ‡ฒ๐Ÿ‡ณ",
+ ":monkey:", "๐Ÿ’",
+ ":monkey_face:", "๐Ÿต",
+ ":monorail:", "๐Ÿš",
+ ":montenegro:", "๐Ÿ‡ฒ๐Ÿ‡ช",
+ ":montserrat:", "๐Ÿ‡ฒ๐Ÿ‡ธ",
+ ":morocco:", "๐Ÿ‡ฒ๐Ÿ‡ฆ",
+ ":mortar_board:", "๐ŸŽ“",
+ ":mosque:", "๐Ÿ•Œ",
+ ":motor_boat:", "๐Ÿ›ฅ",
+ ":motor_scooter:", "๐Ÿ›ต",
+ ":motorcycle:", "๐Ÿ",
+ ":motorway:", "๐Ÿ›ฃ",
+ ":mount_fuji:", "๐Ÿ—ป",
+ ":mountain:", "โ›ฐ",
+ ":mountain_biking_man:", "๐Ÿšต",
+ ":mountain_biking_woman:", "๐Ÿšตโ€โ™€๏ธ",
+ ":mountain_cableway:", "๐Ÿš ",
+ ":mountain_railway:", "๐Ÿšž",
+ ":mountain_snow:", "๐Ÿ”",
+ ":mouse:", "๐Ÿญ",
+ ":mouse2:", "๐Ÿ",
+ ":movie_camera:", "๐ŸŽฅ",
+ ":moyai:", "๐Ÿ—ฟ",
+ ":mozambique:", "๐Ÿ‡ฒ๐Ÿ‡ฟ",
+ ":mrs_claus:", "๐Ÿคถ",
+ ":muscle:", "๐Ÿ’ช",
+ ":mushroom:", "๐Ÿ„",
+ ":musical_keyboard:", "๐ŸŽน",
+ ":musical_note:", "๐ŸŽต",
+ ":musical_score:", "๐ŸŽผ",
+ ":mute:", "๐Ÿ”‡",
+ ":myanmar:", "๐Ÿ‡ฒ๐Ÿ‡ฒ",
+ ":nail_care:", "๐Ÿ’…",
+ ":name_badge:", "๐Ÿ“›",
+ ":namibia:", "๐Ÿ‡ณ๐Ÿ‡ฆ",
+ ":national_park:", "๐Ÿž",
+ ":nauru:", "๐Ÿ‡ณ๐Ÿ‡ท",
+ ":nauseated_face:", "๐Ÿคข",
+ ":neckbeard:", "",
+ ":necktie:", "๐Ÿ‘”",
+ ":negative_squared_cross_mark:", "โŽ",
+ ":nepal:", "๐Ÿ‡ณ๐Ÿ‡ต",
+ ":nerd_face:", "๐Ÿค“",
+ ":netherlands:", "๐Ÿ‡ณ๐Ÿ‡ฑ",
+ ":neutral_face:", "๐Ÿ˜",
+ ":new:", "๐Ÿ†•",
+ ":new_caledonia:", "๐Ÿ‡ณ๐Ÿ‡จ",
+ ":new_moon:", "๐ŸŒ‘",
+ ":new_moon_with_face:", "๐ŸŒš",
+ ":new_zealand:", "๐Ÿ‡ณ๐Ÿ‡ฟ",
+ ":newspaper:", "๐Ÿ“ฐ",
+ ":newspaper_roll:", "๐Ÿ—ž",
+ ":next_track_button:", "โญ",
+ ":ng:", "๐Ÿ†–",
+ ":nicaragua:", "๐Ÿ‡ณ๐Ÿ‡ฎ",
+ ":niger:", "๐Ÿ‡ณ๐Ÿ‡ช",
+ ":nigeria:", "๐Ÿ‡ณ๐Ÿ‡ฌ",
+ ":night_with_stars:", "๐ŸŒƒ",
+ ":nine:", "9๏ธโƒฃ",
+ ":niue:", "๐Ÿ‡ณ๐Ÿ‡บ",
+ ":no_bell:", "๐Ÿ”•",
+ ":no_bicycles:", "๐Ÿšณ",
+ ":no_entry:", "โ›”",
+ ":no_entry_sign:", "๐Ÿšซ",
+ ":no_good_man:", "๐Ÿ™…โ€โ™‚๏ธ",
+ ":no_good_woman:", "๐Ÿ™…",
+ ":no_mobile_phones:", "๐Ÿ“ต",
+ ":no_mouth:", "๐Ÿ˜ถ",
+ ":no_pedestrians:", "๐Ÿšท",
+ ":no_smoking:", "๐Ÿšญ",
+ ":non-potable_water:", "๐Ÿšฑ",
+ ":norfolk_island:", "๐Ÿ‡ณ๐Ÿ‡ซ",
+ ":north_korea:", "๐Ÿ‡ฐ๐Ÿ‡ต",
+ ":northern_mariana_islands:", "๐Ÿ‡ฒ๐Ÿ‡ต",
+ ":norway:", "๐Ÿ‡ณ๐Ÿ‡ด",
+ ":nose:", "๐Ÿ‘ƒ",
+ ":notebook:", "๐Ÿ““",
+ ":notebook_with_decorative_cover:", "๐Ÿ“”",
+ ":notes:", "๐ŸŽถ",
+ ":nut_and_bolt:", "๐Ÿ”ฉ",
+ ":o:", "โญ•",
+ ":o2:", "๐Ÿ…พ๏ธ",
+ ":ocean:", "๐ŸŒŠ",
+ ":octocat:", "",
+ ":octopus:", "๐Ÿ™",
+ ":oden:", "๐Ÿข",
+ ":office:", "๐Ÿข",
+ ":oil_drum:", "๐Ÿ›ข",
+ ":ok:", "๐Ÿ†—",
+ ":ok_hand:", "๐Ÿ‘Œ",
+ ":ok_man:", "๐Ÿ™†โ€โ™‚๏ธ",
+ ":ok_woman:", "๐Ÿ™†",
+ ":old_key:", "๐Ÿ—",
+ ":older_man:", "๐Ÿ‘ด",
+ ":older_woman:", "๐Ÿ‘ต",
+ ":om:", "๐Ÿ•‰",
+ ":oman:", "๐Ÿ‡ด๐Ÿ‡ฒ",
+ ":on:", "๐Ÿ”›",
+ ":oncoming_automobile:", "๐Ÿš˜",
+ ":oncoming_bus:", "๐Ÿš",
+ ":oncoming_police_car:", "๐Ÿš”",
+ ":oncoming_taxi:", "๐Ÿš–",
+ ":one:", "1๏ธโƒฃ",
+ ":open_book:", "๐Ÿ“–",
+ ":open_file_folder:", "๐Ÿ“‚",
+ ":open_hands:", "๐Ÿ‘",
+ ":open_mouth:", "๐Ÿ˜ฎ",
+ ":open_umbrella:", "โ˜‚",
+ ":ophiuchus:", "โ›Ž",
+ ":orange_book:", "๐Ÿ“™",
+ ":orthodox_cross:", "โ˜ฆ",
+ ":outbox_tray:", "๐Ÿ“ค",
+ ":owl:", "๐Ÿฆ‰",
+ ":ox:", "๐Ÿ‚",
+ ":package:", "๐Ÿ“ฆ",
+ ":page_facing_up:", "๐Ÿ“„",
+ ":page_with_curl:", "๐Ÿ“ƒ",
+ ":pager:", "๐Ÿ“Ÿ",
+ ":paintbrush:", "๐Ÿ–Œ",
+ ":pakistan:", "๐Ÿ‡ต๐Ÿ‡ฐ",
+ ":palau:", "๐Ÿ‡ต๐Ÿ‡ผ",
+ ":palestinian_territories:", "๐Ÿ‡ต๐Ÿ‡ธ",
+ ":palm_tree:", "๐ŸŒด",
+ ":panama:", "๐Ÿ‡ต๐Ÿ‡ฆ",
+ ":pancakes:", "๐Ÿฅž",
+ ":panda_face:", "๐Ÿผ",
+ ":paperclip:", "๐Ÿ“Ž",
+ ":paperclips:", "๐Ÿ–‡",
+ ":papua_new_guinea:", "๐Ÿ‡ต๐Ÿ‡ฌ",
+ ":paraguay:", "๐Ÿ‡ต๐Ÿ‡พ",
+ ":parasol_on_ground:", "โ›ฑ",
+ ":parking:", "๐Ÿ…ฟ๏ธ",
+ ":part_alternation_mark:", "ใ€ฝ๏ธ",
+ ":partly_sunny:", "โ›…",
+ ":passenger_ship:", "๐Ÿ›ณ",
+ ":passport_control:", "๐Ÿ›‚",
+ ":pause_button:", "โธ",
+ ":paw_prints:", "๐Ÿพ",
+ ":peace_symbol:", "โ˜ฎ",
+ ":peach:", "๐Ÿ‘",
+ ":peanuts:", "๐Ÿฅœ",
+ ":pear:", "๐Ÿ",
+ ":pen:", "๐Ÿ–Š",
+ ":pencil2:", "โœ๏ธ",
+ ":penguin:", "๐Ÿง",
+ ":pensive:", "๐Ÿ˜”",
+ ":performing_arts:", "๐ŸŽญ",
+ ":persevere:", "๐Ÿ˜ฃ",
+ ":person_fencing:", "๐Ÿคบ",
+ ":peru:", "๐Ÿ‡ต๐Ÿ‡ช",
+ ":philippines:", "๐Ÿ‡ต๐Ÿ‡ญ",
+ ":phone:", "โ˜Ž๏ธ",
+ ":pick:", "โ›",
+ ":pig:", "๐Ÿท",
+ ":pig2:", "๐Ÿ–",
+ ":pig_nose:", "๐Ÿฝ",
+ ":pill:", "๐Ÿ’Š",
+ ":pineapple:", "๐Ÿ",
+ ":ping_pong:", "๐Ÿ“",
+ ":pisces:", "โ™“",
+ ":pitcairn_islands:", "๐Ÿ‡ต๐Ÿ‡ณ",
+ ":pizza:", "๐Ÿ•",
+ ":place_of_worship:", "๐Ÿ›",
+ ":plate_with_cutlery:", "๐Ÿฝ",
+ ":play_or_pause_button:", "โฏ",
+ ":point_down:", "๐Ÿ‘‡",
+ ":point_left:", "๐Ÿ‘ˆ",
+ ":point_right:", "๐Ÿ‘‰",
+ ":point_up:", "โ˜",
+ ":point_up_2:", "๐Ÿ‘†",
+ ":poland:", "๐Ÿ‡ต๐Ÿ‡ฑ",
+ ":police_car:", "๐Ÿš“",
+ ":policeman:", "๐Ÿ‘ฎ",
+ ":policewoman:", "๐Ÿ‘ฎโ€โ™€๏ธ",
+ ":poodle:", "๐Ÿฉ",
+ ":poop:", "๐Ÿ’ฉ",
+ ":popcorn:", "๐Ÿฟ",
+ ":portugal:", "๐Ÿ‡ต๐Ÿ‡น",
+ ":post_office:", "๐Ÿฃ",
+ ":postal_horn:", "๐Ÿ“ฏ",
+ ":postbox:", "๐Ÿ“ฎ",
+ ":potable_water:", "๐Ÿšฐ",
+ ":potato:", "๐Ÿฅ”",
+ ":pouch:", "๐Ÿ‘",
+ ":poultry_leg:", "๐Ÿ—",
+ ":pound:", "๐Ÿ’ท",
+ ":pouting_cat:", "๐Ÿ˜พ",
+ ":pouting_man:", "๐Ÿ™Žโ€โ™‚๏ธ",
+ ":pouting_woman:", "๐Ÿ™Ž",
+ ":pray:", "๐Ÿ™",
+ ":prayer_beads:", "๐Ÿ“ฟ",
+ ":pregnant_woman:", "๐Ÿคฐ",
+ ":previous_track_button:", "โฎ",
+ ":prince:", "๐Ÿคด",
+ ":princess:", "๐Ÿ‘ธ",
+ ":printer:", "๐Ÿ–จ",
+ ":puerto_rico:", "๐Ÿ‡ต๐Ÿ‡ท",
+ ":purple_heart:", "๐Ÿ’œ",
+ ":purse:", "๐Ÿ‘›",
+ ":pushpin:", "๐Ÿ“Œ",
+ ":put_litter_in_its_place:", "๐Ÿšฎ",
+ ":qatar:", "๐Ÿ‡ถ๐Ÿ‡ฆ",
+ ":question:", "โ“",
+ ":rabbit:", "๐Ÿฐ",
+ ":rabbit2:", "๐Ÿ‡",
+ ":racehorse:", "๐ŸŽ",
+ ":racing_car:", "๐ŸŽ",
+ ":radio:", "๐Ÿ“ป",
+ ":radio_button:", "๐Ÿ”˜",
+ ":radioactive:", "โ˜ข",
+ ":rage:", "๐Ÿ˜ก",
+ ":rage1:", "",
+ ":rage2:", "",
+ ":rage3:", "",
+ ":rage4:", "",
+ ":railway_car:", "๐Ÿšƒ",
+ ":railway_track:", "๐Ÿ›ค",
+ ":rainbow:", "๐ŸŒˆ",
+ ":rainbow_flag:", "๐Ÿณ๏ธโ€๐ŸŒˆ",
+ ":raised_back_of_hand:", "๐Ÿคš",
+ ":raised_hand:", "โœ‹",
+ ":raised_hand_with_fingers_splayed:", "๐Ÿ–",
+ ":raised_hands:", "๐Ÿ™Œ",
+ ":raising_hand_man:", "๐Ÿ™‹โ€โ™‚๏ธ",
+ ":raising_hand_woman:", "๐Ÿ™‹",
+ ":ram:", "๐Ÿ",
+ ":ramen:", "๐Ÿœ",
+ ":rat:", "๐Ÿ€",
+ ":record_button:", "โบ",
+ ":recycle:", "โ™ป๏ธ",
+ ":red_car:", "๐Ÿš—",
+ ":red_circle:", "๐Ÿ”ด",
+ ":registered:", "ยฎ๏ธ",
+ ":relaxed:", "โ˜บ๏ธ",
+ ":relieved:", "๐Ÿ˜Œ",
+ ":reminder_ribbon:", "๐ŸŽ—",
+ ":repeat:", "๐Ÿ”",
+ ":repeat_one:", "๐Ÿ”‚",
+ ":rescue_worker_helmet:", "โ›‘",
+ ":restroom:", "๐Ÿšป",
+ ":reunion:", "๐Ÿ‡ท๐Ÿ‡ช",
+ ":revolving_hearts:", "๐Ÿ’ž",
+ ":rewind:", "โช",
+ ":rhinoceros:", "๐Ÿฆ",
+ ":ribbon:", "๐ŸŽ€",
+ ":rice:", "๐Ÿš",
+ ":rice_ball:", "๐Ÿ™",
+ ":rice_cracker:", "๐Ÿ˜",
+ ":rice_scene:", "๐ŸŽ‘",
+ ":right_anger_bubble:", "๐Ÿ—ฏ",
+ ":ring:", "๐Ÿ’",
+ ":robot:", "๐Ÿค–",
+ ":rocket:", "๐Ÿš€",
+ ":rofl:", "๐Ÿคฃ",
+ ":roll_eyes:", "๐Ÿ™„",
+ ":roller_coaster:", "๐ŸŽข",
+ ":romania:", "๐Ÿ‡ท๐Ÿ‡ด",
+ ":rooster:", "๐Ÿ“",
+ ":rose:", "๐ŸŒน",
+ ":rosette:", "๐Ÿต",
+ ":rotating_light:", "๐Ÿšจ",
+ ":round_pushpin:", "๐Ÿ“",
+ ":rowing_man:", "๐Ÿšฃ",
+ ":rowing_woman:", "๐Ÿšฃโ€โ™€๏ธ",
+ ":ru:", "๐Ÿ‡ท๐Ÿ‡บ",
+ ":rugby_football:", "๐Ÿ‰",
+ ":running_man:", "๐Ÿƒ",
+ ":running_shirt_with_sash:", "๐ŸŽฝ",
+ ":running_woman:", "๐Ÿƒโ€โ™€๏ธ",
+ ":rwanda:", "๐Ÿ‡ท๐Ÿ‡ผ",
+ ":sa:", "๐Ÿˆ‚๏ธ",
+ ":sagittarius:", "โ™",
+ ":sailboat:", "โ›ต",
+ ":sake:", "๐Ÿถ",
+ ":samoa:", "๐Ÿ‡ผ๐Ÿ‡ธ",
+ ":san_marino:", "๐Ÿ‡ธ๐Ÿ‡ฒ",
+ ":sandal:", "๐Ÿ‘ก",
+ ":santa:", "๐ŸŽ…",
+ ":sao_tome_principe:", "๐Ÿ‡ธ๐Ÿ‡น",
+ ":satellite:", "๐Ÿ“ก",
+ ":saudi_arabia:", "๐Ÿ‡ธ๐Ÿ‡ฆ",
+ ":saxophone:", "๐ŸŽท",
+ ":school:", "๐Ÿซ",
+ ":school_satchel:", "๐ŸŽ’",
+ ":scissors:", "โœ‚๏ธ",
+ ":scorpion:", "๐Ÿฆ‚",
+ ":scorpius:", "โ™",
+ ":scream:", "๐Ÿ˜ฑ",
+ ":scream_cat:", "๐Ÿ™€",
+ ":scroll:", "๐Ÿ“œ",
+ ":seat:", "๐Ÿ’บ",
+ ":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:", "๐Ÿšข",
+ ":shipit:", "",
+ ":shopping:", "๐Ÿ›",
+ ":shopping_cart:", "๐Ÿ›’",
+ ":shower:", "๐Ÿšฟ",
+ ":shrimp:", "๐Ÿฆ",
+ ":sierra_leone:", "๐Ÿ‡ธ๐Ÿ‡ฑ",
+ ":signal_strength:", "๐Ÿ“ถ",
+ ":singapore:", "๐Ÿ‡ธ๐Ÿ‡ฌ",
+ ":sint_maarten:", "๐Ÿ‡ธ๐Ÿ‡ฝ",
+ ":six:", "6๏ธโƒฃ",
+ ":six_pointed_star:", "๐Ÿ”ฏ",
+ ":ski:", "๐ŸŽฟ",
+ ":skier:", "โ›ท",
+ ":skull:", "๐Ÿ’€",
+ ":skull_and_crossbones:", "โ˜ ",
+ ":sleeping:", "๐Ÿ˜ด",
+ ":sleeping_bed:", "๐Ÿ›Œ",
+ ":sleepy:", "๐Ÿ˜ช",
+ ":slightly_frowning_face:", "๐Ÿ™",
+ ":slightly_smiling_face:", "๐Ÿ™‚",
+ ":slot_machine:", "๐ŸŽฐ",
+ ":slovakia:", "๐Ÿ‡ธ๐Ÿ‡ฐ",
+ ":slovenia:", "๐Ÿ‡ธ๐Ÿ‡ฎ",
+ ":small_airplane:", "๐Ÿ›ฉ",
+ ":small_blue_diamond:", "๐Ÿ”น",
+ ":small_orange_diamond:", "๐Ÿ”ธ",
+ ":small_red_triangle:", "๐Ÿ”บ",
+ ":small_red_triangle_down:", "๐Ÿ”ป",
+ ":smile:", "๐Ÿ˜„",
+ ":smile_cat:", "๐Ÿ˜ธ",
+ ":smiley:", "๐Ÿ˜ƒ",
+ ":smiley_cat:", "๐Ÿ˜บ",
+ ":smiling_imp:", "๐Ÿ˜ˆ",
+ ":smirk:", "๐Ÿ˜",
+ ":smirk_cat:", "๐Ÿ˜ผ",
+ ":smoking:", "๐Ÿšฌ",
+ ":snail:", "๐ŸŒ",
+ ":snake:", "๐Ÿ",
+ ":sneezing_face:", "๐Ÿคง",
+ ":snowboarder:", "๐Ÿ‚",
+ ":snowflake:", "โ„๏ธ",
+ ":snowman:", "โ›„",
+ ":snowman_with_snow:", "โ˜ƒ",
+ ":sob:", "๐Ÿ˜ญ",
+ ":soccer:", "โšฝ",
+ ":solomon_islands:", "๐Ÿ‡ธ๐Ÿ‡ง",
+ ":somalia:", "๐Ÿ‡ธ๐Ÿ‡ด",
+ ":soon:", "๐Ÿ”œ",
+ ":sos:", "๐Ÿ†˜",
+ ":sound:", "๐Ÿ”‰",
+ ":south_africa:", "๐Ÿ‡ฟ๐Ÿ‡ฆ",
+ ":south_georgia_south_sandwich_islands:", "๐Ÿ‡ฌ๐Ÿ‡ธ",
+ ":south_sudan:", "๐Ÿ‡ธ๐Ÿ‡ธ",
+ ":space_invader:", "๐Ÿ‘พ",
+ ":spades:", "โ™ ๏ธ",
+ ":spaghetti:", "๐Ÿ",
+ ":sparkle:", "โ‡๏ธ",
+ ":sparkler:", "๐ŸŽ‡",
+ ":sparkles:", "โœจ",
+ ":sparkling_heart:", "๐Ÿ’–",
+ ":speak_no_evil:", "๐Ÿ™Š",
+ ":speaker:", "๐Ÿ”ˆ",
+ ":speaking_head:", "๐Ÿ—ฃ",
+ ":speech_balloon:", "๐Ÿ’ฌ",
+ ":speedboat:", "๐Ÿšค",
+ ":spider:", "๐Ÿ•ท",
+ ":spider_web:", "๐Ÿ•ธ",
+ ":spiral_calendar:", "๐Ÿ—“",
+ ":spiral_notepad:", "๐Ÿ—’",
+ ":spoon:", "๐Ÿฅ„",
+ ":squid:", "๐Ÿฆ‘",
+ ":sri_lanka:", "๐Ÿ‡ฑ๐Ÿ‡ฐ",
+ ":st_barthelemy:", "๐Ÿ‡ง๐Ÿ‡ฑ",
+ ":st_helena:", "๐Ÿ‡ธ๐Ÿ‡ญ",
+ ":st_kitts_nevis:", "๐Ÿ‡ฐ๐Ÿ‡ณ",
+ ":st_lucia:", "๐Ÿ‡ฑ๐Ÿ‡จ",
+ ":st_pierre_miquelon:", "๐Ÿ‡ต๐Ÿ‡ฒ",
+ ":st_vincent_grenadines:", "๐Ÿ‡ป๐Ÿ‡จ",
+ ":stadium:", "๐ŸŸ",
+ ":star:", "โญ",
+ ":star2:", "๐ŸŒŸ",
+ ":star_and_crescent:", "โ˜ช",
+ ":star_of_david:", "โœก",
+ ":stars:", "๐ŸŒ ",
+ ":station:", "๐Ÿš‰",
+ ":statue_of_liberty:", "๐Ÿ—ฝ",
+ ":steam_locomotive:", "๐Ÿš‚",
+ ":stew:", "๐Ÿฒ",
+ ":stop_button:", "โน",
+ ":stop_sign:", "๐Ÿ›‘",
+ ":stopwatch:", "โฑ",
+ ":straight_ruler:", "๐Ÿ“",
+ ":strawberry:", "๐Ÿ“",
+ ":stuck_out_tongue:", "๐Ÿ˜›",
+ ":stuck_out_tongue_closed_eyes:", "๐Ÿ˜",
+ ":stuck_out_tongue_winking_eye:", "๐Ÿ˜œ",
+ ":studio_microphone:", "๐ŸŽ™",
+ ":stuffed_flatbread:", "๐Ÿฅ™",
+ ":sudan:", "๐Ÿ‡ธ๐Ÿ‡ฉ",
+ ":sun_behind_large_cloud:", "๐ŸŒฅ",
+ ":sun_behind_rain_cloud:", "๐ŸŒฆ",
+ ":sun_behind_small_cloud:", "๐ŸŒค",
+ ":sun_with_face:", "๐ŸŒž",
+ ":sunflower:", "๐ŸŒป",
+ ":sunglasses:", "๐Ÿ˜Ž",
+ ":sunny:", "โ˜€๏ธ",
+ ":sunrise:", "๐ŸŒ…",
+ ":sunrise_over_mountains:", "๐ŸŒ„",
+ ":surfing_man:", "๐Ÿ„",
+ ":surfing_woman:", "๐Ÿ„โ€โ™€๏ธ",
+ ":suriname:", "๐Ÿ‡ธ๐Ÿ‡ท",
+ ":sushi:", "๐Ÿฃ",
+ ":suspect:", "",
+ ":suspension_railway:", "๐ŸšŸ",
+ ":swaziland:", "๐Ÿ‡ธ๐Ÿ‡ฟ",
+ ":sweat:", "๐Ÿ˜“",
+ ":sweat_drops:", "๐Ÿ’ฆ",
+ ":sweat_smile:", "๐Ÿ˜…",
+ ":sweden:", "๐Ÿ‡ธ๐Ÿ‡ช",
+ ":sweet_potato:", "๐Ÿ ",
+ ":swimming_man:", "๐ŸŠ",
+ ":swimming_woman:", "๐ŸŠโ€โ™€๏ธ",
+ ":switzerland:", "๐Ÿ‡จ๐Ÿ‡ญ",
+ ":symbols:", "๐Ÿ”ฃ",
+ ":synagogue:", "๐Ÿ•",
+ ":syria:", "๐Ÿ‡ธ๐Ÿ‡พ",
+ ":syringe:", "๐Ÿ’‰",
+ ":taco:", "๐ŸŒฎ",
+ ":tada:", "๐ŸŽ‰",
+ ":taiwan:", "๐Ÿ‡น๐Ÿ‡ผ",
+ ":tajikistan:", "๐Ÿ‡น๐Ÿ‡ฏ",
+ ":tanabata_tree:", "๐ŸŽ‹",
+ ":tangerine:", "๐ŸŠ",
+ ":tanzania:", "๐Ÿ‡น๐Ÿ‡ฟ",
+ ":taurus:", "โ™‰",
+ ":taxi:", "๐Ÿš•",
+ ":tea:", "๐Ÿต",
+ ":telephone_receiver:", "๐Ÿ“ž",
+ ":telescope:", "๐Ÿ”ญ",
+ ":tennis:", "๐ŸŽพ",
+ ":tent:", "โ›บ",
+ ":thailand:", "๐Ÿ‡น๐Ÿ‡ญ",
+ ":thermometer:", "๐ŸŒก",
+ ":thinking:", "๐Ÿค”",
+ ":thought_balloon:", "๐Ÿ’ญ",
+ ":three:", "3๏ธโƒฃ",
+ ":ticket:", "๐ŸŽซ",
+ ":tickets:", "๐ŸŽŸ",
+ ":tiger:", "๐Ÿฏ",
+ ":tiger2:", "๐Ÿ…",
+ ":timer_clock:", "โฒ",
+ ":timor_leste:", "๐Ÿ‡น๐Ÿ‡ฑ",
+ ":tipping_hand_man:", "๐Ÿ’โ€โ™‚๏ธ",
+ ":tipping_hand_woman:", "๐Ÿ’",
+ ":tired_face:", "๐Ÿ˜ซ",
+ ":tm:", "โ„ข๏ธ",
+ ":togo:", "๐Ÿ‡น๐Ÿ‡ฌ",
+ ":toilet:", "๐Ÿšฝ",
+ ":tokelau:", "๐Ÿ‡น๐Ÿ‡ฐ",
+ ":tokyo_tower:", "๐Ÿ—ผ",
+ ":tomato:", "๐Ÿ…",
+ ":tonga:", "๐Ÿ‡น๐Ÿ‡ด",
+ ":tongue:", "๐Ÿ‘…",
+ ":top:", "๐Ÿ”",
+ ":tophat:", "๐ŸŽฉ",
+ ":tornado:", "๐ŸŒช",
+ ":tr:", "๐Ÿ‡น๐Ÿ‡ท",
+ ":trackball:", "๐Ÿ–ฒ",
+ ":tractor:", "๐Ÿšœ",
+ ":traffic_light:", "๐Ÿšฅ",
+ ":train:", "๐Ÿš‹",
+ ":train2:", "๐Ÿš†",
+ ":tram:", "๐ŸšŠ",
+ ":triangular_flag_on_post:", "๐Ÿšฉ",
+ ":triangular_ruler:", "๐Ÿ“",
+ ":trident:", "๐Ÿ”ฑ",
+ ":trinidad_tobago:", "๐Ÿ‡น๐Ÿ‡น",
+ ":triumph:", "๐Ÿ˜ค",
+ ":trolleybus:", "๐ŸšŽ",
+ ":trollface:", "",
+ ":trophy:", "๐Ÿ†",
+ ":tropical_drink:", "๐Ÿน",
+ ":tropical_fish:", "๐Ÿ ",
+ ":truck:", "๐Ÿšš",
+ ":trumpet:", "๐ŸŽบ",
+ ":tshirt:", "๐Ÿ‘•",
+ ":tulip:", "๐ŸŒท",
+ ":tumbler_glass:", "๐Ÿฅƒ",
+ ":tunisia:", "๐Ÿ‡น๐Ÿ‡ณ",
+ ":turkey:", "๐Ÿฆƒ",
+ ":turkmenistan:", "๐Ÿ‡น๐Ÿ‡ฒ",
+ ":turks_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:", "๐Ÿ‡บ๐Ÿ‡ฌ",
+ ":uk:", "๐Ÿ‡ฌ๐Ÿ‡ง",
+ ":ukraine:", "๐Ÿ‡บ๐Ÿ‡ฆ",
+ ":umbrella:", "โ˜”",
+ ":unamused:", "๐Ÿ˜’",
+ ":underage:", "๐Ÿ”ž",
+ ":unicorn:", "๐Ÿฆ„",
+ ":united_arab_emirates:", "๐Ÿ‡ฆ๐Ÿ‡ช",
+ ":unlock:", "๐Ÿ”“",
+ ":up:", "๐Ÿ†™",
+ ":upside_down_face:", "๐Ÿ™ƒ",
+ ":uruguay:", "๐Ÿ‡บ๐Ÿ‡พ",
+ ":us:", "๐Ÿ‡บ๐Ÿ‡ธ",
+ ":us_virgin_islands:", "๐Ÿ‡ป๐Ÿ‡ฎ",
+ ":uzbekistan:", "๐Ÿ‡บ๐Ÿ‡ฟ",
+ ":v:", "โœŒ",
+ ":vanuatu:", "๐Ÿ‡ป๐Ÿ‡บ",
+ ":vatican_city:", "๐Ÿ‡ป๐Ÿ‡ฆ",
+ ":venezuela:", "๐Ÿ‡ป๐Ÿ‡ช",
+ ":vertical_traffic_light:", "๐Ÿšฆ",
+ ":vhs:", "๐Ÿ“ผ",
+ ":vibration_mode:", "๐Ÿ“ณ",
+ ":video_camera:", "๐Ÿ“น",
+ ":video_game:", "๐ŸŽฎ",
+ ":vietnam:", "๐Ÿ‡ป๐Ÿ‡ณ",
+ ":violin:", "๐ŸŽป",
+ ":virgo:", "โ™",
+ ":volcano:", "๐ŸŒ‹",
+ ":volleyball:", "๐Ÿ",
+ ":vs:", "๐Ÿ†š",
+ ":vulcan_salute:", "๐Ÿ––",
+ ":walking_man:", "๐Ÿšถ",
+ ":walking_woman:", "๐Ÿšถโ€โ™€๏ธ",
+ ":wallis_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:", "๐Ÿ’’",
+ ":weight_lifting_man:", "๐Ÿ‹",
+ ":weight_lifting_woman:", "๐Ÿ‹๏ธโ€โ™€๏ธ",
+ ":western_sahara:", "๐Ÿ‡ช๐Ÿ‡ญ",
+ ":whale:", "๐Ÿณ",
+ ":whale2:", "๐Ÿ‹",
+ ":wheel_of_dharma:", "โ˜ธ",
+ ":wheelchair:", "โ™ฟ",
+ ":white_check_mark:", "โœ…",
+ ":white_circle:", "โšช",
+ ":white_flag:", "๐Ÿณ",
+ ":white_flower:", "๐Ÿ’ฎ",
+ ":white_large_square:", "โฌœ",
+ ":white_medium_small_square:", "โ—ฝ",
+ ":white_medium_square:", "โ—ป๏ธ",
+ ":white_small_square:", "โ–ซ๏ธ",
+ ":white_square_button:", "๐Ÿ”ณ",
+ ":wilted_flower:", "๐Ÿฅ€",
+ ":wind_chime:", "๐ŸŽ",
+ ":wind_face:", "๐ŸŒฌ",
+ ":wine_glass:", "๐Ÿท",
+ ":wink:", "๐Ÿ˜‰",
+ ":wolf:", "๐Ÿบ",
+ ":woman:", "๐Ÿ‘ฉ",
+ ":woman_artist:", "๐Ÿ‘ฉโ€๐ŸŽจ",
+ ":woman_astronaut:", "๐Ÿ‘ฉโ€๐Ÿš€",
+ ":woman_cartwheeling:", "๐Ÿคธโ€โ™€๏ธ",
+ ":woman_cook:", "๐Ÿ‘ฉโ€๐Ÿณ",
+ ":woman_facepalming:", "๐Ÿคฆโ€โ™€๏ธ",
+ ":woman_factory_worker:", "๐Ÿ‘ฉโ€๐Ÿญ",
+ ":woman_farmer:", "๐Ÿ‘ฉโ€๐ŸŒพ",
+ ":woman_firefighter:", "๐Ÿ‘ฉโ€๐Ÿš’",
+ ":woman_health_worker:", "๐Ÿ‘ฉโ€โš•๏ธ",
+ ":woman_judge:", "๐Ÿ‘ฉโ€โš–๏ธ",
+ ":woman_juggling:", "๐Ÿคนโ€โ™€๏ธ",
+ ":woman_mechanic:", "๐Ÿ‘ฉโ€๐Ÿ”ง",
+ ":woman_office_worker:", "๐Ÿ‘ฉโ€๐Ÿ’ผ",
+ ":woman_pilot:", "๐Ÿ‘ฉโ€โœˆ๏ธ",
+ ":woman_playing_handball:", "๐Ÿคพโ€โ™€๏ธ",
+ ":woman_playing_water_polo:", "๐Ÿคฝโ€โ™€๏ธ",
+ ":woman_scientist:", "๐Ÿ‘ฉโ€๐Ÿ”ฌ",
+ ":woman_shrugging:", "๐Ÿคท",
+ ":woman_singer:", "๐Ÿ‘ฉโ€๐ŸŽค",
+ ":woman_student:", "๐Ÿ‘ฉโ€๐ŸŽ“",
+ ":woman_teacher:", "๐Ÿ‘ฉโ€๐Ÿซ",
+ ":woman_technologist:", "๐Ÿ‘ฉโ€๐Ÿ’ป",
+ ":woman_with_turban:", "๐Ÿ‘ณโ€โ™€๏ธ",
+ ":womans_clothes:", "๐Ÿ‘š",
+ ":womans_hat:", "๐Ÿ‘’",
+ ":women_wrestling:", "๐Ÿคผโ€โ™€๏ธ",
+ ":womens:", "๐Ÿšบ",
+ ":world_map:", "๐Ÿ—บ",
+ ":worried:", "๐Ÿ˜Ÿ",
+ ":wrench:", "๐Ÿ”ง",
+ ":writing_hand:", "โœ",
+ ":x:", "โŒ",
+ ":yellow_heart:", "๐Ÿ’›",
+ ":yemen:", "๐Ÿ‡พ๐Ÿ‡ช",
+ ":yen:", "๐Ÿ’ด",
+ ":yin_yang:", "โ˜ฏ",
+ ":yum:", "๐Ÿ˜‹",
+ ":zambia:", "๐Ÿ‡ฟ๐Ÿ‡ฒ",
+ ":zap:", "โšก",
+ ":zero:", "0๏ธโƒฃ",
+ ":zimbabwe:", "๐Ÿ‡ฟ๐Ÿ‡ผ",
+ ":zipper_mouth_face:", "๐Ÿค",
+ ":zzz:", "๐Ÿ’ค",
+)
+
+var emojiPaddedReplacer = strings.NewReplacer(
+ ":+1:", "๐Ÿ‘ ",
+ ":-1:", "๐Ÿ‘Ž ",
+ ":100:", "๐Ÿ’ฏ ",
+ ":1234:", "๐Ÿ”ข ",
+ ":1st_place_medal:", "๐Ÿฅ‡ ",
+ ":2nd_place_medal:", "๐Ÿฅˆ ",
+ ":3rd_place_medal:", "๐Ÿฅ‰ ",
+ ":8ball:", "๐ŸŽฑ ",
+ ":a:", "๐Ÿ…ฐ๏ธ ",
+ ":ab:", "๐Ÿ†Ž ",
+ ":abc:", "๐Ÿ”ค ",
+ ":abcd:", "๐Ÿ”ก ",
+ ":accept:", "๐Ÿ‰‘ ",
+ ":aerial_tramway:", "๐Ÿšก ",
+ ":afghanistan:", "๐Ÿ‡ฆ๐Ÿ‡ซ ",
+ ":airplane:", "โœˆ๏ธ ",
+ ":aland_islands:", "๐Ÿ‡ฆ๐Ÿ‡ฝ ",
+ ":alarm_clock:", "โฐ ",
+ ":albania:", "๐Ÿ‡ฆ๐Ÿ‡ฑ ",
+ ":alembic:", "โš— ",
+ ":algeria:", "๐Ÿ‡ฉ๐Ÿ‡ฟ ",
+ ":alien:", "๐Ÿ‘ฝ ",
+ ":ambulance:", "๐Ÿš‘ ",
+ ":american_samoa:", "๐Ÿ‡ฆ๐Ÿ‡ธ ",
+ ":amphora:", "๐Ÿบ ",
+ ":anchor:", "โš“ ",
+ ":andorra:", "๐Ÿ‡ฆ๐Ÿ‡ฉ ",
+ ":angel:", "๐Ÿ‘ผ ",
+ ":anger:", "๐Ÿ’ข ",
+ ":angola:", "๐Ÿ‡ฆ๐Ÿ‡ด ",
+ ":angry:", "๐Ÿ˜  ",
+ ":anguilla:", "๐Ÿ‡ฆ๐Ÿ‡ฎ ",
+ ":anguished:", "๐Ÿ˜ง ",
+ ":ant:", "๐Ÿœ ",
+ ":antarctica:", "๐Ÿ‡ฆ๐Ÿ‡ถ ",
+ ":antigua_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:", "๐Ÿš› ",
+ ":artificial_satellite:", "๐Ÿ›ฐ ",
+ ":aruba:", "๐Ÿ‡ฆ๐Ÿ‡ผ ",
+ ":asterisk:", "*โƒฃ ",
+ ":astonished:", "๐Ÿ˜ฒ ",
+ ":athletic_shoe:", "๐Ÿ‘Ÿ ",
+ ":atm:", "๐Ÿง ",
+ ":atom_symbol:", "โš› ",
+ ":australia:", "๐Ÿ‡ฆ๐Ÿ‡บ ",
+ ":austria:", "๐Ÿ‡ฆ๐Ÿ‡น ",
+ ":avocado:", "๐Ÿฅ‘ ",
+ ":azerbaijan:", "๐Ÿ‡ฆ๐Ÿ‡ฟ ",
+ ":b:", "๐Ÿ…ฑ๏ธ ",
+ ":baby:", "๐Ÿ‘ถ ",
+ ":baby_bottle:", "๐Ÿผ ",
+ ":baby_chick:", "๐Ÿค ",
+ ":baby_symbol:", "๐Ÿšผ ",
+ ":back:", "๐Ÿ”™ ",
+ ":bacon:", "๐Ÿฅ“ ",
+ ":badminton:", "๐Ÿธ ",
+ ":baggage_claim:", "๐Ÿ›„ ",
+ ":baguette_bread:", "๐Ÿฅ– ",
+ ":bahamas:", "๐Ÿ‡ง๐Ÿ‡ธ ",
+ ":bahrain:", "๐Ÿ‡ง๐Ÿ‡ญ ",
+ ":balance_scale:", "โš– ",
+ ":balloon:", "๐ŸŽˆ ",
+ ":ballot_box:", "๐Ÿ—ณ ",
+ ":ballot_box_with_check:", "โ˜‘๏ธ ",
+ ":bamboo:", "๐ŸŽ ",
+ ":banana:", "๐ŸŒ ",
+ ":bangbang:", "โ€ผ๏ธ ",
+ ":bangladesh:", "๐Ÿ‡ง๐Ÿ‡ฉ ",
+ ":bank:", "๐Ÿฆ ",
+ ":bar_chart:", "๐Ÿ“Š ",
+ ":barbados:", "๐Ÿ‡ง๐Ÿ‡ง ",
+ ":barber:", "๐Ÿ’ˆ ",
+ ":baseball:", "โšพ ",
+ ":basketball:", "๐Ÿ€ ",
+ ":basketball_man:", "โ›น ",
+ ":basketball_woman:", "โ›น๏ธโ€โ™€๏ธ ",
+ ":bat:", "๐Ÿฆ‡ ",
+ ":bath:", "๐Ÿ›€ ",
+ ":bathtub:", "๐Ÿ› ",
+ ":battery:", "๐Ÿ”‹ ",
+ ":beach_umbrella:", "๐Ÿ– ",
+ ":bear:", "๐Ÿป ",
+ ":bed:", "๐Ÿ› ",
+ ":beer:", "๐Ÿบ ",
+ ":beers:", "๐Ÿป ",
+ ":beetle:", "๐Ÿž ",
+ ":beginner:", "๐Ÿ”ฐ ",
+ ":belarus:", "๐Ÿ‡ง๐Ÿ‡พ ",
+ ":belgium:", "๐Ÿ‡ง๐Ÿ‡ช ",
+ ":belize:", "๐Ÿ‡ง๐Ÿ‡ฟ ",
+ ":bell:", "๐Ÿ”” ",
+ ":bellhop_bell:", "๐Ÿ›Ž ",
+ ":benin:", "๐Ÿ‡ง๐Ÿ‡ฏ ",
+ ":bento:", "๐Ÿฑ ",
+ ":bermuda:", "๐Ÿ‡ง๐Ÿ‡ฒ ",
+ ":bhutan:", "๐Ÿ‡ง๐Ÿ‡น ",
+ ":bike:", "๐Ÿšฒ ",
+ ":biking_man:", "๐Ÿšด ",
+ ":biking_woman:", "๐Ÿšดโ€โ™€๏ธ ",
+ ":bikini:", "๐Ÿ‘™ ",
+ ":biohazard:", "โ˜ฃ ",
+ ":bird:", "๐Ÿฆ ",
+ ":birthday:", "๐ŸŽ‚ ",
+ ":black_circle:", "โšซ ",
+ ":black_flag:", "๐Ÿด ",
+ ":black_heart:", "๐Ÿ–ค ",
+ ":black_joker:", "๐Ÿƒ ",
+ ":black_large_square:", "โฌ› ",
+ ":black_medium_small_square:", "โ—พ ",
+ ":black_medium_square:", "โ—ผ๏ธ ",
+ ":black_nib:", "โœ’๏ธ ",
+ ":black_small_square:", "โ–ช๏ธ ",
+ ":black_square_button:", "๐Ÿ”ฒ ",
+ ":blonde_man:", "๐Ÿ‘ฑ ",
+ ":blonde_woman:", "๐Ÿ‘ฑโ€โ™€๏ธ ",
+ ":blossom:", "๐ŸŒผ ",
+ ":blowfish:", "๐Ÿก ",
+ ":blue_book:", "๐Ÿ“˜ ",
+ ":blue_car:", "๐Ÿš™ ",
+ ":blue_heart:", "๐Ÿ’™ ",
+ ":blush:", "๐Ÿ˜Š ",
+ ":boar:", "๐Ÿ— ",
+ ":bolivia:", "๐Ÿ‡ง๐Ÿ‡ด ",
+ ":bomb:", "๐Ÿ’ฃ ",
+ ":bookmark:", "๐Ÿ”– ",
+ ":bookmark_tabs:", "๐Ÿ“‘ ",
+ ":books:", "๐Ÿ“š ",
+ ":boom:", "๐Ÿ’ฅ ",
+ ":boot:", "๐Ÿ‘ข ",
+ ":bosnia_herzegovina:", "๐Ÿ‡ง๐Ÿ‡ฆ ",
+ ":botswana:", "๐Ÿ‡ง๐Ÿ‡ผ ",
+ ":bouquet:", "๐Ÿ’ ",
+ ":bow_and_arrow:", "๐Ÿน ",
+ ":bowing_man:", "๐Ÿ™‡ ",
+ ":bowing_woman:", "๐Ÿ™‡โ€โ™€๏ธ ",
+ ":bowling:", "๐ŸŽณ ",
+ ":bowtie:", " ",
+ ":boxing_glove:", "๐ŸฅŠ ",
+ ":boy:", "๐Ÿ‘ฆ ",
+ ":brazil:", "๐Ÿ‡ง๐Ÿ‡ท ",
+ ":bread:", "๐Ÿž ",
+ ":bride_with_veil:", "๐Ÿ‘ฐ ",
+ ":bridge_at_night:", "๐ŸŒ‰ ",
+ ":briefcase:", "๐Ÿ’ผ ",
+ ":british_indian_ocean_territory:", "๐Ÿ‡ฎ๐Ÿ‡ด ",
+ ":british_virgin_islands:", "๐Ÿ‡ป๐Ÿ‡ฌ ",
+ ":broken_heart:", "๐Ÿ’” ",
+ ":brunei:", "๐Ÿ‡ง๐Ÿ‡ณ ",
+ ":bug:", "๐Ÿ› ",
+ ":building_construction:", "๐Ÿ— ",
+ ":bulb:", "๐Ÿ’ก ",
+ ":bulgaria:", "๐Ÿ‡ง๐Ÿ‡ฌ ",
+ ":bullettrain_front:", "๐Ÿš… ",
+ ":bullettrain_side:", "๐Ÿš„ ",
+ ":burkina_faso:", "๐Ÿ‡ง๐Ÿ‡ซ ",
+ ":burrito:", "๐ŸŒฏ ",
+ ":burundi:", "๐Ÿ‡ง๐Ÿ‡ฎ ",
+ ":bus:", "๐ŸšŒ ",
+ ":business_suit_levitating:", "๐Ÿ•ด ",
+ ":busstop:", "๐Ÿš ",
+ ":bust_in_silhouette:", "๐Ÿ‘ค ",
+ ":busts_in_silhouette:", "๐Ÿ‘ฅ ",
+ ":butterfly:", "๐Ÿฆ‹ ",
+ ":cactus:", "๐ŸŒต ",
+ ":cake:", "๐Ÿฐ ",
+ ":calendar:", "๐Ÿ“† ",
+ ":call_me_hand:", "๐Ÿค™ ",
+ ":calling:", "๐Ÿ“ฒ ",
+ ":cambodia:", "๐Ÿ‡ฐ๐Ÿ‡ญ ",
+ ":camel:", "๐Ÿซ ",
+ ":camera:", "๐Ÿ“ท ",
+ ":camera_flash:", "๐Ÿ“ธ ",
+ ":cameroon:", "๐Ÿ‡จ๐Ÿ‡ฒ ",
+ ":camping:", "๐Ÿ• ",
+ ":canada:", "๐Ÿ‡จ๐Ÿ‡ฆ ",
+ ":canary_islands:", "๐Ÿ‡ฎ๐Ÿ‡จ ",
+ ":cancer:", "โ™‹ ",
+ ":candle:", "๐Ÿ•ฏ ",
+ ":candy:", "๐Ÿฌ ",
+ ":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:", "๐Ÿ‡จ๐Ÿ‡ซ ",
+ ":chad:", "๐Ÿ‡น๐Ÿ‡ฉ ",
+ ":chains:", "โ›“ ",
+ ":champagne:", "๐Ÿพ ",
+ ":chart:", "๐Ÿ’น ",
+ ":chart_with_downwards_trend:", "๐Ÿ“‰ ",
+ ":chart_with_upwards_trend:", "๐Ÿ“ˆ ",
+ ":checkered_flag:", "๐Ÿ ",
+ ":cheese:", "๐Ÿง€ ",
+ ":cherries:", "๐Ÿ’ ",
+ ":cherry_blossom:", "๐ŸŒธ ",
+ ":chestnut:", "๐ŸŒฐ ",
+ ":chicken:", "๐Ÿ” ",
+ ":children_crossing:", "๐Ÿšธ ",
+ ":chile:", "๐Ÿ‡จ๐Ÿ‡ฑ ",
+ ":chipmunk:", "๐Ÿฟ ",
+ ":chocolate_bar:", "๐Ÿซ ",
+ ":christmas_island:", "๐Ÿ‡จ๐Ÿ‡ฝ ",
+ ":christmas_tree:", "๐ŸŽ„ ",
+ ":church:", "โ›ช ",
+ ":cinema:", "๐ŸŽฆ ",
+ ":circus_tent:", "๐ŸŽช ",
+ ":city_sunrise:", "๐ŸŒ‡ ",
+ ":city_sunset:", "๐ŸŒ† ",
+ ":cityscape:", "๐Ÿ™ ",
+ ":cl:", "๐Ÿ†‘ ",
+ ":clamp:", "๐Ÿ—œ ",
+ ":clap:", "๐Ÿ‘ ",
+ ":clapper:", "๐ŸŽฌ ",
+ ":classical_building:", "๐Ÿ› ",
+ ":clinking_glasses:", "๐Ÿฅ‚ ",
+ ":clipboard:", "๐Ÿ“‹ ",
+ ":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_face:", "๐Ÿคก ",
+ ":clubs:", "โ™ฃ๏ธ ",
+ ":cn:", "๐Ÿ‡จ๐Ÿ‡ณ ",
+ ":cocktail:", "๐Ÿธ ",
+ ":cocos_islands:", "๐Ÿ‡จ๐Ÿ‡จ ",
+ ":coffee:", "โ˜• ",
+ ":coffin:", "โšฐ ",
+ ":cold_sweat:", "๐Ÿ˜ฐ ",
+ ":colombia:", "๐Ÿ‡จ๐Ÿ‡ด ",
+ ":comet:", "โ˜„ ",
+ ":comoros:", "๐Ÿ‡ฐ๐Ÿ‡ฒ ",
+ ":computer:", "๐Ÿ’ป ",
+ ":computer_mouse:", "๐Ÿ–ฑ ",
+ ":confetti_ball:", "๐ŸŽŠ ",
+ ":confounded:", "๐Ÿ˜– ",
+ ":confused:", "๐Ÿ˜• ",
+ ":congo_brazzaville:", "๐Ÿ‡จ๐Ÿ‡ฌ ",
+ ":congo_kinshasa:", "๐Ÿ‡จ๐Ÿ‡ฉ ",
+ ":congratulations:", "ใŠ—๏ธ ",
+ ":construction:", "๐Ÿšง ",
+ ":construction_worker_man:", "๐Ÿ‘ท ",
+ ":construction_worker_woman:", "๐Ÿ‘ทโ€โ™€๏ธ ",
+ ":control_knobs:", "๐ŸŽ› ",
+ ":convenience_store:", "๐Ÿช ",
+ ":cook_islands:", "๐Ÿ‡จ๐Ÿ‡ฐ ",
+ ":cookie:", "๐Ÿช ",
+ ":cool:", "๐Ÿ†’ ",
+ ":copyright:", "ยฉ๏ธ ",
+ ":corn:", "๐ŸŒฝ ",
+ ":costa_rica:", "๐Ÿ‡จ๐Ÿ‡ท ",
+ ":cote_divoire:", "๐Ÿ‡จ๐Ÿ‡ฎ ",
+ ":couch_and_lamp:", "๐Ÿ›‹ ",
+ ":couple:", "๐Ÿ‘ซ ",
+ ":couple_with_heart_man_man:", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ ",
+ ":couple_with_heart_woman_man:", "๐Ÿ’‘ ",
+ ":couple_with_heart_woman_woman:", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ ",
+ ":couplekiss_man_man:", "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ ",
+ ":couplekiss_man_woman:", "๐Ÿ’ ",
+ ":couplekiss_woman_woman:", "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ ",
+ ":cow:", "๐Ÿฎ ",
+ ":cow2:", "๐Ÿ„ ",
+ ":cowboy_hat_face:", "๐Ÿค  ",
+ ":crab:", "๐Ÿฆ€ ",
+ ":crayon:", "๐Ÿ– ",
+ ":credit_card:", "๐Ÿ’ณ ",
+ ":crescent_moon:", "๐ŸŒ™ ",
+ ":cricket:", "๐Ÿ ",
+ ":croatia:", "๐Ÿ‡ญ๐Ÿ‡ท ",
+ ":crocodile:", "๐ŸŠ ",
+ ":croissant:", "๐Ÿฅ ",
+ ":crossed_fingers:", "๐Ÿคž ",
+ ":crossed_flags:", "๐ŸŽŒ ",
+ ":crossed_swords:", "โš” ",
+ ":crown:", "๐Ÿ‘‘ ",
+ ":cry:", "๐Ÿ˜ข ",
+ ":crying_cat_face:", "๐Ÿ˜ฟ ",
+ ":crystal_ball:", "๐Ÿ”ฎ ",
+ ":cuba:", "๐Ÿ‡จ๐Ÿ‡บ ",
+ ":cucumber:", "๐Ÿฅ’ ",
+ ":cupid:", "๐Ÿ’˜ ",
+ ":curacao:", "๐Ÿ‡จ๐Ÿ‡ผ ",
+ ":curly_loop:", "โžฐ ",
+ ":currency_exchange:", "๐Ÿ’ฑ ",
+ ":curry:", "๐Ÿ› ",
+ ":custard:", "๐Ÿฎ ",
+ ":customs:", "๐Ÿ›ƒ ",
+ ":cyclone:", "๐ŸŒ€ ",
+ ":cyprus:", "๐Ÿ‡จ๐Ÿ‡พ ",
+ ":czech_republic:", "๐Ÿ‡จ๐Ÿ‡ฟ ",
+ ":dagger:", "๐Ÿ—ก ",
+ ":dancer:", "๐Ÿ’ƒ ",
+ ":dancing_men:", "๐Ÿ‘ฏโ€โ™‚๏ธ ",
+ ":dancing_women:", "๐Ÿ‘ฏ ",
+ ":dango:", "๐Ÿก ",
+ ":dark_sunglasses:", "๐Ÿ•ถ ",
+ ":dart:", "๐ŸŽฏ ",
+ ":dash:", "๐Ÿ’จ ",
+ ":date:", "๐Ÿ“… ",
+ ":de:", "๐Ÿ‡ฉ๐Ÿ‡ช ",
+ ":deciduous_tree:", "๐ŸŒณ ",
+ ":deer:", "๐ŸฆŒ ",
+ ":denmark:", "๐Ÿ‡ฉ๐Ÿ‡ฐ ",
+ ":department_store:", "๐Ÿฌ ",
+ ":derelict_house:", "๐Ÿš ",
+ ":desert:", "๐Ÿœ ",
+ ":desert_island:", "๐Ÿ ",
+ ":desktop_computer:", "๐Ÿ–ฅ ",
+ ":diamond_shape_with_a_dot_inside:", "๐Ÿ’  ",
+ ":diamonds:", "โ™ฆ๏ธ ",
+ ":disappointed:", "๐Ÿ˜ž ",
+ ":disappointed_relieved:", "๐Ÿ˜ฅ ",
+ ":dizzy:", "๐Ÿ’ซ ",
+ ":dizzy_face:", "๐Ÿ˜ต ",
+ ":djibouti:", "๐Ÿ‡ฉ๐Ÿ‡ฏ ",
+ ":do_not_litter:", "๐Ÿšฏ ",
+ ":dog:", "๐Ÿถ ",
+ ":dog2:", "๐Ÿ• ",
+ ":dollar:", "๐Ÿ’ต ",
+ ":dolls:", "๐ŸŽŽ ",
+ ":dolphin:", "๐Ÿฌ ",
+ ":dominica:", "๐Ÿ‡ฉ๐Ÿ‡ฒ ",
+ ":dominican_republic:", "๐Ÿ‡ฉ๐Ÿ‡ด ",
+ ":door:", "๐Ÿšช ",
+ ":doughnut:", "๐Ÿฉ ",
+ ":dove:", "๐Ÿ•Š ",
+ ":dragon:", "๐Ÿ‰ ",
+ ":dragon_face:", "๐Ÿฒ ",
+ ":dress:", "๐Ÿ‘— ",
+ ":dromedary_camel:", "๐Ÿช ",
+ ":drooling_face:", "๐Ÿคค ",
+ ":droplet:", "๐Ÿ’ง ",
+ ":drum:", "๐Ÿฅ ",
+ ":duck:", "๐Ÿฆ† ",
+ ":dvd:", "๐Ÿ“€ ",
+ ":e-mail:", "๐Ÿ“ง ",
+ ":eagle:", "๐Ÿฆ… ",
+ ":ear:", "๐Ÿ‘‚ ",
+ ":ear_of_rice:", "๐ŸŒพ ",
+ ":earth_africa:", "๐ŸŒ ",
+ ":earth_americas:", "๐ŸŒŽ ",
+ ":earth_asia:", "๐ŸŒ ",
+ ":ecuador:", "๐Ÿ‡ช๐Ÿ‡จ ",
+ ":egg:", "๐Ÿฅš ",
+ ":eggplant:", "๐Ÿ† ",
+ ":egypt:", "๐Ÿ‡ช๐Ÿ‡ฌ ",
+ ":eight:", "8๏ธโƒฃ ",
+ ":eight_pointed_black_star:", "โœด๏ธ ",
+ ":eight_spoked_asterisk:", "โœณ๏ธ ",
+ ":el_salvador:", "๐Ÿ‡ธ๐Ÿ‡ป ",
+ ":electric_plug:", "๐Ÿ”Œ ",
+ ":elephant:", "๐Ÿ˜ ",
+ ":email:", "โœ‰๏ธ ",
+ ":end:", "๐Ÿ”š ",
+ ":envelope_with_arrow:", "๐Ÿ“ฉ ",
+ ":equatorial_guinea:", "๐Ÿ‡ฌ๐Ÿ‡ถ ",
+ ":eritrea:", "๐Ÿ‡ช๐Ÿ‡ท ",
+ ":es:", "๐Ÿ‡ช๐Ÿ‡ธ ",
+ ":estonia:", "๐Ÿ‡ช๐Ÿ‡ช ",
+ ":ethiopia:", "๐Ÿ‡ช๐Ÿ‡น ",
+ ":eu:", "๐Ÿ‡ช๐Ÿ‡บ ",
+ ":euro:", "๐Ÿ’ถ ",
+ ":european_castle:", "๐Ÿฐ ",
+ ":european_post_office:", "๐Ÿค ",
+ ":evergreen_tree:", "๐ŸŒฒ ",
+ ":exclamation:", "โ— ",
+ ":expressionless:", "๐Ÿ˜‘ ",
+ ":eye:", "๐Ÿ‘ ",
+ ":eyeglasses:", "๐Ÿ‘“ ",
+ ":eyes:", "๐Ÿ‘€ ",
+ ":face_with_head_bandage:", "๐Ÿค• ",
+ ":face_with_thermometer:", "๐Ÿค’ ",
+ ":facepunch:", "๐Ÿ‘Š ",
+ ":factory:", "๐Ÿญ ",
+ ":falkland_islands:", "๐Ÿ‡ซ๐Ÿ‡ฐ ",
+ ":fallen_leaf:", "๐Ÿ‚ ",
+ ":family_man_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฆ ",
+ ":family_man_boy_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ",
+ ":family_man_girl:", "๐Ÿ‘จโ€๐Ÿ‘ง ",
+ ":family_man_girl_boy:", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ",
+ ":family_man_girl_girl:", "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง ",
+ ":family_man_man_boy:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ ",
+ ":family_man_man_boy_boy:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ",
+ ":family_man_man_girl:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง ",
+ ":family_man_man_girl_boy:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ",
+ ":family_man_man_girl_girl:", "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง ",
+ ":family_man_woman_boy:", "๐Ÿ‘ช ",
+ ":family_man_woman_boy_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ",
+ ":family_man_woman_girl:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง ",
+ ":family_man_woman_girl_boy:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ",
+ ":family_man_woman_girl_girl:", "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง ",
+ ":family_woman_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฆ ",
+ ":family_woman_boy_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ",
+ ":family_woman_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘ง ",
+ ":family_woman_girl_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ",
+ ":family_woman_girl_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง ",
+ ":family_woman_woman_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ ",
+ ":family_woman_woman_boy_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ ",
+ ":family_woman_woman_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง ",
+ ":family_woman_woman_girl_boy:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ ",
+ ":family_woman_woman_girl_girl:", "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง ",
+ ":faroe_islands:", "๐Ÿ‡ซ๐Ÿ‡ด ",
+ ":fast_forward:", "โฉ ",
+ ":fax:", "๐Ÿ“  ",
+ ":fearful:", "๐Ÿ˜จ ",
+ ":feelsgood:", " ",
+ ":female_detective:", "๐Ÿ•ต๏ธโ€โ™€๏ธ ",
+ ":ferris_wheel:", "๐ŸŽก ",
+ ":ferry:", "โ›ด ",
+ ":field_hockey:", "๐Ÿ‘ ",
+ ":fiji:", "๐Ÿ‡ซ๐Ÿ‡ฏ ",
+ ":file_cabinet:", "๐Ÿ—„ ",
+ ":file_folder:", "๐Ÿ“ ",
+ ":film_projector:", "๐Ÿ“ฝ ",
+ ":film_strip:", "๐ŸŽž ",
+ ":finland:", "๐Ÿ‡ซ๐Ÿ‡ฎ ",
+ ":finnadie:", " ",
+ ":fire:", "๐Ÿ”ฅ ",
+ ":fire_engine:", "๐Ÿš’ ",
+ ":fireworks:", "๐ŸŽ† ",
+ ":first_quarter_moon:", "๐ŸŒ“ ",
+ ":first_quarter_moon_with_face:", "๐ŸŒ› ",
+ ":fish:", "๐ŸŸ ",
+ ":fish_cake:", "๐Ÿฅ ",
+ ":fishing_pole_and_fish:", "๐ŸŽฃ ",
+ ":fist:", "โœŠ ",
+ ":fist_left:", "๐Ÿค› ",
+ ":fist_right:", "๐Ÿคœ ",
+ ":five:", "5๏ธโƒฃ ",
+ ":flags:", "๐ŸŽ ",
+ ":flashlight:", "๐Ÿ”ฆ ",
+ ":fleur_de_lis:", "โšœ ",
+ ":flight_arrival:", "๐Ÿ›ฌ ",
+ ":flight_departure:", "๐Ÿ›ซ ",
+ ":floppy_disk:", "๐Ÿ’พ ",
+ ":flower_playing_cards:", "๐ŸŽด ",
+ ":flushed:", "๐Ÿ˜ณ ",
+ ":fog:", "๐ŸŒซ ",
+ ":foggy:", "๐ŸŒ ",
+ ":football:", "๐Ÿˆ ",
+ ":footprints:", "๐Ÿ‘ฃ ",
+ ":fork_and_knife:", "๐Ÿด ",
+ ":fountain:", "โ›ฒ ",
+ ":fountain_pen:", "๐Ÿ–‹ ",
+ ":four:", "4๏ธโƒฃ ",
+ ":four_leaf_clover:", "๐Ÿ€ ",
+ ":fox_face:", "๐ŸฆŠ ",
+ ":fr:", "๐Ÿ‡ซ๐Ÿ‡ท ",
+ ":framed_picture:", "๐Ÿ–ผ ",
+ ":free:", "๐Ÿ†“ ",
+ ":french_guiana:", "๐Ÿ‡ฌ๐Ÿ‡ซ ",
+ ":french_polynesia:", "๐Ÿ‡ต๐Ÿ‡ซ ",
+ ":french_southern_territories:", "๐Ÿ‡น๐Ÿ‡ซ ",
+ ":fried_egg:", "๐Ÿณ ",
+ ":fried_shrimp:", "๐Ÿค ",
+ ":fries:", "๐ŸŸ ",
+ ":frog:", "๐Ÿธ ",
+ ":frowning:", "๐Ÿ˜ฆ ",
+ ":frowning_face:", "โ˜น ",
+ ":frowning_man:", "๐Ÿ™โ€โ™‚๏ธ ",
+ ":frowning_woman:", "๐Ÿ™ ",
+ ":fu:", "๐Ÿ–• ",
+ ":fuelpump:", "โ›ฝ ",
+ ":full_moon:", "๐ŸŒ• ",
+ ":full_moon_with_face:", "๐ŸŒ ",
+ ":funeral_urn:", "โšฑ ",
+ ":gabon:", "๐Ÿ‡ฌ๐Ÿ‡ฆ ",
+ ":gambia:", "๐Ÿ‡ฌ๐Ÿ‡ฒ ",
+ ":game_die:", "๐ŸŽฒ ",
+ ":gear:", "โš™ ",
+ ":gem:", "๐Ÿ’Ž ",
+ ":gemini:", "โ™Š ",
+ ":georgia:", "๐Ÿ‡ฌ๐Ÿ‡ช ",
+ ":ghana:", "๐Ÿ‡ฌ๐Ÿ‡ญ ",
+ ":ghost:", "๐Ÿ‘ป ",
+ ":gibraltar:", "๐Ÿ‡ฌ๐Ÿ‡ฎ ",
+ ":gift:", "๐ŸŽ ",
+ ":gift_heart:", "๐Ÿ’ ",
+ ":girl:", "๐Ÿ‘ง ",
+ ":globe_with_meridians:", "๐ŸŒ ",
+ ":goal_net:", "๐Ÿฅ… ",
+ ":goat:", "๐Ÿ ",
+ ":goberserk:", " ",
+ ":godmode:", " ",
+ ":golf:", "โ›ณ ",
+ ":golfing_man:", "๐ŸŒ ",
+ ":golfing_woman:", "๐ŸŒ๏ธโ€โ™€๏ธ ",
+ ":gorilla:", "๐Ÿฆ ",
+ ":grapes:", "๐Ÿ‡ ",
+ ":greece:", "๐Ÿ‡ฌ๐Ÿ‡ท ",
+ ":green_apple:", "๐Ÿ ",
+ ":green_book:", "๐Ÿ“— ",
+ ":green_heart:", "๐Ÿ’š ",
+ ":green_salad:", "๐Ÿฅ— ",
+ ":greenland:", "๐Ÿ‡ฌ๐Ÿ‡ฑ ",
+ ":grenada:", "๐Ÿ‡ฌ๐Ÿ‡ฉ ",
+ ":grey_exclamation:", "โ• ",
+ ":grey_question:", "โ” ",
+ ":grimacing:", "๐Ÿ˜ฌ ",
+ ":grin:", "๐Ÿ˜ ",
+ ":grinning:", "๐Ÿ˜€ ",
+ ":guadeloupe:", "๐Ÿ‡ฌ๐Ÿ‡ต ",
+ ":guam:", "๐Ÿ‡ฌ๐Ÿ‡บ ",
+ ":guardsman:", "๐Ÿ’‚ ",
+ ":guardswoman:", "๐Ÿ’‚โ€โ™€๏ธ ",
+ ":guatemala:", "๐Ÿ‡ฌ๐Ÿ‡น ",
+ ":guernsey:", "๐Ÿ‡ฌ๐Ÿ‡ฌ ",
+ ":guinea:", "๐Ÿ‡ฌ๐Ÿ‡ณ ",
+ ":guinea_bissau:", "๐Ÿ‡ฌ๐Ÿ‡ผ ",
+ ":guitar:", "๐ŸŽธ ",
+ ":gun:", "๐Ÿ”ซ ",
+ ":guyana:", "๐Ÿ‡ฌ๐Ÿ‡พ ",
+ ":haircut_man:", "๐Ÿ’‡โ€โ™‚๏ธ ",
+ ":haircut_woman:", "๐Ÿ’‡ ",
+ ":haiti:", "๐Ÿ‡ญ๐Ÿ‡น ",
+ ":hamburger:", "๐Ÿ” ",
+ ":hammer:", "๐Ÿ”จ ",
+ ":hammer_and_pick:", "โš’ ",
+ ":hammer_and_wrench:", "๐Ÿ›  ",
+ ":hamster:", "๐Ÿน ",
+ ":handbag:", "๐Ÿ‘œ ",
+ ":handshake:", "๐Ÿค ",
+ ":hash:", "#๏ธโƒฃ ",
+ ":hatched_chick:", "๐Ÿฅ ",
+ ":hatching_chick:", "๐Ÿฃ ",
+ ":headphones:", "๐ŸŽง ",
+ ":hear_no_evil:", "๐Ÿ™‰ ",
+ ":heart:", "โค๏ธ ",
+ ":heart_decoration:", "๐Ÿ’Ÿ ",
+ ":heart_eyes:", "๐Ÿ˜ ",
+ ":heart_eyes_cat:", "๐Ÿ˜ป ",
+ ":heartbeat:", "๐Ÿ’“ ",
+ ":heartpulse:", "๐Ÿ’— ",
+ ":hearts:", "โ™ฅ๏ธ ",
+ ":heavy_check_mark:", "โœ”๏ธ ",
+ ":heavy_division_sign:", "โž— ",
+ ":heavy_dollar_sign:", "๐Ÿ’ฒ ",
+ ":heavy_heart_exclamation:", "โฃ ",
+ ":heavy_minus_sign:", "โž– ",
+ ":heavy_multiplication_x:", "โœ–๏ธ ",
+ ":heavy_plus_sign:", "โž• ",
+ ":helicopter:", "๐Ÿš ",
+ ":herb:", "๐ŸŒฟ ",
+ ":hibiscus:", "๐ŸŒบ ",
+ ":high_brightness:", "๐Ÿ”† ",
+ ":high_heel:", "๐Ÿ‘  ",
+ ":hocho:", "๐Ÿ”ช ",
+ ":hole:", "๐Ÿ•ณ ",
+ ":honduras:", "๐Ÿ‡ญ๐Ÿ‡ณ ",
+ ":honey_pot:", "๐Ÿฏ ",
+ ":honeybee:", "๐Ÿ ",
+ ":hong_kong:", "๐Ÿ‡ญ๐Ÿ‡ฐ ",
+ ":horse:", "๐Ÿด ",
+ ":horse_racing:", "๐Ÿ‡ ",
+ ":hospital:", "๐Ÿฅ ",
+ ":hot_pepper:", "๐ŸŒถ ",
+ ":hotdog:", "๐ŸŒญ ",
+ ":hotel:", "๐Ÿจ ",
+ ":hotsprings:", "โ™จ๏ธ ",
+ ":hourglass:", "โŒ› ",
+ ":hourglass_flowing_sand:", "โณ ",
+ ":house:", "๐Ÿ  ",
+ ":house_with_garden:", "๐Ÿก ",
+ ":houses:", "๐Ÿ˜ ",
+ ":hugs:", "๐Ÿค— ",
+ ":hungary:", "๐Ÿ‡ญ๐Ÿ‡บ ",
+ ":hurtrealbad:", " ",
+ ":hushed:", "๐Ÿ˜ฏ ",
+ ":ice_cream:", "๐Ÿจ ",
+ ":ice_hockey:", "๐Ÿ’ ",
+ ":ice_skate:", "โ›ธ ",
+ ":icecream:", "๐Ÿฆ ",
+ ":iceland:", "๐Ÿ‡ฎ๐Ÿ‡ธ ",
+ ":id:", "๐Ÿ†” ",
+ ":ideograph_advantage:", "๐Ÿ‰ ",
+ ":imp:", "๐Ÿ‘ฟ ",
+ ":inbox_tray:", "๐Ÿ“ฅ ",
+ ":incoming_envelope:", "๐Ÿ“จ ",
+ ":india:", "๐Ÿ‡ฎ๐Ÿ‡ณ ",
+ ":indonesia:", "๐Ÿ‡ฎ๐Ÿ‡ฉ ",
+ ":information_source:", "โ„น๏ธ ",
+ ":innocent:", "๐Ÿ˜‡ ",
+ ":interrobang:", "โ‰๏ธ ",
+ ":iphone:", "๐Ÿ“ฑ ",
+ ":iran:", "๐Ÿ‡ฎ๐Ÿ‡ท ",
+ ":iraq:", "๐Ÿ‡ฎ๐Ÿ‡ถ ",
+ ":ireland:", "๐Ÿ‡ฎ๐Ÿ‡ช ",
+ ":isle_of_man:", "๐Ÿ‡ฎ๐Ÿ‡ฒ ",
+ ":israel:", "๐Ÿ‡ฎ๐Ÿ‡ฑ ",
+ ":it:", "๐Ÿ‡ฎ๐Ÿ‡น ",
+ ":izakaya_lantern:", "๐Ÿฎ ",
+ ":jack_o_lantern:", "๐ŸŽƒ ",
+ ":jamaica:", "๐Ÿ‡ฏ๐Ÿ‡ฒ ",
+ ":japan:", "๐Ÿ—พ ",
+ ":japanese_castle:", "๐Ÿฏ ",
+ ":japanese_goblin:", "๐Ÿ‘บ ",
+ ":japanese_ogre:", "๐Ÿ‘น ",
+ ":jeans:", "๐Ÿ‘– ",
+ ":jersey:", "๐Ÿ‡ฏ๐Ÿ‡ช ",
+ ":jordan:", "๐Ÿ‡ฏ๐Ÿ‡ด ",
+ ":joy:", "๐Ÿ˜‚ ",
+ ":joy_cat:", "๐Ÿ˜น ",
+ ":joystick:", "๐Ÿ•น ",
+ ":jp:", "๐Ÿ‡ฏ๐Ÿ‡ต ",
+ ":kaaba:", "๐Ÿ•‹ ",
+ ":kazakhstan:", "๐Ÿ‡ฐ๐Ÿ‡ฟ ",
+ ":kenya:", "๐Ÿ‡ฐ๐Ÿ‡ช ",
+ ":key:", "๐Ÿ”‘ ",
+ ":keyboard:", "โŒจ ",
+ ":keycap_ten:", "๐Ÿ”Ÿ ",
+ ":kick_scooter:", "๐Ÿ›ด ",
+ ":kimono:", "๐Ÿ‘˜ ",
+ ":kiribati:", "๐Ÿ‡ฐ๐Ÿ‡ฎ ",
+ ":kiss:", "๐Ÿ’‹ ",
+ ":kissing:", "๐Ÿ˜— ",
+ ":kissing_cat:", "๐Ÿ˜ฝ ",
+ ":kissing_closed_eyes:", "๐Ÿ˜š ",
+ ":kissing_heart:", "๐Ÿ˜˜ ",
+ ":kissing_smiling_eyes:", "๐Ÿ˜™ ",
+ ":kiwi_fruit:", "๐Ÿฅ ",
+ ":koala:", "๐Ÿจ ",
+ ":koko:", "๐Ÿˆ ",
+ ":kosovo:", "๐Ÿ‡ฝ๐Ÿ‡ฐ ",
+ ":kr:", "๐Ÿ‡ฐ๐Ÿ‡ท ",
+ ":kuwait:", "๐Ÿ‡ฐ๐Ÿ‡ผ ",
+ ":kyrgyzstan:", "๐Ÿ‡ฐ๐Ÿ‡ฌ ",
+ ":label:", "๐Ÿท ",
+ ":laos:", "๐Ÿ‡ฑ๐Ÿ‡ฆ ",
+ ":large_blue_circle:", "๐Ÿ”ต ",
+ ":large_blue_diamond:", "๐Ÿ”ท ",
+ ":large_orange_diamond:", "๐Ÿ”ถ ",
+ ":last_quarter_moon:", "๐ŸŒ— ",
+ ":last_quarter_moon_with_face:", "๐ŸŒœ ",
+ ":latin_cross:", "โœ ",
+ ":latvia:", "๐Ÿ‡ฑ๐Ÿ‡ป ",
+ ":laughing:", "๐Ÿ˜† ",
+ ":leaves:", "๐Ÿƒ ",
+ ":lebanon:", "๐Ÿ‡ฑ๐Ÿ‡ง ",
+ ":ledger:", "๐Ÿ“’ ",
+ ":left_luggage:", "๐Ÿ›… ",
+ ":left_right_arrow:", "โ†”๏ธ ",
+ ":left_speech_bubble:", "๐Ÿ—จ ",
+ ":leftwards_arrow_with_hook:", "โ†ฉ๏ธ ",
+ ":lemon:", "๐Ÿ‹ ",
+ ":leo:", "โ™Œ ",
+ ":leopard:", "๐Ÿ† ",
+ ":lesotho:", "๐Ÿ‡ฑ๐Ÿ‡ธ ",
+ ":level_slider:", "๐ŸŽš ",
+ ":liberia:", "๐Ÿ‡ฑ๐Ÿ‡ท ",
+ ":libra:", "โ™Ž ",
+ ":libya:", "๐Ÿ‡ฑ๐Ÿ‡พ ",
+ ":liechtenstein:", "๐Ÿ‡ฑ๐Ÿ‡ฎ ",
+ ":light_rail:", "๐Ÿšˆ ",
+ ":link:", "๐Ÿ”— ",
+ ":lion:", "๐Ÿฆ ",
+ ":lips:", "๐Ÿ‘„ ",
+ ":lipstick:", "๐Ÿ’„ ",
+ ":lithuania:", "๐Ÿ‡ฑ๐Ÿ‡น ",
+ ":lizard:", "๐ŸฆŽ ",
+ ":lock:", "๐Ÿ”’ ",
+ ":lock_with_ink_pen:", "๐Ÿ” ",
+ ":lollipop:", "๐Ÿญ ",
+ ":loop:", "โžฟ ",
+ ":loud_sound:", "๐Ÿ”Š ",
+ ":loudspeaker:", "๐Ÿ“ข ",
+ ":love_hotel:", "๐Ÿฉ ",
+ ":love_letter:", "๐Ÿ’Œ ",
+ ":low_brightness:", "๐Ÿ”… ",
+ ":luxembourg:", "๐Ÿ‡ฑ๐Ÿ‡บ ",
+ ":lying_face:", "๐Ÿคฅ ",
+ ":m:", "โ“‚๏ธ ",
+ ":macau:", "๐Ÿ‡ฒ๐Ÿ‡ด ",
+ ":macedonia:", "๐Ÿ‡ฒ๐Ÿ‡ฐ ",
+ ":madagascar:", "๐Ÿ‡ฒ๐Ÿ‡ฌ ",
+ ":mag:", "๐Ÿ” ",
+ ":mag_right:", "๐Ÿ”Ž ",
+ ":mahjong:", "๐Ÿ€„ ",
+ ":mailbox:", "๐Ÿ“ซ ",
+ ":mailbox_closed:", "๐Ÿ“ช ",
+ ":mailbox_with_mail:", "๐Ÿ“ฌ ",
+ ":mailbox_with_no_mail:", "๐Ÿ“ญ ",
+ ":malawi:", "๐Ÿ‡ฒ๐Ÿ‡ผ ",
+ ":malaysia:", "๐Ÿ‡ฒ๐Ÿ‡พ ",
+ ":maldives:", "๐Ÿ‡ฒ๐Ÿ‡ป ",
+ ":male_detective:", "๐Ÿ•ต ",
+ ":mali:", "๐Ÿ‡ฒ๐Ÿ‡ฑ ",
+ ":malta:", "๐Ÿ‡ฒ๐Ÿ‡น ",
+ ":man:", "๐Ÿ‘จ ",
+ ":man_artist:", "๐Ÿ‘จโ€๐ŸŽจ ",
+ ":man_astronaut:", "๐Ÿ‘จโ€๐Ÿš€ ",
+ ":man_cartwheeling:", "๐Ÿคธโ€โ™‚๏ธ ",
+ ":man_cook:", "๐Ÿ‘จโ€๐Ÿณ ",
+ ":man_dancing:", "๐Ÿ•บ ",
+ ":man_facepalming:", "๐Ÿคฆ ",
+ ":man_factory_worker:", "๐Ÿ‘จโ€๐Ÿญ ",
+ ":man_farmer:", "๐Ÿ‘จโ€๐ŸŒพ ",
+ ":man_firefighter:", "๐Ÿ‘จโ€๐Ÿš’ ",
+ ":man_health_worker:", "๐Ÿ‘จโ€โš•๏ธ ",
+ ":man_in_tuxedo:", "๐Ÿคต ",
+ ":man_judge:", "๐Ÿ‘จโ€โš–๏ธ ",
+ ":man_juggling:", "๐Ÿคนโ€โ™‚๏ธ ",
+ ":man_mechanic:", "๐Ÿ‘จโ€๐Ÿ”ง ",
+ ":man_office_worker:", "๐Ÿ‘จโ€๐Ÿ’ผ ",
+ ":man_pilot:", "๐Ÿ‘จโ€โœˆ๏ธ ",
+ ":man_playing_handball:", "๐Ÿคพโ€โ™‚๏ธ ",
+ ":man_playing_water_polo:", "๐Ÿคฝโ€โ™‚๏ธ ",
+ ":man_scientist:", "๐Ÿ‘จโ€๐Ÿ”ฌ ",
+ ":man_shrugging:", "๐Ÿคทโ€โ™‚๏ธ ",
+ ":man_singer:", "๐Ÿ‘จโ€๐ŸŽค ",
+ ":man_student:", "๐Ÿ‘จโ€๐ŸŽ“ ",
+ ":man_teacher:", "๐Ÿ‘จโ€๐Ÿซ ",
+ ":man_technologist:", "๐Ÿ‘จโ€๐Ÿ’ป ",
+ ":man_with_gua_pi_mao:", "๐Ÿ‘ฒ ",
+ ":man_with_turban:", "๐Ÿ‘ณ ",
+ ":mans_shoe:", "๐Ÿ‘ž ",
+ ":mantelpiece_clock:", "๐Ÿ•ฐ ",
+ ":maple_leaf:", "๐Ÿ ",
+ ":marshall_islands:", "๐Ÿ‡ฒ๐Ÿ‡ญ ",
+ ":martial_arts_uniform:", "๐Ÿฅ‹ ",
+ ":martinique:", "๐Ÿ‡ฒ๐Ÿ‡ถ ",
+ ":mask:", "๐Ÿ˜ท ",
+ ":massage_man:", "๐Ÿ’†โ€โ™‚๏ธ ",
+ ":massage_woman:", "๐Ÿ’† ",
+ ":mauritania:", "๐Ÿ‡ฒ๐Ÿ‡ท ",
+ ":mauritius:", "๐Ÿ‡ฒ๐Ÿ‡บ ",
+ ":mayotte:", "๐Ÿ‡พ๐Ÿ‡น ",
+ ":meat_on_bone:", "๐Ÿ– ",
+ ":medal_military:", "๐ŸŽ– ",
+ ":medal_sports:", "๐Ÿ… ",
+ ":mega:", "๐Ÿ“ฃ ",
+ ":melon:", "๐Ÿˆ ",
+ ":memo:", "๐Ÿ“ ",
+ ":men_wrestling:", "๐Ÿคผโ€โ™‚๏ธ ",
+ ":menorah:", "๐Ÿ•Ž ",
+ ":mens:", "๐Ÿšน ",
+ ":metal:", "๐Ÿค˜ ",
+ ":metro:", "๐Ÿš‡ ",
+ ":mexico:", "๐Ÿ‡ฒ๐Ÿ‡ฝ ",
+ ":micronesia:", "๐Ÿ‡ซ๐Ÿ‡ฒ ",
+ ":microphone:", "๐ŸŽค ",
+ ":microscope:", "๐Ÿ”ฌ ",
+ ":milk_glass:", "๐Ÿฅ› ",
+ ":milky_way:", "๐ŸŒŒ ",
+ ":minibus:", "๐Ÿš ",
+ ":minidisc:", "๐Ÿ’ฝ ",
+ ":mobile_phone_off:", "๐Ÿ“ด ",
+ ":moldova:", "๐Ÿ‡ฒ๐Ÿ‡ฉ ",
+ ":monaco:", "๐Ÿ‡ฒ๐Ÿ‡จ ",
+ ":money_mouth_face:", "๐Ÿค‘ ",
+ ":money_with_wings:", "๐Ÿ’ธ ",
+ ":moneybag:", "๐Ÿ’ฐ ",
+ ":mongolia:", "๐Ÿ‡ฒ๐Ÿ‡ณ ",
+ ":monkey:", "๐Ÿ’ ",
+ ":monkey_face:", "๐Ÿต ",
+ ":monorail:", "๐Ÿš ",
+ ":montenegro:", "๐Ÿ‡ฒ๐Ÿ‡ช ",
+ ":montserrat:", "๐Ÿ‡ฒ๐Ÿ‡ธ ",
+ ":morocco:", "๐Ÿ‡ฒ๐Ÿ‡ฆ ",
+ ":mortar_board:", "๐ŸŽ“ ",
+ ":mosque:", "๐Ÿ•Œ ",
+ ":motor_boat:", "๐Ÿ›ฅ ",
+ ":motor_scooter:", "๐Ÿ›ต ",
+ ":motorcycle:", "๐Ÿ ",
+ ":motorway:", "๐Ÿ›ฃ ",
+ ":mount_fuji:", "๐Ÿ—ป ",
+ ":mountain:", "โ›ฐ ",
+ ":mountain_biking_man:", "๐Ÿšต ",
+ ":mountain_biking_woman:", "๐Ÿšตโ€โ™€๏ธ ",
+ ":mountain_cableway:", "๐Ÿš  ",
+ ":mountain_railway:", "๐Ÿšž ",
+ ":mountain_snow:", "๐Ÿ” ",
+ ":mouse:", "๐Ÿญ ",
+ ":mouse2:", "๐Ÿ ",
+ ":movie_camera:", "๐ŸŽฅ ",
+ ":moyai:", "๐Ÿ—ฟ ",
+ ":mozambique:", "๐Ÿ‡ฒ๐Ÿ‡ฟ ",
+ ":mrs_claus:", "๐Ÿคถ ",
+ ":muscle:", "๐Ÿ’ช ",
+ ":mushroom:", "๐Ÿ„ ",
+ ":musical_keyboard:", "๐ŸŽน ",
+ ":musical_note:", "๐ŸŽต ",
+ ":musical_score:", "๐ŸŽผ ",
+ ":mute:", "๐Ÿ”‡ ",
+ ":myanmar:", "๐Ÿ‡ฒ๐Ÿ‡ฒ ",
+ ":nail_care:", "๐Ÿ’… ",
+ ":name_badge:", "๐Ÿ“› ",
+ ":namibia:", "๐Ÿ‡ณ๐Ÿ‡ฆ ",
+ ":national_park:", "๐Ÿž ",
+ ":nauru:", "๐Ÿ‡ณ๐Ÿ‡ท ",
+ ":nauseated_face:", "๐Ÿคข ",
+ ":neckbeard:", " ",
+ ":necktie:", "๐Ÿ‘” ",
+ ":negative_squared_cross_mark:", "โŽ ",
+ ":nepal:", "๐Ÿ‡ณ๐Ÿ‡ต ",
+ ":nerd_face:", "๐Ÿค“ ",
+ ":netherlands:", "๐Ÿ‡ณ๐Ÿ‡ฑ ",
+ ":neutral_face:", "๐Ÿ˜ ",
+ ":new:", "๐Ÿ†• ",
+ ":new_caledonia:", "๐Ÿ‡ณ๐Ÿ‡จ ",
+ ":new_moon:", "๐ŸŒ‘ ",
+ ":new_moon_with_face:", "๐ŸŒš ",
+ ":new_zealand:", "๐Ÿ‡ณ๐Ÿ‡ฟ ",
+ ":newspaper:", "๐Ÿ“ฐ ",
+ ":newspaper_roll:", "๐Ÿ—ž ",
+ ":next_track_button:", "โญ ",
+ ":ng:", "๐Ÿ†– ",
+ ":nicaragua:", "๐Ÿ‡ณ๐Ÿ‡ฎ ",
+ ":niger:", "๐Ÿ‡ณ๐Ÿ‡ช ",
+ ":nigeria:", "๐Ÿ‡ณ๐Ÿ‡ฌ ",
+ ":night_with_stars:", "๐ŸŒƒ ",
+ ":nine:", "9๏ธโƒฃ ",
+ ":niue:", "๐Ÿ‡ณ๐Ÿ‡บ ",
+ ":no_bell:", "๐Ÿ”• ",
+ ":no_bicycles:", "๐Ÿšณ ",
+ ":no_entry:", "โ›” ",
+ ":no_entry_sign:", "๐Ÿšซ ",
+ ":no_good_man:", "๐Ÿ™…โ€โ™‚๏ธ ",
+ ":no_good_woman:", "๐Ÿ™… ",
+ ":no_mobile_phones:", "๐Ÿ“ต ",
+ ":no_mouth:", "๐Ÿ˜ถ ",
+ ":no_pedestrians:", "๐Ÿšท ",
+ ":no_smoking:", "๐Ÿšญ ",
+ ":non-potable_water:", "๐Ÿšฑ ",
+ ":norfolk_island:", "๐Ÿ‡ณ๐Ÿ‡ซ ",
+ ":north_korea:", "๐Ÿ‡ฐ๐Ÿ‡ต ",
+ ":northern_mariana_islands:", "๐Ÿ‡ฒ๐Ÿ‡ต ",
+ ":norway:", "๐Ÿ‡ณ๐Ÿ‡ด ",
+ ":nose:", "๐Ÿ‘ƒ ",
+ ":notebook:", "๐Ÿ““ ",
+ ":notebook_with_decorative_cover:", "๐Ÿ“” ",
+ ":notes:", "๐ŸŽถ ",
+ ":nut_and_bolt:", "๐Ÿ”ฉ ",
+ ":o:", "โญ• ",
+ ":o2:", "๐Ÿ…พ๏ธ ",
+ ":ocean:", "๐ŸŒŠ ",
+ ":octocat:", " ",
+ ":octopus:", "๐Ÿ™ ",
+ ":oden:", "๐Ÿข ",
+ ":office:", "๐Ÿข ",
+ ":oil_drum:", "๐Ÿ›ข ",
+ ":ok:", "๐Ÿ†— ",
+ ":ok_hand:", "๐Ÿ‘Œ ",
+ ":ok_man:", "๐Ÿ™†โ€โ™‚๏ธ ",
+ ":ok_woman:", "๐Ÿ™† ",
+ ":old_key:", "๐Ÿ— ",
+ ":older_man:", "๐Ÿ‘ด ",
+ ":older_woman:", "๐Ÿ‘ต ",
+ ":om:", "๐Ÿ•‰ ",
+ ":oman:", "๐Ÿ‡ด๐Ÿ‡ฒ ",
+ ":on:", "๐Ÿ”› ",
+ ":oncoming_automobile:", "๐Ÿš˜ ",
+ ":oncoming_bus:", "๐Ÿš ",
+ ":oncoming_police_car:", "๐Ÿš” ",
+ ":oncoming_taxi:", "๐Ÿš– ",
+ ":one:", "1๏ธโƒฃ ",
+ ":open_book:", "๐Ÿ“– ",
+ ":open_file_folder:", "๐Ÿ“‚ ",
+ ":open_hands:", "๐Ÿ‘ ",
+ ":open_mouth:", "๐Ÿ˜ฎ ",
+ ":open_umbrella:", "โ˜‚ ",
+ ":ophiuchus:", "โ›Ž ",
+ ":orange_book:", "๐Ÿ“™ ",
+ ":orthodox_cross:", "โ˜ฆ ",
+ ":outbox_tray:", "๐Ÿ“ค ",
+ ":owl:", "๐Ÿฆ‰ ",
+ ":ox:", "๐Ÿ‚ ",
+ ":package:", "๐Ÿ“ฆ ",
+ ":page_facing_up:", "๐Ÿ“„ ",
+ ":page_with_curl:", "๐Ÿ“ƒ ",
+ ":pager:", "๐Ÿ“Ÿ ",
+ ":paintbrush:", "๐Ÿ–Œ ",
+ ":pakistan:", "๐Ÿ‡ต๐Ÿ‡ฐ ",
+ ":palau:", "๐Ÿ‡ต๐Ÿ‡ผ ",
+ ":palestinian_territories:", "๐Ÿ‡ต๐Ÿ‡ธ ",
+ ":palm_tree:", "๐ŸŒด ",
+ ":panama:", "๐Ÿ‡ต๐Ÿ‡ฆ ",
+ ":pancakes:", "๐Ÿฅž ",
+ ":panda_face:", "๐Ÿผ ",
+ ":paperclip:", "๐Ÿ“Ž ",
+ ":paperclips:", "๐Ÿ–‡ ",
+ ":papua_new_guinea:", "๐Ÿ‡ต๐Ÿ‡ฌ ",
+ ":paraguay:", "๐Ÿ‡ต๐Ÿ‡พ ",
+ ":parasol_on_ground:", "โ›ฑ ",
+ ":parking:", "๐Ÿ…ฟ๏ธ ",
+ ":part_alternation_mark:", "ใ€ฝ๏ธ ",
+ ":partly_sunny:", "โ›… ",
+ ":passenger_ship:", "๐Ÿ›ณ ",
+ ":passport_control:", "๐Ÿ›‚ ",
+ ":pause_button:", "โธ ",
+ ":paw_prints:", "๐Ÿพ ",
+ ":peace_symbol:", "โ˜ฎ ",
+ ":peach:", "๐Ÿ‘ ",
+ ":peanuts:", "๐Ÿฅœ ",
+ ":pear:", "๐Ÿ ",
+ ":pen:", "๐Ÿ–Š ",
+ ":pencil2:", "โœ๏ธ ",
+ ":penguin:", "๐Ÿง ",
+ ":pensive:", "๐Ÿ˜” ",
+ ":performing_arts:", "๐ŸŽญ ",
+ ":persevere:", "๐Ÿ˜ฃ ",
+ ":person_fencing:", "๐Ÿคบ ",
+ ":peru:", "๐Ÿ‡ต๐Ÿ‡ช ",
+ ":philippines:", "๐Ÿ‡ต๐Ÿ‡ญ ",
+ ":phone:", "โ˜Ž๏ธ ",
+ ":pick:", "โ› ",
+ ":pig:", "๐Ÿท ",
+ ":pig2:", "๐Ÿ– ",
+ ":pig_nose:", "๐Ÿฝ ",
+ ":pill:", "๐Ÿ’Š ",
+ ":pineapple:", "๐Ÿ ",
+ ":ping_pong:", "๐Ÿ“ ",
+ ":pisces:", "โ™“ ",
+ ":pitcairn_islands:", "๐Ÿ‡ต๐Ÿ‡ณ ",
+ ":pizza:", "๐Ÿ• ",
+ ":place_of_worship:", "๐Ÿ› ",
+ ":plate_with_cutlery:", "๐Ÿฝ ",
+ ":play_or_pause_button:", "โฏ ",
+ ":point_down:", "๐Ÿ‘‡ ",
+ ":point_left:", "๐Ÿ‘ˆ ",
+ ":point_right:", "๐Ÿ‘‰ ",
+ ":point_up:", "โ˜ ",
+ ":point_up_2:", "๐Ÿ‘† ",
+ ":poland:", "๐Ÿ‡ต๐Ÿ‡ฑ ",
+ ":police_car:", "๐Ÿš“ ",
+ ":policeman:", "๐Ÿ‘ฎ ",
+ ":policewoman:", "๐Ÿ‘ฎโ€โ™€๏ธ ",
+ ":poodle:", "๐Ÿฉ ",
+ ":poop:", "๐Ÿ’ฉ ",
+ ":popcorn:", "๐Ÿฟ ",
+ ":portugal:", "๐Ÿ‡ต๐Ÿ‡น ",
+ ":post_office:", "๐Ÿฃ ",
+ ":postal_horn:", "๐Ÿ“ฏ ",
+ ":postbox:", "๐Ÿ“ฎ ",
+ ":potable_water:", "๐Ÿšฐ ",
+ ":potato:", "๐Ÿฅ” ",
+ ":pouch:", "๐Ÿ‘ ",
+ ":poultry_leg:", "๐Ÿ— ",
+ ":pound:", "๐Ÿ’ท ",
+ ":pouting_cat:", "๐Ÿ˜พ ",
+ ":pouting_man:", "๐Ÿ™Žโ€โ™‚๏ธ ",
+ ":pouting_woman:", "๐Ÿ™Ž ",
+ ":pray:", "๐Ÿ™ ",
+ ":prayer_beads:", "๐Ÿ“ฟ ",
+ ":pregnant_woman:", "๐Ÿคฐ ",
+ ":previous_track_button:", "โฎ ",
+ ":prince:", "๐Ÿคด ",
+ ":princess:", "๐Ÿ‘ธ ",
+ ":printer:", "๐Ÿ–จ ",
+ ":puerto_rico:", "๐Ÿ‡ต๐Ÿ‡ท ",
+ ":purple_heart:", "๐Ÿ’œ ",
+ ":purse:", "๐Ÿ‘› ",
+ ":pushpin:", "๐Ÿ“Œ ",
+ ":put_litter_in_its_place:", "๐Ÿšฎ ",
+ ":qatar:", "๐Ÿ‡ถ๐Ÿ‡ฆ ",
+ ":question:", "โ“ ",
+ ":rabbit:", "๐Ÿฐ ",
+ ":rabbit2:", "๐Ÿ‡ ",
+ ":racehorse:", "๐ŸŽ ",
+ ":racing_car:", "๐ŸŽ ",
+ ":radio:", "๐Ÿ“ป ",
+ ":radio_button:", "๐Ÿ”˜ ",
+ ":radioactive:", "โ˜ข ",
+ ":rage:", "๐Ÿ˜ก ",
+ ":rage1:", " ",
+ ":rage2:", " ",
+ ":rage3:", " ",
+ ":rage4:", " ",
+ ":railway_car:", "๐Ÿšƒ ",
+ ":railway_track:", "๐Ÿ›ค ",
+ ":rainbow:", "๐ŸŒˆ ",
+ ":rainbow_flag:", "๐Ÿณ๏ธโ€๐ŸŒˆ ",
+ ":raised_back_of_hand:", "๐Ÿคš ",
+ ":raised_hand:", "โœ‹ ",
+ ":raised_hand_with_fingers_splayed:", "๐Ÿ– ",
+ ":raised_hands:", "๐Ÿ™Œ ",
+ ":raising_hand_man:", "๐Ÿ™‹โ€โ™‚๏ธ ",
+ ":raising_hand_woman:", "๐Ÿ™‹ ",
+ ":ram:", "๐Ÿ ",
+ ":ramen:", "๐Ÿœ ",
+ ":rat:", "๐Ÿ€ ",
+ ":record_button:", "โบ ",
+ ":recycle:", "โ™ป๏ธ ",
+ ":red_car:", "๐Ÿš— ",
+ ":red_circle:", "๐Ÿ”ด ",
+ ":registered:", "ยฎ๏ธ ",
+ ":relaxed:", "โ˜บ๏ธ ",
+ ":relieved:", "๐Ÿ˜Œ ",
+ ":reminder_ribbon:", "๐ŸŽ— ",
+ ":repeat:", "๐Ÿ” ",
+ ":repeat_one:", "๐Ÿ”‚ ",
+ ":rescue_worker_helmet:", "โ›‘ ",
+ ":restroom:", "๐Ÿšป ",
+ ":reunion:", "๐Ÿ‡ท๐Ÿ‡ช ",
+ ":revolving_hearts:", "๐Ÿ’ž ",
+ ":rewind:", "โช ",
+ ":rhinoceros:", "๐Ÿฆ ",
+ ":ribbon:", "๐ŸŽ€ ",
+ ":rice:", "๐Ÿš ",
+ ":rice_ball:", "๐Ÿ™ ",
+ ":rice_cracker:", "๐Ÿ˜ ",
+ ":rice_scene:", "๐ŸŽ‘ ",
+ ":right_anger_bubble:", "๐Ÿ—ฏ ",
+ ":ring:", "๐Ÿ’ ",
+ ":robot:", "๐Ÿค– ",
+ ":rocket:", "๐Ÿš€ ",
+ ":rofl:", "๐Ÿคฃ ",
+ ":roll_eyes:", "๐Ÿ™„ ",
+ ":roller_coaster:", "๐ŸŽข ",
+ ":romania:", "๐Ÿ‡ท๐Ÿ‡ด ",
+ ":rooster:", "๐Ÿ“ ",
+ ":rose:", "๐ŸŒน ",
+ ":rosette:", "๐Ÿต ",
+ ":rotating_light:", "๐Ÿšจ ",
+ ":round_pushpin:", "๐Ÿ“ ",
+ ":rowing_man:", "๐Ÿšฃ ",
+ ":rowing_woman:", "๐Ÿšฃโ€โ™€๏ธ ",
+ ":ru:", "๐Ÿ‡ท๐Ÿ‡บ ",
+ ":rugby_football:", "๐Ÿ‰ ",
+ ":running_man:", "๐Ÿƒ ",
+ ":running_shirt_with_sash:", "๐ŸŽฝ ",
+ ":running_woman:", "๐Ÿƒโ€โ™€๏ธ ",
+ ":rwanda:", "๐Ÿ‡ท๐Ÿ‡ผ ",
+ ":sa:", "๐Ÿˆ‚๏ธ ",
+ ":sagittarius:", "โ™ ",
+ ":sailboat:", "โ›ต ",
+ ":sake:", "๐Ÿถ ",
+ ":samoa:", "๐Ÿ‡ผ๐Ÿ‡ธ ",
+ ":san_marino:", "๐Ÿ‡ธ๐Ÿ‡ฒ ",
+ ":sandal:", "๐Ÿ‘ก ",
+ ":santa:", "๐ŸŽ… ",
+ ":sao_tome_principe:", "๐Ÿ‡ธ๐Ÿ‡น ",
+ ":satellite:", "๐Ÿ“ก ",
+ ":saudi_arabia:", "๐Ÿ‡ธ๐Ÿ‡ฆ ",
+ ":saxophone:", "๐ŸŽท ",
+ ":school:", "๐Ÿซ ",
+ ":school_satchel:", "๐ŸŽ’ ",
+ ":scissors:", "โœ‚๏ธ ",
+ ":scorpion:", "๐Ÿฆ‚ ",
+ ":scorpius:", "โ™ ",
+ ":scream:", "๐Ÿ˜ฑ ",
+ ":scream_cat:", "๐Ÿ™€ ",
+ ":scroll:", "๐Ÿ“œ ",
+ ":seat:", "๐Ÿ’บ ",
+ ":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:", "๐Ÿšข ",
+ ":shipit:", " ",
+ ":shopping:", "๐Ÿ› ",
+ ":shopping_cart:", "๐Ÿ›’ ",
+ ":shower:", "๐Ÿšฟ ",
+ ":shrimp:", "๐Ÿฆ ",
+ ":sierra_leone:", "๐Ÿ‡ธ๐Ÿ‡ฑ ",
+ ":signal_strength:", "๐Ÿ“ถ ",
+ ":singapore:", "๐Ÿ‡ธ๐Ÿ‡ฌ ",
+ ":sint_maarten:", "๐Ÿ‡ธ๐Ÿ‡ฝ ",
+ ":six:", "6๏ธโƒฃ ",
+ ":six_pointed_star:", "๐Ÿ”ฏ ",
+ ":ski:", "๐ŸŽฟ ",
+ ":skier:", "โ›ท ",
+ ":skull:", "๐Ÿ’€ ",
+ ":skull_and_crossbones:", "โ˜  ",
+ ":sleeping:", "๐Ÿ˜ด ",
+ ":sleeping_bed:", "๐Ÿ›Œ ",
+ ":sleepy:", "๐Ÿ˜ช ",
+ ":slightly_frowning_face:", "๐Ÿ™ ",
+ ":slightly_smiling_face:", "๐Ÿ™‚ ",
+ ":slot_machine:", "๐ŸŽฐ ",
+ ":slovakia:", "๐Ÿ‡ธ๐Ÿ‡ฐ ",
+ ":slovenia:", "๐Ÿ‡ธ๐Ÿ‡ฎ ",
+ ":small_airplane:", "๐Ÿ›ฉ ",
+ ":small_blue_diamond:", "๐Ÿ”น ",
+ ":small_orange_diamond:", "๐Ÿ”ธ ",
+ ":small_red_triangle:", "๐Ÿ”บ ",
+ ":small_red_triangle_down:", "๐Ÿ”ป ",
+ ":smile:", "๐Ÿ˜„ ",
+ ":smile_cat:", "๐Ÿ˜ธ ",
+ ":smiley:", "๐Ÿ˜ƒ ",
+ ":smiley_cat:", "๐Ÿ˜บ ",
+ ":smiling_imp:", "๐Ÿ˜ˆ ",
+ ":smirk:", "๐Ÿ˜ ",
+ ":smirk_cat:", "๐Ÿ˜ผ ",
+ ":smoking:", "๐Ÿšฌ ",
+ ":snail:", "๐ŸŒ ",
+ ":snake:", "๐Ÿ ",
+ ":sneezing_face:", "๐Ÿคง ",
+ ":snowboarder:", "๐Ÿ‚ ",
+ ":snowflake:", "โ„๏ธ ",
+ ":snowman:", "โ›„ ",
+ ":snowman_with_snow:", "โ˜ƒ ",
+ ":sob:", "๐Ÿ˜ญ ",
+ ":soccer:", "โšฝ ",
+ ":solomon_islands:", "๐Ÿ‡ธ๐Ÿ‡ง ",
+ ":somalia:", "๐Ÿ‡ธ๐Ÿ‡ด ",
+ ":soon:", "๐Ÿ”œ ",
+ ":sos:", "๐Ÿ†˜ ",
+ ":sound:", "๐Ÿ”‰ ",
+ ":south_africa:", "๐Ÿ‡ฟ๐Ÿ‡ฆ ",
+ ":south_georgia_south_sandwich_islands:", "๐Ÿ‡ฌ๐Ÿ‡ธ ",
+ ":south_sudan:", "๐Ÿ‡ธ๐Ÿ‡ธ ",
+ ":space_invader:", "๐Ÿ‘พ ",
+ ":spades:", "โ™ ๏ธ ",
+ ":spaghetti:", "๐Ÿ ",
+ ":sparkle:", "โ‡๏ธ ",
+ ":sparkler:", "๐ŸŽ‡ ",
+ ":sparkles:", "โœจ ",
+ ":sparkling_heart:", "๐Ÿ’– ",
+ ":speak_no_evil:", "๐Ÿ™Š ",
+ ":speaker:", "๐Ÿ”ˆ ",
+ ":speaking_head:", "๐Ÿ—ฃ ",
+ ":speech_balloon:", "๐Ÿ’ฌ ",
+ ":speedboat:", "๐Ÿšค ",
+ ":spider:", "๐Ÿ•ท ",
+ ":spider_web:", "๐Ÿ•ธ ",
+ ":spiral_calendar:", "๐Ÿ—“ ",
+ ":spiral_notepad:", "๐Ÿ—’ ",
+ ":spoon:", "๐Ÿฅ„ ",
+ ":squid:", "๐Ÿฆ‘ ",
+ ":sri_lanka:", "๐Ÿ‡ฑ๐Ÿ‡ฐ ",
+ ":st_barthelemy:", "๐Ÿ‡ง๐Ÿ‡ฑ ",
+ ":st_helena:", "๐Ÿ‡ธ๐Ÿ‡ญ ",
+ ":st_kitts_nevis:", "๐Ÿ‡ฐ๐Ÿ‡ณ ",
+ ":st_lucia:", "๐Ÿ‡ฑ๐Ÿ‡จ ",
+ ":st_pierre_miquelon:", "๐Ÿ‡ต๐Ÿ‡ฒ ",
+ ":st_vincent_grenadines:", "๐Ÿ‡ป๐Ÿ‡จ ",
+ ":stadium:", "๐ŸŸ ",
+ ":star:", "โญ ",
+ ":star2:", "๐ŸŒŸ ",
+ ":star_and_crescent:", "โ˜ช ",
+ ":star_of_david:", "โœก ",
+ ":stars:", "๐ŸŒ  ",
+ ":station:", "๐Ÿš‰ ",
+ ":statue_of_liberty:", "๐Ÿ—ฝ ",
+ ":steam_locomotive:", "๐Ÿš‚ ",
+ ":stew:", "๐Ÿฒ ",
+ ":stop_button:", "โน ",
+ ":stop_sign:", "๐Ÿ›‘ ",
+ ":stopwatch:", "โฑ ",
+ ":straight_ruler:", "๐Ÿ“ ",
+ ":strawberry:", "๐Ÿ“ ",
+ ":stuck_out_tongue:", "๐Ÿ˜› ",
+ ":stuck_out_tongue_closed_eyes:", "๐Ÿ˜ ",
+ ":stuck_out_tongue_winking_eye:", "๐Ÿ˜œ ",
+ ":studio_microphone:", "๐ŸŽ™ ",
+ ":stuffed_flatbread:", "๐Ÿฅ™ ",
+ ":sudan:", "๐Ÿ‡ธ๐Ÿ‡ฉ ",
+ ":sun_behind_large_cloud:", "๐ŸŒฅ ",
+ ":sun_behind_rain_cloud:", "๐ŸŒฆ ",
+ ":sun_behind_small_cloud:", "๐ŸŒค ",
+ ":sun_with_face:", "๐ŸŒž ",
+ ":sunflower:", "๐ŸŒป ",
+ ":sunglasses:", "๐Ÿ˜Ž ",
+ ":sunny:", "โ˜€๏ธ ",
+ ":sunrise:", "๐ŸŒ… ",
+ ":sunrise_over_mountains:", "๐ŸŒ„ ",
+ ":surfing_man:", "๐Ÿ„ ",
+ ":surfing_woman:", "๐Ÿ„โ€โ™€๏ธ ",
+ ":suriname:", "๐Ÿ‡ธ๐Ÿ‡ท ",
+ ":sushi:", "๐Ÿฃ ",
+ ":suspect:", " ",
+ ":suspension_railway:", "๐ŸšŸ ",
+ ":swaziland:", "๐Ÿ‡ธ๐Ÿ‡ฟ ",
+ ":sweat:", "๐Ÿ˜“ ",
+ ":sweat_drops:", "๐Ÿ’ฆ ",
+ ":sweat_smile:", "๐Ÿ˜… ",
+ ":sweden:", "๐Ÿ‡ธ๐Ÿ‡ช ",
+ ":sweet_potato:", "๐Ÿ  ",
+ ":swimming_man:", "๐ŸŠ ",
+ ":swimming_woman:", "๐ŸŠโ€โ™€๏ธ ",
+ ":switzerland:", "๐Ÿ‡จ๐Ÿ‡ญ ",
+ ":symbols:", "๐Ÿ”ฃ ",
+ ":synagogue:", "๐Ÿ• ",
+ ":syria:", "๐Ÿ‡ธ๐Ÿ‡พ ",
+ ":syringe:", "๐Ÿ’‰ ",
+ ":taco:", "๐ŸŒฎ ",
+ ":tada:", "๐ŸŽ‰ ",
+ ":taiwan:", "๐Ÿ‡น๐Ÿ‡ผ ",
+ ":tajikistan:", "๐Ÿ‡น๐Ÿ‡ฏ ",
+ ":tanabata_tree:", "๐ŸŽ‹ ",
+ ":tangerine:", "๐ŸŠ ",
+ ":tanzania:", "๐Ÿ‡น๐Ÿ‡ฟ ",
+ ":taurus:", "โ™‰ ",
+ ":taxi:", "๐Ÿš• ",
+ ":tea:", "๐Ÿต ",
+ ":telephone_receiver:", "๐Ÿ“ž ",
+ ":telescope:", "๐Ÿ”ญ ",
+ ":tennis:", "๐ŸŽพ ",
+ ":tent:", "โ›บ ",
+ ":thailand:", "๐Ÿ‡น๐Ÿ‡ญ ",
+ ":thermometer:", "๐ŸŒก ",
+ ":thinking:", "๐Ÿค” ",
+ ":thought_balloon:", "๐Ÿ’ญ ",
+ ":three:", "3๏ธโƒฃ ",
+ ":ticket:", "๐ŸŽซ ",
+ ":tickets:", "๐ŸŽŸ ",
+ ":tiger:", "๐Ÿฏ ",
+ ":tiger2:", "๐Ÿ… ",
+ ":timer_clock:", "โฒ ",
+ ":timor_leste:", "๐Ÿ‡น๐Ÿ‡ฑ ",
+ ":tipping_hand_man:", "๐Ÿ’โ€โ™‚๏ธ ",
+ ":tipping_hand_woman:", "๐Ÿ’ ",
+ ":tired_face:", "๐Ÿ˜ซ ",
+ ":tm:", "โ„ข๏ธ ",
+ ":togo:", "๐Ÿ‡น๐Ÿ‡ฌ ",
+ ":toilet:", "๐Ÿšฝ ",
+ ":tokelau:", "๐Ÿ‡น๐Ÿ‡ฐ ",
+ ":tokyo_tower:", "๐Ÿ—ผ ",
+ ":tomato:", "๐Ÿ… ",
+ ":tonga:", "๐Ÿ‡น๐Ÿ‡ด ",
+ ":tongue:", "๐Ÿ‘… ",
+ ":top:", "๐Ÿ” ",
+ ":tophat:", "๐ŸŽฉ ",
+ ":tornado:", "๐ŸŒช ",
+ ":tr:", "๐Ÿ‡น๐Ÿ‡ท ",
+ ":trackball:", "๐Ÿ–ฒ ",
+ ":tractor:", "๐Ÿšœ ",
+ ":traffic_light:", "๐Ÿšฅ ",
+ ":train:", "๐Ÿš‹ ",
+ ":train2:", "๐Ÿš† ",
+ ":tram:", "๐ŸšŠ ",
+ ":triangular_flag_on_post:", "๐Ÿšฉ ",
+ ":triangular_ruler:", "๐Ÿ“ ",
+ ":trident:", "๐Ÿ”ฑ ",
+ ":trinidad_tobago:", "๐Ÿ‡น๐Ÿ‡น ",
+ ":triumph:", "๐Ÿ˜ค ",
+ ":trolleybus:", "๐ŸšŽ ",
+ ":trollface:", " ",
+ ":trophy:", "๐Ÿ† ",
+ ":tropical_drink:", "๐Ÿน ",
+ ":tropical_fish:", "๐Ÿ  ",
+ ":truck:", "๐Ÿšš ",
+ ":trumpet:", "๐ŸŽบ ",
+ ":tshirt:", "๐Ÿ‘• ",
+ ":tulip:", "๐ŸŒท ",
+ ":tumbler_glass:", "๐Ÿฅƒ ",
+ ":tunisia:", "๐Ÿ‡น๐Ÿ‡ณ ",
+ ":turkey:", "๐Ÿฆƒ ",
+ ":turkmenistan:", "๐Ÿ‡น๐Ÿ‡ฒ ",
+ ":turks_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:", "๐Ÿ‡บ๐Ÿ‡ฌ ",
+ ":uk:", "๐Ÿ‡ฌ๐Ÿ‡ง ",
+ ":ukraine:", "๐Ÿ‡บ๐Ÿ‡ฆ ",
+ ":umbrella:", "โ˜” ",
+ ":unamused:", "๐Ÿ˜’ ",
+ ":underage:", "๐Ÿ”ž ",
+ ":unicorn:", "๐Ÿฆ„ ",
+ ":united_arab_emirates:", "๐Ÿ‡ฆ๐Ÿ‡ช ",
+ ":unlock:", "๐Ÿ”“ ",
+ ":up:", "๐Ÿ†™ ",
+ ":upside_down_face:", "๐Ÿ™ƒ ",
+ ":uruguay:", "๐Ÿ‡บ๐Ÿ‡พ ",
+ ":us:", "๐Ÿ‡บ๐Ÿ‡ธ ",
+ ":us_virgin_islands:", "๐Ÿ‡ป๐Ÿ‡ฎ ",
+ ":uzbekistan:", "๐Ÿ‡บ๐Ÿ‡ฟ ",
+ ":v:", "โœŒ ",
+ ":vanuatu:", "๐Ÿ‡ป๐Ÿ‡บ ",
+ ":vatican_city:", "๐Ÿ‡ป๐Ÿ‡ฆ ",
+ ":venezuela:", "๐Ÿ‡ป๐Ÿ‡ช ",
+ ":vertical_traffic_light:", "๐Ÿšฆ ",
+ ":vhs:", "๐Ÿ“ผ ",
+ ":vibration_mode:", "๐Ÿ“ณ ",
+ ":video_camera:", "๐Ÿ“น ",
+ ":video_game:", "๐ŸŽฎ ",
+ ":vietnam:", "๐Ÿ‡ป๐Ÿ‡ณ ",
+ ":violin:", "๐ŸŽป ",
+ ":virgo:", "โ™ ",
+ ":volcano:", "๐ŸŒ‹ ",
+ ":volleyball:", "๐Ÿ ",
+ ":vs:", "๐Ÿ†š ",
+ ":vulcan_salute:", "๐Ÿ–– ",
+ ":walking_man:", "๐Ÿšถ ",
+ ":walking_woman:", "๐Ÿšถโ€โ™€๏ธ ",
+ ":wallis_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:", "๐Ÿ’’ ",
+ ":weight_lifting_man:", "๐Ÿ‹ ",
+ ":weight_lifting_woman:", "๐Ÿ‹๏ธโ€โ™€๏ธ ",
+ ":western_sahara:", "๐Ÿ‡ช๐Ÿ‡ญ ",
+ ":whale:", "๐Ÿณ ",
+ ":whale2:", "๐Ÿ‹ ",
+ ":wheel_of_dharma:", "โ˜ธ ",
+ ":wheelchair:", "โ™ฟ ",
+ ":white_check_mark:", "โœ… ",
+ ":white_circle:", "โšช ",
+ ":white_flag:", "๐Ÿณ ",
+ ":white_flower:", "๐Ÿ’ฎ ",
+ ":white_large_square:", "โฌœ ",
+ ":white_medium_small_square:", "โ—ฝ ",
+ ":white_medium_square:", "โ—ป๏ธ ",
+ ":white_small_square:", "โ–ซ๏ธ ",
+ ":white_square_button:", "๐Ÿ”ณ ",
+ ":wilted_flower:", "๐Ÿฅ€ ",
+ ":wind_chime:", "๐ŸŽ ",
+ ":wind_face:", "๐ŸŒฌ ",
+ ":wine_glass:", "๐Ÿท ",
+ ":wink:", "๐Ÿ˜‰ ",
+ ":wolf:", "๐Ÿบ ",
+ ":woman:", "๐Ÿ‘ฉ ",
+ ":woman_artist:", "๐Ÿ‘ฉโ€๐ŸŽจ ",
+ ":woman_astronaut:", "๐Ÿ‘ฉโ€๐Ÿš€ ",
+ ":woman_cartwheeling:", "๐Ÿคธโ€โ™€๏ธ ",
+ ":woman_cook:", "๐Ÿ‘ฉโ€๐Ÿณ ",
+ ":woman_facepalming:", "๐Ÿคฆโ€โ™€๏ธ ",
+ ":woman_factory_worker:", "๐Ÿ‘ฉโ€๐Ÿญ ",
+ ":woman_farmer:", "๐Ÿ‘ฉโ€๐ŸŒพ ",
+ ":woman_firefighter:", "๐Ÿ‘ฉโ€๐Ÿš’ ",
+ ":woman_health_worker:", "๐Ÿ‘ฉโ€โš•๏ธ ",
+ ":woman_judge:", "๐Ÿ‘ฉโ€โš–๏ธ ",
+ ":woman_juggling:", "๐Ÿคนโ€โ™€๏ธ ",
+ ":woman_mechanic:", "๐Ÿ‘ฉโ€๐Ÿ”ง ",
+ ":woman_office_worker:", "๐Ÿ‘ฉโ€๐Ÿ’ผ ",
+ ":woman_pilot:", "๐Ÿ‘ฉโ€โœˆ๏ธ ",
+ ":woman_playing_handball:", "๐Ÿคพโ€โ™€๏ธ ",
+ ":woman_playing_water_polo:", "๐Ÿคฝโ€โ™€๏ธ ",
+ ":woman_scientist:", "๐Ÿ‘ฉโ€๐Ÿ”ฌ ",
+ ":woman_shrugging:", "๐Ÿคท ",
+ ":woman_singer:", "๐Ÿ‘ฉโ€๐ŸŽค ",
+ ":woman_student:", "๐Ÿ‘ฉโ€๐ŸŽ“ ",
+ ":woman_teacher:", "๐Ÿ‘ฉโ€๐Ÿซ ",
+ ":woman_technologist:", "๐Ÿ‘ฉโ€๐Ÿ’ป ",
+ ":woman_with_turban:", "๐Ÿ‘ณโ€โ™€๏ธ ",
+ ":womans_clothes:", "๐Ÿ‘š ",
+ ":womans_hat:", "๐Ÿ‘’ ",
+ ":women_wrestling:", "๐Ÿคผโ€โ™€๏ธ ",
+ ":womens:", "๐Ÿšบ ",
+ ":world_map:", "๐Ÿ—บ ",
+ ":worried:", "๐Ÿ˜Ÿ ",
+ ":wrench:", "๐Ÿ”ง ",
+ ":writing_hand:", "โœ ",
+ ":x:", "โŒ ",
+ ":yellow_heart:", "๐Ÿ’› ",
+ ":yemen:", "๐Ÿ‡พ๐Ÿ‡ช ",
+ ":yen:", "๐Ÿ’ด ",
+ ":yin_yang:", "โ˜ฏ ",
+ ":yum:", "๐Ÿ˜‹ ",
+ ":zambia:", "๐Ÿ‡ฟ๐Ÿ‡ฒ ",
+ ":zap:", "โšก ",
+ ":zero:", "0๏ธโƒฃ ",
+ ":zimbabwe:", "๐Ÿ‡ฟ๐Ÿ‡ผ ",
+ ":zipper_mouth_face:", "๐Ÿค ",
+ ":zzz:", "๐Ÿ’ค ",
+)
diff --git a/vendor/manifest b/vendor/manifest
index 9c40d006..4d8bbd2b 100644
--- a/vendor/manifest
+++ b/vendor/manifest
@@ -417,6 +417,14 @@
"notests": true
},
{
+ "importpath": "github.com/peterhellberg/emojilib",
+ "repository": "https://github.com/peterhellberg/emojilib",
+ "vcs": "git",
+ "revision": "41920917e2710c9f0ec22d29db182f60e7ed9d11",
+ "branch": "master",
+ "notests": true
+ },
+ {
"importpath": "github.com/peterhellberg/giphy",
"repository": "https://github.com/peterhellberg/giphy",
"vcs": "",