├── README.md ├── after └── plugin │ └── cmp_emoji.lua └── lua └── cmp_emoji ├── emoji.json ├── init.lua ├── items.lua └── update.lua /README.md: -------------------------------------------------------------------------------- 1 | # cmp-emoji 2 | 3 | nvim-cmp source for emojis. 4 | 5 | # Setup 6 | 7 | ```lua 8 | require'cmp'.setup { 9 | sources = { 10 | { name = 'emoji' } 11 | } 12 | } 13 | ``` 14 | 15 | # Option 16 | 17 | #### insert (type: boolean) 18 | 19 | Speficy emoji should be insert or not. 20 | 21 | Default: `false` 22 | 23 | -------------------------------------------------------------------------------- /after/plugin/cmp_emoji.lua: -------------------------------------------------------------------------------- 1 | require'cmp'.register_source('emoji', require'cmp_emoji'.new()) 2 | 3 | -------------------------------------------------------------------------------- /lua/cmp_emoji/init.lua: -------------------------------------------------------------------------------- 1 | local source = {} 2 | 3 | source.new = function() 4 | local self = setmetatable({}, { __index = source }) 5 | self.commit_items = nil 6 | self.insert_items = nil 7 | return self 8 | end 9 | 10 | source.get_trigger_characters = function() 11 | return { ':' } 12 | end 13 | 14 | source.get_keyword_pattern = function() 15 | return [=[\%([[:space:]"'`]\|^\)\zs:[[:alnum:]_\-\+]*:\?]=] 16 | end 17 | 18 | source.complete = function(self, params, callback) 19 | -- Avoid unexpected completion. 20 | if not vim.regex(self.get_keyword_pattern() .. '$'):match_str(params.context.cursor_before_line) then 21 | return callback() 22 | end 23 | 24 | if self:option(params).insert then 25 | if not self.insert_items then 26 | self.insert_items = vim.tbl_map(function(item) 27 | item.word = nil 28 | return item 29 | end, require('cmp_emoji.items')()) 30 | end 31 | callback(self.insert_items) 32 | else 33 | if not self.commit_items then 34 | self.commit_items = require('cmp_emoji.items')() 35 | end 36 | callback(self.commit_items) 37 | end 38 | end 39 | 40 | source.option = function(_, params) 41 | return vim.tbl_extend('force', { 42 | insert = false, 43 | }, params.option) 44 | end 45 | 46 | return source 47 | 48 | -------------------------------------------------------------------------------- /lua/cmp_emoji/items.lua: -------------------------------------------------------------------------------- 1 | return function() return { 2 | { word = ':hash:'; label = '#️⃣ :hash:'; insertText = '#️⃣'; filterText = ':hash:' }; 3 | { word = ':keycap_star:'; label = '*️⃣ :keycap_star:'; insertText = '*️⃣'; filterText = ':keycap_star:' }; 4 | { word = ':zero:'; label = '0️⃣ :zero:'; insertText = '0️⃣'; filterText = ':zero:' }; 5 | { word = ':one:'; label = '1️⃣ :one:'; insertText = '1️⃣'; filterText = ':one:' }; 6 | { word = ':two:'; label = '2️⃣ :two:'; insertText = '2️⃣'; filterText = ':two:' }; 7 | { word = ':three:'; label = '3️⃣ :three:'; insertText = '3️⃣'; filterText = ':three:' }; 8 | { word = ':four:'; label = '4️⃣ :four:'; insertText = '4️⃣'; filterText = ':four:' }; 9 | { word = ':five:'; label = '5️⃣ :five:'; insertText = '5️⃣'; filterText = ':five:' }; 10 | { word = ':six:'; label = '6️⃣ :six:'; insertText = '6️⃣'; filterText = ':six:' }; 11 | { word = ':seven:'; label = '7️⃣ :seven:'; insertText = '7️⃣'; filterText = ':seven:' }; 12 | { word = ':eight:'; label = '8️⃣ :eight:'; insertText = '8️⃣'; filterText = ':eight:' }; 13 | { word = ':nine:'; label = '9️⃣ :nine:'; insertText = '9️⃣'; filterText = ':nine:' }; 14 | { word = ':copyright:'; label = '©️ :copyright:'; insertText = '©️'; filterText = ':copyright:' }; 15 | { word = ':registered:'; label = '®️ :registered:'; insertText = '®️'; filterText = ':registered:' }; 16 | { word = ':mahjong:'; label = '🀄 :mahjong:'; insertText = '🀄'; filterText = ':mahjong:' }; 17 | { word = ':black_joker:'; label = '🃏 :black_joker:'; insertText = '🃏'; filterText = ':black_joker:' }; 18 | { word = ':a:'; label = '🅰️ :a:'; insertText = '🅰️'; filterText = ':a:' }; 19 | { word = ':b:'; label = '🅱️ :b:'; insertText = '🅱️'; filterText = ':b:' }; 20 | { word = ':o2:'; label = '🅾️ :o2:'; insertText = '🅾️'; filterText = ':o2:' }; 21 | { word = ':parking:'; label = '🅿️ :parking:'; insertText = '🅿️'; filterText = ':parking:' }; 22 | { word = ':ab:'; label = '🆎 :ab:'; insertText = '🆎'; filterText = ':ab:' }; 23 | { word = ':cl:'; label = '🆑 :cl:'; insertText = '🆑'; filterText = ':cl:' }; 24 | { word = ':cool:'; label = '🆒 :cool:'; insertText = '🆒'; filterText = ':cool:' }; 25 | { word = ':free:'; label = '🆓 :free:'; insertText = '🆓'; filterText = ':free:' }; 26 | { word = ':id:'; label = '🆔 :id:'; insertText = '🆔'; filterText = ':id:' }; 27 | { word = ':new:'; label = '🆕 :new:'; insertText = '🆕'; filterText = ':new:' }; 28 | { word = ':ng:'; label = '🆖 :ng:'; insertText = '🆖'; filterText = ':ng:' }; 29 | { word = ':ok:'; label = '🆗 :ok:'; insertText = '🆗'; filterText = ':ok:' }; 30 | { word = ':sos:'; label = '🆘 :sos:'; insertText = '🆘'; filterText = ':sos:' }; 31 | { word = ':up:'; label = '🆙 :up:'; insertText = '🆙'; filterText = ':up:' }; 32 | { word = ':vs:'; label = '🆚 :vs:'; insertText = '🆚'; filterText = ':vs:' }; 33 | { word = ':koko:'; label = '🈁 :koko:'; insertText = '🈁'; filterText = ':koko:' }; 34 | { word = ':sa:'; label = '🈂️ :sa:'; insertText = '🈂️'; filterText = ':sa:' }; 35 | { word = ':u7121:'; label = '🈚 :u7121:'; insertText = '🈚'; filterText = ':u7121:' }; 36 | { word = ':u6307:'; label = '🈯 :u6307:'; insertText = '🈯'; filterText = ':u6307:' }; 37 | { word = ':u7981:'; label = '🈲 :u7981:'; insertText = '🈲'; filterText = ':u7981:' }; 38 | { word = ':u7a7a:'; label = '🈳 :u7a7a:'; insertText = '🈳'; filterText = ':u7a7a:' }; 39 | { word = ':u5408:'; label = '🈴 :u5408:'; insertText = '🈴'; filterText = ':u5408:' }; 40 | { word = ':u6e80:'; label = '🈵 :u6e80:'; insertText = '🈵'; filterText = ':u6e80:' }; 41 | { word = ':u6709:'; label = '🈶 :u6709:'; insertText = '🈶'; filterText = ':u6709:' }; 42 | { word = ':u6708:'; label = '🈷️ :u6708:'; insertText = '🈷️'; filterText = ':u6708:' }; 43 | { word = ':u7533:'; label = '🈸 :u7533:'; insertText = '🈸'; filterText = ':u7533:' }; 44 | { word = ':u5272:'; label = '🈹 :u5272:'; insertText = '🈹'; filterText = ':u5272:' }; 45 | { word = ':u55b6:'; label = '🈺 :u55b6:'; insertText = '🈺'; filterText = ':u55b6:' }; 46 | { word = ':ideograph_advantage:'; label = '🉐 :ideograph_advantage:'; insertText = '🉐'; filterText = ':ideograph_advantage:' }; 47 | { word = ':accept:'; label = '🉑 :accept:'; insertText = '🉑'; filterText = ':accept:' }; 48 | { word = ':cyclone:'; label = '🌀 :cyclone:'; insertText = '🌀'; filterText = ':cyclone:' }; 49 | { word = ':foggy:'; label = '🌁 :foggy:'; insertText = '🌁'; filterText = ':foggy:' }; 50 | { word = ':closed_umbrella:'; label = '🌂 :closed_umbrella:'; insertText = '🌂'; filterText = ':closed_umbrella:' }; 51 | { word = ':night_with_stars:'; label = '🌃 :night_with_stars:'; insertText = '🌃'; filterText = ':night_with_stars:' }; 52 | { word = ':sunrise_over_mountains:'; label = '🌄 :sunrise_over_mountains:'; insertText = '🌄'; filterText = ':sunrise_over_mountains:' }; 53 | { word = ':sunrise:'; label = '🌅 :sunrise:'; insertText = '🌅'; filterText = ':sunrise:' }; 54 | { word = ':city_sunset:'; label = '🌆 :city_sunset:'; insertText = '🌆'; filterText = ':city_sunset:' }; 55 | { word = ':city_sunrise:'; label = '🌇 :city_sunrise:'; insertText = '🌇'; filterText = ':city_sunrise:' }; 56 | { word = ':rainbow:'; label = '🌈 :rainbow:'; insertText = '🌈'; filterText = ':rainbow:' }; 57 | { word = ':bridge_at_night:'; label = '🌉 :bridge_at_night:'; insertText = '🌉'; filterText = ':bridge_at_night:' }; 58 | { word = ':ocean:'; label = '🌊 :ocean:'; insertText = '🌊'; filterText = ':ocean:' }; 59 | { word = ':volcano:'; label = '🌋 :volcano:'; insertText = '🌋'; filterText = ':volcano:' }; 60 | { word = ':milky_way:'; label = '🌌 :milky_way:'; insertText = '🌌'; filterText = ':milky_way:' }; 61 | { word = ':earth_africa:'; label = '🌍 :earth_africa:'; insertText = '🌍'; filterText = ':earth_africa:' }; 62 | { word = ':earth_americas:'; label = '🌎 :earth_americas:'; insertText = '🌎'; filterText = ':earth_americas:' }; 63 | { word = ':earth_asia:'; label = '🌏 :earth_asia:'; insertText = '🌏'; filterText = ':earth_asia:' }; 64 | { word = ':globe_with_meridians:'; label = '🌐 :globe_with_meridians:'; insertText = '🌐'; filterText = ':globe_with_meridians:' }; 65 | { word = ':new_moon:'; label = '🌑 :new_moon:'; insertText = '🌑'; filterText = ':new_moon:' }; 66 | { word = ':waxing_crescent_moon:'; label = '🌒 :waxing_crescent_moon:'; insertText = '🌒'; filterText = ':waxing_crescent_moon:' }; 67 | { word = ':first_quarter_moon:'; label = '🌓 :first_quarter_moon:'; insertText = '🌓'; filterText = ':first_quarter_moon:' }; 68 | { word = ':moon:'; label = '🌔 :moon:'; insertText = '🌔'; filterText = ':moon:' }; 69 | { word = ':waxing_gibbous_moon:'; label = '🌔 :waxing_gibbous_moon:'; insertText = '🌔'; filterText = ':waxing_gibbous_moon:' }; 70 | { word = ':full_moon:'; label = '🌕 :full_moon:'; insertText = '🌕'; filterText = ':full_moon:' }; 71 | { word = ':waning_gibbous_moon:'; label = '🌖 :waning_gibbous_moon:'; insertText = '🌖'; filterText = ':waning_gibbous_moon:' }; 72 | { word = ':last_quarter_moon:'; label = '🌗 :last_quarter_moon:'; insertText = '🌗'; filterText = ':last_quarter_moon:' }; 73 | { word = ':waning_crescent_moon:'; label = '🌘 :waning_crescent_moon:'; insertText = '🌘'; filterText = ':waning_crescent_moon:' }; 74 | { word = ':crescent_moon:'; label = '🌙 :crescent_moon:'; insertText = '🌙'; filterText = ':crescent_moon:' }; 75 | { word = ':new_moon_with_face:'; label = '🌚 :new_moon_with_face:'; insertText = '🌚'; filterText = ':new_moon_with_face:' }; 76 | { word = ':first_quarter_moon_with_face:'; label = '🌛 :first_quarter_moon_with_face:'; insertText = '🌛'; filterText = ':first_quarter_moon_with_face:' }; 77 | { word = ':last_quarter_moon_with_face:'; label = '🌜 :last_quarter_moon_with_face:'; insertText = '🌜'; filterText = ':last_quarter_moon_with_face:' }; 78 | { word = ':full_moon_with_face:'; label = '🌝 :full_moon_with_face:'; insertText = '🌝'; filterText = ':full_moon_with_face:' }; 79 | { word = ':sun_with_face:'; label = '🌞 :sun_with_face:'; insertText = '🌞'; filterText = ':sun_with_face:' }; 80 | { word = ':star2:'; label = '🌟 :star2:'; insertText = '🌟'; filterText = ':star2:' }; 81 | { word = ':stars:'; label = '🌠 :stars:'; insertText = '🌠'; filterText = ':stars:' }; 82 | { word = ':thermometer:'; label = '🌡️ :thermometer:'; insertText = '🌡️'; filterText = ':thermometer:' }; 83 | { word = ':mostly_sunny:'; label = '🌤️ :mostly_sunny:'; insertText = '🌤️'; filterText = ':mostly_sunny:' }; 84 | { word = ':sun_small_cloud:'; label = '🌤️ :sun_small_cloud:'; insertText = '🌤️'; filterText = ':sun_small_cloud:' }; 85 | { word = ':barely_sunny:'; label = '🌥️ :barely_sunny:'; insertText = '🌥️'; filterText = ':barely_sunny:' }; 86 | { word = ':sun_behind_cloud:'; label = '🌥️ :sun_behind_cloud:'; insertText = '🌥️'; filterText = ':sun_behind_cloud:' }; 87 | { word = ':partly_sunny_rain:'; label = '🌦️ :partly_sunny_rain:'; insertText = '🌦️'; filterText = ':partly_sunny_rain:' }; 88 | { word = ':sun_behind_rain_cloud:'; label = '🌦️ :sun_behind_rain_cloud:'; insertText = '🌦️'; filterText = ':sun_behind_rain_cloud:' }; 89 | { word = ':rain_cloud:'; label = '🌧️ :rain_cloud:'; insertText = '🌧️'; filterText = ':rain_cloud:' }; 90 | { word = ':snow_cloud:'; label = '🌨️ :snow_cloud:'; insertText = '🌨️'; filterText = ':snow_cloud:' }; 91 | { word = ':lightning:'; label = '🌩️ :lightning:'; insertText = '🌩️'; filterText = ':lightning:' }; 92 | { word = ':lightning_cloud:'; label = '🌩️ :lightning_cloud:'; insertText = '🌩️'; filterText = ':lightning_cloud:' }; 93 | { word = ':tornado:'; label = '🌪️ :tornado:'; insertText = '🌪️'; filterText = ':tornado:' }; 94 | { word = ':tornado_cloud:'; label = '🌪️ :tornado_cloud:'; insertText = '🌪️'; filterText = ':tornado_cloud:' }; 95 | { word = ':fog:'; label = '🌫️ :fog:'; insertText = '🌫️'; filterText = ':fog:' }; 96 | { word = ':wind_blowing_face:'; label = '🌬️ :wind_blowing_face:'; insertText = '🌬️'; filterText = ':wind_blowing_face:' }; 97 | { word = ':hotdog:'; label = '🌭 :hotdog:'; insertText = '🌭'; filterText = ':hotdog:' }; 98 | { word = ':taco:'; label = '🌮 :taco:'; insertText = '🌮'; filterText = ':taco:' }; 99 | { word = ':burrito:'; label = '🌯 :burrito:'; insertText = '🌯'; filterText = ':burrito:' }; 100 | { word = ':chestnut:'; label = '🌰 :chestnut:'; insertText = '🌰'; filterText = ':chestnut:' }; 101 | { word = ':seedling:'; label = '🌱 :seedling:'; insertText = '🌱'; filterText = ':seedling:' }; 102 | { word = ':evergreen_tree:'; label = '🌲 :evergreen_tree:'; insertText = '🌲'; filterText = ':evergreen_tree:' }; 103 | { word = ':deciduous_tree:'; label = '🌳 :deciduous_tree:'; insertText = '🌳'; filterText = ':deciduous_tree:' }; 104 | { word = ':palm_tree:'; label = '🌴 :palm_tree:'; insertText = '🌴'; filterText = ':palm_tree:' }; 105 | { word = ':cactus:'; label = '🌵 :cactus:'; insertText = '🌵'; filterText = ':cactus:' }; 106 | { word = ':hot_pepper:'; label = '🌶️ :hot_pepper:'; insertText = '🌶️'; filterText = ':hot_pepper:' }; 107 | { word = ':tulip:'; label = '🌷 :tulip:'; insertText = '🌷'; filterText = ':tulip:' }; 108 | { word = ':cherry_blossom:'; label = '🌸 :cherry_blossom:'; insertText = '🌸'; filterText = ':cherry_blossom:' }; 109 | { word = ':rose:'; label = '🌹 :rose:'; insertText = '🌹'; filterText = ':rose:' }; 110 | { word = ':hibiscus:'; label = '🌺 :hibiscus:'; insertText = '🌺'; filterText = ':hibiscus:' }; 111 | { word = ':sunflower:'; label = '🌻 :sunflower:'; insertText = '🌻'; filterText = ':sunflower:' }; 112 | { word = ':blossom:'; label = '🌼 :blossom:'; insertText = '🌼'; filterText = ':blossom:' }; 113 | { word = ':corn:'; label = '🌽 :corn:'; insertText = '🌽'; filterText = ':corn:' }; 114 | { word = ':ear_of_rice:'; label = '🌾 :ear_of_rice:'; insertText = '🌾'; filterText = ':ear_of_rice:' }; 115 | { word = ':herb:'; label = '🌿 :herb:'; insertText = '🌿'; filterText = ':herb:' }; 116 | { word = ':four_leaf_clover:'; label = '🍀 :four_leaf_clover:'; insertText = '🍀'; filterText = ':four_leaf_clover:' }; 117 | { word = ':maple_leaf:'; label = '🍁 :maple_leaf:'; insertText = '🍁'; filterText = ':maple_leaf:' }; 118 | { word = ':fallen_leaf:'; label = '🍂 :fallen_leaf:'; insertText = '🍂'; filterText = ':fallen_leaf:' }; 119 | { word = ':leaves:'; label = '🍃 :leaves:'; insertText = '🍃'; filterText = ':leaves:' }; 120 | { word = ':mushroom:'; label = '🍄 :mushroom:'; insertText = '🍄'; filterText = ':mushroom:' }; 121 | { word = ':tomato:'; label = '🍅 :tomato:'; insertText = '🍅'; filterText = ':tomato:' }; 122 | { word = ':eggplant:'; label = '🍆 :eggplant:'; insertText = '🍆'; filterText = ':eggplant:' }; 123 | { word = ':grapes:'; label = '🍇 :grapes:'; insertText = '🍇'; filterText = ':grapes:' }; 124 | { word = ':melon:'; label = '🍈 :melon:'; insertText = '🍈'; filterText = ':melon:' }; 125 | { word = ':watermelon:'; label = '🍉 :watermelon:'; insertText = '🍉'; filterText = ':watermelon:' }; 126 | { word = ':tangerine:'; label = '🍊 :tangerine:'; insertText = '🍊'; filterText = ':tangerine:' }; 127 | { word = ':lemon:'; label = '🍋 :lemon:'; insertText = '🍋'; filterText = ':lemon:' }; 128 | { word = ':banana:'; label = '🍌 :banana:'; insertText = '🍌'; filterText = ':banana:' }; 129 | { word = ':pineapple:'; label = '🍍 :pineapple:'; insertText = '🍍'; filterText = ':pineapple:' }; 130 | { word = ':apple:'; label = '🍎 :apple:'; insertText = '🍎'; filterText = ':apple:' }; 131 | { word = ':green_apple:'; label = '🍏 :green_apple:'; insertText = '🍏'; filterText = ':green_apple:' }; 132 | { word = ':pear:'; label = '🍐 :pear:'; insertText = '🍐'; filterText = ':pear:' }; 133 | { word = ':peach:'; label = '🍑 :peach:'; insertText = '🍑'; filterText = ':peach:' }; 134 | { word = ':cherries:'; label = '🍒 :cherries:'; insertText = '🍒'; filterText = ':cherries:' }; 135 | { word = ':strawberry:'; label = '🍓 :strawberry:'; insertText = '🍓'; filterText = ':strawberry:' }; 136 | { word = ':hamburger:'; label = '🍔 :hamburger:'; insertText = '🍔'; filterText = ':hamburger:' }; 137 | { word = ':pizza:'; label = '🍕 :pizza:'; insertText = '🍕'; filterText = ':pizza:' }; 138 | { word = ':meat_on_bone:'; label = '🍖 :meat_on_bone:'; insertText = '🍖'; filterText = ':meat_on_bone:' }; 139 | { word = ':poultry_leg:'; label = '🍗 :poultry_leg:'; insertText = '🍗'; filterText = ':poultry_leg:' }; 140 | { word = ':rice_cracker:'; label = '🍘 :rice_cracker:'; insertText = '🍘'; filterText = ':rice_cracker:' }; 141 | { word = ':rice_ball:'; label = '🍙 :rice_ball:'; insertText = '🍙'; filterText = ':rice_ball:' }; 142 | { word = ':rice:'; label = '🍚 :rice:'; insertText = '🍚'; filterText = ':rice:' }; 143 | { word = ':curry:'; label = '🍛 :curry:'; insertText = '🍛'; filterText = ':curry:' }; 144 | { word = ':ramen:'; label = '🍜 :ramen:'; insertText = '🍜'; filterText = ':ramen:' }; 145 | { word = ':spaghetti:'; label = '🍝 :spaghetti:'; insertText = '🍝'; filterText = ':spaghetti:' }; 146 | { word = ':bread:'; label = '🍞 :bread:'; insertText = '🍞'; filterText = ':bread:' }; 147 | { word = ':fries:'; label = '🍟 :fries:'; insertText = '🍟'; filterText = ':fries:' }; 148 | { word = ':sweet_potato:'; label = '🍠 :sweet_potato:'; insertText = '🍠'; filterText = ':sweet_potato:' }; 149 | { word = ':dango:'; label = '🍡 :dango:'; insertText = '🍡'; filterText = ':dango:' }; 150 | { word = ':oden:'; label = '🍢 :oden:'; insertText = '🍢'; filterText = ':oden:' }; 151 | { word = ':sushi:'; label = '🍣 :sushi:'; insertText = '🍣'; filterText = ':sushi:' }; 152 | { word = ':fried_shrimp:'; label = '🍤 :fried_shrimp:'; insertText = '🍤'; filterText = ':fried_shrimp:' }; 153 | { word = ':fish_cake:'; label = '🍥 :fish_cake:'; insertText = '🍥'; filterText = ':fish_cake:' }; 154 | { word = ':icecream:'; label = '🍦 :icecream:'; insertText = '🍦'; filterText = ':icecream:' }; 155 | { word = ':shaved_ice:'; label = '🍧 :shaved_ice:'; insertText = '🍧'; filterText = ':shaved_ice:' }; 156 | { word = ':ice_cream:'; label = '🍨 :ice_cream:'; insertText = '🍨'; filterText = ':ice_cream:' }; 157 | { word = ':doughnut:'; label = '🍩 :doughnut:'; insertText = '🍩'; filterText = ':doughnut:' }; 158 | { word = ':cookie:'; label = '🍪 :cookie:'; insertText = '🍪'; filterText = ':cookie:' }; 159 | { word = ':chocolate_bar:'; label = '🍫 :chocolate_bar:'; insertText = '🍫'; filterText = ':chocolate_bar:' }; 160 | { word = ':candy:'; label = '🍬 :candy:'; insertText = '🍬'; filterText = ':candy:' }; 161 | { word = ':lollipop:'; label = '🍭 :lollipop:'; insertText = '🍭'; filterText = ':lollipop:' }; 162 | { word = ':custard:'; label = '🍮 :custard:'; insertText = '🍮'; filterText = ':custard:' }; 163 | { word = ':honey_pot:'; label = '🍯 :honey_pot:'; insertText = '🍯'; filterText = ':honey_pot:' }; 164 | { word = ':cake:'; label = '🍰 :cake:'; insertText = '🍰'; filterText = ':cake:' }; 165 | { word = ':bento:'; label = '🍱 :bento:'; insertText = '🍱'; filterText = ':bento:' }; 166 | { word = ':stew:'; label = '🍲 :stew:'; insertText = '🍲'; filterText = ':stew:' }; 167 | { word = ':fried_egg:'; label = '🍳 :fried_egg:'; insertText = '🍳'; filterText = ':fried_egg:' }; 168 | { word = ':cooking:'; label = '🍳 :cooking:'; insertText = '🍳'; filterText = ':cooking:' }; 169 | { word = ':fork_and_knife:'; label = '🍴 :fork_and_knife:'; insertText = '🍴'; filterText = ':fork_and_knife:' }; 170 | { word = ':tea:'; label = '🍵 :tea:'; insertText = '🍵'; filterText = ':tea:' }; 171 | { word = ':sake:'; label = '🍶 :sake:'; insertText = '🍶'; filterText = ':sake:' }; 172 | { word = ':wine_glass:'; label = '🍷 :wine_glass:'; insertText = '🍷'; filterText = ':wine_glass:' }; 173 | { word = ':cocktail:'; label = '🍸 :cocktail:'; insertText = '🍸'; filterText = ':cocktail:' }; 174 | { word = ':tropical_drink:'; label = '🍹 :tropical_drink:'; insertText = '🍹'; filterText = ':tropical_drink:' }; 175 | { word = ':beer:'; label = '🍺 :beer:'; insertText = '🍺'; filterText = ':beer:' }; 176 | { word = ':beers:'; label = '🍻 :beers:'; insertText = '🍻'; filterText = ':beers:' }; 177 | { word = ':baby_bottle:'; label = '🍼 :baby_bottle:'; insertText = '🍼'; filterText = ':baby_bottle:' }; 178 | { word = ':knife_fork_plate:'; label = '🍽️ :knife_fork_plate:'; insertText = '🍽️'; filterText = ':knife_fork_plate:' }; 179 | { word = ':champagne:'; label = '🍾 :champagne:'; insertText = '🍾'; filterText = ':champagne:' }; 180 | { word = ':popcorn:'; label = '🍿 :popcorn:'; insertText = '🍿'; filterText = ':popcorn:' }; 181 | { word = ':ribbon:'; label = '🎀 :ribbon:'; insertText = '🎀'; filterText = ':ribbon:' }; 182 | { word = ':gift:'; label = '🎁 :gift:'; insertText = '🎁'; filterText = ':gift:' }; 183 | { word = ':birthday:'; label = '🎂 :birthday:'; insertText = '🎂'; filterText = ':birthday:' }; 184 | { word = ':jack_o_lantern:'; label = '🎃 :jack_o_lantern:'; insertText = '🎃'; filterText = ':jack_o_lantern:' }; 185 | { word = ':christmas_tree:'; label = '🎄 :christmas_tree:'; insertText = '🎄'; filterText = ':christmas_tree:' }; 186 | { word = ':santa:'; label = '🎅 :santa:'; insertText = '🎅'; filterText = ':santa:' }; 187 | { word = ':fireworks:'; label = '🎆 :fireworks:'; insertText = '🎆'; filterText = ':fireworks:' }; 188 | { word = ':sparkler:'; label = '🎇 :sparkler:'; insertText = '🎇'; filterText = ':sparkler:' }; 189 | { word = ':balloon:'; label = '🎈 :balloon:'; insertText = '🎈'; filterText = ':balloon:' }; 190 | { word = ':tada:'; label = '🎉 :tada:'; insertText = '🎉'; filterText = ':tada:' }; 191 | { word = ':confetti_ball:'; label = '🎊 :confetti_ball:'; insertText = '🎊'; filterText = ':confetti_ball:' }; 192 | { word = ':tanabata_tree:'; label = '🎋 :tanabata_tree:'; insertText = '🎋'; filterText = ':tanabata_tree:' }; 193 | { word = ':crossed_flags:'; label = '🎌 :crossed_flags:'; insertText = '🎌'; filterText = ':crossed_flags:' }; 194 | { word = ':bamboo:'; label = '🎍 :bamboo:'; insertText = '🎍'; filterText = ':bamboo:' }; 195 | { word = ':dolls:'; label = '🎎 :dolls:'; insertText = '🎎'; filterText = ':dolls:' }; 196 | { word = ':flags:'; label = '🎏 :flags:'; insertText = '🎏'; filterText = ':flags:' }; 197 | { word = ':wind_chime:'; label = '🎐 :wind_chime:'; insertText = '🎐'; filterText = ':wind_chime:' }; 198 | { word = ':rice_scene:'; label = '🎑 :rice_scene:'; insertText = '🎑'; filterText = ':rice_scene:' }; 199 | { word = ':school_satchel:'; label = '🎒 :school_satchel:'; insertText = '🎒'; filterText = ':school_satchel:' }; 200 | { word = ':mortar_board:'; label = '🎓 :mortar_board:'; insertText = '🎓'; filterText = ':mortar_board:' }; 201 | { word = ':medal:'; label = '🎖️ :medal:'; insertText = '🎖️'; filterText = ':medal:' }; 202 | { word = ':reminder_ribbon:'; label = '🎗️ :reminder_ribbon:'; insertText = '🎗️'; filterText = ':reminder_ribbon:' }; 203 | { word = ':studio_microphone:'; label = '🎙️ :studio_microphone:'; insertText = '🎙️'; filterText = ':studio_microphone:' }; 204 | { word = ':level_slider:'; label = '🎚️ :level_slider:'; insertText = '🎚️'; filterText = ':level_slider:' }; 205 | { word = ':control_knobs:'; label = '🎛️ :control_knobs:'; insertText = '🎛️'; filterText = ':control_knobs:' }; 206 | { word = ':film_frames:'; label = '🎞️ :film_frames:'; insertText = '🎞️'; filterText = ':film_frames:' }; 207 | { word = ':admission_tickets:'; label = '🎟️ :admission_tickets:'; insertText = '🎟️'; filterText = ':admission_tickets:' }; 208 | { word = ':carousel_horse:'; label = '🎠 :carousel_horse:'; insertText = '🎠'; filterText = ':carousel_horse:' }; 209 | { word = ':ferris_wheel:'; label = '🎡 :ferris_wheel:'; insertText = '🎡'; filterText = ':ferris_wheel:' }; 210 | { word = ':roller_coaster:'; label = '🎢 :roller_coaster:'; insertText = '🎢'; filterText = ':roller_coaster:' }; 211 | { word = ':fishing_pole_and_fish:'; label = '🎣 :fishing_pole_and_fish:'; insertText = '🎣'; filterText = ':fishing_pole_and_fish:' }; 212 | { word = ':microphone:'; label = '🎤 :microphone:'; insertText = '🎤'; filterText = ':microphone:' }; 213 | { word = ':movie_camera:'; label = '🎥 :movie_camera:'; insertText = '🎥'; filterText = ':movie_camera:' }; 214 | { word = ':cinema:'; label = '🎦 :cinema:'; insertText = '🎦'; filterText = ':cinema:' }; 215 | { word = ':headphones:'; label = '🎧 :headphones:'; insertText = '🎧'; filterText = ':headphones:' }; 216 | { word = ':art:'; label = '🎨 :art:'; insertText = '🎨'; filterText = ':art:' }; 217 | { word = ':tophat:'; label = '🎩 :tophat:'; insertText = '🎩'; filterText = ':tophat:' }; 218 | { word = ':circus_tent:'; label = '🎪 :circus_tent:'; insertText = '🎪'; filterText = ':circus_tent:' }; 219 | { word = ':ticket:'; label = '🎫 :ticket:'; insertText = '🎫'; filterText = ':ticket:' }; 220 | { word = ':clapper:'; label = '🎬 :clapper:'; insertText = '🎬'; filterText = ':clapper:' }; 221 | { word = ':performing_arts:'; label = '🎭 :performing_arts:'; insertText = '🎭'; filterText = ':performing_arts:' }; 222 | { word = ':video_game:'; label = '🎮 :video_game:'; insertText = '🎮'; filterText = ':video_game:' }; 223 | { word = ':dart:'; label = '🎯 :dart:'; insertText = '🎯'; filterText = ':dart:' }; 224 | { word = ':slot_machine:'; label = '🎰 :slot_machine:'; insertText = '🎰'; filterText = ':slot_machine:' }; 225 | { word = ':8ball:'; label = '🎱 :8ball:'; insertText = '🎱'; filterText = ':8ball:' }; 226 | { word = ':game_die:'; label = '🎲 :game_die:'; insertText = '🎲'; filterText = ':game_die:' }; 227 | { word = ':bowling:'; label = '🎳 :bowling:'; insertText = '🎳'; filterText = ':bowling:' }; 228 | { word = ':flower_playing_cards:'; label = '🎴 :flower_playing_cards:'; insertText = '🎴'; filterText = ':flower_playing_cards:' }; 229 | { word = ':musical_note:'; label = '🎵 :musical_note:'; insertText = '🎵'; filterText = ':musical_note:' }; 230 | { word = ':notes:'; label = '🎶 :notes:'; insertText = '🎶'; filterText = ':notes:' }; 231 | { word = ':saxophone:'; label = '🎷 :saxophone:'; insertText = '🎷'; filterText = ':saxophone:' }; 232 | { word = ':guitar:'; label = '🎸 :guitar:'; insertText = '🎸'; filterText = ':guitar:' }; 233 | { word = ':musical_keyboard:'; label = '🎹 :musical_keyboard:'; insertText = '🎹'; filterText = ':musical_keyboard:' }; 234 | { word = ':trumpet:'; label = '🎺 :trumpet:'; insertText = '🎺'; filterText = ':trumpet:' }; 235 | { word = ':violin:'; label = '🎻 :violin:'; insertText = '🎻'; filterText = ':violin:' }; 236 | { word = ':musical_score:'; label = '🎼 :musical_score:'; insertText = '🎼'; filterText = ':musical_score:' }; 237 | { word = ':running_shirt_with_sash:'; label = '🎽 :running_shirt_with_sash:'; insertText = '🎽'; filterText = ':running_shirt_with_sash:' }; 238 | { word = ':tennis:'; label = '🎾 :tennis:'; insertText = '🎾'; filterText = ':tennis:' }; 239 | { word = ':ski:'; label = '🎿 :ski:'; insertText = '🎿'; filterText = ':ski:' }; 240 | { word = ':basketball:'; label = '🏀 :basketball:'; insertText = '🏀'; filterText = ':basketball:' }; 241 | { word = ':checkered_flag:'; label = '🏁 :checkered_flag:'; insertText = '🏁'; filterText = ':checkered_flag:' }; 242 | { word = ':snowboarder:'; label = '🏂 :snowboarder:'; insertText = '🏂'; filterText = ':snowboarder:' }; 243 | { word = ':runner:'; label = '🏃 :runner:'; insertText = '🏃'; filterText = ':runner:' }; 244 | { word = ':running:'; label = '🏃 :running:'; insertText = '🏃'; filterText = ':running:' }; 245 | { word = ':surfer:'; label = '🏄 :surfer:'; insertText = '🏄'; filterText = ':surfer:' }; 246 | { word = ':sports_medal:'; label = '🏅 :sports_medal:'; insertText = '🏅'; filterText = ':sports_medal:' }; 247 | { word = ':trophy:'; label = '🏆 :trophy:'; insertText = '🏆'; filterText = ':trophy:' }; 248 | { word = ':horse_racing:'; label = '🏇 :horse_racing:'; insertText = '🏇'; filterText = ':horse_racing:' }; 249 | { word = ':football:'; label = '🏈 :football:'; insertText = '🏈'; filterText = ':football:' }; 250 | { word = ':rugby_football:'; label = '🏉 :rugby_football:'; insertText = '🏉'; filterText = ':rugby_football:' }; 251 | { word = ':swimmer:'; label = '🏊 :swimmer:'; insertText = '🏊'; filterText = ':swimmer:' }; 252 | { word = ':weight_lifter:'; label = '🏋️ :weight_lifter:'; insertText = '🏋️'; filterText = ':weight_lifter:' }; 253 | { word = ':golfer:'; label = '🏌️ :golfer:'; insertText = '🏌️'; filterText = ':golfer:' }; 254 | { word = ':racing_motorcycle:'; label = '🏍️ :racing_motorcycle:'; insertText = '🏍️'; filterText = ':racing_motorcycle:' }; 255 | { word = ':racing_car:'; label = '🏎️ :racing_car:'; insertText = '🏎️'; filterText = ':racing_car:' }; 256 | { word = ':cricket_bat_and_ball:'; label = '🏏 :cricket_bat_and_ball:'; insertText = '🏏'; filterText = ':cricket_bat_and_ball:' }; 257 | { word = ':volleyball:'; label = '🏐 :volleyball:'; insertText = '🏐'; filterText = ':volleyball:' }; 258 | { word = ':field_hockey_stick_and_ball:'; label = '🏑 :field_hockey_stick_and_ball:'; insertText = '🏑'; filterText = ':field_hockey_stick_and_ball:' }; 259 | { word = ':ice_hockey_stick_and_puck:'; label = '🏒 :ice_hockey_stick_and_puck:'; insertText = '🏒'; filterText = ':ice_hockey_stick_and_puck:' }; 260 | { word = ':table_tennis_paddle_and_ball:'; label = '🏓 :table_tennis_paddle_and_ball:'; insertText = '🏓'; filterText = ':table_tennis_paddle_and_ball:' }; 261 | { word = ':snow_capped_mountain:'; label = '🏔️ :snow_capped_mountain:'; insertText = '🏔️'; filterText = ':snow_capped_mountain:' }; 262 | { word = ':camping:'; label = '🏕️ :camping:'; insertText = '🏕️'; filterText = ':camping:' }; 263 | { word = ':beach_with_umbrella:'; label = '🏖️ :beach_with_umbrella:'; insertText = '🏖️'; filterText = ':beach_with_umbrella:' }; 264 | { word = ':building_construction:'; label = '🏗️ :building_construction:'; insertText = '🏗️'; filterText = ':building_construction:' }; 265 | { word = ':house_buildings:'; label = '🏘️ :house_buildings:'; insertText = '🏘️'; filterText = ':house_buildings:' }; 266 | { word = ':cityscape:'; label = '🏙️ :cityscape:'; insertText = '🏙️'; filterText = ':cityscape:' }; 267 | { word = ':derelict_house_building:'; label = '🏚️ :derelict_house_building:'; insertText = '🏚️'; filterText = ':derelict_house_building:' }; 268 | { word = ':classical_building:'; label = '🏛️ :classical_building:'; insertText = '🏛️'; filterText = ':classical_building:' }; 269 | { word = ':desert:'; label = '🏜️ :desert:'; insertText = '🏜️'; filterText = ':desert:' }; 270 | { word = ':desert_island:'; label = '🏝️ :desert_island:'; insertText = '🏝️'; filterText = ':desert_island:' }; 271 | { word = ':national_park:'; label = '🏞️ :national_park:'; insertText = '🏞️'; filterText = ':national_park:' }; 272 | { word = ':stadium:'; label = '🏟️ :stadium:'; insertText = '🏟️'; filterText = ':stadium:' }; 273 | { word = ':house:'; label = '🏠 :house:'; insertText = '🏠'; filterText = ':house:' }; 274 | { word = ':house_with_garden:'; label = '🏡 :house_with_garden:'; insertText = '🏡'; filterText = ':house_with_garden:' }; 275 | { word = ':office:'; label = '🏢 :office:'; insertText = '🏢'; filterText = ':office:' }; 276 | { word = ':post_office:'; label = '🏣 :post_office:'; insertText = '🏣'; filterText = ':post_office:' }; 277 | { word = ':european_post_office:'; label = '🏤 :european_post_office:'; insertText = '🏤'; filterText = ':european_post_office:' }; 278 | { word = ':hospital:'; label = '🏥 :hospital:'; insertText = '🏥'; filterText = ':hospital:' }; 279 | { word = ':bank:'; label = '🏦 :bank:'; insertText = '🏦'; filterText = ':bank:' }; 280 | { word = ':atm:'; label = '🏧 :atm:'; insertText = '🏧'; filterText = ':atm:' }; 281 | { word = ':hotel:'; label = '🏨 :hotel:'; insertText = '🏨'; filterText = ':hotel:' }; 282 | { word = ':love_hotel:'; label = '🏩 :love_hotel:'; insertText = '🏩'; filterText = ':love_hotel:' }; 283 | { word = ':convenience_store:'; label = '🏪 :convenience_store:'; insertText = '🏪'; filterText = ':convenience_store:' }; 284 | { word = ':school:'; label = '🏫 :school:'; insertText = '🏫'; filterText = ':school:' }; 285 | { word = ':department_store:'; label = '🏬 :department_store:'; insertText = '🏬'; filterText = ':department_store:' }; 286 | { word = ':factory:'; label = '🏭 :factory:'; insertText = '🏭'; filterText = ':factory:' }; 287 | { word = ':izakaya_lantern:'; label = '🏮 :izakaya_lantern:'; insertText = '🏮'; filterText = ':izakaya_lantern:' }; 288 | { word = ':lantern:'; label = '🏮 :lantern:'; insertText = '🏮'; filterText = ':lantern:' }; 289 | { word = ':japanese_castle:'; label = '🏯 :japanese_castle:'; insertText = '🏯'; filterText = ':japanese_castle:' }; 290 | { word = ':european_castle:'; label = '🏰 :european_castle:'; insertText = '🏰'; filterText = ':european_castle:' }; 291 | { word = ':waving_white_flag:'; label = '🏳️ :waving_white_flag:'; insertText = '🏳️'; filterText = ':waving_white_flag:' }; 292 | { word = ':waving_black_flag:'; label = '🏴 :waving_black_flag:'; insertText = '🏴'; filterText = ':waving_black_flag:' }; 293 | { word = ':rosette:'; label = '🏵️ :rosette:'; insertText = '🏵️'; filterText = ':rosette:' }; 294 | { word = ':label:'; label = '🏷️ :label:'; insertText = '🏷️'; filterText = ':label:' }; 295 | { word = ':badminton_racquet_and_shuttlecock:'; label = '🏸 :badminton_racquet_and_shuttlecock:'; insertText = '🏸'; filterText = ':badminton_racquet_and_shuttlecock:' }; 296 | { word = ':bow_and_arrow:'; label = '🏹 :bow_and_arrow:'; insertText = '🏹'; filterText = ':bow_and_arrow:' }; 297 | { word = ':amphora:'; label = '🏺 :amphora:'; insertText = '🏺'; filterText = ':amphora:' }; 298 | { word = ':skin-tone-2:'; label = '🏻 :skin-tone-2:'; insertText = '🏻'; filterText = ':skin-tone-2:' }; 299 | { word = ':skin-tone-3:'; label = '🏼 :skin-tone-3:'; insertText = '🏼'; filterText = ':skin-tone-3:' }; 300 | { word = ':skin-tone-4:'; label = '🏽 :skin-tone-4:'; insertText = '🏽'; filterText = ':skin-tone-4:' }; 301 | { word = ':skin-tone-5:'; label = '🏾 :skin-tone-5:'; insertText = '🏾'; filterText = ':skin-tone-5:' }; 302 | { word = ':skin-tone-6:'; label = '🏿 :skin-tone-6:'; insertText = '🏿'; filterText = ':skin-tone-6:' }; 303 | { word = ':rat:'; label = '🐀 :rat:'; insertText = '🐀'; filterText = ':rat:' }; 304 | { word = ':mouse2:'; label = '🐁 :mouse2:'; insertText = '🐁'; filterText = ':mouse2:' }; 305 | { word = ':ox:'; label = '🐂 :ox:'; insertText = '🐂'; filterText = ':ox:' }; 306 | { word = ':water_buffalo:'; label = '🐃 :water_buffalo:'; insertText = '🐃'; filterText = ':water_buffalo:' }; 307 | { word = ':cow2:'; label = '🐄 :cow2:'; insertText = '🐄'; filterText = ':cow2:' }; 308 | { word = ':tiger2:'; label = '🐅 :tiger2:'; insertText = '🐅'; filterText = ':tiger2:' }; 309 | { word = ':leopard:'; label = '🐆 :leopard:'; insertText = '🐆'; filterText = ':leopard:' }; 310 | { word = ':rabbit2:'; label = '🐇 :rabbit2:'; insertText = '🐇'; filterText = ':rabbit2:' }; 311 | { word = ':cat2:'; label = '🐈 :cat2:'; insertText = '🐈'; filterText = ':cat2:' }; 312 | { word = ':dragon:'; label = '🐉 :dragon:'; insertText = '🐉'; filterText = ':dragon:' }; 313 | { word = ':crocodile:'; label = '🐊 :crocodile:'; insertText = '🐊'; filterText = ':crocodile:' }; 314 | { word = ':whale2:'; label = '🐋 :whale2:'; insertText = '🐋'; filterText = ':whale2:' }; 315 | { word = ':snail:'; label = '🐌 :snail:'; insertText = '🐌'; filterText = ':snail:' }; 316 | { word = ':snake:'; label = '🐍 :snake:'; insertText = '🐍'; filterText = ':snake:' }; 317 | { word = ':racehorse:'; label = '🐎 :racehorse:'; insertText = '🐎'; filterText = ':racehorse:' }; 318 | { word = ':ram:'; label = '🐏 :ram:'; insertText = '🐏'; filterText = ':ram:' }; 319 | { word = ':goat:'; label = '🐐 :goat:'; insertText = '🐐'; filterText = ':goat:' }; 320 | { word = ':sheep:'; label = '🐑 :sheep:'; insertText = '🐑'; filterText = ':sheep:' }; 321 | { word = ':monkey:'; label = '🐒 :monkey:'; insertText = '🐒'; filterText = ':monkey:' }; 322 | { word = ':rooster:'; label = '🐓 :rooster:'; insertText = '🐓'; filterText = ':rooster:' }; 323 | { word = ':chicken:'; label = '🐔 :chicken:'; insertText = '🐔'; filterText = ':chicken:' }; 324 | { word = ':dog2:'; label = '🐕 :dog2:'; insertText = '🐕'; filterText = ':dog2:' }; 325 | { word = ':pig2:'; label = '🐖 :pig2:'; insertText = '🐖'; filterText = ':pig2:' }; 326 | { word = ':boar:'; label = '🐗 :boar:'; insertText = '🐗'; filterText = ':boar:' }; 327 | { word = ':elephant:'; label = '🐘 :elephant:'; insertText = '🐘'; filterText = ':elephant:' }; 328 | { word = ':octopus:'; label = '🐙 :octopus:'; insertText = '🐙'; filterText = ':octopus:' }; 329 | { word = ':shell:'; label = '🐚 :shell:'; insertText = '🐚'; filterText = ':shell:' }; 330 | { word = ':bug:'; label = '🐛 :bug:'; insertText = '🐛'; filterText = ':bug:' }; 331 | { word = ':ant:'; label = '🐜 :ant:'; insertText = '🐜'; filterText = ':ant:' }; 332 | { word = ':bee:'; label = '🐝 :bee:'; insertText = '🐝'; filterText = ':bee:' }; 333 | { word = ':honeybee:'; label = '🐝 :honeybee:'; insertText = '🐝'; filterText = ':honeybee:' }; 334 | { word = ':ladybug:'; label = '🐞 :ladybug:'; insertText = '🐞'; filterText = ':ladybug:' }; 335 | { word = ':lady_beetle:'; label = '🐞 :lady_beetle:'; insertText = '🐞'; filterText = ':lady_beetle:' }; 336 | { word = ':fish:'; label = '🐟 :fish:'; insertText = '🐟'; filterText = ':fish:' }; 337 | { word = ':tropical_fish:'; label = '🐠 :tropical_fish:'; insertText = '🐠'; filterText = ':tropical_fish:' }; 338 | { word = ':blowfish:'; label = '🐡 :blowfish:'; insertText = '🐡'; filterText = ':blowfish:' }; 339 | { word = ':turtle:'; label = '🐢 :turtle:'; insertText = '🐢'; filterText = ':turtle:' }; 340 | { word = ':hatching_chick:'; label = '🐣 :hatching_chick:'; insertText = '🐣'; filterText = ':hatching_chick:' }; 341 | { word = ':baby_chick:'; label = '🐤 :baby_chick:'; insertText = '🐤'; filterText = ':baby_chick:' }; 342 | { word = ':hatched_chick:'; label = '🐥 :hatched_chick:'; insertText = '🐥'; filterText = ':hatched_chick:' }; 343 | { word = ':bird:'; label = '🐦 :bird:'; insertText = '🐦'; filterText = ':bird:' }; 344 | { word = ':penguin:'; label = '🐧 :penguin:'; insertText = '🐧'; filterText = ':penguin:' }; 345 | { word = ':koala:'; label = '🐨 :koala:'; insertText = '🐨'; filterText = ':koala:' }; 346 | { word = ':poodle:'; label = '🐩 :poodle:'; insertText = '🐩'; filterText = ':poodle:' }; 347 | { word = ':dromedary_camel:'; label = '🐪 :dromedary_camel:'; insertText = '🐪'; filterText = ':dromedary_camel:' }; 348 | { word = ':camel:'; label = '🐫 :camel:'; insertText = '🐫'; filterText = ':camel:' }; 349 | { word = ':dolphin:'; label = '🐬 :dolphin:'; insertText = '🐬'; filterText = ':dolphin:' }; 350 | { word = ':flipper:'; label = '🐬 :flipper:'; insertText = '🐬'; filterText = ':flipper:' }; 351 | { word = ':mouse:'; label = '🐭 :mouse:'; insertText = '🐭'; filterText = ':mouse:' }; 352 | { word = ':cow:'; label = '🐮 :cow:'; insertText = '🐮'; filterText = ':cow:' }; 353 | { word = ':tiger:'; label = '🐯 :tiger:'; insertText = '🐯'; filterText = ':tiger:' }; 354 | { word = ':rabbit:'; label = '🐰 :rabbit:'; insertText = '🐰'; filterText = ':rabbit:' }; 355 | { word = ':cat:'; label = '🐱 :cat:'; insertText = '🐱'; filterText = ':cat:' }; 356 | { word = ':dragon_face:'; label = '🐲 :dragon_face:'; insertText = '🐲'; filterText = ':dragon_face:' }; 357 | { word = ':whale:'; label = '🐳 :whale:'; insertText = '🐳'; filterText = ':whale:' }; 358 | { word = ':horse:'; label = '🐴 :horse:'; insertText = '🐴'; filterText = ':horse:' }; 359 | { word = ':monkey_face:'; label = '🐵 :monkey_face:'; insertText = '🐵'; filterText = ':monkey_face:' }; 360 | { word = ':dog:'; label = '🐶 :dog:'; insertText = '🐶'; filterText = ':dog:' }; 361 | { word = ':pig:'; label = '🐷 :pig:'; insertText = '🐷'; filterText = ':pig:' }; 362 | { word = ':frog:'; label = '🐸 :frog:'; insertText = '🐸'; filterText = ':frog:' }; 363 | { word = ':hamster:'; label = '🐹 :hamster:'; insertText = '🐹'; filterText = ':hamster:' }; 364 | { word = ':wolf:'; label = '🐺 :wolf:'; insertText = '🐺'; filterText = ':wolf:' }; 365 | { word = ':bear:'; label = '🐻 :bear:'; insertText = '🐻'; filterText = ':bear:' }; 366 | { word = ':panda_face:'; label = '🐼 :panda_face:'; insertText = '🐼'; filterText = ':panda_face:' }; 367 | { word = ':pig_nose:'; label = '🐽 :pig_nose:'; insertText = '🐽'; filterText = ':pig_nose:' }; 368 | { word = ':feet:'; label = '🐾 :feet:'; insertText = '🐾'; filterText = ':feet:' }; 369 | { word = ':paw_prints:'; label = '🐾 :paw_prints:'; insertText = '🐾'; filterText = ':paw_prints:' }; 370 | { word = ':chipmunk:'; label = '🐿️ :chipmunk:'; insertText = '🐿️'; filterText = ':chipmunk:' }; 371 | { word = ':eyes:'; label = '👀 :eyes:'; insertText = '👀'; filterText = ':eyes:' }; 372 | { word = ':eye:'; label = '👁️ :eye:'; insertText = '👁️'; filterText = ':eye:' }; 373 | { word = ':ear:'; label = '👂 :ear:'; insertText = '👂'; filterText = ':ear:' }; 374 | { word = ':nose:'; label = '👃 :nose:'; insertText = '👃'; filterText = ':nose:' }; 375 | { word = ':lips:'; label = '👄 :lips:'; insertText = '👄'; filterText = ':lips:' }; 376 | { word = ':tongue:'; label = '👅 :tongue:'; insertText = '👅'; filterText = ':tongue:' }; 377 | { word = ':point_up_2:'; label = '👆 :point_up_2:'; insertText = '👆'; filterText = ':point_up_2:' }; 378 | { word = ':point_down:'; label = '👇 :point_down:'; insertText = '👇'; filterText = ':point_down:' }; 379 | { word = ':point_left:'; label = '👈 :point_left:'; insertText = '👈'; filterText = ':point_left:' }; 380 | { word = ':point_right:'; label = '👉 :point_right:'; insertText = '👉'; filterText = ':point_right:' }; 381 | { word = ':facepunch:'; label = '👊 :facepunch:'; insertText = '👊'; filterText = ':facepunch:' }; 382 | { word = ':punch:'; label = '👊 :punch:'; insertText = '👊'; filterText = ':punch:' }; 383 | { word = ':wave:'; label = '👋 :wave:'; insertText = '👋'; filterText = ':wave:' }; 384 | { word = ':ok_hand:'; label = '👌 :ok_hand:'; insertText = '👌'; filterText = ':ok_hand:' }; 385 | { word = ':+1:'; label = '👍 :+1:'; insertText = '👍'; filterText = ':+1:' }; 386 | { word = ':thumbsup:'; label = '👍 :thumbsup:'; insertText = '👍'; filterText = ':thumbsup:' }; 387 | { word = ':-1:'; label = '👎 :-1:'; insertText = '👎'; filterText = ':-1:' }; 388 | { word = ':thumbsdown:'; label = '👎 :thumbsdown:'; insertText = '👎'; filterText = ':thumbsdown:' }; 389 | { word = ':clap:'; label = '👏 :clap:'; insertText = '👏'; filterText = ':clap:' }; 390 | { word = ':open_hands:'; label = '👐 :open_hands:'; insertText = '👐'; filterText = ':open_hands:' }; 391 | { word = ':crown:'; label = '👑 :crown:'; insertText = '👑'; filterText = ':crown:' }; 392 | { word = ':womans_hat:'; label = '👒 :womans_hat:'; insertText = '👒'; filterText = ':womans_hat:' }; 393 | { word = ':eyeglasses:'; label = '👓 :eyeglasses:'; insertText = '👓'; filterText = ':eyeglasses:' }; 394 | { word = ':necktie:'; label = '👔 :necktie:'; insertText = '👔'; filterText = ':necktie:' }; 395 | { word = ':shirt:'; label = '👕 :shirt:'; insertText = '👕'; filterText = ':shirt:' }; 396 | { word = ':tshirt:'; label = '👕 :tshirt:'; insertText = '👕'; filterText = ':tshirt:' }; 397 | { word = ':jeans:'; label = '👖 :jeans:'; insertText = '👖'; filterText = ':jeans:' }; 398 | { word = ':dress:'; label = '👗 :dress:'; insertText = '👗'; filterText = ':dress:' }; 399 | { word = ':kimono:'; label = '👘 :kimono:'; insertText = '👘'; filterText = ':kimono:' }; 400 | { word = ':bikini:'; label = '👙 :bikini:'; insertText = '👙'; filterText = ':bikini:' }; 401 | { word = ':womans_clothes:'; label = '👚 :womans_clothes:'; insertText = '👚'; filterText = ':womans_clothes:' }; 402 | { word = ':purse:'; label = '👛 :purse:'; insertText = '👛'; filterText = ':purse:' }; 403 | { word = ':handbag:'; label = '👜 :handbag:'; insertText = '👜'; filterText = ':handbag:' }; 404 | { word = ':pouch:'; label = '👝 :pouch:'; insertText = '👝'; filterText = ':pouch:' }; 405 | { word = ':mans_shoe:'; label = '👞 :mans_shoe:'; insertText = '👞'; filterText = ':mans_shoe:' }; 406 | { word = ':shoe:'; label = '👞 :shoe:'; insertText = '👞'; filterText = ':shoe:' }; 407 | { word = ':athletic_shoe:'; label = '👟 :athletic_shoe:'; insertText = '👟'; filterText = ':athletic_shoe:' }; 408 | { word = ':high_heel:'; label = '👠 :high_heel:'; insertText = '👠'; filterText = ':high_heel:' }; 409 | { word = ':sandal:'; label = '👡 :sandal:'; insertText = '👡'; filterText = ':sandal:' }; 410 | { word = ':boot:'; label = '👢 :boot:'; insertText = '👢'; filterText = ':boot:' }; 411 | { word = ':footprints:'; label = '👣 :footprints:'; insertText = '👣'; filterText = ':footprints:' }; 412 | { word = ':bust_in_silhouette:'; label = '👤 :bust_in_silhouette:'; insertText = '👤'; filterText = ':bust_in_silhouette:' }; 413 | { word = ':busts_in_silhouette:'; label = '👥 :busts_in_silhouette:'; insertText = '👥'; filterText = ':busts_in_silhouette:' }; 414 | { word = ':boy:'; label = '👦 :boy:'; insertText = '👦'; filterText = ':boy:' }; 415 | { word = ':girl:'; label = '👧 :girl:'; insertText = '👧'; filterText = ':girl:' }; 416 | { word = ':man:'; label = '👨 :man:'; insertText = '👨'; filterText = ':man:' }; 417 | { word = ':woman:'; label = '👩 :woman:'; insertText = '👩'; filterText = ':woman:' }; 418 | { word = ':family:'; label = '👪 :family:'; insertText = '👪'; filterText = ':family:' }; 419 | { word = ':man_and_woman_holding_hands:'; label = '👫 :man_and_woman_holding_hands:'; insertText = '👫'; filterText = ':man_and_woman_holding_hands:' }; 420 | { word = ':woman_and_man_holding_hands:'; label = '👫 :woman_and_man_holding_hands:'; insertText = '👫'; filterText = ':woman_and_man_holding_hands:' }; 421 | { word = ':couple:'; label = '👫 :couple:'; insertText = '👫'; filterText = ':couple:' }; 422 | { word = ':two_men_holding_hands:'; label = '👬 :two_men_holding_hands:'; insertText = '👬'; filterText = ':two_men_holding_hands:' }; 423 | { word = ':men_holding_hands:'; label = '👬 :men_holding_hands:'; insertText = '👬'; filterText = ':men_holding_hands:' }; 424 | { word = ':two_women_holding_hands:'; label = '👭 :two_women_holding_hands:'; insertText = '👭'; filterText = ':two_women_holding_hands:' }; 425 | { word = ':women_holding_hands:'; label = '👭 :women_holding_hands:'; insertText = '👭'; filterText = ':women_holding_hands:' }; 426 | { word = ':cop:'; label = '👮 :cop:'; insertText = '👮'; filterText = ':cop:' }; 427 | { word = ':dancers:'; label = '👯 :dancers:'; insertText = '👯'; filterText = ':dancers:' }; 428 | { word = ':bride_with_veil:'; label = '👰 :bride_with_veil:'; insertText = '👰'; filterText = ':bride_with_veil:' }; 429 | { word = ':person_with_blond_hair:'; label = '👱 :person_with_blond_hair:'; insertText = '👱'; filterText = ':person_with_blond_hair:' }; 430 | { word = ':man_with_gua_pi_mao:'; label = '👲 :man_with_gua_pi_mao:'; insertText = '👲'; filterText = ':man_with_gua_pi_mao:' }; 431 | { word = ':man_with_turban:'; label = '👳 :man_with_turban:'; insertText = '👳'; filterText = ':man_with_turban:' }; 432 | { word = ':older_man:'; label = '👴 :older_man:'; insertText = '👴'; filterText = ':older_man:' }; 433 | { word = ':older_woman:'; label = '👵 :older_woman:'; insertText = '👵'; filterText = ':older_woman:' }; 434 | { word = ':baby:'; label = '👶 :baby:'; insertText = '👶'; filterText = ':baby:' }; 435 | { word = ':construction_worker:'; label = '👷 :construction_worker:'; insertText = '👷'; filterText = ':construction_worker:' }; 436 | { word = ':princess:'; label = '👸 :princess:'; insertText = '👸'; filterText = ':princess:' }; 437 | { word = ':japanese_ogre:'; label = '👹 :japanese_ogre:'; insertText = '👹'; filterText = ':japanese_ogre:' }; 438 | { word = ':japanese_goblin:'; label = '👺 :japanese_goblin:'; insertText = '👺'; filterText = ':japanese_goblin:' }; 439 | { word = ':ghost:'; label = '👻 :ghost:'; insertText = '👻'; filterText = ':ghost:' }; 440 | { word = ':angel:'; label = '👼 :angel:'; insertText = '👼'; filterText = ':angel:' }; 441 | { word = ':alien:'; label = '👽 :alien:'; insertText = '👽'; filterText = ':alien:' }; 442 | { word = ':space_invader:'; label = '👾 :space_invader:'; insertText = '👾'; filterText = ':space_invader:' }; 443 | { word = ':imp:'; label = '👿 :imp:'; insertText = '👿'; filterText = ':imp:' }; 444 | { word = ':skull:'; label = '💀 :skull:'; insertText = '💀'; filterText = ':skull:' }; 445 | { word = ':information_desk_person:'; label = '💁 :information_desk_person:'; insertText = '💁'; filterText = ':information_desk_person:' }; 446 | { word = ':guardsman:'; label = '💂 :guardsman:'; insertText = '💂'; filterText = ':guardsman:' }; 447 | { word = ':dancer:'; label = '💃 :dancer:'; insertText = '💃'; filterText = ':dancer:' }; 448 | { word = ':lipstick:'; label = '💄 :lipstick:'; insertText = '💄'; filterText = ':lipstick:' }; 449 | { word = ':nail_care:'; label = '💅 :nail_care:'; insertText = '💅'; filterText = ':nail_care:' }; 450 | { word = ':massage:'; label = '💆 :massage:'; insertText = '💆'; filterText = ':massage:' }; 451 | { word = ':haircut:'; label = '💇 :haircut:'; insertText = '💇'; filterText = ':haircut:' }; 452 | { word = ':barber:'; label = '💈 :barber:'; insertText = '💈'; filterText = ':barber:' }; 453 | { word = ':syringe:'; label = '💉 :syringe:'; insertText = '💉'; filterText = ':syringe:' }; 454 | { word = ':pill:'; label = '💊 :pill:'; insertText = '💊'; filterText = ':pill:' }; 455 | { word = ':kiss:'; label = '💋 :kiss:'; insertText = '💋'; filterText = ':kiss:' }; 456 | { word = ':love_letter:'; label = '💌 :love_letter:'; insertText = '💌'; filterText = ':love_letter:' }; 457 | { word = ':ring:'; label = '💍 :ring:'; insertText = '💍'; filterText = ':ring:' }; 458 | { word = ':gem:'; label = '💎 :gem:'; insertText = '💎'; filterText = ':gem:' }; 459 | { word = ':couplekiss:'; label = '💏 :couplekiss:'; insertText = '💏'; filterText = ':couplekiss:' }; 460 | { word = ':bouquet:'; label = '💐 :bouquet:'; insertText = '💐'; filterText = ':bouquet:' }; 461 | { word = ':couple_with_heart:'; label = '💑 :couple_with_heart:'; insertText = '💑'; filterText = ':couple_with_heart:' }; 462 | { word = ':wedding:'; label = '💒 :wedding:'; insertText = '💒'; filterText = ':wedding:' }; 463 | { word = ':heartbeat:'; label = '💓 :heartbeat:'; insertText = '💓'; filterText = ':heartbeat:' }; 464 | { word = ':broken_heart:'; label = '💔 :broken_heart:'; insertText = '💔'; filterText = ':broken_heart:' }; 465 | { word = ':two_hearts:'; label = '💕 :two_hearts:'; insertText = '💕'; filterText = ':two_hearts:' }; 466 | { word = ':sparkling_heart:'; label = '💖 :sparkling_heart:'; insertText = '💖'; filterText = ':sparkling_heart:' }; 467 | { word = ':heartpulse:'; label = '💗 :heartpulse:'; insertText = '💗'; filterText = ':heartpulse:' }; 468 | { word = ':cupid:'; label = '💘 :cupid:'; insertText = '💘'; filterText = ':cupid:' }; 469 | { word = ':blue_heart:'; label = '💙 :blue_heart:'; insertText = '💙'; filterText = ':blue_heart:' }; 470 | { word = ':green_heart:'; label = '💚 :green_heart:'; insertText = '💚'; filterText = ':green_heart:' }; 471 | { word = ':yellow_heart:'; label = '💛 :yellow_heart:'; insertText = '💛'; filterText = ':yellow_heart:' }; 472 | { word = ':purple_heart:'; label = '💜 :purple_heart:'; insertText = '💜'; filterText = ':purple_heart:' }; 473 | { word = ':gift_heart:'; label = '💝 :gift_heart:'; insertText = '💝'; filterText = ':gift_heart:' }; 474 | { word = ':revolving_hearts:'; label = '💞 :revolving_hearts:'; insertText = '💞'; filterText = ':revolving_hearts:' }; 475 | { word = ':heart_decoration:'; label = '💟 :heart_decoration:'; insertText = '💟'; filterText = ':heart_decoration:' }; 476 | { word = ':diamond_shape_with_a_dot_inside:'; label = '💠 :diamond_shape_with_a_dot_inside:'; insertText = '💠'; filterText = ':diamond_shape_with_a_dot_inside:' }; 477 | { word = ':bulb:'; label = '💡 :bulb:'; insertText = '💡'; filterText = ':bulb:' }; 478 | { word = ':anger:'; label = '💢 :anger:'; insertText = '💢'; filterText = ':anger:' }; 479 | { word = ':bomb:'; label = '💣 :bomb:'; insertText = '💣'; filterText = ':bomb:' }; 480 | { word = ':zzz:'; label = '💤 :zzz:'; insertText = '💤'; filterText = ':zzz:' }; 481 | { word = ':boom:'; label = '💥 :boom:'; insertText = '💥'; filterText = ':boom:' }; 482 | { word = ':collision:'; label = '💥 :collision:'; insertText = '💥'; filterText = ':collision:' }; 483 | { word = ':sweat_drops:'; label = '💦 :sweat_drops:'; insertText = '💦'; filterText = ':sweat_drops:' }; 484 | { word = ':droplet:'; label = '💧 :droplet:'; insertText = '💧'; filterText = ':droplet:' }; 485 | { word = ':dash:'; label = '💨 :dash:'; insertText = '💨'; filterText = ':dash:' }; 486 | { word = ':hankey:'; label = '💩 :hankey:'; insertText = '💩'; filterText = ':hankey:' }; 487 | { word = ':poop:'; label = '💩 :poop:'; insertText = '💩'; filterText = ':poop:' }; 488 | { word = ':shit:'; label = '💩 :shit:'; insertText = '💩'; filterText = ':shit:' }; 489 | { word = ':muscle:'; label = '💪 :muscle:'; insertText = '💪'; filterText = ':muscle:' }; 490 | { word = ':dizzy:'; label = '💫 :dizzy:'; insertText = '💫'; filterText = ':dizzy:' }; 491 | { word = ':speech_balloon:'; label = '💬 :speech_balloon:'; insertText = '💬'; filterText = ':speech_balloon:' }; 492 | { word = ':thought_balloon:'; label = '💭 :thought_balloon:'; insertText = '💭'; filterText = ':thought_balloon:' }; 493 | { word = ':white_flower:'; label = '💮 :white_flower:'; insertText = '💮'; filterText = ':white_flower:' }; 494 | { word = ':100:'; label = '💯 :100:'; insertText = '💯'; filterText = ':100:' }; 495 | { word = ':moneybag:'; label = '💰 :moneybag:'; insertText = '💰'; filterText = ':moneybag:' }; 496 | { word = ':currency_exchange:'; label = '💱 :currency_exchange:'; insertText = '💱'; filterText = ':currency_exchange:' }; 497 | { word = ':heavy_dollar_sign:'; label = '💲 :heavy_dollar_sign:'; insertText = '💲'; filterText = ':heavy_dollar_sign:' }; 498 | { word = ':credit_card:'; label = '💳 :credit_card:'; insertText = '💳'; filterText = ':credit_card:' }; 499 | { word = ':yen:'; label = '💴 :yen:'; insertText = '💴'; filterText = ':yen:' }; 500 | { word = ':dollar:'; label = '💵 :dollar:'; insertText = '💵'; filterText = ':dollar:' }; 501 | { word = ':euro:'; label = '💶 :euro:'; insertText = '💶'; filterText = ':euro:' }; 502 | { word = ':pound:'; label = '💷 :pound:'; insertText = '💷'; filterText = ':pound:' }; 503 | { word = ':money_with_wings:'; label = '💸 :money_with_wings:'; insertText = '💸'; filterText = ':money_with_wings:' }; 504 | { word = ':chart:'; label = '💹 :chart:'; insertText = '💹'; filterText = ':chart:' }; 505 | { word = ':seat:'; label = '💺 :seat:'; insertText = '💺'; filterText = ':seat:' }; 506 | { word = ':computer:'; label = '💻 :computer:'; insertText = '💻'; filterText = ':computer:' }; 507 | { word = ':briefcase:'; label = '💼 :briefcase:'; insertText = '💼'; filterText = ':briefcase:' }; 508 | { word = ':minidisc:'; label = '💽 :minidisc:'; insertText = '💽'; filterText = ':minidisc:' }; 509 | { word = ':floppy_disk:'; label = '💾 :floppy_disk:'; insertText = '💾'; filterText = ':floppy_disk:' }; 510 | { word = ':cd:'; label = '💿 :cd:'; insertText = '💿'; filterText = ':cd:' }; 511 | { word = ':dvd:'; label = '📀 :dvd:'; insertText = '📀'; filterText = ':dvd:' }; 512 | { word = ':file_folder:'; label = '📁 :file_folder:'; insertText = '📁'; filterText = ':file_folder:' }; 513 | { word = ':open_file_folder:'; label = '📂 :open_file_folder:'; insertText = '📂'; filterText = ':open_file_folder:' }; 514 | { word = ':page_with_curl:'; label = '📃 :page_with_curl:'; insertText = '📃'; filterText = ':page_with_curl:' }; 515 | { word = ':page_facing_up:'; label = '📄 :page_facing_up:'; insertText = '📄'; filterText = ':page_facing_up:' }; 516 | { word = ':date:'; label = '📅 :date:'; insertText = '📅'; filterText = ':date:' }; 517 | { word = ':calendar:'; label = '📆 :calendar:'; insertText = '📆'; filterText = ':calendar:' }; 518 | { word = ':card_index:'; label = '📇 :card_index:'; insertText = '📇'; filterText = ':card_index:' }; 519 | { word = ':chart_with_upwards_trend:'; label = '📈 :chart_with_upwards_trend:'; insertText = '📈'; filterText = ':chart_with_upwards_trend:' }; 520 | { word = ':chart_with_downwards_trend:'; label = '📉 :chart_with_downwards_trend:'; insertText = '📉'; filterText = ':chart_with_downwards_trend:' }; 521 | { word = ':bar_chart:'; label = '📊 :bar_chart:'; insertText = '📊'; filterText = ':bar_chart:' }; 522 | { word = ':clipboard:'; label = '📋 :clipboard:'; insertText = '📋'; filterText = ':clipboard:' }; 523 | { word = ':pushpin:'; label = '📌 :pushpin:'; insertText = '📌'; filterText = ':pushpin:' }; 524 | { word = ':round_pushpin:'; label = '📍 :round_pushpin:'; insertText = '📍'; filterText = ':round_pushpin:' }; 525 | { word = ':paperclip:'; label = '📎 :paperclip:'; insertText = '📎'; filterText = ':paperclip:' }; 526 | { word = ':straight_ruler:'; label = '📏 :straight_ruler:'; insertText = '📏'; filterText = ':straight_ruler:' }; 527 | { word = ':triangular_ruler:'; label = '📐 :triangular_ruler:'; insertText = '📐'; filterText = ':triangular_ruler:' }; 528 | { word = ':bookmark_tabs:'; label = '📑 :bookmark_tabs:'; insertText = '📑'; filterText = ':bookmark_tabs:' }; 529 | { word = ':ledger:'; label = '📒 :ledger:'; insertText = '📒'; filterText = ':ledger:' }; 530 | { word = ':notebook:'; label = '📓 :notebook:'; insertText = '📓'; filterText = ':notebook:' }; 531 | { word = ':notebook_with_decorative_cover:'; label = '📔 :notebook_with_decorative_cover:'; insertText = '📔'; filterText = ':notebook_with_decorative_cover:' }; 532 | { word = ':closed_book:'; label = '📕 :closed_book:'; insertText = '📕'; filterText = ':closed_book:' }; 533 | { word = ':book:'; label = '📖 :book:'; insertText = '📖'; filterText = ':book:' }; 534 | { word = ':open_book:'; label = '📖 :open_book:'; insertText = '📖'; filterText = ':open_book:' }; 535 | { word = ':green_book:'; label = '📗 :green_book:'; insertText = '📗'; filterText = ':green_book:' }; 536 | { word = ':blue_book:'; label = '📘 :blue_book:'; insertText = '📘'; filterText = ':blue_book:' }; 537 | { word = ':orange_book:'; label = '📙 :orange_book:'; insertText = '📙'; filterText = ':orange_book:' }; 538 | { word = ':books:'; label = '📚 :books:'; insertText = '📚'; filterText = ':books:' }; 539 | { word = ':name_badge:'; label = '📛 :name_badge:'; insertText = '📛'; filterText = ':name_badge:' }; 540 | { word = ':scroll:'; label = '📜 :scroll:'; insertText = '📜'; filterText = ':scroll:' }; 541 | { word = ':memo:'; label = '📝 :memo:'; insertText = '📝'; filterText = ':memo:' }; 542 | { word = ':pencil:'; label = '📝 :pencil:'; insertText = '📝'; filterText = ':pencil:' }; 543 | { word = ':telephone_receiver:'; label = '📞 :telephone_receiver:'; insertText = '📞'; filterText = ':telephone_receiver:' }; 544 | { word = ':pager:'; label = '📟 :pager:'; insertText = '📟'; filterText = ':pager:' }; 545 | { word = ':fax:'; label = '📠 :fax:'; insertText = '📠'; filterText = ':fax:' }; 546 | { word = ':satellite_antenna:'; label = '📡 :satellite_antenna:'; insertText = '📡'; filterText = ':satellite_antenna:' }; 547 | { word = ':loudspeaker:'; label = '📢 :loudspeaker:'; insertText = '📢'; filterText = ':loudspeaker:' }; 548 | { word = ':mega:'; label = '📣 :mega:'; insertText = '📣'; filterText = ':mega:' }; 549 | { word = ':outbox_tray:'; label = '📤 :outbox_tray:'; insertText = '📤'; filterText = ':outbox_tray:' }; 550 | { word = ':inbox_tray:'; label = '📥 :inbox_tray:'; insertText = '📥'; filterText = ':inbox_tray:' }; 551 | { word = ':package:'; label = '📦 :package:'; insertText = '📦'; filterText = ':package:' }; 552 | { word = ':e-mail:'; label = '📧 :e-mail:'; insertText = '📧'; filterText = ':e-mail:' }; 553 | { word = ':incoming_envelope:'; label = '📨 :incoming_envelope:'; insertText = '📨'; filterText = ':incoming_envelope:' }; 554 | { word = ':envelope_with_arrow:'; label = '📩 :envelope_with_arrow:'; insertText = '📩'; filterText = ':envelope_with_arrow:' }; 555 | { word = ':mailbox_closed:'; label = '📪 :mailbox_closed:'; insertText = '📪'; filterText = ':mailbox_closed:' }; 556 | { word = ':mailbox:'; label = '📫 :mailbox:'; insertText = '📫'; filterText = ':mailbox:' }; 557 | { word = ':mailbox_with_mail:'; label = '📬 :mailbox_with_mail:'; insertText = '📬'; filterText = ':mailbox_with_mail:' }; 558 | { word = ':mailbox_with_no_mail:'; label = '📭 :mailbox_with_no_mail:'; insertText = '📭'; filterText = ':mailbox_with_no_mail:' }; 559 | { word = ':postbox:'; label = '📮 :postbox:'; insertText = '📮'; filterText = ':postbox:' }; 560 | { word = ':postal_horn:'; label = '📯 :postal_horn:'; insertText = '📯'; filterText = ':postal_horn:' }; 561 | { word = ':newspaper:'; label = '📰 :newspaper:'; insertText = '📰'; filterText = ':newspaper:' }; 562 | { word = ':iphone:'; label = '📱 :iphone:'; insertText = '📱'; filterText = ':iphone:' }; 563 | { word = ':calling:'; label = '📲 :calling:'; insertText = '📲'; filterText = ':calling:' }; 564 | { word = ':vibration_mode:'; label = '📳 :vibration_mode:'; insertText = '📳'; filterText = ':vibration_mode:' }; 565 | { word = ':mobile_phone_off:'; label = '📴 :mobile_phone_off:'; insertText = '📴'; filterText = ':mobile_phone_off:' }; 566 | { word = ':no_mobile_phones:'; label = '📵 :no_mobile_phones:'; insertText = '📵'; filterText = ':no_mobile_phones:' }; 567 | { word = ':signal_strength:'; label = '📶 :signal_strength:'; insertText = '📶'; filterText = ':signal_strength:' }; 568 | { word = ':camera:'; label = '📷 :camera:'; insertText = '📷'; filterText = ':camera:' }; 569 | { word = ':camera_with_flash:'; label = '📸 :camera_with_flash:'; insertText = '📸'; filterText = ':camera_with_flash:' }; 570 | { word = ':video_camera:'; label = '📹 :video_camera:'; insertText = '📹'; filterText = ':video_camera:' }; 571 | { word = ':tv:'; label = '📺 :tv:'; insertText = '📺'; filterText = ':tv:' }; 572 | { word = ':radio:'; label = '📻 :radio:'; insertText = '📻'; filterText = ':radio:' }; 573 | { word = ':vhs:'; label = '📼 :vhs:'; insertText = '📼'; filterText = ':vhs:' }; 574 | { word = ':film_projector:'; label = '📽️ :film_projector:'; insertText = '📽️'; filterText = ':film_projector:' }; 575 | { word = ':prayer_beads:'; label = '📿 :prayer_beads:'; insertText = '📿'; filterText = ':prayer_beads:' }; 576 | { word = ':twisted_rightwards_arrows:'; label = '🔀 :twisted_rightwards_arrows:'; insertText = '🔀'; filterText = ':twisted_rightwards_arrows:' }; 577 | { word = ':repeat:'; label = '🔁 :repeat:'; insertText = '🔁'; filterText = ':repeat:' }; 578 | { word = ':repeat_one:'; label = '🔂 :repeat_one:'; insertText = '🔂'; filterText = ':repeat_one:' }; 579 | { word = ':arrows_clockwise:'; label = '🔃 :arrows_clockwise:'; insertText = '🔃'; filterText = ':arrows_clockwise:' }; 580 | { word = ':arrows_counterclockwise:'; label = '🔄 :arrows_counterclockwise:'; insertText = '🔄'; filterText = ':arrows_counterclockwise:' }; 581 | { word = ':low_brightness:'; label = '🔅 :low_brightness:'; insertText = '🔅'; filterText = ':low_brightness:' }; 582 | { word = ':high_brightness:'; label = '🔆 :high_brightness:'; insertText = '🔆'; filterText = ':high_brightness:' }; 583 | { word = ':mute:'; label = '🔇 :mute:'; insertText = '🔇'; filterText = ':mute:' }; 584 | { word = ':speaker:'; label = '🔈 :speaker:'; insertText = '🔈'; filterText = ':speaker:' }; 585 | { word = ':sound:'; label = '🔉 :sound:'; insertText = '🔉'; filterText = ':sound:' }; 586 | { word = ':loud_sound:'; label = '🔊 :loud_sound:'; insertText = '🔊'; filterText = ':loud_sound:' }; 587 | { word = ':battery:'; label = '🔋 :battery:'; insertText = '🔋'; filterText = ':battery:' }; 588 | { word = ':electric_plug:'; label = '🔌 :electric_plug:'; insertText = '🔌'; filterText = ':electric_plug:' }; 589 | { word = ':mag:'; label = '🔍 :mag:'; insertText = '🔍'; filterText = ':mag:' }; 590 | { word = ':mag_right:'; label = '🔎 :mag_right:'; insertText = '🔎'; filterText = ':mag_right:' }; 591 | { word = ':lock_with_ink_pen:'; label = '🔏 :lock_with_ink_pen:'; insertText = '🔏'; filterText = ':lock_with_ink_pen:' }; 592 | { word = ':closed_lock_with_key:'; label = '🔐 :closed_lock_with_key:'; insertText = '🔐'; filterText = ':closed_lock_with_key:' }; 593 | { word = ':key:'; label = '🔑 :key:'; insertText = '🔑'; filterText = ':key:' }; 594 | { word = ':lock:'; label = '🔒 :lock:'; insertText = '🔒'; filterText = ':lock:' }; 595 | { word = ':unlock:'; label = '🔓 :unlock:'; insertText = '🔓'; filterText = ':unlock:' }; 596 | { word = ':bell:'; label = '🔔 :bell:'; insertText = '🔔'; filterText = ':bell:' }; 597 | { word = ':no_bell:'; label = '🔕 :no_bell:'; insertText = '🔕'; filterText = ':no_bell:' }; 598 | { word = ':bookmark:'; label = '🔖 :bookmark:'; insertText = '🔖'; filterText = ':bookmark:' }; 599 | { word = ':link:'; label = '🔗 :link:'; insertText = '🔗'; filterText = ':link:' }; 600 | { word = ':radio_button:'; label = '🔘 :radio_button:'; insertText = '🔘'; filterText = ':radio_button:' }; 601 | { word = ':back:'; label = '🔙 :back:'; insertText = '🔙'; filterText = ':back:' }; 602 | { word = ':end:'; label = '🔚 :end:'; insertText = '🔚'; filterText = ':end:' }; 603 | { word = ':on:'; label = '🔛 :on:'; insertText = '🔛'; filterText = ':on:' }; 604 | { word = ':soon:'; label = '🔜 :soon:'; insertText = '🔜'; filterText = ':soon:' }; 605 | { word = ':top:'; label = '🔝 :top:'; insertText = '🔝'; filterText = ':top:' }; 606 | { word = ':underage:'; label = '🔞 :underage:'; insertText = '🔞'; filterText = ':underage:' }; 607 | { word = ':keycap_ten:'; label = '🔟 :keycap_ten:'; insertText = '🔟'; filterText = ':keycap_ten:' }; 608 | { word = ':capital_abcd:'; label = '🔠 :capital_abcd:'; insertText = '🔠'; filterText = ':capital_abcd:' }; 609 | { word = ':abcd:'; label = '🔡 :abcd:'; insertText = '🔡'; filterText = ':abcd:' }; 610 | { word = ':1234:'; label = '🔢 :1234:'; insertText = '🔢'; filterText = ':1234:' }; 611 | { word = ':symbols:'; label = '🔣 :symbols:'; insertText = '🔣'; filterText = ':symbols:' }; 612 | { word = ':abc:'; label = '🔤 :abc:'; insertText = '🔤'; filterText = ':abc:' }; 613 | { word = ':fire:'; label = '🔥 :fire:'; insertText = '🔥'; filterText = ':fire:' }; 614 | { word = ':flashlight:'; label = '🔦 :flashlight:'; insertText = '🔦'; filterText = ':flashlight:' }; 615 | { word = ':wrench:'; label = '🔧 :wrench:'; insertText = '🔧'; filterText = ':wrench:' }; 616 | { word = ':hammer:'; label = '🔨 :hammer:'; insertText = '🔨'; filterText = ':hammer:' }; 617 | { word = ':nut_and_bolt:'; label = '🔩 :nut_and_bolt:'; insertText = '🔩'; filterText = ':nut_and_bolt:' }; 618 | { word = ':hocho:'; label = '🔪 :hocho:'; insertText = '🔪'; filterText = ':hocho:' }; 619 | { word = ':knife:'; label = '🔪 :knife:'; insertText = '🔪'; filterText = ':knife:' }; 620 | { word = ':gun:'; label = '🔫 :gun:'; insertText = '🔫'; filterText = ':gun:' }; 621 | { word = ':microscope:'; label = '🔬 :microscope:'; insertText = '🔬'; filterText = ':microscope:' }; 622 | { word = ':telescope:'; label = '🔭 :telescope:'; insertText = '🔭'; filterText = ':telescope:' }; 623 | { word = ':crystal_ball:'; label = '🔮 :crystal_ball:'; insertText = '🔮'; filterText = ':crystal_ball:' }; 624 | { word = ':six_pointed_star:'; label = '🔯 :six_pointed_star:'; insertText = '🔯'; filterText = ':six_pointed_star:' }; 625 | { word = ':beginner:'; label = '🔰 :beginner:'; insertText = '🔰'; filterText = ':beginner:' }; 626 | { word = ':trident:'; label = '🔱 :trident:'; insertText = '🔱'; filterText = ':trident:' }; 627 | { word = ':black_square_button:'; label = '🔲 :black_square_button:'; insertText = '🔲'; filterText = ':black_square_button:' }; 628 | { word = ':white_square_button:'; label = '🔳 :white_square_button:'; insertText = '🔳'; filterText = ':white_square_button:' }; 629 | { word = ':red_circle:'; label = '🔴 :red_circle:'; insertText = '🔴'; filterText = ':red_circle:' }; 630 | { word = ':large_blue_circle:'; label = '🔵 :large_blue_circle:'; insertText = '🔵'; filterText = ':large_blue_circle:' }; 631 | { word = ':large_orange_diamond:'; label = '🔶 :large_orange_diamond:'; insertText = '🔶'; filterText = ':large_orange_diamond:' }; 632 | { word = ':large_blue_diamond:'; label = '🔷 :large_blue_diamond:'; insertText = '🔷'; filterText = ':large_blue_diamond:' }; 633 | { word = ':small_orange_diamond:'; label = '🔸 :small_orange_diamond:'; insertText = '🔸'; filterText = ':small_orange_diamond:' }; 634 | { word = ':small_blue_diamond:'; label = '🔹 :small_blue_diamond:'; insertText = '🔹'; filterText = ':small_blue_diamond:' }; 635 | { word = ':small_red_triangle:'; label = '🔺 :small_red_triangle:'; insertText = '🔺'; filterText = ':small_red_triangle:' }; 636 | { word = ':small_red_triangle_down:'; label = '🔻 :small_red_triangle_down:'; insertText = '🔻'; filterText = ':small_red_triangle_down:' }; 637 | { word = ':arrow_up_small:'; label = '🔼 :arrow_up_small:'; insertText = '🔼'; filterText = ':arrow_up_small:' }; 638 | { word = ':arrow_down_small:'; label = '🔽 :arrow_down_small:'; insertText = '🔽'; filterText = ':arrow_down_small:' }; 639 | { word = ':om_symbol:'; label = '🕉️ :om_symbol:'; insertText = '🕉️'; filterText = ':om_symbol:' }; 640 | { word = ':dove_of_peace:'; label = '🕊️ :dove_of_peace:'; insertText = '🕊️'; filterText = ':dove_of_peace:' }; 641 | { word = ':kaaba:'; label = '🕋 :kaaba:'; insertText = '🕋'; filterText = ':kaaba:' }; 642 | { word = ':mosque:'; label = '🕌 :mosque:'; insertText = '🕌'; filterText = ':mosque:' }; 643 | { word = ':synagogue:'; label = '🕍 :synagogue:'; insertText = '🕍'; filterText = ':synagogue:' }; 644 | { word = ':menorah_with_nine_branches:'; label = '🕎 :menorah_with_nine_branches:'; insertText = '🕎'; filterText = ':menorah_with_nine_branches:' }; 645 | { word = ':clock1:'; label = '🕐 :clock1:'; insertText = '🕐'; filterText = ':clock1:' }; 646 | { word = ':clock2:'; label = '🕑 :clock2:'; insertText = '🕑'; filterText = ':clock2:' }; 647 | { word = ':clock3:'; label = '🕒 :clock3:'; insertText = '🕒'; filterText = ':clock3:' }; 648 | { word = ':clock4:'; label = '🕓 :clock4:'; insertText = '🕓'; filterText = ':clock4:' }; 649 | { word = ':clock5:'; label = '🕔 :clock5:'; insertText = '🕔'; filterText = ':clock5:' }; 650 | { word = ':clock6:'; label = '🕕 :clock6:'; insertText = '🕕'; filterText = ':clock6:' }; 651 | { word = ':clock7:'; label = '🕖 :clock7:'; insertText = '🕖'; filterText = ':clock7:' }; 652 | { word = ':clock8:'; label = '🕗 :clock8:'; insertText = '🕗'; filterText = ':clock8:' }; 653 | { word = ':clock9:'; label = '🕘 :clock9:'; insertText = '🕘'; filterText = ':clock9:' }; 654 | { word = ':clock10:'; label = '🕙 :clock10:'; insertText = '🕙'; filterText = ':clock10:' }; 655 | { word = ':clock11:'; label = '🕚 :clock11:'; insertText = '🕚'; filterText = ':clock11:' }; 656 | { word = ':clock12:'; label = '🕛 :clock12:'; insertText = '🕛'; filterText = ':clock12:' }; 657 | { word = ':clock130:'; label = '🕜 :clock130:'; insertText = '🕜'; filterText = ':clock130:' }; 658 | { word = ':clock230:'; label = '🕝 :clock230:'; insertText = '🕝'; filterText = ':clock230:' }; 659 | { word = ':clock330:'; label = '🕞 :clock330:'; insertText = '🕞'; filterText = ':clock330:' }; 660 | { word = ':clock430:'; label = '🕟 :clock430:'; insertText = '🕟'; filterText = ':clock430:' }; 661 | { word = ':clock530:'; label = '🕠 :clock530:'; insertText = '🕠'; filterText = ':clock530:' }; 662 | { word = ':clock630:'; label = '🕡 :clock630:'; insertText = '🕡'; filterText = ':clock630:' }; 663 | { word = ':clock730:'; label = '🕢 :clock730:'; insertText = '🕢'; filterText = ':clock730:' }; 664 | { word = ':clock830:'; label = '🕣 :clock830:'; insertText = '🕣'; filterText = ':clock830:' }; 665 | { word = ':clock930:'; label = '🕤 :clock930:'; insertText = '🕤'; filterText = ':clock930:' }; 666 | { word = ':clock1030:'; label = '🕥 :clock1030:'; insertText = '🕥'; filterText = ':clock1030:' }; 667 | { word = ':clock1130:'; label = '🕦 :clock1130:'; insertText = '🕦'; filterText = ':clock1130:' }; 668 | { word = ':clock1230:'; label = '🕧 :clock1230:'; insertText = '🕧'; filterText = ':clock1230:' }; 669 | { word = ':candle:'; label = '🕯️ :candle:'; insertText = '🕯️'; filterText = ':candle:' }; 670 | { word = ':mantelpiece_clock:'; label = '🕰️ :mantelpiece_clock:'; insertText = '🕰️'; filterText = ':mantelpiece_clock:' }; 671 | { word = ':hole:'; label = '🕳️ :hole:'; insertText = '🕳️'; filterText = ':hole:' }; 672 | { word = ':man_in_business_suit_levitating:'; label = '🕴️ :man_in_business_suit_levitating:'; insertText = '🕴️'; filterText = ':man_in_business_suit_levitating:' }; 673 | { word = ':sleuth_or_spy:'; label = '🕵️ :sleuth_or_spy:'; insertText = '🕵️'; filterText = ':sleuth_or_spy:' }; 674 | { word = ':dark_sunglasses:'; label = '🕶️ :dark_sunglasses:'; insertText = '🕶️'; filterText = ':dark_sunglasses:' }; 675 | { word = ':spider:'; label = '🕷️ :spider:'; insertText = '🕷️'; filterText = ':spider:' }; 676 | { word = ':spider_web:'; label = '🕸️ :spider_web:'; insertText = '🕸️'; filterText = ':spider_web:' }; 677 | { word = ':joystick:'; label = '🕹️ :joystick:'; insertText = '🕹️'; filterText = ':joystick:' }; 678 | { word = ':man_dancing:'; label = '🕺 :man_dancing:'; insertText = '🕺'; filterText = ':man_dancing:' }; 679 | { word = ':linked_paperclips:'; label = '🖇️ :linked_paperclips:'; insertText = '🖇️'; filterText = ':linked_paperclips:' }; 680 | { word = ':lower_left_ballpoint_pen:'; label = '🖊️ :lower_left_ballpoint_pen:'; insertText = '🖊️'; filterText = ':lower_left_ballpoint_pen:' }; 681 | { word = ':lower_left_fountain_pen:'; label = '🖋️ :lower_left_fountain_pen:'; insertText = '🖋️'; filterText = ':lower_left_fountain_pen:' }; 682 | { word = ':lower_left_paintbrush:'; label = '🖌️ :lower_left_paintbrush:'; insertText = '🖌️'; filterText = ':lower_left_paintbrush:' }; 683 | { word = ':lower_left_crayon:'; label = '🖍️ :lower_left_crayon:'; insertText = '🖍️'; filterText = ':lower_left_crayon:' }; 684 | { word = ':raised_hand_with_fingers_splayed:'; label = '🖐️ :raised_hand_with_fingers_splayed:'; insertText = '🖐️'; filterText = ':raised_hand_with_fingers_splayed:' }; 685 | { word = ':middle_finger:'; label = '🖕 :middle_finger:'; insertText = '🖕'; filterText = ':middle_finger:' }; 686 | { word = ':reversed_hand_with_middle_finger_extended:'; label = '🖕 :reversed_hand_with_middle_finger_extended:'; insertText = '🖕'; filterText = ':reversed_hand_with_middle_finger_extended:' }; 687 | { word = ':spock-hand:'; label = '🖖 :spock-hand:'; insertText = '🖖'; filterText = ':spock-hand:' }; 688 | { word = ':black_heart:'; label = '🖤 :black_heart:'; insertText = '🖤'; filterText = ':black_heart:' }; 689 | { word = ':desktop_computer:'; label = '🖥️ :desktop_computer:'; insertText = '🖥️'; filterText = ':desktop_computer:' }; 690 | { word = ':printer:'; label = '🖨️ :printer:'; insertText = '🖨️'; filterText = ':printer:' }; 691 | { word = ':three_button_mouse:'; label = '🖱️ :three_button_mouse:'; insertText = '🖱️'; filterText = ':three_button_mouse:' }; 692 | { word = ':trackball:'; label = '🖲️ :trackball:'; insertText = '🖲️'; filterText = ':trackball:' }; 693 | { word = ':frame_with_picture:'; label = '🖼️ :frame_with_picture:'; insertText = '🖼️'; filterText = ':frame_with_picture:' }; 694 | { word = ':card_index_dividers:'; label = '🗂️ :card_index_dividers:'; insertText = '🗂️'; filterText = ':card_index_dividers:' }; 695 | { word = ':card_file_box:'; label = '🗃️ :card_file_box:'; insertText = '🗃️'; filterText = ':card_file_box:' }; 696 | { word = ':file_cabinet:'; label = '🗄️ :file_cabinet:'; insertText = '🗄️'; filterText = ':file_cabinet:' }; 697 | { word = ':wastebasket:'; label = '🗑️ :wastebasket:'; insertText = '🗑️'; filterText = ':wastebasket:' }; 698 | { word = ':spiral_note_pad:'; label = '🗒️ :spiral_note_pad:'; insertText = '🗒️'; filterText = ':spiral_note_pad:' }; 699 | { word = ':spiral_calendar_pad:'; label = '🗓️ :spiral_calendar_pad:'; insertText = '🗓️'; filterText = ':spiral_calendar_pad:' }; 700 | { word = ':compression:'; label = '🗜️ :compression:'; insertText = '🗜️'; filterText = ':compression:' }; 701 | { word = ':old_key:'; label = '🗝️ :old_key:'; insertText = '🗝️'; filterText = ':old_key:' }; 702 | { word = ':rolled_up_newspaper:'; label = '🗞️ :rolled_up_newspaper:'; insertText = '🗞️'; filterText = ':rolled_up_newspaper:' }; 703 | { word = ':dagger_knife:'; label = '🗡️ :dagger_knife:'; insertText = '🗡️'; filterText = ':dagger_knife:' }; 704 | { word = ':speaking_head_in_silhouette:'; label = '🗣️ :speaking_head_in_silhouette:'; insertText = '🗣️'; filterText = ':speaking_head_in_silhouette:' }; 705 | { word = ':left_speech_bubble:'; label = '🗨️ :left_speech_bubble:'; insertText = '🗨️'; filterText = ':left_speech_bubble:' }; 706 | { word = ':right_anger_bubble:'; label = '🗯️ :right_anger_bubble:'; insertText = '🗯️'; filterText = ':right_anger_bubble:' }; 707 | { word = ':ballot_box_with_ballot:'; label = '🗳️ :ballot_box_with_ballot:'; insertText = '🗳️'; filterText = ':ballot_box_with_ballot:' }; 708 | { word = ':world_map:'; label = '🗺️ :world_map:'; insertText = '🗺️'; filterText = ':world_map:' }; 709 | { word = ':mount_fuji:'; label = '🗻 :mount_fuji:'; insertText = '🗻'; filterText = ':mount_fuji:' }; 710 | { word = ':tokyo_tower:'; label = '🗼 :tokyo_tower:'; insertText = '🗼'; filterText = ':tokyo_tower:' }; 711 | { word = ':statue_of_liberty:'; label = '🗽 :statue_of_liberty:'; insertText = '🗽'; filterText = ':statue_of_liberty:' }; 712 | { word = ':japan:'; label = '🗾 :japan:'; insertText = '🗾'; filterText = ':japan:' }; 713 | { word = ':moyai:'; label = '🗿 :moyai:'; insertText = '🗿'; filterText = ':moyai:' }; 714 | { word = ':grinning:'; label = '😀 :grinning:'; insertText = '😀'; filterText = ':grinning:' }; 715 | { word = ':grin:'; label = '😁 :grin:'; insertText = '😁'; filterText = ':grin:' }; 716 | { word = ':joy:'; label = '😂 :joy:'; insertText = '😂'; filterText = ':joy:' }; 717 | { word = ':smiley:'; label = '😃 :smiley:'; insertText = '😃'; filterText = ':smiley:' }; 718 | { word = ':smile:'; label = '😄 :smile:'; insertText = '😄'; filterText = ':smile:' }; 719 | { word = ':sweat_smile:'; label = '😅 :sweat_smile:'; insertText = '😅'; filterText = ':sweat_smile:' }; 720 | { word = ':laughing:'; label = '😆 :laughing:'; insertText = '😆'; filterText = ':laughing:' }; 721 | { word = ':satisfied:'; label = '😆 :satisfied:'; insertText = '😆'; filterText = ':satisfied:' }; 722 | { word = ':innocent:'; label = '😇 :innocent:'; insertText = '😇'; filterText = ':innocent:' }; 723 | { word = ':smiling_imp:'; label = '😈 :smiling_imp:'; insertText = '😈'; filterText = ':smiling_imp:' }; 724 | { word = ':wink:'; label = '😉 :wink:'; insertText = '😉'; filterText = ':wink:' }; 725 | { word = ':blush:'; label = '😊 :blush:'; insertText = '😊'; filterText = ':blush:' }; 726 | { word = ':yum:'; label = '😋 :yum:'; insertText = '😋'; filterText = ':yum:' }; 727 | { word = ':relieved:'; label = '😌 :relieved:'; insertText = '😌'; filterText = ':relieved:' }; 728 | { word = ':heart_eyes:'; label = '😍 :heart_eyes:'; insertText = '😍'; filterText = ':heart_eyes:' }; 729 | { word = ':sunglasses:'; label = '😎 :sunglasses:'; insertText = '😎'; filterText = ':sunglasses:' }; 730 | { word = ':smirk:'; label = '😏 :smirk:'; insertText = '😏'; filterText = ':smirk:' }; 731 | { word = ':neutral_face:'; label = '😐 :neutral_face:'; insertText = '😐'; filterText = ':neutral_face:' }; 732 | { word = ':expressionless:'; label = '😑 :expressionless:'; insertText = '😑'; filterText = ':expressionless:' }; 733 | { word = ':unamused:'; label = '😒 :unamused:'; insertText = '😒'; filterText = ':unamused:' }; 734 | { word = ':sweat:'; label = '😓 :sweat:'; insertText = '😓'; filterText = ':sweat:' }; 735 | { word = ':pensive:'; label = '😔 :pensive:'; insertText = '😔'; filterText = ':pensive:' }; 736 | { word = ':confused:'; label = '😕 :confused:'; insertText = '😕'; filterText = ':confused:' }; 737 | { word = ':confounded:'; label = '😖 :confounded:'; insertText = '😖'; filterText = ':confounded:' }; 738 | { word = ':kissing:'; label = '😗 :kissing:'; insertText = '😗'; filterText = ':kissing:' }; 739 | { word = ':kissing_heart:'; label = '😘 :kissing_heart:'; insertText = '😘'; filterText = ':kissing_heart:' }; 740 | { word = ':kissing_smiling_eyes:'; label = '😙 :kissing_smiling_eyes:'; insertText = '😙'; filterText = ':kissing_smiling_eyes:' }; 741 | { word = ':kissing_closed_eyes:'; label = '😚 :kissing_closed_eyes:'; insertText = '😚'; filterText = ':kissing_closed_eyes:' }; 742 | { word = ':stuck_out_tongue:'; label = '😛 :stuck_out_tongue:'; insertText = '😛'; filterText = ':stuck_out_tongue:' }; 743 | { word = ':stuck_out_tongue_winking_eye:'; label = '😜 :stuck_out_tongue_winking_eye:'; insertText = '😜'; filterText = ':stuck_out_tongue_winking_eye:' }; 744 | { word = ':stuck_out_tongue_closed_eyes:'; label = '😝 :stuck_out_tongue_closed_eyes:'; insertText = '😝'; filterText = ':stuck_out_tongue_closed_eyes:' }; 745 | { word = ':disappointed:'; label = '😞 :disappointed:'; insertText = '😞'; filterText = ':disappointed:' }; 746 | { word = ':worried:'; label = '😟 :worried:'; insertText = '😟'; filterText = ':worried:' }; 747 | { word = ':angry:'; label = '😠 :angry:'; insertText = '😠'; filterText = ':angry:' }; 748 | { word = ':rage:'; label = '😡 :rage:'; insertText = '😡'; filterText = ':rage:' }; 749 | { word = ':cry:'; label = '😢 :cry:'; insertText = '😢'; filterText = ':cry:' }; 750 | { word = ':persevere:'; label = '😣 :persevere:'; insertText = '😣'; filterText = ':persevere:' }; 751 | { word = ':triumph:'; label = '😤 :triumph:'; insertText = '😤'; filterText = ':triumph:' }; 752 | { word = ':disappointed_relieved:'; label = '😥 :disappointed_relieved:'; insertText = '😥'; filterText = ':disappointed_relieved:' }; 753 | { word = ':frowning:'; label = '😦 :frowning:'; insertText = '😦'; filterText = ':frowning:' }; 754 | { word = ':anguished:'; label = '😧 :anguished:'; insertText = '😧'; filterText = ':anguished:' }; 755 | { word = ':fearful:'; label = '😨 :fearful:'; insertText = '😨'; filterText = ':fearful:' }; 756 | { word = ':weary:'; label = '😩 :weary:'; insertText = '😩'; filterText = ':weary:' }; 757 | { word = ':sleepy:'; label = '😪 :sleepy:'; insertText = '😪'; filterText = ':sleepy:' }; 758 | { word = ':tired_face:'; label = '😫 :tired_face:'; insertText = '😫'; filterText = ':tired_face:' }; 759 | { word = ':grimacing:'; label = '😬 :grimacing:'; insertText = '😬'; filterText = ':grimacing:' }; 760 | { word = ':sob:'; label = '😭 :sob:'; insertText = '😭'; filterText = ':sob:' }; 761 | { word = ':open_mouth:'; label = '😮 :open_mouth:'; insertText = '😮'; filterText = ':open_mouth:' }; 762 | { word = ':hushed:'; label = '😯 :hushed:'; insertText = '😯'; filterText = ':hushed:' }; 763 | { word = ':cold_sweat:'; label = '😰 :cold_sweat:'; insertText = '😰'; filterText = ':cold_sweat:' }; 764 | { word = ':scream:'; label = '😱 :scream:'; insertText = '😱'; filterText = ':scream:' }; 765 | { word = ':astonished:'; label = '😲 :astonished:'; insertText = '😲'; filterText = ':astonished:' }; 766 | { word = ':flushed:'; label = '😳 :flushed:'; insertText = '😳'; filterText = ':flushed:' }; 767 | { word = ':sleeping:'; label = '😴 :sleeping:'; insertText = '😴'; filterText = ':sleeping:' }; 768 | { word = ':dizzy_face:'; label = '😵 :dizzy_face:'; insertText = '😵'; filterText = ':dizzy_face:' }; 769 | { word = ':no_mouth:'; label = '😶 :no_mouth:'; insertText = '😶'; filterText = ':no_mouth:' }; 770 | { word = ':mask:'; label = '😷 :mask:'; insertText = '😷'; filterText = ':mask:' }; 771 | { word = ':smile_cat:'; label = '😸 :smile_cat:'; insertText = '😸'; filterText = ':smile_cat:' }; 772 | { word = ':joy_cat:'; label = '😹 :joy_cat:'; insertText = '😹'; filterText = ':joy_cat:' }; 773 | { word = ':smiley_cat:'; label = '😺 :smiley_cat:'; insertText = '😺'; filterText = ':smiley_cat:' }; 774 | { word = ':heart_eyes_cat:'; label = '😻 :heart_eyes_cat:'; insertText = '😻'; filterText = ':heart_eyes_cat:' }; 775 | { word = ':smirk_cat:'; label = '😼 :smirk_cat:'; insertText = '😼'; filterText = ':smirk_cat:' }; 776 | { word = ':kissing_cat:'; label = '😽 :kissing_cat:'; insertText = '😽'; filterText = ':kissing_cat:' }; 777 | { word = ':pouting_cat:'; label = '😾 :pouting_cat:'; insertText = '😾'; filterText = ':pouting_cat:' }; 778 | { word = ':crying_cat_face:'; label = '😿 :crying_cat_face:'; insertText = '😿'; filterText = ':crying_cat_face:' }; 779 | { word = ':scream_cat:'; label = '🙀 :scream_cat:'; insertText = '🙀'; filterText = ':scream_cat:' }; 780 | { word = ':slightly_frowning_face:'; label = '🙁 :slightly_frowning_face:'; insertText = '🙁'; filterText = ':slightly_frowning_face:' }; 781 | { word = ':slightly_smiling_face:'; label = '🙂 :slightly_smiling_face:'; insertText = '🙂'; filterText = ':slightly_smiling_face:' }; 782 | { word = ':upside_down_face:'; label = '🙃 :upside_down_face:'; insertText = '🙃'; filterText = ':upside_down_face:' }; 783 | { word = ':face_with_rolling_eyes:'; label = '🙄 :face_with_rolling_eyes:'; insertText = '🙄'; filterText = ':face_with_rolling_eyes:' }; 784 | { word = ':no_good:'; label = '🙅 :no_good:'; insertText = '🙅'; filterText = ':no_good:' }; 785 | { word = ':ok_woman:'; label = '🙆 :ok_woman:'; insertText = '🙆'; filterText = ':ok_woman:' }; 786 | { word = ':bow:'; label = '🙇 :bow:'; insertText = '🙇'; filterText = ':bow:' }; 787 | { word = ':see_no_evil:'; label = '🙈 :see_no_evil:'; insertText = '🙈'; filterText = ':see_no_evil:' }; 788 | { word = ':hear_no_evil:'; label = '🙉 :hear_no_evil:'; insertText = '🙉'; filterText = ':hear_no_evil:' }; 789 | { word = ':speak_no_evil:'; label = '🙊 :speak_no_evil:'; insertText = '🙊'; filterText = ':speak_no_evil:' }; 790 | { word = ':raising_hand:'; label = '🙋 :raising_hand:'; insertText = '🙋'; filterText = ':raising_hand:' }; 791 | { word = ':raised_hands:'; label = '🙌 :raised_hands:'; insertText = '🙌'; filterText = ':raised_hands:' }; 792 | { word = ':person_frowning:'; label = '🙍 :person_frowning:'; insertText = '🙍'; filterText = ':person_frowning:' }; 793 | { word = ':person_with_pouting_face:'; label = '🙎 :person_with_pouting_face:'; insertText = '🙎'; filterText = ':person_with_pouting_face:' }; 794 | { word = ':pray:'; label = '🙏 :pray:'; insertText = '🙏'; filterText = ':pray:' }; 795 | { word = ':rocket:'; label = '🚀 :rocket:'; insertText = '🚀'; filterText = ':rocket:' }; 796 | { word = ':helicopter:'; label = '🚁 :helicopter:'; insertText = '🚁'; filterText = ':helicopter:' }; 797 | { word = ':steam_locomotive:'; label = '🚂 :steam_locomotive:'; insertText = '🚂'; filterText = ':steam_locomotive:' }; 798 | { word = ':railway_car:'; label = '🚃 :railway_car:'; insertText = '🚃'; filterText = ':railway_car:' }; 799 | { word = ':bullettrain_side:'; label = '🚄 :bullettrain_side:'; insertText = '🚄'; filterText = ':bullettrain_side:' }; 800 | { word = ':bullettrain_front:'; label = '🚅 :bullettrain_front:'; insertText = '🚅'; filterText = ':bullettrain_front:' }; 801 | { word = ':train2:'; label = '🚆 :train2:'; insertText = '🚆'; filterText = ':train2:' }; 802 | { word = ':metro:'; label = '🚇 :metro:'; insertText = '🚇'; filterText = ':metro:' }; 803 | { word = ':light_rail:'; label = '🚈 :light_rail:'; insertText = '🚈'; filterText = ':light_rail:' }; 804 | { word = ':station:'; label = '🚉 :station:'; insertText = '🚉'; filterText = ':station:' }; 805 | { word = ':tram:'; label = '🚊 :tram:'; insertText = '🚊'; filterText = ':tram:' }; 806 | { word = ':train:'; label = '🚋 :train:'; insertText = '🚋'; filterText = ':train:' }; 807 | { word = ':bus:'; label = '🚌 :bus:'; insertText = '🚌'; filterText = ':bus:' }; 808 | { word = ':oncoming_bus:'; label = '🚍 :oncoming_bus:'; insertText = '🚍'; filterText = ':oncoming_bus:' }; 809 | { word = ':trolleybus:'; label = '🚎 :trolleybus:'; insertText = '🚎'; filterText = ':trolleybus:' }; 810 | { word = ':busstop:'; label = '🚏 :busstop:'; insertText = '🚏'; filterText = ':busstop:' }; 811 | { word = ':minibus:'; label = '🚐 :minibus:'; insertText = '🚐'; filterText = ':minibus:' }; 812 | { word = ':ambulance:'; label = '🚑 :ambulance:'; insertText = '🚑'; filterText = ':ambulance:' }; 813 | { word = ':fire_engine:'; label = '🚒 :fire_engine:'; insertText = '🚒'; filterText = ':fire_engine:' }; 814 | { word = ':police_car:'; label = '🚓 :police_car:'; insertText = '🚓'; filterText = ':police_car:' }; 815 | { word = ':oncoming_police_car:'; label = '🚔 :oncoming_police_car:'; insertText = '🚔'; filterText = ':oncoming_police_car:' }; 816 | { word = ':taxi:'; label = '🚕 :taxi:'; insertText = '🚕'; filterText = ':taxi:' }; 817 | { word = ':oncoming_taxi:'; label = '🚖 :oncoming_taxi:'; insertText = '🚖'; filterText = ':oncoming_taxi:' }; 818 | { word = ':car:'; label = '🚗 :car:'; insertText = '🚗'; filterText = ':car:' }; 819 | { word = ':red_car:'; label = '🚗 :red_car:'; insertText = '🚗'; filterText = ':red_car:' }; 820 | { word = ':oncoming_automobile:'; label = '🚘 :oncoming_automobile:'; insertText = '🚘'; filterText = ':oncoming_automobile:' }; 821 | { word = ':blue_car:'; label = '🚙 :blue_car:'; insertText = '🚙'; filterText = ':blue_car:' }; 822 | { word = ':truck:'; label = '🚚 :truck:'; insertText = '🚚'; filterText = ':truck:' }; 823 | { word = ':articulated_lorry:'; label = '🚛 :articulated_lorry:'; insertText = '🚛'; filterText = ':articulated_lorry:' }; 824 | { word = ':tractor:'; label = '🚜 :tractor:'; insertText = '🚜'; filterText = ':tractor:' }; 825 | { word = ':monorail:'; label = '🚝 :monorail:'; insertText = '🚝'; filterText = ':monorail:' }; 826 | { word = ':mountain_railway:'; label = '🚞 :mountain_railway:'; insertText = '🚞'; filterText = ':mountain_railway:' }; 827 | { word = ':suspension_railway:'; label = '🚟 :suspension_railway:'; insertText = '🚟'; filterText = ':suspension_railway:' }; 828 | { word = ':mountain_cableway:'; label = '🚠 :mountain_cableway:'; insertText = '🚠'; filterText = ':mountain_cableway:' }; 829 | { word = ':aerial_tramway:'; label = '🚡 :aerial_tramway:'; insertText = '🚡'; filterText = ':aerial_tramway:' }; 830 | { word = ':ship:'; label = '🚢 :ship:'; insertText = '🚢'; filterText = ':ship:' }; 831 | { word = ':rowboat:'; label = '🚣 :rowboat:'; insertText = '🚣'; filterText = ':rowboat:' }; 832 | { word = ':speedboat:'; label = '🚤 :speedboat:'; insertText = '🚤'; filterText = ':speedboat:' }; 833 | { word = ':traffic_light:'; label = '🚥 :traffic_light:'; insertText = '🚥'; filterText = ':traffic_light:' }; 834 | { word = ':vertical_traffic_light:'; label = '🚦 :vertical_traffic_light:'; insertText = '🚦'; filterText = ':vertical_traffic_light:' }; 835 | { word = ':construction:'; label = '🚧 :construction:'; insertText = '🚧'; filterText = ':construction:' }; 836 | { word = ':rotating_light:'; label = '🚨 :rotating_light:'; insertText = '🚨'; filterText = ':rotating_light:' }; 837 | { word = ':triangular_flag_on_post:'; label = '🚩 :triangular_flag_on_post:'; insertText = '🚩'; filterText = ':triangular_flag_on_post:' }; 838 | { word = ':door:'; label = '🚪 :door:'; insertText = '🚪'; filterText = ':door:' }; 839 | { word = ':no_entry_sign:'; label = '🚫 :no_entry_sign:'; insertText = '🚫'; filterText = ':no_entry_sign:' }; 840 | { word = ':smoking:'; label = '🚬 :smoking:'; insertText = '🚬'; filterText = ':smoking:' }; 841 | { word = ':no_smoking:'; label = '🚭 :no_smoking:'; insertText = '🚭'; filterText = ':no_smoking:' }; 842 | { word = ':put_litter_in_its_place:'; label = '🚮 :put_litter_in_its_place:'; insertText = '🚮'; filterText = ':put_litter_in_its_place:' }; 843 | { word = ':do_not_litter:'; label = '🚯 :do_not_litter:'; insertText = '🚯'; filterText = ':do_not_litter:' }; 844 | { word = ':potable_water:'; label = '🚰 :potable_water:'; insertText = '🚰'; filterText = ':potable_water:' }; 845 | { word = ':non-potable_water:'; label = '🚱 :non-potable_water:'; insertText = '🚱'; filterText = ':non-potable_water:' }; 846 | { word = ':bike:'; label = '🚲 :bike:'; insertText = '🚲'; filterText = ':bike:' }; 847 | { word = ':no_bicycles:'; label = '🚳 :no_bicycles:'; insertText = '🚳'; filterText = ':no_bicycles:' }; 848 | { word = ':bicyclist:'; label = '🚴 :bicyclist:'; insertText = '🚴'; filterText = ':bicyclist:' }; 849 | { word = ':mountain_bicyclist:'; label = '🚵 :mountain_bicyclist:'; insertText = '🚵'; filterText = ':mountain_bicyclist:' }; 850 | { word = ':walking:'; label = '🚶 :walking:'; insertText = '🚶'; filterText = ':walking:' }; 851 | { word = ':no_pedestrians:'; label = '🚷 :no_pedestrians:'; insertText = '🚷'; filterText = ':no_pedestrians:' }; 852 | { word = ':children_crossing:'; label = '🚸 :children_crossing:'; insertText = '🚸'; filterText = ':children_crossing:' }; 853 | { word = ':mens:'; label = '🚹 :mens:'; insertText = '🚹'; filterText = ':mens:' }; 854 | { word = ':womens:'; label = '🚺 :womens:'; insertText = '🚺'; filterText = ':womens:' }; 855 | { word = ':restroom:'; label = '🚻 :restroom:'; insertText = '🚻'; filterText = ':restroom:' }; 856 | { word = ':baby_symbol:'; label = '🚼 :baby_symbol:'; insertText = '🚼'; filterText = ':baby_symbol:' }; 857 | { word = ':toilet:'; label = '🚽 :toilet:'; insertText = '🚽'; filterText = ':toilet:' }; 858 | { word = ':wc:'; label = '🚾 :wc:'; insertText = '🚾'; filterText = ':wc:' }; 859 | { word = ':shower:'; label = '🚿 :shower:'; insertText = '🚿'; filterText = ':shower:' }; 860 | { word = ':bath:'; label = '🛀 :bath:'; insertText = '🛀'; filterText = ':bath:' }; 861 | { word = ':bathtub:'; label = '🛁 :bathtub:'; insertText = '🛁'; filterText = ':bathtub:' }; 862 | { word = ':passport_control:'; label = '🛂 :passport_control:'; insertText = '🛂'; filterText = ':passport_control:' }; 863 | { word = ':customs:'; label = '🛃 :customs:'; insertText = '🛃'; filterText = ':customs:' }; 864 | { word = ':baggage_claim:'; label = '🛄 :baggage_claim:'; insertText = '🛄'; filterText = ':baggage_claim:' }; 865 | { word = ':left_luggage:'; label = '🛅 :left_luggage:'; insertText = '🛅'; filterText = ':left_luggage:' }; 866 | { word = ':couch_and_lamp:'; label = '🛋️ :couch_and_lamp:'; insertText = '🛋️'; filterText = ':couch_and_lamp:' }; 867 | { word = ':sleeping_accommodation:'; label = '🛌 :sleeping_accommodation:'; insertText = '🛌'; filterText = ':sleeping_accommodation:' }; 868 | { word = ':shopping_bags:'; label = '🛍️ :shopping_bags:'; insertText = '🛍️'; filterText = ':shopping_bags:' }; 869 | { word = ':bellhop_bell:'; label = '🛎️ :bellhop_bell:'; insertText = '🛎️'; filterText = ':bellhop_bell:' }; 870 | { word = ':bed:'; label = '🛏️ :bed:'; insertText = '🛏️'; filterText = ':bed:' }; 871 | { word = ':place_of_worship:'; label = '🛐 :place_of_worship:'; insertText = '🛐'; filterText = ':place_of_worship:' }; 872 | { word = ':octagonal_sign:'; label = '🛑 :octagonal_sign:'; insertText = '🛑'; filterText = ':octagonal_sign:' }; 873 | { word = ':shopping_trolley:'; label = '🛒 :shopping_trolley:'; insertText = '🛒'; filterText = ':shopping_trolley:' }; 874 | { word = ':hindu_temple:'; label = '🛕 :hindu_temple:'; insertText = '🛕'; filterText = ':hindu_temple:' }; 875 | { word = ':hut:'; label = '🛖 :hut:'; insertText = '🛖'; filterText = ':hut:' }; 876 | { word = ':elevator:'; label = '🛗 :elevator:'; insertText = '🛗'; filterText = ':elevator:' }; 877 | { word = ':wireless:'; label = '🛜 :wireless:'; insertText = '🛜'; filterText = ':wireless:' }; 878 | { word = ':playground_slide:'; label = '🛝 :playground_slide:'; insertText = '🛝'; filterText = ':playground_slide:' }; 879 | { word = ':wheel:'; label = '🛞 :wheel:'; insertText = '🛞'; filterText = ':wheel:' }; 880 | { word = ':ring_buoy:'; label = '🛟 :ring_buoy:'; insertText = '🛟'; filterText = ':ring_buoy:' }; 881 | { word = ':hammer_and_wrench:'; label = '🛠️ :hammer_and_wrench:'; insertText = '🛠️'; filterText = ':hammer_and_wrench:' }; 882 | { word = ':shield:'; label = '🛡️ :shield:'; insertText = '🛡️'; filterText = ':shield:' }; 883 | { word = ':oil_drum:'; label = '🛢️ :oil_drum:'; insertText = '🛢️'; filterText = ':oil_drum:' }; 884 | { word = ':motorway:'; label = '🛣️ :motorway:'; insertText = '🛣️'; filterText = ':motorway:' }; 885 | { word = ':railway_track:'; label = '🛤️ :railway_track:'; insertText = '🛤️'; filterText = ':railway_track:' }; 886 | { word = ':motor_boat:'; label = '🛥️ :motor_boat:'; insertText = '🛥️'; filterText = ':motor_boat:' }; 887 | { word = ':small_airplane:'; label = '🛩️ :small_airplane:'; insertText = '🛩️'; filterText = ':small_airplane:' }; 888 | { word = ':airplane_departure:'; label = '🛫 :airplane_departure:'; insertText = '🛫'; filterText = ':airplane_departure:' }; 889 | { word = ':airplane_arriving:'; label = '🛬 :airplane_arriving:'; insertText = '🛬'; filterText = ':airplane_arriving:' }; 890 | { word = ':satellite:'; label = '🛰️ :satellite:'; insertText = '🛰️'; filterText = ':satellite:' }; 891 | { word = ':passenger_ship:'; label = '🛳️ :passenger_ship:'; insertText = '🛳️'; filterText = ':passenger_ship:' }; 892 | { word = ':scooter:'; label = '🛴 :scooter:'; insertText = '🛴'; filterText = ':scooter:' }; 893 | { word = ':motor_scooter:'; label = '🛵 :motor_scooter:'; insertText = '🛵'; filterText = ':motor_scooter:' }; 894 | { word = ':canoe:'; label = '🛶 :canoe:'; insertText = '🛶'; filterText = ':canoe:' }; 895 | { word = ':sled:'; label = '🛷 :sled:'; insertText = '🛷'; filterText = ':sled:' }; 896 | { word = ':flying_saucer:'; label = '🛸 :flying_saucer:'; insertText = '🛸'; filterText = ':flying_saucer:' }; 897 | { word = ':skateboard:'; label = '🛹 :skateboard:'; insertText = '🛹'; filterText = ':skateboard:' }; 898 | { word = ':auto_rickshaw:'; label = '🛺 :auto_rickshaw:'; insertText = '🛺'; filterText = ':auto_rickshaw:' }; 899 | { word = ':pickup_truck:'; label = '🛻 :pickup_truck:'; insertText = '🛻'; filterText = ':pickup_truck:' }; 900 | { word = ':roller_skate:'; label = '🛼 :roller_skate:'; insertText = '🛼'; filterText = ':roller_skate:' }; 901 | { word = ':large_orange_circle:'; label = '🟠 :large_orange_circle:'; insertText = '🟠'; filterText = ':large_orange_circle:' }; 902 | { word = ':large_yellow_circle:'; label = '🟡 :large_yellow_circle:'; insertText = '🟡'; filterText = ':large_yellow_circle:' }; 903 | { word = ':large_green_circle:'; label = '🟢 :large_green_circle:'; insertText = '🟢'; filterText = ':large_green_circle:' }; 904 | { word = ':large_purple_circle:'; label = '🟣 :large_purple_circle:'; insertText = '🟣'; filterText = ':large_purple_circle:' }; 905 | { word = ':large_brown_circle:'; label = '🟤 :large_brown_circle:'; insertText = '🟤'; filterText = ':large_brown_circle:' }; 906 | { word = ':large_red_square:'; label = '🟥 :large_red_square:'; insertText = '🟥'; filterText = ':large_red_square:' }; 907 | { word = ':large_blue_square:'; label = '🟦 :large_blue_square:'; insertText = '🟦'; filterText = ':large_blue_square:' }; 908 | { word = ':large_orange_square:'; label = '🟧 :large_orange_square:'; insertText = '🟧'; filterText = ':large_orange_square:' }; 909 | { word = ':large_yellow_square:'; label = '🟨 :large_yellow_square:'; insertText = '🟨'; filterText = ':large_yellow_square:' }; 910 | { word = ':large_green_square:'; label = '🟩 :large_green_square:'; insertText = '🟩'; filterText = ':large_green_square:' }; 911 | { word = ':large_purple_square:'; label = '🟪 :large_purple_square:'; insertText = '🟪'; filterText = ':large_purple_square:' }; 912 | { word = ':large_brown_square:'; label = '🟫 :large_brown_square:'; insertText = '🟫'; filterText = ':large_brown_square:' }; 913 | { word = ':heavy_equals_sign:'; label = '🟰 :heavy_equals_sign:'; insertText = '🟰'; filterText = ':heavy_equals_sign:' }; 914 | { word = ':pinched_fingers:'; label = '🤌 :pinched_fingers:'; insertText = '🤌'; filterText = ':pinched_fingers:' }; 915 | { word = ':white_heart:'; label = '🤍 :white_heart:'; insertText = '🤍'; filterText = ':white_heart:' }; 916 | { word = ':brown_heart:'; label = '🤎 :brown_heart:'; insertText = '🤎'; filterText = ':brown_heart:' }; 917 | { word = ':pinching_hand:'; label = '🤏 :pinching_hand:'; insertText = '🤏'; filterText = ':pinching_hand:' }; 918 | { word = ':zipper_mouth_face:'; label = '🤐 :zipper_mouth_face:'; insertText = '🤐'; filterText = ':zipper_mouth_face:' }; 919 | { word = ':money_mouth_face:'; label = '🤑 :money_mouth_face:'; insertText = '🤑'; filterText = ':money_mouth_face:' }; 920 | { word = ':face_with_thermometer:'; label = '🤒 :face_with_thermometer:'; insertText = '🤒'; filterText = ':face_with_thermometer:' }; 921 | { word = ':nerd_face:'; label = '🤓 :nerd_face:'; insertText = '🤓'; filterText = ':nerd_face:' }; 922 | { word = ':thinking_face:'; label = '🤔 :thinking_face:'; insertText = '🤔'; filterText = ':thinking_face:' }; 923 | { word = ':face_with_head_bandage:'; label = '🤕 :face_with_head_bandage:'; insertText = '🤕'; filterText = ':face_with_head_bandage:' }; 924 | { word = ':robot_face:'; label = '🤖 :robot_face:'; insertText = '🤖'; filterText = ':robot_face:' }; 925 | { word = ':hugging_face:'; label = '🤗 :hugging_face:'; insertText = '🤗'; filterText = ':hugging_face:' }; 926 | { word = ':the_horns:'; label = '🤘 :the_horns:'; insertText = '🤘'; filterText = ':the_horns:' }; 927 | { word = ':sign_of_the_horns:'; label = '🤘 :sign_of_the_horns:'; insertText = '🤘'; filterText = ':sign_of_the_horns:' }; 928 | { word = ':call_me_hand:'; label = '🤙 :call_me_hand:'; insertText = '🤙'; filterText = ':call_me_hand:' }; 929 | { word = ':raised_back_of_hand:'; label = '🤚 :raised_back_of_hand:'; insertText = '🤚'; filterText = ':raised_back_of_hand:' }; 930 | { word = ':left-facing_fist:'; label = '🤛 :left-facing_fist:'; insertText = '🤛'; filterText = ':left-facing_fist:' }; 931 | { word = ':right-facing_fist:'; label = '🤜 :right-facing_fist:'; insertText = '🤜'; filterText = ':right-facing_fist:' }; 932 | { word = ':handshake:'; label = '🤝 :handshake:'; insertText = '🤝'; filterText = ':handshake:' }; 933 | { word = ':crossed_fingers:'; label = '🤞 :crossed_fingers:'; insertText = '🤞'; filterText = ':crossed_fingers:' }; 934 | { word = ':hand_with_index_and_middle_fingers_crossed:'; label = '🤞 :hand_with_index_and_middle_fingers_crossed:'; insertText = '🤞'; filterText = ':hand_with_index_and_middle_fingers_crossed:' }; 935 | { word = ':i_love_you_hand_sign:'; label = '🤟 :i_love_you_hand_sign:'; insertText = '🤟'; filterText = ':i_love_you_hand_sign:' }; 936 | { word = ':face_with_cowboy_hat:'; label = '🤠 :face_with_cowboy_hat:'; insertText = '🤠'; filterText = ':face_with_cowboy_hat:' }; 937 | { word = ':clown_face:'; label = '🤡 :clown_face:'; insertText = '🤡'; filterText = ':clown_face:' }; 938 | { word = ':nauseated_face:'; label = '🤢 :nauseated_face:'; insertText = '🤢'; filterText = ':nauseated_face:' }; 939 | { word = ':rolling_on_the_floor_laughing:'; label = '🤣 :rolling_on_the_floor_laughing:'; insertText = '🤣'; filterText = ':rolling_on_the_floor_laughing:' }; 940 | { word = ':drooling_face:'; label = '🤤 :drooling_face:'; insertText = '🤤'; filterText = ':drooling_face:' }; 941 | { word = ':lying_face:'; label = '🤥 :lying_face:'; insertText = '🤥'; filterText = ':lying_face:' }; 942 | { word = ':face_palm:'; label = '🤦 :face_palm:'; insertText = '🤦'; filterText = ':face_palm:' }; 943 | { word = ':sneezing_face:'; label = '🤧 :sneezing_face:'; insertText = '🤧'; filterText = ':sneezing_face:' }; 944 | { word = ':face_with_raised_eyebrow:'; label = '🤨 :face_with_raised_eyebrow:'; insertText = '🤨'; filterText = ':face_with_raised_eyebrow:' }; 945 | { word = ':face_with_one_eyebrow_raised:'; label = '🤨 :face_with_one_eyebrow_raised:'; insertText = '🤨'; filterText = ':face_with_one_eyebrow_raised:' }; 946 | { word = ':star-struck:'; label = '🤩 :star-struck:'; insertText = '🤩'; filterText = ':star-struck:' }; 947 | { word = ':grinning_face_with_star_eyes:'; label = '🤩 :grinning_face_with_star_eyes:'; insertText = '🤩'; filterText = ':grinning_face_with_star_eyes:' }; 948 | { word = ':zany_face:'; label = '🤪 :zany_face:'; insertText = '🤪'; filterText = ':zany_face:' }; 949 | { word = ':grinning_face_with_one_large_and_one_small_eye:'; label = '🤪 :grinning_face_with_one_large_and_one_small_eye:'; insertText = '🤪'; filterText = ':grinning_face_with_one_large_and_one_small_eye:' }; 950 | { word = ':shushing_face:'; label = '🤫 :shushing_face:'; insertText = '🤫'; filterText = ':shushing_face:' }; 951 | { word = ':face_with_finger_covering_closed_lips:'; label = '🤫 :face_with_finger_covering_closed_lips:'; insertText = '🤫'; filterText = ':face_with_finger_covering_closed_lips:' }; 952 | { word = ':face_with_symbols_on_mouth:'; label = '🤬 :face_with_symbols_on_mouth:'; insertText = '🤬'; filterText = ':face_with_symbols_on_mouth:' }; 953 | { word = ':serious_face_with_symbols_covering_mouth:'; label = '🤬 :serious_face_with_symbols_covering_mouth:'; insertText = '🤬'; filterText = ':serious_face_with_symbols_covering_mouth:' }; 954 | { word = ':face_with_hand_over_mouth:'; label = '🤭 :face_with_hand_over_mouth:'; insertText = '🤭'; filterText = ':face_with_hand_over_mouth:' }; 955 | { word = ':smiling_face_with_smiling_eyes_and_hand_covering_mouth:'; label = '🤭 :smiling_face_with_smiling_eyes_and_hand_covering_mouth:'; insertText = '🤭'; filterText = ':smiling_face_with_smiling_eyes_and_hand_covering_mouth:' }; 956 | { word = ':face_vomiting:'; label = '🤮 :face_vomiting:'; insertText = '🤮'; filterText = ':face_vomiting:' }; 957 | { word = ':face_with_open_mouth_vomiting:'; label = '🤮 :face_with_open_mouth_vomiting:'; insertText = '🤮'; filterText = ':face_with_open_mouth_vomiting:' }; 958 | { word = ':exploding_head:'; label = '🤯 :exploding_head:'; insertText = '🤯'; filterText = ':exploding_head:' }; 959 | { word = ':shocked_face_with_exploding_head:'; label = '🤯 :shocked_face_with_exploding_head:'; insertText = '🤯'; filterText = ':shocked_face_with_exploding_head:' }; 960 | { word = ':pregnant_woman:'; label = '🤰 :pregnant_woman:'; insertText = '🤰'; filterText = ':pregnant_woman:' }; 961 | { word = ':breast-feeding:'; label = '🤱 :breast-feeding:'; insertText = '🤱'; filterText = ':breast-feeding:' }; 962 | { word = ':palms_up_together:'; label = '🤲 :palms_up_together:'; insertText = '🤲'; filterText = ':palms_up_together:' }; 963 | { word = ':selfie:'; label = '🤳 :selfie:'; insertText = '🤳'; filterText = ':selfie:' }; 964 | { word = ':prince:'; label = '🤴 :prince:'; insertText = '🤴'; filterText = ':prince:' }; 965 | { word = ':person_in_tuxedo:'; label = '🤵 :person_in_tuxedo:'; insertText = '🤵'; filterText = ':person_in_tuxedo:' }; 966 | { word = ':mrs_claus:'; label = '🤶 :mrs_claus:'; insertText = '🤶'; filterText = ':mrs_claus:' }; 967 | { word = ':mother_christmas:'; label = '🤶 :mother_christmas:'; insertText = '🤶'; filterText = ':mother_christmas:' }; 968 | { word = ':shrug:'; label = '🤷 :shrug:'; insertText = '🤷'; filterText = ':shrug:' }; 969 | { word = ':person_doing_cartwheel:'; label = '🤸 :person_doing_cartwheel:'; insertText = '🤸'; filterText = ':person_doing_cartwheel:' }; 970 | { word = ':juggling:'; label = '🤹 :juggling:'; insertText = '🤹'; filterText = ':juggling:' }; 971 | { word = ':fencer:'; label = '🤺 :fencer:'; insertText = '🤺'; filterText = ':fencer:' }; 972 | { word = ':wrestlers:'; label = '🤼 :wrestlers:'; insertText = '🤼'; filterText = ':wrestlers:' }; 973 | { word = ':water_polo:'; label = '🤽 :water_polo:'; insertText = '🤽'; filterText = ':water_polo:' }; 974 | { word = ':handball:'; label = '🤾 :handball:'; insertText = '🤾'; filterText = ':handball:' }; 975 | { word = ':diving_mask:'; label = '🤿 :diving_mask:'; insertText = '🤿'; filterText = ':diving_mask:' }; 976 | { word = ':wilted_flower:'; label = '🥀 :wilted_flower:'; insertText = '🥀'; filterText = ':wilted_flower:' }; 977 | { word = ':drum_with_drumsticks:'; label = '🥁 :drum_with_drumsticks:'; insertText = '🥁'; filterText = ':drum_with_drumsticks:' }; 978 | { word = ':clinking_glasses:'; label = '🥂 :clinking_glasses:'; insertText = '🥂'; filterText = ':clinking_glasses:' }; 979 | { word = ':tumbler_glass:'; label = '🥃 :tumbler_glass:'; insertText = '🥃'; filterText = ':tumbler_glass:' }; 980 | { word = ':spoon:'; label = '🥄 :spoon:'; insertText = '🥄'; filterText = ':spoon:' }; 981 | { word = ':goal_net:'; label = '🥅 :goal_net:'; insertText = '🥅'; filterText = ':goal_net:' }; 982 | { word = ':first_place_medal:'; label = '🥇 :first_place_medal:'; insertText = '🥇'; filterText = ':first_place_medal:' }; 983 | { word = ':second_place_medal:'; label = '🥈 :second_place_medal:'; insertText = '🥈'; filterText = ':second_place_medal:' }; 984 | { word = ':third_place_medal:'; label = '🥉 :third_place_medal:'; insertText = '🥉'; filterText = ':third_place_medal:' }; 985 | { word = ':boxing_glove:'; label = '🥊 :boxing_glove:'; insertText = '🥊'; filterText = ':boxing_glove:' }; 986 | { word = ':martial_arts_uniform:'; label = '🥋 :martial_arts_uniform:'; insertText = '🥋'; filterText = ':martial_arts_uniform:' }; 987 | { word = ':curling_stone:'; label = '🥌 :curling_stone:'; insertText = '🥌'; filterText = ':curling_stone:' }; 988 | { word = ':lacrosse:'; label = '🥍 :lacrosse:'; insertText = '🥍'; filterText = ':lacrosse:' }; 989 | { word = ':softball:'; label = '🥎 :softball:'; insertText = '🥎'; filterText = ':softball:' }; 990 | { word = ':flying_disc:'; label = '🥏 :flying_disc:'; insertText = '🥏'; filterText = ':flying_disc:' }; 991 | { word = ':croissant:'; label = '🥐 :croissant:'; insertText = '🥐'; filterText = ':croissant:' }; 992 | { word = ':avocado:'; label = '🥑 :avocado:'; insertText = '🥑'; filterText = ':avocado:' }; 993 | { word = ':cucumber:'; label = '🥒 :cucumber:'; insertText = '🥒'; filterText = ':cucumber:' }; 994 | { word = ':bacon:'; label = '🥓 :bacon:'; insertText = '🥓'; filterText = ':bacon:' }; 995 | { word = ':potato:'; label = '🥔 :potato:'; insertText = '🥔'; filterText = ':potato:' }; 996 | { word = ':carrot:'; label = '🥕 :carrot:'; insertText = '🥕'; filterText = ':carrot:' }; 997 | { word = ':baguette_bread:'; label = '🥖 :baguette_bread:'; insertText = '🥖'; filterText = ':baguette_bread:' }; 998 | { word = ':green_salad:'; label = '🥗 :green_salad:'; insertText = '🥗'; filterText = ':green_salad:' }; 999 | { word = ':shallow_pan_of_food:'; label = '🥘 :shallow_pan_of_food:'; insertText = '🥘'; filterText = ':shallow_pan_of_food:' }; 1000 | { word = ':stuffed_flatbread:'; label = '🥙 :stuffed_flatbread:'; insertText = '🥙'; filterText = ':stuffed_flatbread:' }; 1001 | { word = ':egg:'; label = '🥚 :egg:'; insertText = '🥚'; filterText = ':egg:' }; 1002 | { word = ':glass_of_milk:'; label = '🥛 :glass_of_milk:'; insertText = '🥛'; filterText = ':glass_of_milk:' }; 1003 | { word = ':peanuts:'; label = '🥜 :peanuts:'; insertText = '🥜'; filterText = ':peanuts:' }; 1004 | { word = ':kiwifruit:'; label = '🥝 :kiwifruit:'; insertText = '🥝'; filterText = ':kiwifruit:' }; 1005 | { word = ':pancakes:'; label = '🥞 :pancakes:'; insertText = '🥞'; filterText = ':pancakes:' }; 1006 | { word = ':dumpling:'; label = '🥟 :dumpling:'; insertText = '🥟'; filterText = ':dumpling:' }; 1007 | { word = ':fortune_cookie:'; label = '🥠 :fortune_cookie:'; insertText = '🥠'; filterText = ':fortune_cookie:' }; 1008 | { word = ':takeout_box:'; label = '🥡 :takeout_box:'; insertText = '🥡'; filterText = ':takeout_box:' }; 1009 | { word = ':chopsticks:'; label = '🥢 :chopsticks:'; insertText = '🥢'; filterText = ':chopsticks:' }; 1010 | { word = ':bowl_with_spoon:'; label = '🥣 :bowl_with_spoon:'; insertText = '🥣'; filterText = ':bowl_with_spoon:' }; 1011 | { word = ':cup_with_straw:'; label = '🥤 :cup_with_straw:'; insertText = '🥤'; filterText = ':cup_with_straw:' }; 1012 | { word = ':coconut:'; label = '🥥 :coconut:'; insertText = '🥥'; filterText = ':coconut:' }; 1013 | { word = ':broccoli:'; label = '🥦 :broccoli:'; insertText = '🥦'; filterText = ':broccoli:' }; 1014 | { word = ':pie:'; label = '🥧 :pie:'; insertText = '🥧'; filterText = ':pie:' }; 1015 | { word = ':pretzel:'; label = '🥨 :pretzel:'; insertText = '🥨'; filterText = ':pretzel:' }; 1016 | { word = ':cut_of_meat:'; label = '🥩 :cut_of_meat:'; insertText = '🥩'; filterText = ':cut_of_meat:' }; 1017 | { word = ':sandwich:'; label = '🥪 :sandwich:'; insertText = '🥪'; filterText = ':sandwich:' }; 1018 | { word = ':canned_food:'; label = '🥫 :canned_food:'; insertText = '🥫'; filterText = ':canned_food:' }; 1019 | { word = ':leafy_green:'; label = '🥬 :leafy_green:'; insertText = '🥬'; filterText = ':leafy_green:' }; 1020 | { word = ':mango:'; label = '🥭 :mango:'; insertText = '🥭'; filterText = ':mango:' }; 1021 | { word = ':moon_cake:'; label = '🥮 :moon_cake:'; insertText = '🥮'; filterText = ':moon_cake:' }; 1022 | { word = ':bagel:'; label = '🥯 :bagel:'; insertText = '🥯'; filterText = ':bagel:' }; 1023 | { word = ':smiling_face_with_3_hearts:'; label = '🥰 :smiling_face_with_3_hearts:'; insertText = '🥰'; filterText = ':smiling_face_with_3_hearts:' }; 1024 | { word = ':yawning_face:'; label = '🥱 :yawning_face:'; insertText = '🥱'; filterText = ':yawning_face:' }; 1025 | { word = ':smiling_face_with_tear:'; label = '🥲 :smiling_face_with_tear:'; insertText = '🥲'; filterText = ':smiling_face_with_tear:' }; 1026 | { word = ':partying_face:'; label = '🥳 :partying_face:'; insertText = '🥳'; filterText = ':partying_face:' }; 1027 | { word = ':woozy_face:'; label = '🥴 :woozy_face:'; insertText = '🥴'; filterText = ':woozy_face:' }; 1028 | { word = ':hot_face:'; label = '🥵 :hot_face:'; insertText = '🥵'; filterText = ':hot_face:' }; 1029 | { word = ':cold_face:'; label = '🥶 :cold_face:'; insertText = '🥶'; filterText = ':cold_face:' }; 1030 | { word = ':ninja:'; label = '🥷 :ninja:'; insertText = '🥷'; filterText = ':ninja:' }; 1031 | { word = ':disguised_face:'; label = '🥸 :disguised_face:'; insertText = '🥸'; filterText = ':disguised_face:' }; 1032 | { word = ':face_holding_back_tears:'; label = '🥹 :face_holding_back_tears:'; insertText = '🥹'; filterText = ':face_holding_back_tears:' }; 1033 | { word = ':pleading_face:'; label = '🥺 :pleading_face:'; insertText = '🥺'; filterText = ':pleading_face:' }; 1034 | { word = ':sari:'; label = '🥻 :sari:'; insertText = '🥻'; filterText = ':sari:' }; 1035 | { word = ':lab_coat:'; label = '🥼 :lab_coat:'; insertText = '🥼'; filterText = ':lab_coat:' }; 1036 | { word = ':goggles:'; label = '🥽 :goggles:'; insertText = '🥽'; filterText = ':goggles:' }; 1037 | { word = ':hiking_boot:'; label = '🥾 :hiking_boot:'; insertText = '🥾'; filterText = ':hiking_boot:' }; 1038 | { word = ':womans_flat_shoe:'; label = '🥿 :womans_flat_shoe:'; insertText = '🥿'; filterText = ':womans_flat_shoe:' }; 1039 | { word = ':crab:'; label = '🦀 :crab:'; insertText = '🦀'; filterText = ':crab:' }; 1040 | { word = ':lion_face:'; label = '🦁 :lion_face:'; insertText = '🦁'; filterText = ':lion_face:' }; 1041 | { word = ':scorpion:'; label = '🦂 :scorpion:'; insertText = '🦂'; filterText = ':scorpion:' }; 1042 | { word = ':turkey:'; label = '🦃 :turkey:'; insertText = '🦃'; filterText = ':turkey:' }; 1043 | { word = ':unicorn_face:'; label = '🦄 :unicorn_face:'; insertText = '🦄'; filterText = ':unicorn_face:' }; 1044 | { word = ':eagle:'; label = '🦅 :eagle:'; insertText = '🦅'; filterText = ':eagle:' }; 1045 | { word = ':duck:'; label = '🦆 :duck:'; insertText = '🦆'; filterText = ':duck:' }; 1046 | { word = ':bat:'; label = '🦇 :bat:'; insertText = '🦇'; filterText = ':bat:' }; 1047 | { word = ':shark:'; label = '🦈 :shark:'; insertText = '🦈'; filterText = ':shark:' }; 1048 | { word = ':owl:'; label = '🦉 :owl:'; insertText = '🦉'; filterText = ':owl:' }; 1049 | { word = ':fox_face:'; label = '🦊 :fox_face:'; insertText = '🦊'; filterText = ':fox_face:' }; 1050 | { word = ':butterfly:'; label = '🦋 :butterfly:'; insertText = '🦋'; filterText = ':butterfly:' }; 1051 | { word = ':deer:'; label = '🦌 :deer:'; insertText = '🦌'; filterText = ':deer:' }; 1052 | { word = ':gorilla:'; label = '🦍 :gorilla:'; insertText = '🦍'; filterText = ':gorilla:' }; 1053 | { word = ':lizard:'; label = '🦎 :lizard:'; insertText = '🦎'; filterText = ':lizard:' }; 1054 | { word = ':rhinoceros:'; label = '🦏 :rhinoceros:'; insertText = '🦏'; filterText = ':rhinoceros:' }; 1055 | { word = ':shrimp:'; label = '🦐 :shrimp:'; insertText = '🦐'; filterText = ':shrimp:' }; 1056 | { word = ':squid:'; label = '🦑 :squid:'; insertText = '🦑'; filterText = ':squid:' }; 1057 | { word = ':giraffe_face:'; label = '🦒 :giraffe_face:'; insertText = '🦒'; filterText = ':giraffe_face:' }; 1058 | { word = ':zebra_face:'; label = '🦓 :zebra_face:'; insertText = '🦓'; filterText = ':zebra_face:' }; 1059 | { word = ':hedgehog:'; label = '🦔 :hedgehog:'; insertText = '🦔'; filterText = ':hedgehog:' }; 1060 | { word = ':sauropod:'; label = '🦕 :sauropod:'; insertText = '🦕'; filterText = ':sauropod:' }; 1061 | { word = ':t-rex:'; label = '🦖 :t-rex:'; insertText = '🦖'; filterText = ':t-rex:' }; 1062 | { word = ':cricket:'; label = '🦗 :cricket:'; insertText = '🦗'; filterText = ':cricket:' }; 1063 | { word = ':kangaroo:'; label = '🦘 :kangaroo:'; insertText = '🦘'; filterText = ':kangaroo:' }; 1064 | { word = ':llama:'; label = '🦙 :llama:'; insertText = '🦙'; filterText = ':llama:' }; 1065 | { word = ':peacock:'; label = '🦚 :peacock:'; insertText = '🦚'; filterText = ':peacock:' }; 1066 | { word = ':hippopotamus:'; label = '🦛 :hippopotamus:'; insertText = '🦛'; filterText = ':hippopotamus:' }; 1067 | { word = ':parrot:'; label = '🦜 :parrot:'; insertText = '🦜'; filterText = ':parrot:' }; 1068 | { word = ':raccoon:'; label = '🦝 :raccoon:'; insertText = '🦝'; filterText = ':raccoon:' }; 1069 | { word = ':lobster:'; label = '🦞 :lobster:'; insertText = '🦞'; filterText = ':lobster:' }; 1070 | { word = ':mosquito:'; label = '🦟 :mosquito:'; insertText = '🦟'; filterText = ':mosquito:' }; 1071 | { word = ':microbe:'; label = '🦠 :microbe:'; insertText = '🦠'; filterText = ':microbe:' }; 1072 | { word = ':badger:'; label = '🦡 :badger:'; insertText = '🦡'; filterText = ':badger:' }; 1073 | { word = ':swan:'; label = '🦢 :swan:'; insertText = '🦢'; filterText = ':swan:' }; 1074 | { word = ':mammoth:'; label = '🦣 :mammoth:'; insertText = '🦣'; filterText = ':mammoth:' }; 1075 | { word = ':dodo:'; label = '🦤 :dodo:'; insertText = '🦤'; filterText = ':dodo:' }; 1076 | { word = ':sloth:'; label = '🦥 :sloth:'; insertText = '🦥'; filterText = ':sloth:' }; 1077 | { word = ':otter:'; label = '🦦 :otter:'; insertText = '🦦'; filterText = ':otter:' }; 1078 | { word = ':orangutan:'; label = '🦧 :orangutan:'; insertText = '🦧'; filterText = ':orangutan:' }; 1079 | { word = ':skunk:'; label = '🦨 :skunk:'; insertText = '🦨'; filterText = ':skunk:' }; 1080 | { word = ':flamingo:'; label = '🦩 :flamingo:'; insertText = '🦩'; filterText = ':flamingo:' }; 1081 | { word = ':oyster:'; label = '🦪 :oyster:'; insertText = '🦪'; filterText = ':oyster:' }; 1082 | { word = ':beaver:'; label = '🦫 :beaver:'; insertText = '🦫'; filterText = ':beaver:' }; 1083 | { word = ':bison:'; label = '🦬 :bison:'; insertText = '🦬'; filterText = ':bison:' }; 1084 | { word = ':seal:'; label = '🦭 :seal:'; insertText = '🦭'; filterText = ':seal:' }; 1085 | { word = ':guide_dog:'; label = '🦮 :guide_dog:'; insertText = '🦮'; filterText = ':guide_dog:' }; 1086 | { word = ':probing_cane:'; label = '🦯 :probing_cane:'; insertText = '🦯'; filterText = ':probing_cane:' }; 1087 | { word = ':bone:'; label = '🦴 :bone:'; insertText = '🦴'; filterText = ':bone:' }; 1088 | { word = ':leg:'; label = '🦵 :leg:'; insertText = '🦵'; filterText = ':leg:' }; 1089 | { word = ':foot:'; label = '🦶 :foot:'; insertText = '🦶'; filterText = ':foot:' }; 1090 | { word = ':tooth:'; label = '🦷 :tooth:'; insertText = '🦷'; filterText = ':tooth:' }; 1091 | { word = ':superhero:'; label = '🦸 :superhero:'; insertText = '🦸'; filterText = ':superhero:' }; 1092 | { word = ':supervillain:'; label = '🦹 :supervillain:'; insertText = '🦹'; filterText = ':supervillain:' }; 1093 | { word = ':safety_vest:'; label = '🦺 :safety_vest:'; insertText = '🦺'; filterText = ':safety_vest:' }; 1094 | { word = ':ear_with_hearing_aid:'; label = '🦻 :ear_with_hearing_aid:'; insertText = '🦻'; filterText = ':ear_with_hearing_aid:' }; 1095 | { word = ':motorized_wheelchair:'; label = '🦼 :motorized_wheelchair:'; insertText = '🦼'; filterText = ':motorized_wheelchair:' }; 1096 | { word = ':manual_wheelchair:'; label = '🦽 :manual_wheelchair:'; insertText = '🦽'; filterText = ':manual_wheelchair:' }; 1097 | { word = ':mechanical_arm:'; label = '🦾 :mechanical_arm:'; insertText = '🦾'; filterText = ':mechanical_arm:' }; 1098 | { word = ':mechanical_leg:'; label = '🦿 :mechanical_leg:'; insertText = '🦿'; filterText = ':mechanical_leg:' }; 1099 | { word = ':cheese_wedge:'; label = '🧀 :cheese_wedge:'; insertText = '🧀'; filterText = ':cheese_wedge:' }; 1100 | { word = ':cupcake:'; label = '🧁 :cupcake:'; insertText = '🧁'; filterText = ':cupcake:' }; 1101 | { word = ':salt:'; label = '🧂 :salt:'; insertText = '🧂'; filterText = ':salt:' }; 1102 | { word = ':beverage_box:'; label = '🧃 :beverage_box:'; insertText = '🧃'; filterText = ':beverage_box:' }; 1103 | { word = ':garlic:'; label = '🧄 :garlic:'; insertText = '🧄'; filterText = ':garlic:' }; 1104 | { word = ':onion:'; label = '🧅 :onion:'; insertText = '🧅'; filterText = ':onion:' }; 1105 | { word = ':falafel:'; label = '🧆 :falafel:'; insertText = '🧆'; filterText = ':falafel:' }; 1106 | { word = ':waffle:'; label = '🧇 :waffle:'; insertText = '🧇'; filterText = ':waffle:' }; 1107 | { word = ':butter:'; label = '🧈 :butter:'; insertText = '🧈'; filterText = ':butter:' }; 1108 | { word = ':mate_drink:'; label = '🧉 :mate_drink:'; insertText = '🧉'; filterText = ':mate_drink:' }; 1109 | { word = ':ice_cube:'; label = '🧊 :ice_cube:'; insertText = '🧊'; filterText = ':ice_cube:' }; 1110 | { word = ':bubble_tea:'; label = '🧋 :bubble_tea:'; insertText = '🧋'; filterText = ':bubble_tea:' }; 1111 | { word = ':troll:'; label = '🧌 :troll:'; insertText = '🧌'; filterText = ':troll:' }; 1112 | { word = ':standing_person:'; label = '🧍 :standing_person:'; insertText = '🧍'; filterText = ':standing_person:' }; 1113 | { word = ':kneeling_person:'; label = '🧎 :kneeling_person:'; insertText = '🧎'; filterText = ':kneeling_person:' }; 1114 | { word = ':deaf_person:'; label = '🧏 :deaf_person:'; insertText = '🧏'; filterText = ':deaf_person:' }; 1115 | { word = ':face_with_monocle:'; label = '🧐 :face_with_monocle:'; insertText = '🧐'; filterText = ':face_with_monocle:' }; 1116 | { word = ':adult:'; label = '🧑 :adult:'; insertText = '🧑'; filterText = ':adult:' }; 1117 | { word = ':child:'; label = '🧒 :child:'; insertText = '🧒'; filterText = ':child:' }; 1118 | { word = ':older_adult:'; label = '🧓 :older_adult:'; insertText = '🧓'; filterText = ':older_adult:' }; 1119 | { word = ':bearded_person:'; label = '🧔 :bearded_person:'; insertText = '🧔'; filterText = ':bearded_person:' }; 1120 | { word = ':person_with_headscarf:'; label = '🧕 :person_with_headscarf:'; insertText = '🧕'; filterText = ':person_with_headscarf:' }; 1121 | { word = ':person_in_steamy_room:'; label = '🧖 :person_in_steamy_room:'; insertText = '🧖'; filterText = ':person_in_steamy_room:' }; 1122 | { word = ':person_climbing:'; label = '🧗 :person_climbing:'; insertText = '🧗'; filterText = ':person_climbing:' }; 1123 | { word = ':person_in_lotus_position:'; label = '🧘 :person_in_lotus_position:'; insertText = '🧘'; filterText = ':person_in_lotus_position:' }; 1124 | { word = ':mage:'; label = '🧙 :mage:'; insertText = '🧙'; filterText = ':mage:' }; 1125 | { word = ':fairy:'; label = '🧚 :fairy:'; insertText = '🧚'; filterText = ':fairy:' }; 1126 | { word = ':vampire:'; label = '🧛 :vampire:'; insertText = '🧛'; filterText = ':vampire:' }; 1127 | { word = ':merperson:'; label = '🧜 :merperson:'; insertText = '🧜'; filterText = ':merperson:' }; 1128 | { word = ':elf:'; label = '🧝 :elf:'; insertText = '🧝'; filterText = ':elf:' }; 1129 | { word = ':genie:'; label = '🧞 :genie:'; insertText = '🧞'; filterText = ':genie:' }; 1130 | { word = ':zombie:'; label = '🧟 :zombie:'; insertText = '🧟'; filterText = ':zombie:' }; 1131 | { word = ':brain:'; label = '🧠 :brain:'; insertText = '🧠'; filterText = ':brain:' }; 1132 | { word = ':orange_heart:'; label = '🧡 :orange_heart:'; insertText = '🧡'; filterText = ':orange_heart:' }; 1133 | { word = ':billed_cap:'; label = '🧢 :billed_cap:'; insertText = '🧢'; filterText = ':billed_cap:' }; 1134 | { word = ':scarf:'; label = '🧣 :scarf:'; insertText = '🧣'; filterText = ':scarf:' }; 1135 | { word = ':gloves:'; label = '🧤 :gloves:'; insertText = '🧤'; filterText = ':gloves:' }; 1136 | { word = ':coat:'; label = '🧥 :coat:'; insertText = '🧥'; filterText = ':coat:' }; 1137 | { word = ':socks:'; label = '🧦 :socks:'; insertText = '🧦'; filterText = ':socks:' }; 1138 | { word = ':red_envelope:'; label = '🧧 :red_envelope:'; insertText = '🧧'; filterText = ':red_envelope:' }; 1139 | { word = ':firecracker:'; label = '🧨 :firecracker:'; insertText = '🧨'; filterText = ':firecracker:' }; 1140 | { word = ':jigsaw:'; label = '🧩 :jigsaw:'; insertText = '🧩'; filterText = ':jigsaw:' }; 1141 | { word = ':test_tube:'; label = '🧪 :test_tube:'; insertText = '🧪'; filterText = ':test_tube:' }; 1142 | { word = ':petri_dish:'; label = '🧫 :petri_dish:'; insertText = '🧫'; filterText = ':petri_dish:' }; 1143 | { word = ':dna:'; label = '🧬 :dna:'; insertText = '🧬'; filterText = ':dna:' }; 1144 | { word = ':compass:'; label = '🧭 :compass:'; insertText = '🧭'; filterText = ':compass:' }; 1145 | { word = ':abacus:'; label = '🧮 :abacus:'; insertText = '🧮'; filterText = ':abacus:' }; 1146 | { word = ':fire_extinguisher:'; label = '🧯 :fire_extinguisher:'; insertText = '🧯'; filterText = ':fire_extinguisher:' }; 1147 | { word = ':toolbox:'; label = '🧰 :toolbox:'; insertText = '🧰'; filterText = ':toolbox:' }; 1148 | { word = ':bricks:'; label = '🧱 :bricks:'; insertText = '🧱'; filterText = ':bricks:' }; 1149 | { word = ':magnet:'; label = '🧲 :magnet:'; insertText = '🧲'; filterText = ':magnet:' }; 1150 | { word = ':luggage:'; label = '🧳 :luggage:'; insertText = '🧳'; filterText = ':luggage:' }; 1151 | { word = ':lotion_bottle:'; label = '🧴 :lotion_bottle:'; insertText = '🧴'; filterText = ':lotion_bottle:' }; 1152 | { word = ':thread:'; label = '🧵 :thread:'; insertText = '🧵'; filterText = ':thread:' }; 1153 | { word = ':yarn:'; label = '🧶 :yarn:'; insertText = '🧶'; filterText = ':yarn:' }; 1154 | { word = ':safety_pin:'; label = '🧷 :safety_pin:'; insertText = '🧷'; filterText = ':safety_pin:' }; 1155 | { word = ':teddy_bear:'; label = '🧸 :teddy_bear:'; insertText = '🧸'; filterText = ':teddy_bear:' }; 1156 | { word = ':broom:'; label = '🧹 :broom:'; insertText = '🧹'; filterText = ':broom:' }; 1157 | { word = ':basket:'; label = '🧺 :basket:'; insertText = '🧺'; filterText = ':basket:' }; 1158 | { word = ':roll_of_paper:'; label = '🧻 :roll_of_paper:'; insertText = '🧻'; filterText = ':roll_of_paper:' }; 1159 | { word = ':soap:'; label = '🧼 :soap:'; insertText = '🧼'; filterText = ':soap:' }; 1160 | { word = ':sponge:'; label = '🧽 :sponge:'; insertText = '🧽'; filterText = ':sponge:' }; 1161 | { word = ':receipt:'; label = '🧾 :receipt:'; insertText = '🧾'; filterText = ':receipt:' }; 1162 | { word = ':nazar_amulet:'; label = '🧿 :nazar_amulet:'; insertText = '🧿'; filterText = ':nazar_amulet:' }; 1163 | { word = ':ballet_shoes:'; label = '🩰 :ballet_shoes:'; insertText = '🩰'; filterText = ':ballet_shoes:' }; 1164 | { word = ':one-piece_swimsuit:'; label = '🩱 :one-piece_swimsuit:'; insertText = '🩱'; filterText = ':one-piece_swimsuit:' }; 1165 | { word = ':briefs:'; label = '🩲 :briefs:'; insertText = '🩲'; filterText = ':briefs:' }; 1166 | { word = ':shorts:'; label = '🩳 :shorts:'; insertText = '🩳'; filterText = ':shorts:' }; 1167 | { word = ':thong_sandal:'; label = '🩴 :thong_sandal:'; insertText = '🩴'; filterText = ':thong_sandal:' }; 1168 | { word = ':light_blue_heart:'; label = '🩵 :light_blue_heart:'; insertText = '🩵'; filterText = ':light_blue_heart:' }; 1169 | { word = ':grey_heart:'; label = '🩶 :grey_heart:'; insertText = '🩶'; filterText = ':grey_heart:' }; 1170 | { word = ':pink_heart:'; label = '🩷 :pink_heart:'; insertText = '🩷'; filterText = ':pink_heart:' }; 1171 | { word = ':drop_of_blood:'; label = '🩸 :drop_of_blood:'; insertText = '🩸'; filterText = ':drop_of_blood:' }; 1172 | { word = ':adhesive_bandage:'; label = '🩹 :adhesive_bandage:'; insertText = '🩹'; filterText = ':adhesive_bandage:' }; 1173 | { word = ':stethoscope:'; label = '🩺 :stethoscope:'; insertText = '🩺'; filterText = ':stethoscope:' }; 1174 | { word = ':x-ray:'; label = '🩻 :x-ray:'; insertText = '🩻'; filterText = ':x-ray:' }; 1175 | { word = ':crutch:'; label = '🩼 :crutch:'; insertText = '🩼'; filterText = ':crutch:' }; 1176 | { word = ':yo-yo:'; label = '🪀 :yo-yo:'; insertText = '🪀'; filterText = ':yo-yo:' }; 1177 | { word = ':kite:'; label = '🪁 :kite:'; insertText = '🪁'; filterText = ':kite:' }; 1178 | { word = ':parachute:'; label = '🪂 :parachute:'; insertText = '🪂'; filterText = ':parachute:' }; 1179 | { word = ':boomerang:'; label = '🪃 :boomerang:'; insertText = '🪃'; filterText = ':boomerang:' }; 1180 | { word = ':magic_wand:'; label = '🪄 :magic_wand:'; insertText = '🪄'; filterText = ':magic_wand:' }; 1181 | { word = ':pinata:'; label = '🪅 :pinata:'; insertText = '🪅'; filterText = ':pinata:' }; 1182 | { word = ':nesting_dolls:'; label = '🪆 :nesting_dolls:'; insertText = '🪆'; filterText = ':nesting_dolls:' }; 1183 | { word = ':maracas:'; label = '🪇 :maracas:'; insertText = '🪇'; filterText = ':maracas:' }; 1184 | { word = ':flute:'; label = '🪈 :flute:'; insertText = '🪈'; filterText = ':flute:' }; 1185 | { word = ':ringed_planet:'; label = '🪐 :ringed_planet:'; insertText = '🪐'; filterText = ':ringed_planet:' }; 1186 | { word = ':chair:'; label = '🪑 :chair:'; insertText = '🪑'; filterText = ':chair:' }; 1187 | { word = ':razor:'; label = '🪒 :razor:'; insertText = '🪒'; filterText = ':razor:' }; 1188 | { word = ':axe:'; label = '🪓 :axe:'; insertText = '🪓'; filterText = ':axe:' }; 1189 | { word = ':diya_lamp:'; label = '🪔 :diya_lamp:'; insertText = '🪔'; filterText = ':diya_lamp:' }; 1190 | { word = ':banjo:'; label = '🪕 :banjo:'; insertText = '🪕'; filterText = ':banjo:' }; 1191 | { word = ':military_helmet:'; label = '🪖 :military_helmet:'; insertText = '🪖'; filterText = ':military_helmet:' }; 1192 | { word = ':accordion:'; label = '🪗 :accordion:'; insertText = '🪗'; filterText = ':accordion:' }; 1193 | { word = ':long_drum:'; label = '🪘 :long_drum:'; insertText = '🪘'; filterText = ':long_drum:' }; 1194 | { word = ':coin:'; label = '🪙 :coin:'; insertText = '🪙'; filterText = ':coin:' }; 1195 | { word = ':carpentry_saw:'; label = '🪚 :carpentry_saw:'; insertText = '🪚'; filterText = ':carpentry_saw:' }; 1196 | { word = ':screwdriver:'; label = '🪛 :screwdriver:'; insertText = '🪛'; filterText = ':screwdriver:' }; 1197 | { word = ':ladder:'; label = '🪜 :ladder:'; insertText = '🪜'; filterText = ':ladder:' }; 1198 | { word = ':hook:'; label = '🪝 :hook:'; insertText = '🪝'; filterText = ':hook:' }; 1199 | { word = ':mirror:'; label = '🪞 :mirror:'; insertText = '🪞'; filterText = ':mirror:' }; 1200 | { word = ':window:'; label = '🪟 :window:'; insertText = '🪟'; filterText = ':window:' }; 1201 | { word = ':plunger:'; label = '🪠 :plunger:'; insertText = '🪠'; filterText = ':plunger:' }; 1202 | { word = ':sewing_needle:'; label = '🪡 :sewing_needle:'; insertText = '🪡'; filterText = ':sewing_needle:' }; 1203 | { word = ':knot:'; label = '🪢 :knot:'; insertText = '🪢'; filterText = ':knot:' }; 1204 | { word = ':bucket:'; label = '🪣 :bucket:'; insertText = '🪣'; filterText = ':bucket:' }; 1205 | { word = ':mouse_trap:'; label = '🪤 :mouse_trap:'; insertText = '🪤'; filterText = ':mouse_trap:' }; 1206 | { word = ':toothbrush:'; label = '🪥 :toothbrush:'; insertText = '🪥'; filterText = ':toothbrush:' }; 1207 | { word = ':headstone:'; label = '🪦 :headstone:'; insertText = '🪦'; filterText = ':headstone:' }; 1208 | { word = ':placard:'; label = '🪧 :placard:'; insertText = '🪧'; filterText = ':placard:' }; 1209 | { word = ':rock:'; label = '🪨 :rock:'; insertText = '🪨'; filterText = ':rock:' }; 1210 | { word = ':mirror_ball:'; label = '🪩 :mirror_ball:'; insertText = '🪩'; filterText = ':mirror_ball:' }; 1211 | { word = ':identification_card:'; label = '🪪 :identification_card:'; insertText = '🪪'; filterText = ':identification_card:' }; 1212 | { word = ':low_battery:'; label = '🪫 :low_battery:'; insertText = '🪫'; filterText = ':low_battery:' }; 1213 | { word = ':hamsa:'; label = '🪬 :hamsa:'; insertText = '🪬'; filterText = ':hamsa:' }; 1214 | { word = ':folding_hand_fan:'; label = '🪭 :folding_hand_fan:'; insertText = '🪭'; filterText = ':folding_hand_fan:' }; 1215 | { word = ':hair_pick:'; label = '🪮 :hair_pick:'; insertText = '🪮'; filterText = ':hair_pick:' }; 1216 | { word = ':khanda:'; label = '🪯 :khanda:'; insertText = '🪯'; filterText = ':khanda:' }; 1217 | { word = ':fly:'; label = '🪰 :fly:'; insertText = '🪰'; filterText = ':fly:' }; 1218 | { word = ':worm:'; label = '🪱 :worm:'; insertText = '🪱'; filterText = ':worm:' }; 1219 | { word = ':beetle:'; label = '🪲 :beetle:'; insertText = '🪲'; filterText = ':beetle:' }; 1220 | { word = ':cockroach:'; label = '🪳 :cockroach:'; insertText = '🪳'; filterText = ':cockroach:' }; 1221 | { word = ':potted_plant:'; label = '🪴 :potted_plant:'; insertText = '🪴'; filterText = ':potted_plant:' }; 1222 | { word = ':wood:'; label = '🪵 :wood:'; insertText = '🪵'; filterText = ':wood:' }; 1223 | { word = ':feather:'; label = '🪶 :feather:'; insertText = '🪶'; filterText = ':feather:' }; 1224 | { word = ':lotus:'; label = '🪷 :lotus:'; insertText = '🪷'; filterText = ':lotus:' }; 1225 | { word = ':coral:'; label = '🪸 :coral:'; insertText = '🪸'; filterText = ':coral:' }; 1226 | { word = ':empty_nest:'; label = '🪹 :empty_nest:'; insertText = '🪹'; filterText = ':empty_nest:' }; 1227 | { word = ':nest_with_eggs:'; label = '🪺 :nest_with_eggs:'; insertText = '🪺'; filterText = ':nest_with_eggs:' }; 1228 | { word = ':hyacinth:'; label = '🪻 :hyacinth:'; insertText = '🪻'; filterText = ':hyacinth:' }; 1229 | { word = ':jellyfish:'; label = '🪼 :jellyfish:'; insertText = '🪼'; filterText = ':jellyfish:' }; 1230 | { word = ':wing:'; label = '🪽 :wing:'; insertText = '🪽'; filterText = ':wing:' }; 1231 | { word = ':goose:'; label = '🪿 :goose:'; insertText = '🪿'; filterText = ':goose:' }; 1232 | { word = ':anatomical_heart:'; label = '🫀 :anatomical_heart:'; insertText = '🫀'; filterText = ':anatomical_heart:' }; 1233 | { word = ':lungs:'; label = '🫁 :lungs:'; insertText = '🫁'; filterText = ':lungs:' }; 1234 | { word = ':people_hugging:'; label = '🫂 :people_hugging:'; insertText = '🫂'; filterText = ':people_hugging:' }; 1235 | { word = ':pregnant_man:'; label = '🫃 :pregnant_man:'; insertText = '🫃'; filterText = ':pregnant_man:' }; 1236 | { word = ':pregnant_person:'; label = '🫄 :pregnant_person:'; insertText = '🫄'; filterText = ':pregnant_person:' }; 1237 | { word = ':person_with_crown:'; label = '🫅 :person_with_crown:'; insertText = '🫅'; filterText = ':person_with_crown:' }; 1238 | { word = ':moose:'; label = '🫎 :moose:'; insertText = '🫎'; filterText = ':moose:' }; 1239 | { word = ':donkey:'; label = '🫏 :donkey:'; insertText = '🫏'; filterText = ':donkey:' }; 1240 | { word = ':blueberries:'; label = '🫐 :blueberries:'; insertText = '🫐'; filterText = ':blueberries:' }; 1241 | { word = ':bell_pepper:'; label = '🫑 :bell_pepper:'; insertText = '🫑'; filterText = ':bell_pepper:' }; 1242 | { word = ':olive:'; label = '🫒 :olive:'; insertText = '🫒'; filterText = ':olive:' }; 1243 | { word = ':flatbread:'; label = '🫓 :flatbread:'; insertText = '🫓'; filterText = ':flatbread:' }; 1244 | { word = ':tamale:'; label = '🫔 :tamale:'; insertText = '🫔'; filterText = ':tamale:' }; 1245 | { word = ':fondue:'; label = '🫕 :fondue:'; insertText = '🫕'; filterText = ':fondue:' }; 1246 | { word = ':teapot:'; label = '🫖 :teapot:'; insertText = '🫖'; filterText = ':teapot:' }; 1247 | { word = ':pouring_liquid:'; label = '🫗 :pouring_liquid:'; insertText = '🫗'; filterText = ':pouring_liquid:' }; 1248 | { word = ':beans:'; label = '🫘 :beans:'; insertText = '🫘'; filterText = ':beans:' }; 1249 | { word = ':jar:'; label = '🫙 :jar:'; insertText = '🫙'; filterText = ':jar:' }; 1250 | { word = ':ginger_root:'; label = '🫚 :ginger_root:'; insertText = '🫚'; filterText = ':ginger_root:' }; 1251 | { word = ':pea_pod:'; label = '🫛 :pea_pod:'; insertText = '🫛'; filterText = ':pea_pod:' }; 1252 | { word = ':melting_face:'; label = '🫠 :melting_face:'; insertText = '🫠'; filterText = ':melting_face:' }; 1253 | { word = ':saluting_face:'; label = '🫡 :saluting_face:'; insertText = '🫡'; filterText = ':saluting_face:' }; 1254 | { word = ':face_with_open_eyes_and_hand_over_mouth:'; label = '🫢 :face_with_open_eyes_and_hand_over_mouth:'; insertText = '🫢'; filterText = ':face_with_open_eyes_and_hand_over_mouth:' }; 1255 | { word = ':face_with_peeking_eye:'; label = '🫣 :face_with_peeking_eye:'; insertText = '🫣'; filterText = ':face_with_peeking_eye:' }; 1256 | { word = ':face_with_diagonal_mouth:'; label = '🫤 :face_with_diagonal_mouth:'; insertText = '🫤'; filterText = ':face_with_diagonal_mouth:' }; 1257 | { word = ':dotted_line_face:'; label = '🫥 :dotted_line_face:'; insertText = '🫥'; filterText = ':dotted_line_face:' }; 1258 | { word = ':biting_lip:'; label = '🫦 :biting_lip:'; insertText = '🫦'; filterText = ':biting_lip:' }; 1259 | { word = ':bubbles:'; label = '🫧 :bubbles:'; insertText = '🫧'; filterText = ':bubbles:' }; 1260 | { word = ':shaking_face:'; label = '🫨 :shaking_face:'; insertText = '🫨'; filterText = ':shaking_face:' }; 1261 | { word = ':hand_with_index_finger_and_thumb_crossed:'; label = '🫰 :hand_with_index_finger_and_thumb_crossed:'; insertText = '🫰'; filterText = ':hand_with_index_finger_and_thumb_crossed:' }; 1262 | { word = ':rightwards_hand:'; label = '🫱 :rightwards_hand:'; insertText = '🫱'; filterText = ':rightwards_hand:' }; 1263 | { word = ':leftwards_hand:'; label = '🫲 :leftwards_hand:'; insertText = '🫲'; filterText = ':leftwards_hand:' }; 1264 | { word = ':palm_down_hand:'; label = '🫳 :palm_down_hand:'; insertText = '🫳'; filterText = ':palm_down_hand:' }; 1265 | { word = ':palm_up_hand:'; label = '🫴 :palm_up_hand:'; insertText = '🫴'; filterText = ':palm_up_hand:' }; 1266 | { word = ':index_pointing_at_the_viewer:'; label = '🫵 :index_pointing_at_the_viewer:'; insertText = '🫵'; filterText = ':index_pointing_at_the_viewer:' }; 1267 | { word = ':heart_hands:'; label = '🫶 :heart_hands:'; insertText = '🫶'; filterText = ':heart_hands:' }; 1268 | { word = ':leftwards_pushing_hand:'; label = '🫷 :leftwards_pushing_hand:'; insertText = '🫷'; filterText = ':leftwards_pushing_hand:' }; 1269 | { word = ':rightwards_pushing_hand:'; label = '🫸 :rightwards_pushing_hand:'; insertText = '🫸'; filterText = ':rightwards_pushing_hand:' }; 1270 | { word = ':bangbang:'; label = '‼️ :bangbang:'; insertText = '‼️'; filterText = ':bangbang:' }; 1271 | { word = ':interrobang:'; label = '⁉️ :interrobang:'; insertText = '⁉️'; filterText = ':interrobang:' }; 1272 | { word = ':tm:'; label = '™️ :tm:'; insertText = '™️'; filterText = ':tm:' }; 1273 | { word = ':information_source:'; label = 'ℹ️ :information_source:'; insertText = 'ℹ️'; filterText = ':information_source:' }; 1274 | { word = ':left_right_arrow:'; label = '↔️ :left_right_arrow:'; insertText = '↔️'; filterText = ':left_right_arrow:' }; 1275 | { word = ':arrow_up_down:'; label = '↕️ :arrow_up_down:'; insertText = '↕️'; filterText = ':arrow_up_down:' }; 1276 | { word = ':arrow_upper_left:'; label = '↖️ :arrow_upper_left:'; insertText = '↖️'; filterText = ':arrow_upper_left:' }; 1277 | { word = ':arrow_upper_right:'; label = '↗️ :arrow_upper_right:'; insertText = '↗️'; filterText = ':arrow_upper_right:' }; 1278 | { word = ':arrow_lower_right:'; label = '↘️ :arrow_lower_right:'; insertText = '↘️'; filterText = ':arrow_lower_right:' }; 1279 | { word = ':arrow_lower_left:'; label = '↙️ :arrow_lower_left:'; insertText = '↙️'; filterText = ':arrow_lower_left:' }; 1280 | { word = ':leftwards_arrow_with_hook:'; label = '↩️ :leftwards_arrow_with_hook:'; insertText = '↩️'; filterText = ':leftwards_arrow_with_hook:' }; 1281 | { word = ':arrow_right_hook:'; label = '↪️ :arrow_right_hook:'; insertText = '↪️'; filterText = ':arrow_right_hook:' }; 1282 | { word = ':watch:'; label = '⌚ :watch:'; insertText = '⌚'; filterText = ':watch:' }; 1283 | { word = ':hourglass:'; label = '⌛ :hourglass:'; insertText = '⌛'; filterText = ':hourglass:' }; 1284 | { word = ':keyboard:'; label = '⌨️ :keyboard:'; insertText = '⌨️'; filterText = ':keyboard:' }; 1285 | { word = ':eject:'; label = '⏏️ :eject:'; insertText = '⏏️'; filterText = ':eject:' }; 1286 | { word = ':fast_forward:'; label = '⏩ :fast_forward:'; insertText = '⏩'; filterText = ':fast_forward:' }; 1287 | { word = ':rewind:'; label = '⏪ :rewind:'; insertText = '⏪'; filterText = ':rewind:' }; 1288 | { word = ':arrow_double_up:'; label = '⏫ :arrow_double_up:'; insertText = '⏫'; filterText = ':arrow_double_up:' }; 1289 | { word = ':arrow_double_down:'; label = '⏬ :arrow_double_down:'; insertText = '⏬'; filterText = ':arrow_double_down:' }; 1290 | { word = ':black_right_pointing_double_triangle_with_vertical_bar:'; label = '⏭️ :black_right_pointing_double_triangle_with_vertical_bar:'; insertText = '⏭️'; filterText = ':black_right_pointing_double_triangle_with_vertical_bar:' }; 1291 | { word = ':black_left_pointing_double_triangle_with_vertical_bar:'; label = '⏮️ :black_left_pointing_double_triangle_with_vertical_bar:'; insertText = '⏮️'; filterText = ':black_left_pointing_double_triangle_with_vertical_bar:' }; 1292 | { word = ':black_right_pointing_triangle_with_double_vertical_bar:'; label = '⏯️ :black_right_pointing_triangle_with_double_vertical_bar:'; insertText = '⏯️'; filterText = ':black_right_pointing_triangle_with_double_vertical_bar:' }; 1293 | { word = ':alarm_clock:'; label = '⏰ :alarm_clock:'; insertText = '⏰'; filterText = ':alarm_clock:' }; 1294 | { word = ':stopwatch:'; label = '⏱️ :stopwatch:'; insertText = '⏱️'; filterText = ':stopwatch:' }; 1295 | { word = ':timer_clock:'; label = '⏲️ :timer_clock:'; insertText = '⏲️'; filterText = ':timer_clock:' }; 1296 | { word = ':hourglass_flowing_sand:'; label = '⏳ :hourglass_flowing_sand:'; insertText = '⏳'; filterText = ':hourglass_flowing_sand:' }; 1297 | { word = ':double_vertical_bar:'; label = '⏸️ :double_vertical_bar:'; insertText = '⏸️'; filterText = ':double_vertical_bar:' }; 1298 | { word = ':black_square_for_stop:'; label = '⏹️ :black_square_for_stop:'; insertText = '⏹️'; filterText = ':black_square_for_stop:' }; 1299 | { word = ':black_circle_for_record:'; label = '⏺️ :black_circle_for_record:'; insertText = '⏺️'; filterText = ':black_circle_for_record:' }; 1300 | { word = ':m:'; label = 'Ⓜ️ :m:'; insertText = 'Ⓜ️'; filterText = ':m:' }; 1301 | { word = ':black_small_square:'; label = '▪️ :black_small_square:'; insertText = '▪️'; filterText = ':black_small_square:' }; 1302 | { word = ':white_small_square:'; label = '▫️ :white_small_square:'; insertText = '▫️'; filterText = ':white_small_square:' }; 1303 | { word = ':arrow_forward:'; label = '▶️ :arrow_forward:'; insertText = '▶️'; filterText = ':arrow_forward:' }; 1304 | { word = ':arrow_backward:'; label = '◀️ :arrow_backward:'; insertText = '◀️'; filterText = ':arrow_backward:' }; 1305 | { word = ':white_medium_square:'; label = '◻️ :white_medium_square:'; insertText = '◻️'; filterText = ':white_medium_square:' }; 1306 | { word = ':black_medium_square:'; label = '◼️ :black_medium_square:'; insertText = '◼️'; filterText = ':black_medium_square:' }; 1307 | { word = ':white_medium_small_square:'; label = '◽ :white_medium_small_square:'; insertText = '◽'; filterText = ':white_medium_small_square:' }; 1308 | { word = ':black_medium_small_square:'; label = '◾ :black_medium_small_square:'; insertText = '◾'; filterText = ':black_medium_small_square:' }; 1309 | { word = ':sunny:'; label = '☀️ :sunny:'; insertText = '☀️'; filterText = ':sunny:' }; 1310 | { word = ':cloud:'; label = '☁️ :cloud:'; insertText = '☁️'; filterText = ':cloud:' }; 1311 | { word = ':umbrella:'; label = '☂️ :umbrella:'; insertText = '☂️'; filterText = ':umbrella:' }; 1312 | { word = ':snowman:'; label = '☃️ :snowman:'; insertText = '☃️'; filterText = ':snowman:' }; 1313 | { word = ':comet:'; label = '☄️ :comet:'; insertText = '☄️'; filterText = ':comet:' }; 1314 | { word = ':phone:'; label = '☎️ :phone:'; insertText = '☎️'; filterText = ':phone:' }; 1315 | { word = ':telephone:'; label = '☎️ :telephone:'; insertText = '☎️'; filterText = ':telephone:' }; 1316 | { word = ':ballot_box_with_check:'; label = '☑️ :ballot_box_with_check:'; insertText = '☑️'; filterText = ':ballot_box_with_check:' }; 1317 | { word = ':umbrella_with_rain_drops:'; label = '☔ :umbrella_with_rain_drops:'; insertText = '☔'; filterText = ':umbrella_with_rain_drops:' }; 1318 | { word = ':coffee:'; label = '☕ :coffee:'; insertText = '☕'; filterText = ':coffee:' }; 1319 | { word = ':shamrock:'; label = '☘️ :shamrock:'; insertText = '☘️'; filterText = ':shamrock:' }; 1320 | { word = ':point_up:'; label = '☝️ :point_up:'; insertText = '☝️'; filterText = ':point_up:' }; 1321 | { word = ':skull_and_crossbones:'; label = '☠️ :skull_and_crossbones:'; insertText = '☠️'; filterText = ':skull_and_crossbones:' }; 1322 | { word = ':radioactive_sign:'; label = '☢️ :radioactive_sign:'; insertText = '☢️'; filterText = ':radioactive_sign:' }; 1323 | { word = ':biohazard_sign:'; label = '☣️ :biohazard_sign:'; insertText = '☣️'; filterText = ':biohazard_sign:' }; 1324 | { word = ':orthodox_cross:'; label = '☦️ :orthodox_cross:'; insertText = '☦️'; filterText = ':orthodox_cross:' }; 1325 | { word = ':star_and_crescent:'; label = '☪️ :star_and_crescent:'; insertText = '☪️'; filterText = ':star_and_crescent:' }; 1326 | { word = ':peace_symbol:'; label = '☮️ :peace_symbol:'; insertText = '☮️'; filterText = ':peace_symbol:' }; 1327 | { word = ':yin_yang:'; label = '☯️ :yin_yang:'; insertText = '☯️'; filterText = ':yin_yang:' }; 1328 | { word = ':wheel_of_dharma:'; label = '☸️ :wheel_of_dharma:'; insertText = '☸️'; filterText = ':wheel_of_dharma:' }; 1329 | { word = ':white_frowning_face:'; label = '☹️ :white_frowning_face:'; insertText = '☹️'; filterText = ':white_frowning_face:' }; 1330 | { word = ':relaxed:'; label = '☺️ :relaxed:'; insertText = '☺️'; filterText = ':relaxed:' }; 1331 | { word = ':female_sign:'; label = '♀️ :female_sign:'; insertText = '♀️'; filterText = ':female_sign:' }; 1332 | { word = ':male_sign:'; label = '♂️ :male_sign:'; insertText = '♂️'; filterText = ':male_sign:' }; 1333 | { word = ':aries:'; label = '♈ :aries:'; insertText = '♈'; filterText = ':aries:' }; 1334 | { word = ':taurus:'; label = '♉ :taurus:'; insertText = '♉'; filterText = ':taurus:' }; 1335 | { word = ':gemini:'; label = '♊ :gemini:'; insertText = '♊'; filterText = ':gemini:' }; 1336 | { word = ':cancer:'; label = '♋ :cancer:'; insertText = '♋'; filterText = ':cancer:' }; 1337 | { word = ':leo:'; label = '♌ :leo:'; insertText = '♌'; filterText = ':leo:' }; 1338 | { word = ':virgo:'; label = '♍ :virgo:'; insertText = '♍'; filterText = ':virgo:' }; 1339 | { word = ':libra:'; label = '♎ :libra:'; insertText = '♎'; filterText = ':libra:' }; 1340 | { word = ':scorpius:'; label = '♏ :scorpius:'; insertText = '♏'; filterText = ':scorpius:' }; 1341 | { word = ':sagittarius:'; label = '♐ :sagittarius:'; insertText = '♐'; filterText = ':sagittarius:' }; 1342 | { word = ':capricorn:'; label = '♑ :capricorn:'; insertText = '♑'; filterText = ':capricorn:' }; 1343 | { word = ':aquarius:'; label = '♒ :aquarius:'; insertText = '♒'; filterText = ':aquarius:' }; 1344 | { word = ':pisces:'; label = '♓ :pisces:'; insertText = '♓'; filterText = ':pisces:' }; 1345 | { word = ':chess_pawn:'; label = '♟️ :chess_pawn:'; insertText = '♟️'; filterText = ':chess_pawn:' }; 1346 | { word = ':spades:'; label = '♠️ :spades:'; insertText = '♠️'; filterText = ':spades:' }; 1347 | { word = ':clubs:'; label = '♣️ :clubs:'; insertText = '♣️'; filterText = ':clubs:' }; 1348 | { word = ':hearts:'; label = '♥️ :hearts:'; insertText = '♥️'; filterText = ':hearts:' }; 1349 | { word = ':diamonds:'; label = '♦️ :diamonds:'; insertText = '♦️'; filterText = ':diamonds:' }; 1350 | { word = ':hotsprings:'; label = '♨️ :hotsprings:'; insertText = '♨️'; filterText = ':hotsprings:' }; 1351 | { word = ':recycle:'; label = '♻️ :recycle:'; insertText = '♻️'; filterText = ':recycle:' }; 1352 | { word = ':infinity:'; label = '♾️ :infinity:'; insertText = '♾️'; filterText = ':infinity:' }; 1353 | { word = ':wheelchair:'; label = '♿ :wheelchair:'; insertText = '♿'; filterText = ':wheelchair:' }; 1354 | { word = ':hammer_and_pick:'; label = '⚒️ :hammer_and_pick:'; insertText = '⚒️'; filterText = ':hammer_and_pick:' }; 1355 | { word = ':anchor:'; label = '⚓ :anchor:'; insertText = '⚓'; filterText = ':anchor:' }; 1356 | { word = ':crossed_swords:'; label = '⚔️ :crossed_swords:'; insertText = '⚔️'; filterText = ':crossed_swords:' }; 1357 | { word = ':medical_symbol:'; label = '⚕️ :medical_symbol:'; insertText = '⚕️'; filterText = ':medical_symbol:' }; 1358 | { word = ':staff_of_aesculapius:'; label = '⚕️ :staff_of_aesculapius:'; insertText = '⚕️'; filterText = ':staff_of_aesculapius:' }; 1359 | { word = ':scales:'; label = '⚖️ :scales:'; insertText = '⚖️'; filterText = ':scales:' }; 1360 | { word = ':alembic:'; label = '⚗️ :alembic:'; insertText = '⚗️'; filterText = ':alembic:' }; 1361 | { word = ':gear:'; label = '⚙️ :gear:'; insertText = '⚙️'; filterText = ':gear:' }; 1362 | { word = ':atom_symbol:'; label = '⚛️ :atom_symbol:'; insertText = '⚛️'; filterText = ':atom_symbol:' }; 1363 | { word = ':fleur_de_lis:'; label = '⚜️ :fleur_de_lis:'; insertText = '⚜️'; filterText = ':fleur_de_lis:' }; 1364 | { word = ':warning:'; label = '⚠️ :warning:'; insertText = '⚠️'; filterText = ':warning:' }; 1365 | { word = ':zap:'; label = '⚡ :zap:'; insertText = '⚡'; filterText = ':zap:' }; 1366 | { word = ':transgender_symbol:'; label = '⚧️ :transgender_symbol:'; insertText = '⚧️'; filterText = ':transgender_symbol:' }; 1367 | { word = ':white_circle:'; label = '⚪ :white_circle:'; insertText = '⚪'; filterText = ':white_circle:' }; 1368 | { word = ':black_circle:'; label = '⚫ :black_circle:'; insertText = '⚫'; filterText = ':black_circle:' }; 1369 | { word = ':coffin:'; label = '⚰️ :coffin:'; insertText = '⚰️'; filterText = ':coffin:' }; 1370 | { word = ':funeral_urn:'; label = '⚱️ :funeral_urn:'; insertText = '⚱️'; filterText = ':funeral_urn:' }; 1371 | { word = ':soccer:'; label = '⚽ :soccer:'; insertText = '⚽'; filterText = ':soccer:' }; 1372 | { word = ':baseball:'; label = '⚾ :baseball:'; insertText = '⚾'; filterText = ':baseball:' }; 1373 | { word = ':snowman_without_snow:'; label = '⛄ :snowman_without_snow:'; insertText = '⛄'; filterText = ':snowman_without_snow:' }; 1374 | { word = ':partly_sunny:'; label = '⛅ :partly_sunny:'; insertText = '⛅'; filterText = ':partly_sunny:' }; 1375 | { word = ':thunder_cloud_and_rain:'; label = '⛈️ :thunder_cloud_and_rain:'; insertText = '⛈️'; filterText = ':thunder_cloud_and_rain:' }; 1376 | { word = ':ophiuchus:'; label = '⛎ :ophiuchus:'; insertText = '⛎'; filterText = ':ophiuchus:' }; 1377 | { word = ':pick:'; label = '⛏️ :pick:'; insertText = '⛏️'; filterText = ':pick:' }; 1378 | { word = ':helmet_with_white_cross:'; label = '⛑️ :helmet_with_white_cross:'; insertText = '⛑️'; filterText = ':helmet_with_white_cross:' }; 1379 | { word = ':chains:'; label = '⛓️ :chains:'; insertText = '⛓️'; filterText = ':chains:' }; 1380 | { word = ':no_entry:'; label = '⛔ :no_entry:'; insertText = '⛔'; filterText = ':no_entry:' }; 1381 | { word = ':shinto_shrine:'; label = '⛩️ :shinto_shrine:'; insertText = '⛩️'; filterText = ':shinto_shrine:' }; 1382 | { word = ':church:'; label = '⛪ :church:'; insertText = '⛪'; filterText = ':church:' }; 1383 | { word = ':mountain:'; label = '⛰️ :mountain:'; insertText = '⛰️'; filterText = ':mountain:' }; 1384 | { word = ':umbrella_on_ground:'; label = '⛱️ :umbrella_on_ground:'; insertText = '⛱️'; filterText = ':umbrella_on_ground:' }; 1385 | { word = ':fountain:'; label = '⛲ :fountain:'; insertText = '⛲'; filterText = ':fountain:' }; 1386 | { word = ':golf:'; label = '⛳ :golf:'; insertText = '⛳'; filterText = ':golf:' }; 1387 | { word = ':ferry:'; label = '⛴️ :ferry:'; insertText = '⛴️'; filterText = ':ferry:' }; 1388 | { word = ':boat:'; label = '⛵ :boat:'; insertText = '⛵'; filterText = ':boat:' }; 1389 | { word = ':sailboat:'; label = '⛵ :sailboat:'; insertText = '⛵'; filterText = ':sailboat:' }; 1390 | { word = ':skier:'; label = '⛷️ :skier:'; insertText = '⛷️'; filterText = ':skier:' }; 1391 | { word = ':ice_skate:'; label = '⛸️ :ice_skate:'; insertText = '⛸️'; filterText = ':ice_skate:' }; 1392 | { word = ':person_with_ball:'; label = '⛹️ :person_with_ball:'; insertText = '⛹️'; filterText = ':person_with_ball:' }; 1393 | { word = ':tent:'; label = '⛺ :tent:'; insertText = '⛺'; filterText = ':tent:' }; 1394 | { word = ':fuelpump:'; label = '⛽ :fuelpump:'; insertText = '⛽'; filterText = ':fuelpump:' }; 1395 | { word = ':scissors:'; label = '✂️ :scissors:'; insertText = '✂️'; filterText = ':scissors:' }; 1396 | { word = ':white_check_mark:'; label = '✅ :white_check_mark:'; insertText = '✅'; filterText = ':white_check_mark:' }; 1397 | { word = ':airplane:'; label = '✈️ :airplane:'; insertText = '✈️'; filterText = ':airplane:' }; 1398 | { word = ':email:'; label = '✉️ :email:'; insertText = '✉️'; filterText = ':email:' }; 1399 | { word = ':envelope:'; label = '✉️ :envelope:'; insertText = '✉️'; filterText = ':envelope:' }; 1400 | { word = ':fist:'; label = '✊ :fist:'; insertText = '✊'; filterText = ':fist:' }; 1401 | { word = ':hand:'; label = '✋ :hand:'; insertText = '✋'; filterText = ':hand:' }; 1402 | { word = ':raised_hand:'; label = '✋ :raised_hand:'; insertText = '✋'; filterText = ':raised_hand:' }; 1403 | { word = ':v:'; label = '✌️ :v:'; insertText = '✌️'; filterText = ':v:' }; 1404 | { word = ':writing_hand:'; label = '✍️ :writing_hand:'; insertText = '✍️'; filterText = ':writing_hand:' }; 1405 | { word = ':pencil2:'; label = '✏️ :pencil2:'; insertText = '✏️'; filterText = ':pencil2:' }; 1406 | { word = ':black_nib:'; label = '✒️ :black_nib:'; insertText = '✒️'; filterText = ':black_nib:' }; 1407 | { word = ':heavy_check_mark:'; label = '✔️ :heavy_check_mark:'; insertText = '✔️'; filterText = ':heavy_check_mark:' }; 1408 | { word = ':heavy_multiplication_x:'; label = '✖️ :heavy_multiplication_x:'; insertText = '✖️'; filterText = ':heavy_multiplication_x:' }; 1409 | { word = ':latin_cross:'; label = '✝️ :latin_cross:'; insertText = '✝️'; filterText = ':latin_cross:' }; 1410 | { word = ':star_of_david:'; label = '✡️ :star_of_david:'; insertText = '✡️'; filterText = ':star_of_david:' }; 1411 | { word = ':sparkles:'; label = '✨ :sparkles:'; insertText = '✨'; filterText = ':sparkles:' }; 1412 | { word = ':eight_spoked_asterisk:'; label = '✳️ :eight_spoked_asterisk:'; insertText = '✳️'; filterText = ':eight_spoked_asterisk:' }; 1413 | { word = ':eight_pointed_black_star:'; label = '✴️ :eight_pointed_black_star:'; insertText = '✴️'; filterText = ':eight_pointed_black_star:' }; 1414 | { word = ':snowflake:'; label = '❄️ :snowflake:'; insertText = '❄️'; filterText = ':snowflake:' }; 1415 | { word = ':sparkle:'; label = '❇️ :sparkle:'; insertText = '❇️'; filterText = ':sparkle:' }; 1416 | { word = ':x:'; label = '❌ :x:'; insertText = '❌'; filterText = ':x:' }; 1417 | { word = ':negative_squared_cross_mark:'; label = '❎ :negative_squared_cross_mark:'; insertText = '❎'; filterText = ':negative_squared_cross_mark:' }; 1418 | { word = ':question:'; label = '❓ :question:'; insertText = '❓'; filterText = ':question:' }; 1419 | { word = ':grey_question:'; label = '❔ :grey_question:'; insertText = '❔'; filterText = ':grey_question:' }; 1420 | { word = ':grey_exclamation:'; label = '❕ :grey_exclamation:'; insertText = '❕'; filterText = ':grey_exclamation:' }; 1421 | { word = ':exclamation:'; label = '❗ :exclamation:'; insertText = '❗'; filterText = ':exclamation:' }; 1422 | { word = ':heavy_exclamation_mark:'; label = '❗ :heavy_exclamation_mark:'; insertText = '❗'; filterText = ':heavy_exclamation_mark:' }; 1423 | { word = ':heavy_heart_exclamation_mark_ornament:'; label = '❣️ :heavy_heart_exclamation_mark_ornament:'; insertText = '❣️'; filterText = ':heavy_heart_exclamation_mark_ornament:' }; 1424 | { word = ':heart:'; label = '❤️ :heart:'; insertText = '❤️'; filterText = ':heart:' }; 1425 | { word = ':heavy_plus_sign:'; label = '➕ :heavy_plus_sign:'; insertText = '➕'; filterText = ':heavy_plus_sign:' }; 1426 | { word = ':heavy_minus_sign:'; label = '➖ :heavy_minus_sign:'; insertText = '➖'; filterText = ':heavy_minus_sign:' }; 1427 | { word = ':heavy_division_sign:'; label = '➗ :heavy_division_sign:'; insertText = '➗'; filterText = ':heavy_division_sign:' }; 1428 | { word = ':arrow_right:'; label = '➡️ :arrow_right:'; insertText = '➡️'; filterText = ':arrow_right:' }; 1429 | { word = ':curly_loop:'; label = '➰ :curly_loop:'; insertText = '➰'; filterText = ':curly_loop:' }; 1430 | { word = ':loop:'; label = '➿ :loop:'; insertText = '➿'; filterText = ':loop:' }; 1431 | { word = ':arrow_heading_up:'; label = '⤴️ :arrow_heading_up:'; insertText = '⤴️'; filterText = ':arrow_heading_up:' }; 1432 | { word = ':arrow_heading_down:'; label = '⤵️ :arrow_heading_down:'; insertText = '⤵️'; filterText = ':arrow_heading_down:' }; 1433 | { word = ':arrow_left:'; label = '⬅️ :arrow_left:'; insertText = '⬅️'; filterText = ':arrow_left:' }; 1434 | { word = ':arrow_up:'; label = '⬆️ :arrow_up:'; insertText = '⬆️'; filterText = ':arrow_up:' }; 1435 | { word = ':arrow_down:'; label = '⬇️ :arrow_down:'; insertText = '⬇️'; filterText = ':arrow_down:' }; 1436 | { word = ':black_large_square:'; label = '⬛ :black_large_square:'; insertText = '⬛'; filterText = ':black_large_square:' }; 1437 | { word = ':white_large_square:'; label = '⬜ :white_large_square:'; insertText = '⬜'; filterText = ':white_large_square:' }; 1438 | { word = ':star:'; label = '⭐ :star:'; insertText = '⭐'; filterText = ':star:' }; 1439 | { word = ':o:'; label = '⭕ :o:'; insertText = '⭕'; filterText = ':o:' }; 1440 | { word = ':wavy_dash:'; label = '〰️ :wavy_dash:'; insertText = '〰️'; filterText = ':wavy_dash:' }; 1441 | { word = ':part_alternation_mark:'; label = '〽️ :part_alternation_mark:'; insertText = '〽️'; filterText = ':part_alternation_mark:' }; 1442 | { word = ':congratulations:'; label = '㊗️ :congratulations:'; insertText = '㊗️'; filterText = ':congratulations:' }; 1443 | { word = ':secret:'; label = '㊙️ :secret:'; insertText = '㊙️'; filterText = ':secret:' }; 1444 | } end -------------------------------------------------------------------------------- /lua/cmp_emoji/update.lua: -------------------------------------------------------------------------------- 1 | -- Generates the emoji data Lua file using this as a source: https://raw.githubusercontent.com/iamcal/emoji-data/master/emoji.json 2 | 3 | local M = {} 4 | 5 | M._read = function(path) 6 | return vim.fn.json_decode(vim.fn.readfile(path)) 7 | end 8 | 9 | M._write = function(path, data) 10 | local h = io.open(path, 'w') 11 | h:write(data) 12 | io.close(h) 13 | end 14 | 15 | M.to_string = function(chars) 16 | local nrs = {} 17 | for _, char in ipairs(chars) do 18 | table.insert(nrs, vim.fn.eval(([[char2nr("\U%s")]]):format(char))) 19 | end 20 | return vim.fn.list2str(nrs, true) 21 | end 22 | 23 | M.to_item = function(emoji, short_name) 24 | short_name = ':' .. short_name .. ':' 25 | return ("{ word = '%s'; label = '%s'; insertText = '%s'; filterText = '%s' };\n"):format( 26 | short_name, 27 | emoji .. ' ' .. short_name, 28 | emoji, 29 | short_name 30 | ) 31 | end 32 | 33 | M.to_items = function(emoji, short_names) 34 | local variants = '' 35 | 36 | for _, short_name in ipairs(short_names) do 37 | variants = variants .. M.to_item(emoji, short_name) 38 | end 39 | 40 | return variants 41 | end 42 | 43 | M.update = function() 44 | local items = '' 45 | for _, emoji in ipairs(M._read('./emoji.json')) do 46 | local char = M.to_string(vim.split(emoji.unified, '-')) 47 | 48 | local valid = true 49 | valid = valid and vim.fn.strdisplaywidth(char) <= 2 -- Ignore invalid ligatures 50 | if valid then 51 | items = items .. M.to_items(char, emoji.short_names) 52 | end 53 | end 54 | M._write('./items.lua', ('return function() return {\n%s} end'):format(items)) 55 | end 56 | 57 | return M 58 | 59 | --------------------------------------------------------------------------------