twemoji 2.1.1 → 2.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 193f4f408c6d1d513a7b256aaeaeedf97e34f1e4
4
- data.tar.gz: 87ac23ea297e84f819d75f6c50a9bb349bd221db
3
+ metadata.gz: 02614dab71e50a9f5f6cae3cfe4c0066477f439f
4
+ data.tar.gz: 4e2d7cba3fa1129c7db2cd867d4a021c688c954b
5
5
  SHA512:
6
- metadata.gz: be586edebad0ee38cccc0fac32e24c520eb7275cfa0405124f18c879b0c46fcf84746434decfe3ad6e9c5637ad9ec6b0b7a0f1f9655ebbe5421c5a0750e50b4d
7
- data.tar.gz: 246edca4b80fe36643a8b2b1b35356b5cddfcce97685fddcff0b7f2009bfffccfecee76ad5996cc95581a5b3586b1c34069d55e634ff7396f2ed84c9e679af86
6
+ metadata.gz: 54330c8fcfcd99f1e575272f6c35049c748b92fe21f9478f10151eb6d19af6c1ee5062d54490f312b2d584f12a8e66b15b844f2d6747e6a5d4f69438bc88914e
7
+ data.tar.gz: c08981c0d0fc2f44a719da236a119dd90ba2b126dd5401c351e2f0ccec59c902844540c449dd7acab7918a1e6286fbaca4fd4c486992d277e421662c18500dc5
@@ -2,6 +2,14 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ - Lose released Gem weight [#26](https://github.com/jollygoodcode/twemoji/pull/26)
6
+
7
+ - Add a `bin/hack` script to make gem development easier [#25](https://github.com/jollygoodcode/twemoji/pull/25)
8
+
9
+ - Add missing 47 emojis [#27](https://github.com/jollygoodcode/twemoji/pull/27)
10
+ - Fix emoji_pattern not properly escaped [#27](https://github.com/jollygoodcode/twemoji/pull/27)
11
+ - Change `:thumbsup:` `:thumbsdown:` to `:+1:` `:-1:`
12
+
5
13
  ## 2.1.1 - 2015.10.09
6
14
 
7
15
  - Export JSON for SVG and PNG (16x16, 36x36, 72x72) [#18](https://github.com/jollygoodcode/twemoji/pull/18)
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Twemoji
2
2
 
3
- [![Gem Version](http://img.shields.io/gem/v/twemoji.svg)][gem]
3
+ [![Gem Version](https://badge.fury.io/rb/twemoji.svg)](https://badge.fury.io/rb/twemoji)
4
4
  [![Build Status](https://travis-ci.org/jollygoodcode/twemoji.svg)][travis]
5
5
  [![Inline docs](http://inch-ci.org/github/jollygoodcode/twemoji.svg?branch=master)][inch-doc]
6
6
 
@@ -249,5 +249,4 @@ Please see the [LICENSE.md](/LICENSE.md) file.
249
249
 
250
250
  [![Jolly Good Code](https://cloud.githubusercontent.com/assets/1000669/9362336/72f9c406-46d2-11e5-94de-5060e83fcf83.jpg)](http://www.jollygoodcode.com)
251
251
 
252
- We specialise in Agile practices and Ruby, and we love contributing to open source.
253
- [Speak to us](http://www.jollygoodcode.com/#get-in-touch) about your next big idea, or [check out our projects](http://www.jollygoodcode.com/open-source).
252
+ We specialise in rapid development of high quality MVPs. [Hire us](http://www.jollygoodcode.com/#get-in-touch) to turn your product idea into reality.
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "twemoji"
5
+
6
+ require "pry"
7
+ Pry.start
@@ -66,7 +66,7 @@ module Twemoji
66
66
  # Twemoji.find_by_unicode "😍"
67
67
  # => ":heart_eyes:"
68
68
  #
69
- # @param unicode [String] Emoji raw unicode to find text.
69
+ # @param raw [String] Emoji raw unicode to find text.
70
70
  # @return [String] Emoji Text.
71
71
  def self.find_by_unicode(raw)
72
72
  ICODES[must_str("%4.4x" % raw.ord)]
@@ -125,7 +125,7 @@ module Twemoji
125
125
  #
126
126
  # @return [RegExp] A Regular expression consists of all emojis text.
127
127
  def self.emoji_pattern
128
- @emoji_pattern ||= /(#{CODES.keys.each { |name| Regexp.escape(name) }.join("|") })/
128
+ @emoji_pattern ||= /(#{CODES.keys.map { |name| Regexp.quote(name) }.join("|") })/
129
129
  end
130
130
 
131
131
  # Return Twemoji json string, unicode => twemoji CDN url
@@ -7,833 +7,880 @@ module Twemoji
7
7
  # @return [Hash<String => String>]
8
8
  # @private
9
9
  CODES = {
10
- ":smile:" => "1f604",
11
- ":laughing:" => "1f606",
12
- ":blush:" => "1f60a",
13
- ":smiley:" => "1f603",
14
- ":relaxed:" => "263a",
15
- ":smirk:" => "1f60f",
16
- ":heart_eyes:" => "1f60d",
17
- ":kissing_heart:" => "1f618",
18
- ":kissing_closed_eyes:" => "1f61a",
19
- ":flushed:" => "1f633",
20
- ":relieved:" => "1f625",
21
- ":satisfied:" => "1f60c",
22
- ":grin:" => "1f601",
23
- ":wink:" => "1f609",
24
- ":stuck_out_tongue_winking_eye:" => "1f61c",
25
- ":stuck_out_tongue_closed_eyes:" => "1f61d",
26
- ":grinning:" => "1f600",
27
- ":kissing:" => "1f617",
28
- ":kissing_smiling_eyes:" => "1f619",
29
- ":stuck_out_tongue:" => "1f61b",
30
- ":sleeping:" => "1f634",
31
- ":worried:" => "1f61f",
32
- ":frowning:" => "1f626",
33
- ":anguished:" => "1f627",
34
- ":open_mouth:" => "1f62e",
35
- ":grimacing:" => "1f62c",
36
- ":confused:" => "1f615",
37
- ":hushed:" => "1f62f",
38
- ":expressionless:" => "1f611",
39
- ":unamused:" => "1f612",
40
- ":sweat_smile:" => "1f605",
41
- ":sweat:" => "1f613",
42
- ":weary:" => "1f629",
43
- ":pensive:" => "1f614",
44
- ":disappointed:" => "1f61e",
45
- ":confounded:" => "1f616",
46
- ":fearful:" => "1f628",
47
- ":cold_sweat:" => "1f630",
48
- ":persevere:" => "1f623",
49
- ":cry:" => "1f622",
50
- ":sob:" => "1f62d",
51
- ":joy:" => "1f602",
52
- ":astonished:" => "1f632",
53
- ":scream:" => "1f631",
54
- ":tired_face:" => "1f62b",
55
- ":angry:" => "1f620",
56
- ":rage:" => "1f621",
57
- ":triumph:" => "1f624",
58
- ":sleepy:" => "1f62a",
59
- ":yum:" => "1f60b",
60
- ":mask:" => "1f637",
61
- ":sunglasses:" => "1f60e",
62
- ":dizzy_face:" => "1f635",
63
- ":imp:" => "1f47f",
64
- ":smiling_imp:" => "1f608",
65
- ":neutral_face:" => "1f610",
66
- ":no_mouth:" => "1f636",
67
- ":innocent:" => "1f607",
68
- ":alien:" => "1f47d",
69
- ":yellow_heart:" => "1f49b",
70
- ":blue_heart:" => "1f499",
71
- ":purple_heart:" => "1f49c",
72
- ":heart:" => "2764",
73
- ":green_heart:" => "1f49a",
74
- ":broken_heart:" => "1f494",
75
- ":heartbeat:" => "1f493",
76
- ":heartpulse:" => "1f497",
77
- ":two_hearts:" => "1f495",
78
- ":revolving_hearts:" => "1f49e",
79
- ":cupid:" => "1f498",
80
- ":sparkling_heart:" => "1f496",
81
- ":sparkles:" => "2728",
82
- ":star:" => "2b50",
83
- ":star2:" => "1f31f",
84
- ":dizzy:" => "1f4ab",
85
- ":boom:" => "1f4a5",
86
- ":anger:" => "1f4a2",
87
- ":exclamation:" => "2757",
88
- ":question:" => "2753",
89
- ":grey_exclamation:" => "2755",
90
- ":grey_question:" => "2754",
91
- ":zzz:" => "1f4a4",
92
- ":dash:" => "1f4a8",
93
- ":sweat_drops:" => "1f4a6",
94
- ":notes:" => "1f3b6",
95
- ":musical_note:" => "1f3b5",
96
- ":fire:" => "1f525",
97
- ":poop:" => "1f4a9",
98
- ":thumbsup:" => "1f44d",
99
- ":thumbsdown:" => "1f44e",
100
- ":ok_hand:" => "1f44c",
101
- ":punch:" => "1f44a",
102
- ":fist:" => "270a",
103
- ":v:" => "270c",
104
- ":wave:" => "1f44b",
105
- ":hand:" => "270b",
106
- ":open_hands:" => "1f450",
107
- ":point_up:" => "261d",
108
- ":point_down:" => "1f447",
109
- ":point_left:" => "1f448",
110
- ":point_right:" => "1f449",
111
- ":raised_hands:" => "1f64c",
112
- ":pray:" => "1f64f",
113
- ":point_up_2:" => "1f446",
114
- ":clap:" => "1f44f",
115
- ":muscle:" => "1f4aa",
116
- ":walking:" => "1f6b6",
117
- ":runner:" => "1f3c3",
118
- ":couple:" => "1f46b",
119
- ":family:" => "1f46a",
120
- ":two_men_holding_hands:" => "1f46c",
121
- ":two_women_holding_hands:" => "1f46d",
122
- ":dancer:" => "1f483",
123
- ":dancers:" => "1f46f",
124
- ":ok_woman:" => "1f646",
125
- ":no_good:" => "1f645",
126
- ":information_desk_person:" => "1f481",
127
- ":raised_hand:" => "1f64b",
128
- ":bride_with_veil:" => "1f470",
129
- ":person_with_pouting_face:" => "1f64e",
130
- ":person_frowning:" => "1f64d",
131
- ":bow:" => "1f647",
132
- ":couplekiss:" => "1f48f",
133
- ":couple_with_heart:" => "1f491",
134
- ":massage:" => "1f486",
135
- ":haircut:" => "1f487",
136
- ":nail_care:" => "1f485",
137
- ":boy:" => "1f466",
138
- ":girl:" => "1f467",
139
- ":woman:" => "1f469",
140
- ":man:" => "1f468",
141
- ":baby:" => "1f476",
142
- ":older_woman:" => "1f475",
143
- ":older_man:" => "1f474",
144
- ":person_with_blond_hair:" => "1f471",
145
- ":man_with_gua_pi_mao:" => "1f472",
146
- ":man_with_turban:" => "1f473",
147
- ":construction_worker:" => "1f477",
148
- ":cop:" => "1f46e",
149
- ":angel:" => "1f47c",
150
- ":princess:" => "1f478",
151
- ":smiley_cat:" => "1f63a",
152
- ":smile_cat:" => "1f638",
153
- ":heart_eyes_cat:" => "1f63b",
154
- ":kissing_cat:" => "1f63d",
155
- ":smirk_cat:" => "1f63c",
156
- ":scream_cat:" => "1f640",
157
- ":crying_cat_face:" => "1f63f",
158
- ":joy_cat:" => "1f639",
159
- ":pouting_cat:" => "1f63e",
160
- ":japanese_ogre:" => "1f479",
161
- ":japanese_goblin:" => "1f47a",
162
- ":see_no_evil:" => "1f648",
163
- ":hear_no_evil:" => "1f649",
164
- ":speak_no_evil:" => "1f64a",
165
- ":guardsman:" => "1f482",
166
- ":skull:" => "1f480",
167
- ":feet:" => "1f463",
168
- ":lips:" => "1f444",
169
- ":kiss:" => "1f48b",
170
- ":droplet:" => "1f4a7",
171
- ":ear:" => "1f442",
172
- ":eyes:" => "1f440",
173
- ":nose:" => "1f443",
174
- ":tongue:" => "1f445",
175
- ":love_letter:" => "1f48c",
176
- ":bust_in_silhouette:" => "1f464",
177
- ":busts_in_silhouette:" => "1f465",
178
- ":speech_balloon:" => "1f4ac",
179
- ":thought_balloon:" => "1f4ad",
180
- ":sunny:" => "2600",
181
- ":umbrella:" => "2614",
182
- ":cloud:" => "2601",
183
- ":snowflake:" => "2744",
184
- ":snowman:" => "26c4",
185
- ":zap:" => "26a1",
186
- ":cyclone:" => "1f300",
187
- ":foggy:" => "1f301",
188
- ":ocean:" => "1f30a",
189
- ":cat:" => "1f431",
190
- ":dog:" => "1f436",
191
- ":mouse:" => "1f42d",
192
- ":hamster:" => "1f439",
193
- ":rabbit:" => "1f430",
194
- ":wolf:" => "1f43a",
195
- ":frog:" => "1f438",
196
- ":tiger:" => "1f42f",
197
- ":koala:" => "1f428",
198
- ":bear:" => "1f43b",
199
- ":pig:" => "1f437",
200
- ":pig_nose:" => "1f43d",
201
- ":cow:" => "1f42e",
202
- ":boar:" => "1f417",
203
- ":monkey_face:" => "1f435",
204
- ":monkey:" => "1f412",
205
- ":horse:" => "1f434",
206
- ":racehorse:" => "1f40e",
207
- ":camel:" => "1f42b",
208
- ":sheep:" => "1f411",
209
- ":elephant:" => "1f418",
210
- ":panda_face:" => "1f43c",
211
- ":snake:" => "1f40d",
212
- ":bird:" => "1f426",
213
- ":baby_chick:" => "1f424",
214
- ":hatched_chick:" => "1f425",
215
- ":hatching_chick:" => "1f423",
216
- ":chicken:" => "1f414",
217
- ":penguin:" => "1f427",
218
- ":turtle:" => "1f422",
219
- ":bug:" => "1f41b",
220
- ":honeybee:" => "1f41d",
221
- ":ant:" => "1f41c",
222
- ":beetle:" => "1f41e",
223
- ":snail:" => "1f40c",
224
- ":octopus:" => "1f419",
225
- ":tropical_fish:" => "1f420",
226
- ":fish:" => "1f41f",
227
- ":whale:" => "1f433",
228
- ":whale2:" => "1f40b",
229
- ":dolphin:" => "1f42c",
230
- ":cow2:" => "1f404",
231
- ":ram:" => "1f40f",
232
- ":rat:" => "1f400",
233
- ":water_buffalo:" => "1f403",
234
- ":tiger2:" => "1f405",
235
- ":rabbit2:" => "1f407",
236
- ":dragon:" => "1f409",
237
- ":goat:" => "1f410",
238
- ":rooster:" => "1f413",
239
- ":dog2:" => "1f415",
240
- ":pig2:" => "1f416",
241
- ":mouse2:" => "1f401",
242
- ":ox:" => "1f402",
243
- ":dragon_face:" => "1f432",
244
- ":blowfish:" => "1f421",
245
- ":crocodile:" => "1f40a",
246
- ":dromedary_camel:" => "1f42a",
247
- ":leopard:" => "1f406",
248
- ":cat2:" => "1f408",
249
- ":poodle:" => "1f429",
250
- ":paw_prints:" => "1f43e",
251
- ":bouquet:" => "1f490",
252
- ":cherry_blossom:" => "1f338",
253
- ":tulip:" => "1f337",
254
- ":four_leaf_clover:" => "1f340",
255
- ":rose:" => "1f339",
256
- ":sunflower:" => "1f33b",
257
- ":hibiscus:" => "1f33a",
258
- ":maple_leaf:" => "1f341",
259
- ":leaves:" => "1f343",
260
- ":fallen_leaf:" => "1f342",
261
- ":herb:" => "1f33f",
262
- ":mushroom:" => "1f344",
263
- ":cactus:" => "1f335",
264
- ":palm_tree:" => "1f334",
265
- ":evergreen_tree:" => "1f332",
266
- ":deciduous_tree:" => "1f333",
267
- ":chestnut:" => "1f330",
268
- ":seedling:" => "1f331",
269
- ":blossom:" => "1f33c",
270
- ":ear_of_rice:" => "1f33e",
271
- ":shell:" => "1f41a",
272
- ":globe_with_meridians:" => "1f310",
273
- ":sun_with_face:" => "1f31e",
274
- ":full_moon_with_face:" => "1f31d",
275
- ":new_moon_with_face:" => "1f31a",
276
- ":new_moon:" => "1f311",
277
- ":waxing_crescent_moon:" => "1f312",
278
- ":first_quarter_moon:" => "1f313",
279
- ":waxing_gibbous_moon:" => "1f314",
280
- ":full_moon:" => "1f315",
281
- ":waning_gibbous_moon:" => "1f316",
282
- ":last_quarter_moon:" => "1f317",
283
- ":waning_crescent_moon:" => "1f318",
284
- ":last_quarter_moon_with_face:" => "1f31c",
285
- ":first_quarter_moon_with_face:" => "1f31b",
286
- ":moon:" => "1f319",
287
- ":earth_africa:" => "1f30d",
288
- ":earth_americas:" => "1f30e",
289
- ":earth_asia:" => "1f30f",
290
- ":volcano:" => "1f30b",
291
- ":milky_way:" => "1f30c",
292
- ":partly_sunny:" => "26c5",
293
- ":bamboo:" => "1f38d",
294
- ":gift_heart:" => "1f49d",
295
- ":dolls:" => "1f38e",
296
- ":school_satchel:" => "1f392",
297
- ":mortar_board:" => "1f393",
298
- ":flags:" => "1f38f",
299
- ":fireworks:" => "1f386",
300
- ":sparkler:" => "1f387",
301
- ":wind_chime:" => "1f390",
302
- ":rice_scene:" => "1f391",
303
- ":jack_o_lantern:" => "1f383",
304
- ":ghost:" => "1f47b",
305
- ":santa:" => "1f385",
306
- ":8ball:" => "1f3b1",
307
- ":alarm_clock:" => "23f0",
308
- ":apple:" => "1f34e",
309
- ":art:" => "1f3a8",
310
- ":baby_bottle:" => "1f37c",
311
- ":balloon:" => "1f388",
312
- ":banana:" => "1f34c",
313
- ":bar_chart:" => "1f4ca",
314
- ":baseball:" => "26be",
315
- ":basketball:" => "1f3c0",
316
- ":bath:" => "1f6c0",
317
- ":bathtub:" => "1f6c1",
318
- ":battery:" => "1f50b",
319
- ":beer:" => "1f37a",
320
- ":beers:" => "1f37b",
321
- ":bell:" => "1f514",
322
- ":bento:" => "1f371",
323
- ":bicyclist:" => "1f6b4",
324
- ":bikini:" => "1f459",
325
- ":birthday:" => "1f382",
326
- ":black_joker:" => "1f0cf",
327
- ":black_nib:" => "2712",
328
- ":blue_book:" => "1f4d8",
329
- ":bomb:" => "1f4a3",
330
- ":bookmark:" => "1f516",
331
- ":bookmark_tabs:" => "1f4d1",
332
- ":books:" => "1f4da",
333
- ":boot:" => "1f462",
334
- ":bowling:" => "1f3b3",
335
- ":bread:" => "1f35e",
336
- ":briefcase:" => "1f4bc",
337
- ":bulb:" => "1f4a1",
338
- ":cake:" => "1f370",
339
- ":calendar:" => "1f4c6",
340
- ":calling:" => "1f4f2",
341
- ":camera:" => "1f4f7",
342
- ":candy:" => "1f36c",
343
- ":card_index:" => "1f4c7",
344
- ":cd:" => "1f4bf",
345
- ":chart_with_downwards_trend:" => "1f4c9",
346
- ":chart_with_upwards_trend:" => "1f4c8",
347
- ":cherries:" => "1f352",
348
- ":chocolate_bar:" => "1f36b",
349
- ":christmas_tree:" => "1f384",
350
- ":clapper:" => "1f3ac",
351
- ":clipboard:" => "1f4cb",
352
- ":closed_book:" => "1f4d5",
353
- ":closed_lock_with_key:" => "1f510",
354
- ":closed_umbrella:" => "1f302",
355
- ":clubs:" => "2663",
356
- ":cocktail:" => "1f378",
357
- ":coffee:" => "2615",
358
- ":computer:" => "1f4bb",
359
- ":confetti_ball:" => "1f38a",
360
- ":cookie:" => "1f36a",
361
- ":corn:" => "1f33d",
362
- ":credit_card:" => "1f4b3",
363
- ":crown:" => "1f451",
364
- ":crystal_ball:" => "1f52e",
365
- ":curry:" => "1f35b",
366
- ":custard:" => "1f36e",
367
- ":dango:" => "1f361",
368
- ":dart:" => "1f3af",
369
- ":date:" => "1f4c5",
370
- ":diamonds:" => "2666",
371
- ":dollar:" => "1f4b5",
372
- ":door:" => "1f6aa",
373
- ":doughnut:" => "1f369",
374
- ":dress:" => "1f457",
375
- ":dvd:" => "1f4c0",
376
- ":e_mail:" => "1f4e7",
377
- ":egg:" => "1f373",
378
- ":eggplant:" => "1f346",
379
- ":electric_plug:" => "1f50c",
380
- ":email:" => "2709",
381
- ":euro:" => "1f4b6",
382
- ":eyeglasses:" => "1f453",
383
- ":fax:" => "1f4e0",
384
- ":file_folder:" => "1f4c1",
385
- ":fish_cake:" => "1f365",
386
- ":fishing_pole_and_fish:" => "1f3a3",
387
- ":flashlight:" => "1f526",
388
- ":floppy_disk:" => "1f4be",
389
- ":flower_playing_cards:" => "1f3b4",
390
- ":football:" => "1f3c8",
391
- ":fork_and_knife:" => "1f374",
392
- ":fried_shrimp:" => "1f364",
393
- ":fries:" => "1f35f",
394
- ":game_die:" => "1f3b2",
395
- ":gem:" => "1f48e",
396
- ":gift:" => "1f381",
397
- ":golf:" => "26f3",
398
- ":grapes:" => "1f347",
399
- ":green_apple:" => "1f34f",
400
- ":green_book:" => "1f4d7",
401
- ":guitar:" => "1f3b8",
402
- ":gun:" => "1f52b",
403
- ":hamburger:" => "1f354",
404
- ":hammer:" => "1f528",
405
- ":handbag:" => "1f45c",
406
- ":headphones:" => "1f3a7",
407
- ":hearts:" => "2665",
408
- ":high_brightness:" => "1f506",
409
- ":high_heel:" => "1f460",
410
- ":hocho:" => "1f52a",
411
- ":honey_pot:" => "1f36f",
412
- ":horse_racing:" => "1f3c7",
413
- ":hourglass:" => "231b",
414
- ":hourglass_flowing_sand:" => "23f3",
415
- ":ice_cream:" => "1f368",
416
- ":icecream:" => "1f366",
417
- ":inbox_tray:" => "1f4e5",
418
- ":incoming_envelope:" => "1f4e8",
419
- ":iphone:" => "1f4f1",
420
- ":jeans:" => "1f456",
421
- ":key:" => "1f511",
422
- ":kimono:" => "1f458",
423
- ":ledger:" => "1f4d2",
424
- ":lemon:" => "1f34b",
425
- ":lipstick:" => "1f484",
426
- ":lock:" => "1f512",
427
- ":lock_with_ink_pen:" => "1f50f",
428
- ":lollipop:" => "1f36d",
429
- ":loop:" => "27bf",
430
- ":loudspeaker:" => "1f4e2",
431
- ":low_brightness:" => "1f505",
432
- ":mag:" => "1f50d",
433
- ":mag_right:" => "1f50e",
434
- ":mahjong:" => "1f004",
435
- ":mailbox:" => "1f4eb",
436
- ":mailbox_closed:" => "1f4ea",
437
- ":mailbox_with_mail:" => "1f4ec",
438
- ":mailbox_with_no_mail:" => "1f4ed",
439
- ":mans_shoe:" => "1f45e",
440
- ":meat_on_bone:" => "1f356",
441
- ":mega:" => "1f4e3",
442
- ":melon:" => "1f348",
443
- ":memo:" => "1f4dd",
444
- ":microphone:" => "1f3a4",
445
- ":microscope:" => "1f52c",
446
- ":minidisc:" => "1f4bd",
447
- ":money_with_wings:" => "1f4b8",
448
- ":moneybag:" => "1f4b0",
449
- ":mountain_bicyclist:" => "1f6b5",
450
- ":movie_camera:" => "1f3a5",
451
- ":musical_keyboard:" => "1f3b9",
452
- ":musical_score:" => "1f3bc",
453
- ":mute:" => "1f507",
454
- ":name_badge:" => "1f4db",
455
- ":necktie:" => "1f454",
456
- ":newspaper:" => "1f4f0",
457
- ":no_bell:" => "1f515",
458
- ":notebook:" => "1f4d3",
459
- ":notebook_with_decorative_cover:" => "1f4d4",
460
- ":nut_and_bolt:" => "1f529",
461
- ":oden:" => "1f362",
462
- ":open_file_folder:" => "1f4c2",
463
- ":orange_book:" => "1f4d9",
464
- ":outbox_tray:" => "1f4e4",
465
- ":page_facing_up:" => "1f4c4",
466
- ":page_with_curl:" => "1f4c3",
467
- ":pager:" => "1f4df",
468
- ":paperclip:" => "1f4ce",
469
- ":peach:" => "1f351",
470
- ":pear:" => "1f350",
471
- ":pencil2:" => "270f",
472
- ":phone:" => "260e",
473
- ":pill:" => "1f48a",
474
- ":pineapple:" => "1f34d",
475
- ":pizza:" => "1f355",
476
- ":postal_horn:" => "1f4ef",
477
- ":postbox:" => "1f4ee",
478
- ":pouch:" => "1f45d",
479
- ":poultry_leg:" => "1f357",
480
- ":pound:" => "1f4b7",
481
- ":purse:" => "1f45b",
482
- ":pushpin:" => "1f4cc",
483
- ":radio:" => "1f4fb",
484
- ":ramen:" => "1f35c",
485
- ":ribbon:" => "1f380",
486
- ":rice:" => "1f35a",
487
- ":rice_ball:" => "1f359",
488
- ":rice_cracker:" => "1f358",
489
- ":ring:" => "1f48d",
490
- ":rugby_football:" => "1f3c9",
491
- ":running_shirt_with_sash:" => "1f3bd",
492
- ":sake:" => "1f376",
493
- ":sandal:" => "1f461",
494
- ":satellite:" => "1f4e1",
495
- ":saxophone:" => "1f3b7",
496
- ":scissors:" => "2702",
497
- ":scroll:" => "1f4dc",
498
- ":seat:" => "1f4ba",
499
- ":shaved_ice:" => "1f367",
500
- ":shirt:" => "1f455",
501
- ":shower:" => "1f6bf",
502
- ":ski:" => "1f3bf",
503
- ":smoking:" => "1f6ac",
504
- ":snowboarder:" => "1f3c2",
505
- ":soccer:" => "26bd",
506
- ":sound:" => "1f509",
507
- ":space_invader:" => "1f47e",
508
- ":spades:" => "2660",
509
- ":spaghetti:" => "1f35d",
510
- ":speaker:" => "1f50a",
511
- ":stew:" => "1f372",
512
- ":straight_ruler:" => "1f4cf",
513
- ":strawberry:" => "1f353",
514
- ":surfer:" => "1f3c4",
515
- ":sushi:" => "1f363",
516
- ":sweet_potato:" => "1f360",
517
- ":swimmer:" => "1f3ca",
518
- ":syringe:" => "1f489",
519
- ":tada:" => "1f389",
520
- ":tanabata_tree:" => "1f38b",
521
- ":tangerine:" => "1f34a",
522
- ":tea:" => "1f375",
523
- ":telephone_receiver:" => "1f4de",
524
- ":telescope:" => "1f52d",
525
- ":tennis:" => "1f3be",
526
- ":toilet:" => "1f6bd",
527
- ":tomato:" => "1f345",
528
- ":tophat:" => "1f3a9",
529
- ":triangular_ruler:" => "1f4d0",
530
- ":trophy:" => "1f3c6",
531
- ":tropical_drink:" => "1f379",
532
- ":trumpet:" => "1f3ba",
533
- ":tv:" => "1f4fa",
534
- ":unlock:" => "1f513",
535
- ":vhs:" => "1f4fc",
536
- ":video_camera:" => "1f4f9",
537
- ":video_game:" => "1f3ae",
538
- ":violin:" => "1f3bb",
539
- ":watch:" => "231a",
540
- ":watermelon:" => "1f349",
541
- ":wine_glass:" => "1f377",
542
- ":womans_clothes:" => "1f45a",
543
- ":womans_hat:" => "1f452",
544
- ":wrench:" => "1f527",
545
- ":yen:" => "1f4b4",
546
- ":aerial_tramway:" => "1f6a1",
547
- ":airplane:" => "2708",
548
- ":ambulance:" => "1f691",
549
- ":anchor:" => "2693",
550
- ":articulated_lorry:" => "1f69b",
551
- ":atm:" => "1f3e7",
552
- ":bank:" => "1f3e6",
553
- ":barber:" => "1f488",
554
- ":beginner:" => "1f530",
555
- ":bike:" => "1f6b2",
556
- ":blue_car:" => "1f699",
557
- ":boat:" => "26f5",
558
- ":bridge_at_night:" => "1f309",
559
- ":bullettrain_front:" => "1f685",
560
- ":bullettrain_side:" => "1f684",
561
- ":bus:" => "1f68c",
562
- ":busstop:" => "1f68f",
563
- ":car:" => "1f697",
564
- ":carousel_horse:" => "1f3a0",
565
- ":checkered_flag:" => "1f3c1",
566
- ":church:" => "26ea",
567
- ":circus_tent:" => "1f3aa",
568
- ":city_sunrise:" => "1f307",
569
- ":city_sunset:" => "1f306",
570
- ":construction:" => "1f6a7",
571
- ":convenience_store:" => "1f3ea",
572
- ":crossed_flags:" => "1f38c",
573
- ":department_store:" => "1f3ec",
574
- ":european_castle:" => "1f3f0",
575
- ":european_post_office:" => "1f3e4",
576
- ":factory:" => "1f3ed",
577
- ":ferris_wheel:" => "1f3a1",
578
- ":fire_engine:" => "1f692",
579
- ":fountain:" => "26f2",
580
- ":fuelpump:" => "26fd",
581
- ":helicopter:" => "1f681",
582
- ":hospital:" => "1f3e5",
583
- ":hotel:" => "1f3e8",
584
- ":hotsprings:" => "2668",
585
- ":house:" => "1f3e0",
586
- ":house_with_garden:" => "1f3e1",
587
- ":japan:" => "1f5fe",
588
- ":japanese_castle:" => "1f3ef",
589
- ":light_rail:" => "1f688",
590
- ":love_hotel:" => "1f3e9",
591
- ":minibus:" => "1f690",
592
- ":monorail:" => "1f69d",
593
- ":mount_fuji:" => "1f5fb",
594
- ":mountain_cableway:" => "1f6a0",
595
- ":mountain_railway:" => "1f69e",
596
- ":moyai:" => "1f5ff",
597
- ":office:" => "1f3e2",
598
- ":oncoming_automobile:" => "1f698",
599
- ":oncoming_bus:" => "1f68d",
600
- ":oncoming_police_car:" => "1f694",
601
- ":oncoming_taxi:" => "1f696",
602
- ":performing_arts:" => "1f3ad",
603
- ":police_car:" => "1f693",
604
- ":post_office:" => "1f3e3",
605
- ":railway_car:" => "1f683",
606
- ":rainbow:" => "1f308",
607
- ":rocket:" => "1f680",
608
- ":roller_coaster:" => "1f3a2",
609
- ":rotating_light:" => "1f6a8",
610
- ":round_pushpin:" => "1f4cd",
611
- ":rowboat:" => "1f6a3",
612
- ":school:" => "1f3eb",
613
- ":ship:" => "1f6a2",
614
- ":slot_machine:" => "1f3b0",
615
- ":speedboat:" => "1f6a4",
616
- ":stars:" => "1f303",
617
- ":station:" => "1f689",
618
- ":statue_of_liberty:" => "1f5fd",
619
- ":steam_locomotive:" => "1f682",
620
- ":sunrise:" => "1f305",
621
- ":sunrise_over_mountains:" => "1f304",
622
- ":suspension_railway:" => "1f69f",
623
- ":taxi:" => "1f695",
624
- ":tent:" => "26fa",
625
- ":ticket:" => "1f3ab",
626
- ":tokyo_tower:" => "1f5fc",
627
- ":tractor:" => "1f69c",
628
- ":traffic_light:" => "1f6a5",
629
- ":train2:" => "1f686",
630
- ":tram:" => "1f68a",
631
- ":triangular_flag_on_post:" => "1f6a9",
632
- ":trolleybus:" => "1f68e",
633
- ":truck:" => "1f69a",
634
- ":vertical_traffic_light:" => "1f6a6",
635
- ":warning:" => "26a0",
636
- ":wedding:" => "1f492",
637
- ":jp:" => "1f1ef-1f1f5",
638
- ":kr:" => "1f1f0-1f1f7",
639
- ":cn:" => "1f1e8-1f1f3",
640
- ":us:" => "1f1fa-1f1f8",
641
- ":fr:" => "1f1eb-1f1f7",
642
- ":es:" => "1f1ea-1f1f8",
643
- ":it:" => "1f1ee-1f1f9",
644
- ":ru:" => "1f1f7-1f1fa",
645
- ":gb:" => "1f1ec-1f1e7",
646
- ":de:" => "1f1e9-1f1ea",
647
- ":100:" => "1f4af",
648
- ":1234:" => "1f522",
649
- ":a:" => "1f170",
650
- ":ab:" => "1f18e",
651
- ":abc:" => "1f524",
652
- ":abcd:" => "1f521",
653
- ":accept:" => "1f251",
654
- ":aquarius:" => "2652",
655
- ":aries:" => "2648",
656
- ":arrow_backward:" => "25c0",
657
- ":arrow_double_down:" => "23ec",
658
- ":arrow_double_up:" => "23eb",
659
- ":arrow_down:" => "2b07",
660
- ":arrow_down_small:" => "1f53d",
661
- ":arrow_forward:" => "25b6",
662
- ":arrow_heading_down:" => "2935",
663
- ":arrow_heading_up:" => "2934",
664
- ":arrow_left:" => "2b05",
665
- ":arrow_lower_left:" => "2199",
666
- ":arrow_lower_right:" => "2198",
667
- ":arrow_right:" => "27a1",
668
- ":arrow_right_hook:" => "21aa",
669
- ":arrow_up:" => "2b06",
670
- ":arrow_up_down:" => "2195",
671
- ":arrow_up_small:" => "1f53c",
672
- ":arrow_upper_left:" => "2196",
673
- ":arrow_upper_right:" => "2197",
674
- ":arrows_clockwise:" => "1f503",
675
- ":arrows_counterclockwise:" => "1f504",
676
- ":b:" => "1f171",
677
- ":baby_symbol:" => "1f6bc",
678
- ":baggage_claim:" => "1f6c4",
679
- ":ballot_box_with_check:" => "2611",
680
- ":bangbang:" => "203c",
681
- ":black_circle:" => "26ab",
682
- ":black_square_button:" => "1f532",
683
- ":cancer:" => "264b",
684
- ":capital_abcd:" => "1f520",
685
- ":capricorn:" => "2651",
686
- ":chart:" => "1f4b9",
687
- ":children_crossing:" => "1f6b8",
688
- ":cinema:" => "1f3a6",
689
- ":cl:" => "1f191",
690
- ":clock1:" => "1f550",
691
- ":clock10:" => "1f559",
692
- ":clock1030:" => "1f565",
693
- ":clock11:" => "1f55a",
694
- ":clock1130:" => "1f566",
695
- ":clock12:" => "1f55b",
696
- ":clock1230:" => "1f567",
697
- ":clock130:" => "1f55c",
698
- ":clock2:" => "1f551",
699
- ":clock230:" => "1f55d",
700
- ":clock3:" => "1f552",
701
- ":clock330:" => "1f55e",
702
- ":clock4:" => "1f553",
703
- ":clock430:" => "1f55f",
704
- ":clock5:" => "1f554",
705
- ":clock530:" => "1f560",
706
- ":clock6:" => "1f555",
707
- ":clock630:" => "1f561",
708
- ":clock7:" => "1f556",
709
- ":clock730:" => "1f562",
710
- ":clock8:" => "1f557",
711
- ":clock830:" => "1f563",
712
- ":clock9:" => "1f558",
713
- ":clock930:" => "1f564",
714
- ":congratulations:" => "3297",
715
- ":cool:" => "1f192",
716
- ":copyright:" => "a9",
717
- ":curly_loop:" => "27b0",
718
- ":currency_exchange:" => "1f4b1",
719
- ":customs:" => "1f6c3",
720
- ":diamond_shape_with_a_dot_inside:" => "1f4a0",
721
- ":do_not_litter:" => "1f6af",
722
- ":eight:" => "38-20e3",
723
- ":eight_pointed_black_star:" => "2734",
724
- ":eight_spoked_asterisk:" => "2733",
725
- ":end:" => "1f51a",
726
- ":fast_forward:" => "23e9",
727
- ":five:" => "35-20e3",
728
- ":four:" => "34-20e3",
729
- ":free:" => "1f193",
730
- ":gemini:" => "264a",
731
- ":hash:" => "23-20e3",
732
- ":heart_decoration:" => "1f49f",
733
- ":heavy_check_mark:" => "2714",
734
- ":heavy_division_sign:" => "2797",
735
- ":heavy_dollar_sign:" => "1f4b2",
736
- ":heavy_minus_sign:" => "2796",
737
- ":heavy_multiplication_x:" => "2716",
738
- ":heavy_plus_sign:" => "2795",
739
- ":id:" => "1f194",
740
- ":ideograph_advantage:" => "1f250",
741
- ":information_source:" => "2139",
742
- ":interrobang:" => "2049",
743
- ":keycap_ten:" => "1f51f",
744
- ":koko:" => "1f201",
745
- ":large_blue_circle:" => "1f535",
746
- ":large_blue_diamond:" => "1f537",
747
- ":large_orange_diamond:" => "1f536",
748
- ":left_luggage:" => "1f6c5",
749
- ":left_right_arrow:" => "2194",
750
- ":leftwards_arrow_with_hook:" => "21a9",
751
- ":leo:" => "264c",
752
- ":libra:" => "264e",
753
- ":link:" => "1f517",
754
- ":m:" => "24c2",
755
- ":mens:" => "1f6b9",
756
- ":metro:" => "1f687",
757
- ":mobile_phone_off:" => "1f4f4",
758
- ":negative_squared_cross_mark:" => "274e",
759
- ":new:" => "1f195",
760
- ":ng:" => "1f196",
761
- ":nine:" => "39-20e3",
762
- ":no_bicycles:" => "1f6b3",
763
- ":no_entry:" => "26d4",
764
- ":no_entry_sign:" => "1f6ab",
765
- ":no_mobile_phones:" => "1f4f5",
766
- ":no_pedestrians:" => "1f6b7",
767
- ":no_smoking:" => "1f6ad",
768
- ":non_potable_water:" => "1f6b1",
769
- ":o:" => "2b55",
770
- ":o2:" => "1f17e",
771
- ":ok:" => "1f197",
772
- ":on:" => "1f51b",
773
- ":one:" => "31-20e3",
774
- ":ophiuchus:" => "26ce",
775
- ":parking:" => "1f17f",
776
- ":part_alternation_mark:" => "303d",
777
- ":passport_control:" => "1f6c2",
778
- ":pisces:" => "2653",
779
- ":potable_water:" => "1f6b0",
780
- ":put_litter_in_its_place:" => "1f6ae",
781
- ":radio_button:" => "1f518",
782
- ":recycle:" => "267b",
783
- ":red_circle:" => "1f534",
784
- ":registered:" => "ae",
785
- ":repeat:" => "1f501",
786
- ":repeat_one:" => "1f502",
787
- ":restroom:" => "1f6bb",
788
- ":rewind:" => "23ea",
789
- ":sa:" => "1f202",
790
- ":sagittarius:" => "2650",
791
- ":scorpius:" => "264f",
792
- ":secret:" => "3299",
793
- ":seven:" => "37-20e3",
794
- ":signal_strength:" => "1f4f6",
795
- ":six:" => "36-20e3",
796
- ":six_pointed_star:" => "1f52f",
797
- ":small_blue_diamond:" => "1f539",
798
- ":small_orange_diamond:" => "1f538",
799
- ":small_red_triangle:" => "1f53a",
800
- ":small_red_triangle_down:" => "1f53b",
801
- ":soon:" => "1f51c",
802
- ":sos:" => "1f198",
803
- ":symbols:" => "1f523",
804
- ":taurus:" => "2649",
805
- ":three:" => "33-20e3",
806
- ":tm:" => "2122",
807
- ":top:" => "1f51d",
808
- ":trident:" => "1f531",
809
- ":twisted_rightwards_arrows:" => "1f500",
810
- ":two:" => "32-20e3",
811
- ":u5272:" => "1f239",
812
- ":u5408:" => "1f234",
813
- ":u55b6:" => "1f23a",
814
- ":u6307:" => "1f22f",
815
- ":u6708:" => "1f237",
816
- ":u6709:" => "1f236",
817
- ":u6e80:" => "1f235",
818
- ":u7121:" => "1f21a",
819
- ":u7533:" => "1f238",
820
- ":u7981:" => "1f232",
821
- ":u7a7a:" => "1f233",
822
- ":underage:" => "1f51e",
823
- ":up:" => "1f199",
824
- ":vibration_mode:" => "1f4f3",
825
- ":virgo:" => "264d",
826
- ":vs:" => "1f19a",
827
- ":wavy_dash:" => "3030",
828
- ":wc:" => "1f6be",
829
- ":wheelchair:" => "267f",
830
- ":white_check_mark:" => "2705",
831
- ":white_circle:" => "26aa",
832
- ":white_flower:" => "1f4ae",
833
- ":white_square_button:" => "1f533",
834
- ":womens:" => "1f6ba",
835
- ":x:" => "274c",
836
- ":zero:" => "30-20e3"
10
+ ":mahjong:" => "1f004",
11
+ ":black_joker:" => "1f0cf",
12
+ ":a_negative:" => "1f170",
13
+ ":b_negative:" => "1f171",
14
+ ":o_negative:" => "1f17e",
15
+ ":parking:" => "1f17f",
16
+ ":ab:" => "1f18e",
17
+ ":cl:" => "1f191",
18
+ ":cool:" => "1f192",
19
+ ":free:" => "1f193",
20
+ ":id:" => "1f194",
21
+ ":new:" => "1f195",
22
+ ":ng:" => "1f196",
23
+ ":ok:" => "1f197",
24
+ ":sos:" => "1f198",
25
+ ":up:" => "1f199",
26
+ ":vs:" => "1f19a",
27
+ ":a:" => "1f1e6",
28
+ ":b:" => "1f1e7",
29
+ ":c:" => "1f1e8",
30
+ ":cn:" => "1f1e8-1f1f3",
31
+ ":d:" => "1f1e9",
32
+ ":de:" => "1f1e9-1f1ea",
33
+ ":e:" => "1f1ea",
34
+ ":es:" => "1f1ea-1f1f8",
35
+ ":f:" => "1f1eb",
36
+ ":fr:" => "1f1eb-1f1f7",
37
+ ":g:" => "1f1ec",
38
+ ":gb:" => "1f1ec-1f1e7",
39
+ ":h:" => "1f1ed",
40
+ ":i:" => "1f1ee",
41
+ ":it:" => "1f1ee-1f1f9",
42
+ ":j:" => "1f1ef",
43
+ ":jp:" => "1f1ef-1f1f5",
44
+ ":k:" => "1f1f0",
45
+ ":kr:" => "1f1f0-1f1f7",
46
+ ":l:" => "1f1f1",
47
+ ":m:" => "1f1f2",
48
+ ":n:" => "1f1f3",
49
+ ":o:" => "1f1f4",
50
+ ":p:" => "1f1f5",
51
+ ":q:" => "1f1f6",
52
+ ":r:" => "1f1f7",
53
+ ":ru:" => "1f1f7-1f1fa",
54
+ ":s:" => "1f1f8",
55
+ ":t:" => "1f1f9",
56
+ ":u:" => "1f1fa",
57
+ ":us:" => "1f1fa-1f1f8",
58
+ ":v:" => "1f1fb",
59
+ ":w:" => "1f1fc",
60
+ ":x:" => "1f1fd",
61
+ ":y:" => "1f1fe",
62
+ ":z:" => "1f1ff",
63
+ ":koko:" => "1f201",
64
+ ":sa:" => "1f202",
65
+ ":negation:" => "1f21a",
66
+ ":finger:" => "1f22f",
67
+ ":prohibit:" => "1f232",
68
+ ":empty:" => "1f233",
69
+ ":together:" => "1f234",
70
+ ":fullness:" => "1f235",
71
+ ":exist:" => "1f236",
72
+ ":moon:" => "1f237",
73
+ ":apply:" => "1f238",
74
+ ":divide:" => "1f239",
75
+ ":operating:" => "1f23a",
76
+ ":ideograph_advantage:" => "1f250",
77
+ ":accept:" => "1f251",
78
+ ":cyclone:" => "1f300",
79
+ ":foggy:" => "1f301",
80
+ ":closed_umbrella:" => "1f302",
81
+ ":night_with_stars:" => "1f303",
82
+ ":sunrise_over_mountains:" => "1f304",
83
+ ":sunrise:" => "1f305",
84
+ ":city_sunset:" => "1f306",
85
+ ":city_sunrise:" => "1f307",
86
+ ":rainbow:" => "1f308",
87
+ ":bridge_at_night:" => "1f309",
88
+ ":ocean:" => "1f30a",
89
+ ":volcano:" => "1f30b",
90
+ ":milky_way:" => "1f30c",
91
+ ":earth_africa:" => "1f30d",
92
+ ":earth_americas:" => "1f30e",
93
+ ":earth_asia:" => "1f30f",
94
+ ":globe_with_meridians:" => "1f310",
95
+ ":new_moon:" => "1f311",
96
+ ":waxing_crescent_moon:" => "1f312",
97
+ ":first_quarter_moon:" => "1f313",
98
+ ":waxing_gibbous_moon:" => "1f314",
99
+ ":full_moon:" => "1f315",
100
+ ":waning_gibbous_moon:" => "1f316",
101
+ ":last_quarter_moon:" => "1f317",
102
+ ":waning_crescent_moon:" => "1f318",
103
+ ":crescent_moon:" => "1f319",
104
+ ":new_moon_with_face:" => "1f31a",
105
+ ":first_quarter_moon_with_face:" => "1f31b",
106
+ ":last_quarter_moon_with_face:" => "1f31c",
107
+ ":full_moon_with_face:" => "1f31d",
108
+ ":sun_with_face:" => "1f31e",
109
+ ":star2:" => "1f31f",
110
+ ":stars:" => "1f320",
111
+ ":chestnut:" => "1f330",
112
+ ":seedling:" => "1f331",
113
+ ":evergreen_tree:" => "1f332",
114
+ ":deciduous_tree:" => "1f333",
115
+ ":palm_tree:" => "1f334",
116
+ ":cactus:" => "1f335",
117
+ ":tulip:" => "1f337",
118
+ ":cherry_blossom:" => "1f338",
119
+ ":rose:" => "1f339",
120
+ ":hibiscus:" => "1f33a",
121
+ ":sunflower:" => "1f33b",
122
+ ":blossom:" => "1f33c",
123
+ ":corn:" => "1f33d",
124
+ ":ear_of_rice:" => "1f33e",
125
+ ":herb:" => "1f33f",
126
+ ":four_leaf_clover:" => "1f340",
127
+ ":maple_leaf:" => "1f341",
128
+ ":fallen_leaf:" => "1f342",
129
+ ":leaves:" => "1f343",
130
+ ":mushroom:" => "1f344",
131
+ ":tomato:" => "1f345",
132
+ ":eggplant:" => "1f346",
133
+ ":grapes:" => "1f347",
134
+ ":melon:" => "1f348",
135
+ ":watermelon:" => "1f349",
136
+ ":tangerine:" => "1f34a",
137
+ ":lemon:" => "1f34b",
138
+ ":banana:" => "1f34c",
139
+ ":pineapple:" => "1f34d",
140
+ ":apple:" => "1f34e",
141
+ ":green_apple:" => "1f34f",
142
+ ":pear:" => "1f350",
143
+ ":peach:" => "1f351",
144
+ ":cherries:" => "1f352",
145
+ ":strawberry:" => "1f353",
146
+ ":hamburger:" => "1f354",
147
+ ":pizza:" => "1f355",
148
+ ":meat_on_bone:" => "1f356",
149
+ ":poultry_leg:" => "1f357",
150
+ ":rice_cracker:" => "1f358",
151
+ ":rice_ball:" => "1f359",
152
+ ":rice:" => "1f35a",
153
+ ":curry:" => "1f35b",
154
+ ":ramen:" => "1f35c",
155
+ ":spaghetti:" => "1f35d",
156
+ ":bread:" => "1f35e",
157
+ ":fries:" => "1f35f",
158
+ ":sweet_potato:" => "1f360",
159
+ ":dango:" => "1f361",
160
+ ":oden:" => "1f362",
161
+ ":sushi:" => "1f363",
162
+ ":fried_shrimp:" => "1f364",
163
+ ":fish_cake:" => "1f365",
164
+ ":icecream:" => "1f366",
165
+ ":shaved_ice:" => "1f367",
166
+ ":ice_cream:" => "1f368",
167
+ ":doughnut:" => "1f369",
168
+ ":cookie:" => "1f36a",
169
+ ":chocolate_bar:" => "1f36b",
170
+ ":candy:" => "1f36c",
171
+ ":lollipop:" => "1f36d",
172
+ ":custard:" => "1f36e",
173
+ ":honey_pot:" => "1f36f",
174
+ ":cake:" => "1f370",
175
+ ":bento:" => "1f371",
176
+ ":stew:" => "1f372",
177
+ ":egg:" => "1f373",
178
+ ":fork_and_knife:" => "1f374",
179
+ ":tea:" => "1f375",
180
+ ":sake:" => "1f376",
181
+ ":wine_glass:" => "1f377",
182
+ ":cocktail:" => "1f378",
183
+ ":tropical_drink:" => "1f379",
184
+ ":beer:" => "1f37a",
185
+ ":beers:" => "1f37b",
186
+ ":baby_bottle:" => "1f37c",
187
+ ":ribbon:" => "1f380",
188
+ ":gift:" => "1f381",
189
+ ":birthday:" => "1f382",
190
+ ":jack_o_lantern:" => "1f383",
191
+ ":christmas_tree:" => "1f384",
192
+ ":santa:" => "1f385",
193
+ ":fireworks:" => "1f386",
194
+ ":sparkler:" => "1f387",
195
+ ":balloon:" => "1f388",
196
+ ":tada:" => "1f389",
197
+ ":confetti_ball:" => "1f38a",
198
+ ":tanabata_tree:" => "1f38b",
199
+ ":crossed_flags:" => "1f38c",
200
+ ":bamboo:" => "1f38d",
201
+ ":dolls:" => "1f38e",
202
+ ":flags:" => "1f38f",
203
+ ":wind_chime:" => "1f390",
204
+ ":rice_scene:" => "1f391",
205
+ ":school_satchel:" => "1f392",
206
+ ":mortar_board:" => "1f393",
207
+ ":carousel_horse:" => "1f3a0",
208
+ ":ferris_wheel:" => "1f3a1",
209
+ ":roller_coaster:" => "1f3a2",
210
+ ":fishing_pole_and_fish:" => "1f3a3",
211
+ ":microphone:" => "1f3a4",
212
+ ":movie_camera:" => "1f3a5",
213
+ ":cinema:" => "1f3a6",
214
+ ":headphones:" => "1f3a7",
215
+ ":art:" => "1f3a8",
216
+ ":tophat:" => "1f3a9",
217
+ ":circus_tent:" => "1f3aa",
218
+ ":ticket:" => "1f3ab",
219
+ ":clapper:" => "1f3ac",
220
+ ":performing_arts:" => "1f3ad",
221
+ ":video_game:" => "1f3ae",
222
+ ":dart:" => "1f3af",
223
+ ":slot_machine:" => "1f3b0",
224
+ ":8ball:" => "1f3b1",
225
+ ":game_die:" => "1f3b2",
226
+ ":bowling:" => "1f3b3",
227
+ ":flower_playing_cards:" => "1f3b4",
228
+ ":musical_note:" => "1f3b5",
229
+ ":notes:" => "1f3b6",
230
+ ":saxophone:" => "1f3b7",
231
+ ":guitar:" => "1f3b8",
232
+ ":musical_keyboard:" => "1f3b9",
233
+ ":trumpet:" => "1f3ba",
234
+ ":violin:" => "1f3bb",
235
+ ":musical_score:" => "1f3bc",
236
+ ":running_shirt_with_sash:" => "1f3bd",
237
+ ":tennis:" => "1f3be",
238
+ ":ski:" => "1f3bf",
239
+ ":basketball:" => "1f3c0",
240
+ ":checkered_flag:" => "1f3c1",
241
+ ":snowboarder:" => "1f3c2",
242
+ ":runner:" => "1f3c3",
243
+ ":surfer:" => "1f3c4",
244
+ ":trophy:" => "1f3c6",
245
+ ":horse_racing:" => "1f3c7",
246
+ ":football:" => "1f3c8",
247
+ ":rugby_football:" => "1f3c9",
248
+ ":swimmer:" => "1f3ca",
249
+ ":house:" => "1f3e0",
250
+ ":house_with_garden:" => "1f3e1",
251
+ ":office:" => "1f3e2",
252
+ ":post_office:" => "1f3e3",
253
+ ":european_post_office:" => "1f3e4",
254
+ ":hospital:" => "1f3e5",
255
+ ":bank:" => "1f3e6",
256
+ ":atm:" => "1f3e7",
257
+ ":hotel:" => "1f3e8",
258
+ ":love_hotel:" => "1f3e9",
259
+ ":convenience_store:" => "1f3ea",
260
+ ":school:" => "1f3eb",
261
+ ":department_store:" => "1f3ec",
262
+ ":factory:" => "1f3ed",
263
+ ":izakaya_lantern:" => "1f3ee",
264
+ ":japanese_castle:" => "1f3ef",
265
+ ":european_castle:" => "1f3f0",
266
+ ":rat:" => "1f400",
267
+ ":mouse2:" => "1f401",
268
+ ":ox:" => "1f402",
269
+ ":water_buffalo:" => "1f403",
270
+ ":cow2:" => "1f404",
271
+ ":tiger2:" => "1f405",
272
+ ":leopard:" => "1f406",
273
+ ":rabbit2:" => "1f407",
274
+ ":cat2:" => "1f408",
275
+ ":dragon:" => "1f409",
276
+ ":crocodile:" => "1f40a",
277
+ ":whale2:" => "1f40b",
278
+ ":snail:" => "1f40c",
279
+ ":snake:" => "1f40d",
280
+ ":racehorse:" => "1f40e",
281
+ ":ram:" => "1f40f",
282
+ ":goat:" => "1f410",
283
+ ":sheep:" => "1f411",
284
+ ":monkey:" => "1f412",
285
+ ":rooster:" => "1f413",
286
+ ":chicken:" => "1f414",
287
+ ":dog2:" => "1f415",
288
+ ":pig2:" => "1f416",
289
+ ":boar:" => "1f417",
290
+ ":elephant:" => "1f418",
291
+ ":octopus:" => "1f419",
292
+ ":shell:" => "1f41a",
293
+ ":bug:" => "1f41b",
294
+ ":ant:" => "1f41c",
295
+ ":honeybee:" => "1f41d",
296
+ ":beetle:" => "1f41e",
297
+ ":fish:" => "1f41f",
298
+ ":tropical_fish:" => "1f420",
299
+ ":blowfish:" => "1f421",
300
+ ":turtle:" => "1f422",
301
+ ":hatching_chick:" => "1f423",
302
+ ":baby_chick:" => "1f424",
303
+ ":hatched_chick:" => "1f425",
304
+ ":bird:" => "1f426",
305
+ ":penguin:" => "1f427",
306
+ ":koala:" => "1f428",
307
+ ":poodle:" => "1f429",
308
+ ":dromedary_camel:" => "1f42a",
309
+ ":camel:" => "1f42b",
310
+ ":dolphin:" => "1f42c",
311
+ ":mouse:" => "1f42d",
312
+ ":cow:" => "1f42e",
313
+ ":tiger:" => "1f42f",
314
+ ":rabbit:" => "1f430",
315
+ ":cat:" => "1f431",
316
+ ":dragon_face:" => "1f432",
317
+ ":whale:" => "1f433",
318
+ ":horse:" => "1f434",
319
+ ":monkey_face:" => "1f435",
320
+ ":dog:" => "1f436",
321
+ ":pig:" => "1f437",
322
+ ":frog:" => "1f438",
323
+ ":hamster:" => "1f439",
324
+ ":wolf:" => "1f43a",
325
+ ":bear:" => "1f43b",
326
+ ":panda_face:" => "1f43c",
327
+ ":pig_nose:" => "1f43d",
328
+ ":paw_prints:" => "1f43e",
329
+ ":eyes:" => "1f440",
330
+ ":ear:" => "1f442",
331
+ ":nose:" => "1f443",
332
+ ":lips:" => "1f444",
333
+ ":tongue:" => "1f445",
334
+ ":point_up_2:" => "1f446",
335
+ ":point_down:" => "1f447",
336
+ ":point_left:" => "1f448",
337
+ ":point_right:" => "1f449",
338
+ ":punch:" => "1f44a",
339
+ ":wave:" => "1f44b",
340
+ ":ok_hand:" => "1f44c",
341
+ ":+1:" => "1f44d",
342
+ ":-1:" => "1f44e",
343
+ ":clap:" => "1f44f",
344
+ ":open_hands:" => "1f450",
345
+ ":crown:" => "1f451",
346
+ ":womans_hat:" => "1f452",
347
+ ":eyeglasses:" => "1f453",
348
+ ":necktie:" => "1f454",
349
+ ":shirt:" => "1f455",
350
+ ":jeans:" => "1f456",
351
+ ":dress:" => "1f457",
352
+ ":kimono:" => "1f458",
353
+ ":bikini:" => "1f459",
354
+ ":womans_clothes:" => "1f45a",
355
+ ":purse:" => "1f45b",
356
+ ":handbag:" => "1f45c",
357
+ ":pouch:" => "1f45d",
358
+ ":mans_shoe:" => "1f45e",
359
+ ":athletic_shoe:" => "1f45f",
360
+ ":high_heel:" => "1f460",
361
+ ":sandal:" => "1f461",
362
+ ":boot:" => "1f462",
363
+ ":feet:" => "1f463",
364
+ ":bust_in_silhouette:" => "1f464",
365
+ ":busts_in_silhouette:" => "1f465",
366
+ ":boy:" => "1f466",
367
+ ":girl:" => "1f467",
368
+ ":man:" => "1f468",
369
+ ":woman:" => "1f469",
370
+ ":family:" => "1f46a",
371
+ ":couple:" => "1f46b",
372
+ ":two_men_holding_hands:" => "1f46c",
373
+ ":two_women_holding_hands:" => "1f46d",
374
+ ":cop:" => "1f46e",
375
+ ":dancers:" => "1f46f",
376
+ ":bride_with_veil:" => "1f470",
377
+ ":person_with_blond_hair:" => "1f471",
378
+ ":man_with_gua_pi_mao:" => "1f472",
379
+ ":man_with_turban:" => "1f473",
380
+ ":older_man:" => "1f474",
381
+ ":older_woman:" => "1f475",
382
+ ":baby:" => "1f476",
383
+ ":construction_worker:" => "1f477",
384
+ ":princess:" => "1f478",
385
+ ":japanese_ogre:" => "1f479",
386
+ ":japanese_goblin:" => "1f47a",
387
+ ":ghost:" => "1f47b",
388
+ ":angel:" => "1f47c",
389
+ ":alien:" => "1f47d",
390
+ ":space_invader:" => "1f47e",
391
+ ":imp:" => "1f47f",
392
+ ":skull:" => "1f480",
393
+ ":information_desk_person:" => "1f481",
394
+ ":guardsman:" => "1f482",
395
+ ":dancer:" => "1f483",
396
+ ":lipstick:" => "1f484",
397
+ ":nail_care:" => "1f485",
398
+ ":massage:" => "1f486",
399
+ ":haircut:" => "1f487",
400
+ ":barber:" => "1f488",
401
+ ":syringe:" => "1f489",
402
+ ":pill:" => "1f48a",
403
+ ":kiss:" => "1f48b",
404
+ ":love_letter:" => "1f48c",
405
+ ":ring:" => "1f48d",
406
+ ":gem:" => "1f48e",
407
+ ":couplekiss:" => "1f48f",
408
+ ":bouquet:" => "1f490",
409
+ ":couple_with_heart:" => "1f491",
410
+ ":wedding:" => "1f492",
411
+ ":heartbeat:" => "1f493",
412
+ ":broken_heart:" => "1f494",
413
+ ":two_hearts:" => "1f495",
414
+ ":sparkling_heart:" => "1f496",
415
+ ":heartpulse:" => "1f497",
416
+ ":cupid:" => "1f498",
417
+ ":blue_heart:" => "1f499",
418
+ ":green_heart:" => "1f49a",
419
+ ":yellow_heart:" => "1f49b",
420
+ ":purple_heart:" => "1f49c",
421
+ ":gift_heart:" => "1f49d",
422
+ ":revolving_hearts:" => "1f49e",
423
+ ":heart_decoration:" => "1f49f",
424
+ ":diamond_shape_with_a_dot_inside:" => "1f4a0",
425
+ ":bulb:" => "1f4a1",
426
+ ":anger:" => "1f4a2",
427
+ ":bomb:" => "1f4a3",
428
+ ":zzz:" => "1f4a4",
429
+ ":boom:" => "1f4a5",
430
+ ":sweat_drops:" => "1f4a6",
431
+ ":droplet:" => "1f4a7",
432
+ ":dash:" => "1f4a8",
433
+ ":hankey:" => "1f4a9",
434
+ ":muscle:" => "1f4aa",
435
+ ":dizzy:" => "1f4ab",
436
+ ":speech_balloon:" => "1f4ac",
437
+ ":thought_balloon:" => "1f4ad",
438
+ ":white_flower:" => "1f4ae",
439
+ ":100:" => "1f4af",
440
+ ":moneybag:" => "1f4b0",
441
+ ":currency_exchange:" => "1f4b1",
442
+ ":heavy_dollar_sign:" => "1f4b2",
443
+ ":credit_card:" => "1f4b3",
444
+ ":yen:" => "1f4b4",
445
+ ":dollar:" => "1f4b5",
446
+ ":euro:" => "1f4b6",
447
+ ":pound:" => "1f4b7",
448
+ ":money_with_wings:" => "1f4b8",
449
+ ":chart:" => "1f4b9",
450
+ ":seat:" => "1f4ba",
451
+ ":computer:" => "1f4bb",
452
+ ":briefcase:" => "1f4bc",
453
+ ":minidisc:" => "1f4bd",
454
+ ":floppy_disk:" => "1f4be",
455
+ ":cd:" => "1f4bf",
456
+ ":dvd:" => "1f4c0",
457
+ ":file_folder:" => "1f4c1",
458
+ ":open_file_folder:" => "1f4c2",
459
+ ":page_with_curl:" => "1f4c3",
460
+ ":page_facing_up:" => "1f4c4",
461
+ ":date:" => "1f4c5",
462
+ ":calendar:" => "1f4c6",
463
+ ":card_index:" => "1f4c7",
464
+ ":chart_with_upwards_trend:" => "1f4c8",
465
+ ":chart_with_downwards_trend:" => "1f4c9",
466
+ ":bar_chart:" => "1f4ca",
467
+ ":clipboard:" => "1f4cb",
468
+ ":pushpin:" => "1f4cc",
469
+ ":round_pushpin:" => "1f4cd",
470
+ ":paperclip:" => "1f4ce",
471
+ ":straight_ruler:" => "1f4cf",
472
+ ":triangular_ruler:" => "1f4d0",
473
+ ":bookmark_tabs:" => "1f4d1",
474
+ ":ledger:" => "1f4d2",
475
+ ":notebook:" => "1f4d3",
476
+ ":notebook_with_decorative_cover:" => "1f4d4",
477
+ ":closed_book:" => "1f4d5",
478
+ ":book:" => "1f4d6",
479
+ ":green_book:" => "1f4d7",
480
+ ":blue_book:" => "1f4d8",
481
+ ":orange_book:" => "1f4d9",
482
+ ":books:" => "1f4da",
483
+ ":name_badge:" => "1f4db",
484
+ ":scroll:" => "1f4dc",
485
+ ":memo:" => "1f4dd",
486
+ ":telephone_receiver:" => "1f4de",
487
+ ":pager:" => "1f4df",
488
+ ":fax:" => "1f4e0",
489
+ ":satellite:" => "1f4e1",
490
+ ":loudspeaker:" => "1f4e2",
491
+ ":mega:" => "1f4e3",
492
+ ":outbox_tray:" => "1f4e4",
493
+ ":inbox_tray:" => "1f4e5",
494
+ ":package:" => "1f4e6",
495
+ ":e_mail:" => "1f4e7",
496
+ ":incoming_envelope:" => "1f4e8",
497
+ ":envelope_with_arrow:" => "1f4e9",
498
+ ":mailbox_closed:" => "1f4ea",
499
+ ":mailbox:" => "1f4eb",
500
+ ":mailbox_with_mail:" => "1f4ec",
501
+ ":mailbox_with_no_mail:" => "1f4ed",
502
+ ":postbox:" => "1f4ee",
503
+ ":postal_horn:" => "1f4ef",
504
+ ":newspaper:" => "1f4f0",
505
+ ":iphone:" => "1f4f1",
506
+ ":calling:" => "1f4f2",
507
+ ":vibration_mode:" => "1f4f3",
508
+ ":mobile_phone_off:" => "1f4f4",
509
+ ":no_mobile_phones:" => "1f4f5",
510
+ ":signal_strength:" => "1f4f6",
511
+ ":camera:" => "1f4f7",
512
+ ":video_camera:" => "1f4f9",
513
+ ":tv:" => "1f4fa",
514
+ ":radio:" => "1f4fb",
515
+ ":vhs:" => "1f4fc",
516
+ ":twisted_rightwards_arrows:" => "1f500",
517
+ ":repeat:" => "1f501",
518
+ ":repeat_one:" => "1f502",
519
+ ":arrows_clockwise:" => "1f503",
520
+ ":arrows_counterclockwise:" => "1f504",
521
+ ":low_brightness:" => "1f505",
522
+ ":high_brightness:" => "1f506",
523
+ ":mute:" => "1f507",
524
+ ":speaker:" => "1f508",
525
+ ":sound:" => "1f509",
526
+ ":loud_sound:" => "1f50a",
527
+ ":battery:" => "1f50b",
528
+ ":electric_plug:" => "1f50c",
529
+ ":mag:" => "1f50d",
530
+ ":mag_right:" => "1f50e",
531
+ ":lock_with_ink_pen:" => "1f50f",
532
+ ":closed_lock_with_key:" => "1f510",
533
+ ":key:" => "1f511",
534
+ ":lock:" => "1f512",
535
+ ":unlock:" => "1f513",
536
+ ":bell:" => "1f514",
537
+ ":no_bell:" => "1f515",
538
+ ":bookmark:" => "1f516",
539
+ ":link:" => "1f517",
540
+ ":radio_button:" => "1f518",
541
+ ":back:" => "1f519",
542
+ ":end:" => "1f51a",
543
+ ":on:" => "1f51b",
544
+ ":soon:" => "1f51c",
545
+ ":top:" => "1f51d",
546
+ ":underage:" => "1f51e",
547
+ ":keycap_ten:" => "1f51f",
548
+ ":capital_abcd:" => "1f520",
549
+ ":abcd:" => "1f521",
550
+ ":1234:" => "1f522",
551
+ ":symbols:" => "1f523",
552
+ ":abc:" => "1f524",
553
+ ":fire:" => "1f525",
554
+ ":flashlight:" => "1f526",
555
+ ":wrench:" => "1f527",
556
+ ":hammer:" => "1f528",
557
+ ":nut_and_bolt:" => "1f529",
558
+ ":hocho:" => "1f52a",
559
+ ":gun:" => "1f52b",
560
+ ":microscope:" => "1f52c",
561
+ ":telescope:" => "1f52d",
562
+ ":crystal_ball:" => "1f52e",
563
+ ":six_pointed_star:" => "1f52f",
564
+ ":beginner:" => "1f530",
565
+ ":trident:" => "1f531",
566
+ ":black_square_button:" => "1f532",
567
+ ":white_square_button:" => "1f533",
568
+ ":red_circle:" => "1f534",
569
+ ":large_blue_circle:" => "1f535",
570
+ ":large_orange_diamond:" => "1f536",
571
+ ":large_blue_diamond:" => "1f537",
572
+ ":small_orange_diamond:" => "1f538",
573
+ ":small_blue_diamond:" => "1f539",
574
+ ":small_red_triangle:" => "1f53a",
575
+ ":small_red_triangle_down:" => "1f53b",
576
+ ":arrow_up_small:" => "1f53c",
577
+ ":arrow_down_small:" => "1f53d",
578
+ ":clock1:" => "1f550",
579
+ ":clock2:" => "1f551",
580
+ ":clock3:" => "1f552",
581
+ ":clock4:" => "1f553",
582
+ ":clock5:" => "1f554",
583
+ ":clock6:" => "1f555",
584
+ ":clock7:" => "1f556",
585
+ ":clock8:" => "1f557",
586
+ ":clock9:" => "1f558",
587
+ ":clock10:" => "1f559",
588
+ ":clock11:" => "1f55a",
589
+ ":clock12:" => "1f55b",
590
+ ":clock130:" => "1f55c",
591
+ ":clock230:" => "1f55d",
592
+ ":clock330:" => "1f55e",
593
+ ":clock430:" => "1f55f",
594
+ ":clock530:" => "1f560",
595
+ ":clock630:" => "1f561",
596
+ ":clock730:" => "1f562",
597
+ ":clock830:" => "1f563",
598
+ ":clock930:" => "1f564",
599
+ ":clock1030:" => "1f565",
600
+ ":clock1130:" => "1f566",
601
+ ":clock1230:" => "1f567",
602
+ ":mount_fuji:" => "1f5fb",
603
+ ":tokyo_tower:" => "1f5fc",
604
+ ":statue_of_liberty:" => "1f5fd",
605
+ ":japan:" => "1f5fe",
606
+ ":moyai:" => "1f5ff",
607
+ ":grinning:" => "1f600",
608
+ ":grin:" => "1f601",
609
+ ":joy:" => "1f602",
610
+ ":smiley:" => "1f603",
611
+ ":smile:" => "1f604",
612
+ ":sweat_smile:" => "1f605",
613
+ ":laughing:" => "1f606",
614
+ ":innocent:" => "1f607",
615
+ ":smiling_imp:" => "1f608",
616
+ ":wink:" => "1f609",
617
+ ":blush:" => "1f60a",
618
+ ":yum:" => "1f60b",
619
+ ":satisfied:" => "1f60c",
620
+ ":heart_eyes:" => "1f60d",
621
+ ":sunglasses:" => "1f60e",
622
+ ":smirk:" => "1f60f",
623
+ ":neutral_face:" => "1f610",
624
+ ":expressionless:" => "1f611",
625
+ ":unamused:" => "1f612",
626
+ ":sweat:" => "1f613",
627
+ ":pensive:" => "1f614",
628
+ ":confused:" => "1f615",
629
+ ":confounded:" => "1f616",
630
+ ":kissing:" => "1f617",
631
+ ":kissing_heart:" => "1f618",
632
+ ":kissing_smiling_eyes:" => "1f619",
633
+ ":kissing_closed_eyes:" => "1f61a",
634
+ ":stuck_out_tongue:" => "1f61b",
635
+ ":stuck_out_tongue_winking_eye:" => "1f61c",
636
+ ":stuck_out_tongue_closed_eyes:" => "1f61d",
637
+ ":disappointed:" => "1f61e",
638
+ ":worried:" => "1f61f",
639
+ ":angry:" => "1f620",
640
+ ":rage:" => "1f621",
641
+ ":cry:" => "1f622",
642
+ ":persevere:" => "1f623",
643
+ ":triumph:" => "1f624",
644
+ ":relieved:" => "1f625",
645
+ ":frowning:" => "1f626",
646
+ ":anguished:" => "1f627",
647
+ ":fearful:" => "1f628",
648
+ ":weary:" => "1f629",
649
+ ":sleepy:" => "1f62a",
650
+ ":tired_face:" => "1f62b",
651
+ ":grimacing:" => "1f62c",
652
+ ":sob:" => "1f62d",
653
+ ":open_mouth:" => "1f62e",
654
+ ":hushed:" => "1f62f",
655
+ ":cold_sweat:" => "1f630",
656
+ ":scream:" => "1f631",
657
+ ":astonished:" => "1f632",
658
+ ":flushed:" => "1f633",
659
+ ":sleeping:" => "1f634",
660
+ ":dizzy_face:" => "1f635",
661
+ ":no_mouth:" => "1f636",
662
+ ":mask:" => "1f637",
663
+ ":smile_cat:" => "1f638",
664
+ ":joy_cat:" => "1f639",
665
+ ":smiley_cat:" => "1f63a",
666
+ ":heart_eyes_cat:" => "1f63b",
667
+ ":smirk_cat:" => "1f63c",
668
+ ":kissing_cat:" => "1f63d",
669
+ ":pouting_cat:" => "1f63e",
670
+ ":crying_cat_face:" => "1f63f",
671
+ ":scream_cat:" => "1f640",
672
+ ":slightly_frowning_face:" => "1f641",
673
+ ":slightly_smiling_face:" => "1f642",
674
+ ":no_good:" => "1f645",
675
+ ":ok_woman:" => "1f646",
676
+ ":bow:" => "1f647",
677
+ ":see_no_evil:" => "1f648",
678
+ ":hear_no_evil:" => "1f649",
679
+ ":speak_no_evil:" => "1f64a",
680
+ ":raised_hand:" => "1f64b",
681
+ ":raised_hands:" => "1f64c",
682
+ ":person_frowning:" => "1f64d",
683
+ ":person_with_pouting_face:" => "1f64e",
684
+ ":pray:" => "1f64f",
685
+ ":rocket:" => "1f680",
686
+ ":helicopter:" => "1f681",
687
+ ":steam_locomotive:" => "1f682",
688
+ ":railway_car:" => "1f683",
689
+ ":bullettrain_side:" => "1f684",
690
+ ":bullettrain_front:" => "1f685",
691
+ ":train2:" => "1f686",
692
+ ":metro:" => "1f687",
693
+ ":light_rail:" => "1f688",
694
+ ":station:" => "1f689",
695
+ ":tram:" => "1f68a",
696
+ ":train:" => "1f68b",
697
+ ":bus:" => "1f68c",
698
+ ":oncoming_bus:" => "1f68d",
699
+ ":trolleybus:" => "1f68e",
700
+ ":busstop:" => "1f68f",
701
+ ":minibus:" => "1f690",
702
+ ":ambulance:" => "1f691",
703
+ ":fire_engine:" => "1f692",
704
+ ":police_car:" => "1f693",
705
+ ":oncoming_police_car:" => "1f694",
706
+ ":taxi:" => "1f695",
707
+ ":oncoming_taxi:" => "1f696",
708
+ ":car:" => "1f697",
709
+ ":oncoming_automobile:" => "1f698",
710
+ ":blue_car:" => "1f699",
711
+ ":truck:" => "1f69a",
712
+ ":articulated_lorry:" => "1f69b",
713
+ ":tractor:" => "1f69c",
714
+ ":monorail:" => "1f69d",
715
+ ":mountain_railway:" => "1f69e",
716
+ ":suspension_railway:" => "1f69f",
717
+ ":mountain_cableway:" => "1f6a0",
718
+ ":aerial_tramway:" => "1f6a1",
719
+ ":ship:" => "1f6a2",
720
+ ":rowboat:" => "1f6a3",
721
+ ":speedboat:" => "1f6a4",
722
+ ":traffic_light:" => "1f6a5",
723
+ ":vertical_traffic_light:" => "1f6a6",
724
+ ":construction:" => "1f6a7",
725
+ ":rotating_light:" => "1f6a8",
726
+ ":triangular_flag_on_post:" => "1f6a9",
727
+ ":door:" => "1f6aa",
728
+ ":no_entry_sign:" => "1f6ab",
729
+ ":smoking:" => "1f6ac",
730
+ ":no_smoking:" => "1f6ad",
731
+ ":put_litter_in_its_place:" => "1f6ae",
732
+ ":do_not_litter:" => "1f6af",
733
+ ":potable_water:" => "1f6b0",
734
+ ":non_potable_water:" => "1f6b1",
735
+ ":bike:" => "1f6b2",
736
+ ":no_bicycles:" => "1f6b3",
737
+ ":bicyclist:" => "1f6b4",
738
+ ":mountain_bicyclist:" => "1f6b5",
739
+ ":walking:" => "1f6b6",
740
+ ":no_pedestrians:" => "1f6b7",
741
+ ":children_crossing:" => "1f6b8",
742
+ ":mens:" => "1f6b9",
743
+ ":womens:" => "1f6ba",
744
+ ":restroom:" => "1f6bb",
745
+ ":baby_symbol:" => "1f6bc",
746
+ ":toilet:" => "1f6bd",
747
+ ":wc:" => "1f6be",
748
+ ":shower:" => "1f6bf",
749
+ ":bath:" => "1f6c0",
750
+ ":bathtub:" => "1f6c1",
751
+ ":passport_control:" => "1f6c2",
752
+ ":customs:" => "1f6c3",
753
+ ":baggage_claim:" => "1f6c4",
754
+ ":left_luggage:" => "1f6c5",
755
+ ":bangbang:" => "203c",
756
+ ":interrobang:" => "2049",
757
+ ":tm:" => "2122",
758
+ ":information_source:" => "2139",
759
+ ":left_right_arrow:" => "2194",
760
+ ":arrow_up_down:" => "2195",
761
+ ":arrow_upper_left:" => "2196",
762
+ ":arrow_upper_right:" => "2197",
763
+ ":arrow_lower_right:" => "2198",
764
+ ":arrow_lower_left:" => "2199",
765
+ ":leftwards_arrow_with_hook:" => "21a9",
766
+ ":arrow_right_hook:" => "21aa",
767
+ ":hash:" => "23-20e3",
768
+ ":watch:" => "231a",
769
+ ":hourglass:" => "231b",
770
+ ":fast_forward:" => "23e9",
771
+ ":rewind:" => "23ea",
772
+ ":arrow_double_up:" => "23eb",
773
+ ":arrow_double_down:" => "23ec",
774
+ ":alarm_clock:" => "23f0",
775
+ ":hourglass_flowing_sand:" => "23f3",
776
+ ":m_circled:" => "24c2",
777
+ ":black_small_square:" => "25aa",
778
+ ":white_small_square:" => "25ab",
779
+ ":arrow_forward:" => "25b6",
780
+ ":arrow_backward:" => "25c0",
781
+ ":white_medium_square:" => "25fb",
782
+ ":black_medium_square:" => "25fc",
783
+ ":white_medium_small_square:" => "25fd",
784
+ ":black_medium_small_square:" => "25fe",
785
+ ":sunny:" => "2600",
786
+ ":cloud:" => "2601",
787
+ ":phone:" => "260e",
788
+ ":ballot_box_with_check:" => "2611",
789
+ ":umbrella:" => "2614",
790
+ ":coffee:" => "2615",
791
+ ":point_up:" => "261d",
792
+ ":relaxed:" => "263a",
793
+ ":aries:" => "2648",
794
+ ":taurus:" => "2649",
795
+ ":gemini:" => "264a",
796
+ ":cancer:" => "264b",
797
+ ":leo:" => "264c",
798
+ ":virgo:" => "264d",
799
+ ":libra:" => "264e",
800
+ ":scorpius:" => "264f",
801
+ ":sagittarius:" => "2650",
802
+ ":capricorn:" => "2651",
803
+ ":aquarius:" => "2652",
804
+ ":pisces:" => "2653",
805
+ ":spades:" => "2660",
806
+ ":clubs:" => "2663",
807
+ ":hearts:" => "2665",
808
+ ":diamonds:" => "2666",
809
+ ":hotsprings:" => "2668",
810
+ ":recycle:" => "267b",
811
+ ":wheelchair:" => "267f",
812
+ ":anchor:" => "2693",
813
+ ":warning:" => "26a0",
814
+ ":zap:" => "26a1",
815
+ ":white_circle:" => "26aa",
816
+ ":black_circle:" => "26ab",
817
+ ":soccer:" => "26bd",
818
+ ":baseball:" => "26be",
819
+ ":snowman:" => "26c4",
820
+ ":partly_sunny:" => "26c5",
821
+ ":ophiuchus:" => "26ce",
822
+ ":no_entry:" => "26d4",
823
+ ":church:" => "26ea",
824
+ ":fountain:" => "26f2",
825
+ ":golf:" => "26f3",
826
+ ":boat:" => "26f5",
827
+ ":tent:" => "26fa",
828
+ ":fuelpump:" => "26fd",
829
+ ":scissors:" => "2702",
830
+ ":white_check_mark:" => "2705",
831
+ ":airplane:" => "2708",
832
+ ":email:" => "2709",
833
+ ":fist:" => "270a",
834
+ ":hand:" => "270b",
835
+ ":victory_hand:" => "270c",
836
+ ":pencil2:" => "270f",
837
+ ":black_nib:" => "2712",
838
+ ":heavy_check_mark:" => "2714",
839
+ ":heavy_multiplication_x:" => "2716",
840
+ ":sparkles:" => "2728",
841
+ ":eight_spoked_asterisk:" => "2733",
842
+ ":eight_pointed_black_star:" => "2734",
843
+ ":snowflake:" => "2744",
844
+ ":sparkle:" => "2747",
845
+ ":cross_mark:" => "274c",
846
+ ":negative_squared_cross_mark:" => "274e",
847
+ ":question:" => "2753",
848
+ ":grey_question:" => "2754",
849
+ ":grey_exclamation:" => "2755",
850
+ ":exclamation:" => "2757",
851
+ ":heart:" => "2764",
852
+ ":heavy_plus_sign:" => "2795",
853
+ ":heavy_minus_sign:" => "2796",
854
+ ":heavy_division_sign:" => "2797",
855
+ ":arrow_right:" => "27a1",
856
+ ":curly_loop:" => "27b0",
857
+ ":loop:" => "27bf",
858
+ ":arrow_heading_up:" => "2934",
859
+ ":arrow_heading_down:" => "2935",
860
+ ":arrow_left:" => "2b05",
861
+ ":arrow_up:" => "2b06",
862
+ ":arrow_down:" => "2b07",
863
+ ":black_large_square:" => "2b1b",
864
+ ":white_large_square:" => "2b1c",
865
+ ":star:" => "2b50",
866
+ ":large_circle:" => "2b55",
867
+ ":zero:" => "30-20e3",
868
+ ":wavy_dash:" => "3030",
869
+ ":part_alternation_mark:" => "303d",
870
+ ":one:" => "31-20e3",
871
+ ":two:" => "32-20e3",
872
+ ":congratulations:" => "3297",
873
+ ":secret:" => "3299",
874
+ ":three:" => "33-20e3",
875
+ ":four:" => "34-20e3",
876
+ ":five:" => "35-20e3",
877
+ ":six:" => "36-20e3",
878
+ ":seven:" => "37-20e3",
879
+ ":eight:" => "38-20e3",
880
+ ":nine:" => "39-20e3",
881
+ ":copyright:" => "a9",
882
+ ":registered:" => "ae",
883
+ ":shibuya:" => "e50a",
837
884
  }.each { |k, v| k.freeze; v.freeze }.freeze
838
885
 
839
886
  # Emoji Codepoint to Text mappings. This hash is frozen.